{
    "Function": "underlyingBalance",
    "File": "contracts/rubiconPools/BathToken.sol",
    "Parent Contracts": [],
    "High-Level Calls": [
        "IERC20",
        "SafeMath"
    ],
    "Internal Calls": [],
    "Library Calls": [
        "add"
    ],
    "Low-Level Calls": [],
    "Code": "function underlyingBalance() public view returns (uint256) {\n        uint256 _pool = IERC20(underlyingToken).balanceOf(address(this));\n        return _pool.add(outstandingAmount);\n    }"
}