{
    "Function": "divWadUp",
    "File": "src/FixedPointMathLib.sol",
    "Parent Contracts": [],
    "High-Level Calls": [],
    "Internal Calls": [
        "mulDivUp"
    ],
    "Library Calls": [],
    "Low-Level Calls": [],
    "Code": "function divWadUp(uint256 x, uint256 y) internal pure returns (uint256) {\n        return mulDivUp(x, WAD, y); // Equivalent to (x * WAD) / y rounded up.\n    }"
}