{
    "Function": "isExpired",
    "File": "contracts/lib/openzeppelin-contracts/contracts/utils/Timers.sol",
    "Parent Contracts": [],
    "High-Level Calls": [],
    "Internal Calls": [
        "isStarted"
    ],
    "Library Calls": [],
    "Low-Level Calls": [],
    "Code": "function isExpired(BlockNumber memory timer) internal view returns (bool) {\n        return isStarted(timer) && timer._deadline <= block.number;\n    }"
}