{
    "Function": "epochs",
    "File": "contracts/market/OverlayV1OI.sol",
    "Parent Contracts": [],
    "High-Level Calls": [],
    "Internal Calls": [],
    "Library Calls": [],
    "Low-Level Calls": [],
    "Code": "function epochs (\n        uint _now,\n        uint _compounded\n    ) public view returns (\n        uint compoundings_,\n        uint tCompounding_\n    ) {\n\n        uint _compoundPeriod = compoundingPeriod;\n\n        compoundings_ = ( _now - _compounded ) / _compoundPeriod;\n\n        tCompounding_ = _compounded + ( compoundings_ * _compoundPeriod );\n\n    }"
}