{
    "Function": "slitherConstructorConstantVariables",
    "File": "contracts/test/SherlockProtocolManagerTest.sol",
    "Parent Contracts": [
        "contracts/managers/SherlockProtocolManager.sol",
        "contracts/managers/Manager.sol",
        "node_modules/@openzeppelin/contracts/security/Pausable.sol",
        "node_modules/@openzeppelin/contracts/access/Ownable.sol",
        "node_modules/@openzeppelin/contracts/utils/Context.sol",
        "contracts/interfaces/managers/ISherlockProtocolManager.sol",
        "contracts/interfaces/managers/IManager.sol"
    ],
    "High-Level Calls": [],
    "Internal Calls": [],
    "Library Calls": [],
    "Low-Level Calls": [],
    "Code": "contract SherlockProtocolManagerTest is SherlockProtocolManager {\n  constructor(IERC20 _token) SherlockProtocolManager(_token) {}\n\n  function privateSettleTotalDebt() external {\n    _settleTotalDebt();\n  }\n\n  function privatesetMinActiveBalance(uint256 _min) external {\n    minActiveBalance = _min;\n  }\n\n  function viewMinActiveBalance() external view returns (uint256) {\n    return minActiveBalance;\n  }\n\n  function viewProtocolAgent(bytes32 _protocol) external view returns (address) {\n    return protocolAgent_[_protocol];\n  }\n\n  function viewRemovedProtocolAgent(bytes32 _protocol) external view returns (address) {\n    return removedProtocolAgent[_protocol];\n  }\n\n  function viewRemovedProtocolClaimDeadline(bytes32 _protocol) external view returns (uint256) {\n    return removedProtocolClaimDeadline[_protocol];\n  }\n\n  function viewNonStakersPercentage(bytes32 _protocol) external view returns (uint256) {\n    return nonStakersPercentage[_protocol];\n  }\n\n  function viewPremium(bytes32 _protocol) external view returns (uint256) {\n    return premiums_[_protocol];\n  }\n\n  function viewCurrentCoverage(bytes32 _protocol) external view returns (uint256) {\n    return currentCoverage[_protocol];\n  }\n\n  function viewPreviousCoverage(bytes32 _protocol) external view returns (uint256) {\n    return previousCoverage[_protocol];\n  }\n\n  function viewLastAccountedEachProtocol(bytes32 _protocol) external view returns (uint256) {\n    return lastAccountedEachProtocol[_protocol];\n  }\n\n  function viewNonStakersClaimableByProtocol(bytes32 _protocol) external view returns (uint256) {\n    return nonStakersClaimableByProtocol[_protocol];\n  }\n\n  function viewLastAccountedGlobal() external view returns (uint256) {\n    return lastAccountedGlobal;\n  }\n\n  function viewAllPremiumsPerSecToStakers() external view returns (uint256) {\n    return allPremiumsPerSecToStakers;\n  }\n\n  function viewLastClaimablePremiumsForStakers() external view returns (uint256) {\n    return lastClaimablePremiumsForStakers;\n  }\n\n  function viewActiveBalance(bytes32 _protocol) external view returns (uint256) {\n    return activeBalances[_protocol];\n  }\n\n  function viewCalcForceRemoveBySecondsOfCoverage(bytes32 _protocol)\n    external\n    view\n    returns (uint256, bool)\n  {\n    return _calcForceRemoveBySecondsOfCoverage(_protocol);\n  }\n}"
}