{
    "Function": "_getBPValue",
    "File": "src/libraries/BinHelper.sol",
    "Parent Contracts": [],
    "High-Level Calls": [],
    "Internal Calls": [
        "revert BinHelper__BinStepOverflows(uint256)"
    ],
    "Library Calls": [],
    "Low-Level Calls": [],
    "Code": "function _getBPValue(uint256 _binStep) internal pure returns (uint256) {\n        if (_binStep == 0 || _binStep > Constants.BASIS_POINT_MAX) revert BinHelper__BinStepOverflows(_binStep);\n\n        unchecked {\n            // can't overflow as `max(result) = 2**128 + 10_000 << 128 / 10_000 < max(uint256)`\n            return Constants.SCALE + (_binStep << Constants.SCALE_OFFSET) / Constants.BASIS_POINT_MAX;\n        }\n    }"
}