{
    "Function": "slitherConstructorConstantVariables",
    "File": "contracts/its/utils/Pausable.sol",
    "Parent Contracts": [
        "contracts/its/interfaces/IPausable.sol"
    ],
    "High-Level Calls": [],
    "Internal Calls": [],
    "Library Calls": [],
    "Low-Level Calls": [],
    "Code": "contract Pausable is IPausable {\n    // uint256(keccak256('paused')) - 1\n    uint256 internal constant PAUSE_SLOT = 0xee35723ac350a69d2a92d3703f17439cbaadf2f093a21ba5bf5f1a53eb2a14d8;\n\n    /**\n     * @notice A modifier that throws a Paused custom error if the contract is paused\n     * @dev This modifier should be used with functions that can be paused\n     */\n    modifier notPaused() {\n        if (isPaused()) revert Paused();\n        _;\n    }\n\n    /**\n     * @notice Check if the contract is paused\n     * @return paused A boolean representing the pause status. True if paused, false otherwise.\n     */\n    function isPaused() public view returns (bool paused) {\n        assembly {\n            paused := sload(PAUSE_SLOT)\n        }\n    }\n\n    /**\n     * @notice Sets the pause status of the contract\n     * @dev This is an internal function, meaning it can only be called from within the contract itself\n     * or from derived contracts.\n     * @param paused The new pause status\n     */\n    function _setPaused(bool paused) internal {\n        assembly {\n            sstore(PAUSE_SLOT, paused)\n        }\n\n        emit PausedSet(paused);\n    }\n}"
}