{
    "Function": "getRange",
    "File": "contracts/libraries/StrategyLibrary.sol",
    "Parent Contracts": [],
    "High-Level Calls": [
        "SignedSafeMath",
        "SignedSafeMath"
    ],
    "Internal Calls": [],
    "Library Calls": [
        "mul",
        "div"
    ],
    "Low-Level Calls": [],
    "Code": "function getRange(int256 expectedValue, uint256 threshold) public pure returns (int256) {\n        if (threshold == 0) return 0;\n        return expectedValue.mul(int256(threshold)).div(DIVISOR);\n    }"
}