{
    "Function": "_verifyProtocolExists",
    "File": "contracts/managers/SherlockProtocolManager.sol",
    "Parent Contracts": [
        "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": [
        "revert ProtocolNotExists(bytes32)"
    ],
    "Library Calls": [],
    "Low-Level Calls": [],
    "Code": "function _verifyProtocolExists(bytes32 _protocol) internal view returns (address _protocolAgent) {\n    _protocolAgent = protocolAgent_[_protocol];\n    if (_protocolAgent == address(0)) revert ProtocolNotExists(_protocol);\n  }"
}