{
    "Function": "_fromPriceDecimals",
    "File": "src/InvestmentManager.sol",
    "Parent Contracts": [
        "src/util/Auth.sol"
    ],
    "High-Level Calls": [],
    "Internal Calls": [
        "_toUint128",
        "_toUint128"
    ],
    "Library Calls": [],
    "Low-Level Calls": [],
    "Code": "function _fromPriceDecimals(uint256 _value, uint8 decimals, address liquidityPool)\n        internal\n        view\n        returns (uint128 value)\n    {\n        if (PRICE_DECIMALS == decimals) return _toUint128(_value);\n        value = _toUint128(_value / 10 ** (PRICE_DECIMALS - decimals));\n    }"
}