{
    "Function": "oi",
    "File": "contracts/market/OverlayV1OI.sol",
    "Parent Contracts": [],
    "High-Level Calls": [],
    "Internal Calls": [
        "_oi",
        "epochs"
    ],
    "Library Calls": [],
    "Low-Level Calls": [],
    "Code": "function oi () public view returns (\n        uint oiLong_,\n        uint oiShort_,\n        uint oiLongShares_,\n        uint oiShortShares_\n    ) {\n\n        ( uint _compoundings, ) = epochs(block.timestamp, compounded);\n\n        (   oiLong_,\n            oiShort_,\n            oiLongShares_,\n            oiShortShares_ ) = _oi(_compoundings);\n\n    }"
}