{
    "Function": "_receivableDripsCyclesRange",
    "File": "src/Drips.sol",
    "Parent Contracts": [],
    "High-Level Calls": [],
    "Internal Calls": [
        "_dripsStorage",
        "_cycleOf",
        "_currTimestamp"
    ],
    "Library Calls": [],
    "Low-Level Calls": [],
    "Code": "function _receivableDripsCyclesRange(uint256 userId, uint256 assetId)\n        private\n        view\n        returns (uint32 fromCycle, uint32 toCycle)\n    {\n        fromCycle = _dripsStorage().states[assetId][userId].nextReceivableCycle;\n        toCycle = _cycleOf(_currTimestamp());\n        // slither-disable-next-line timestamp\n        if (fromCycle == 0 || toCycle < fromCycle) {\n            toCycle = fromCycle;\n        }\n    }"
}