{
    "Function": "add",
    "File": "contracts/libraries/FixedPoint.sol",
    "Parent Contracts": [],
    "High-Level Calls": [],
    "Internal Calls": [
        "_require"
    ],
    "Library Calls": [],
    "Low-Level Calls": [],
    "Code": "function add(uint256 a, uint256 b) internal pure returns (uint256) {\n        // Fixed Point addition is the same as regular checked addition\n\n        uint256 c = a + b;\n        _require(c >= a, Errors.ADD_OVERFLOW);\n        return c;\n    }"
}