{
    "Function": "removeStrategiesFromDepositWhitelist",
    "File": "src/contracts/core/StrategyManager.sol",
    "Parent Contracts": [
        "src/contracts/core/StrategyManagerStorage.sol",
        "src/contracts/interfaces/IStrategyManager.sol",
        "src/contracts/permissions/Pausable.sol",
        "src/contracts/interfaces/IPausable.sol",
        "lib/openzeppelin-contracts-upgradeable/contracts/security/ReentrancyGuardUpgradeable.sol",
        "lib/openzeppelin-contracts-upgradeable/contracts/access/OwnableUpgradeable.sol",
        "lib/openzeppelin-contracts-upgradeable/contracts/utils/ContextUpgradeable.sol",
        "lib/openzeppelin-contracts-upgradeable/contracts/proxy/utils/Initializable.sol"
    ],
    "High-Level Calls": [],
    "Internal Calls": [
        "onlyStrategyWhitelister"
    ],
    "Library Calls": [],
    "Low-Level Calls": [],
    "Code": "function removeStrategiesFromDepositWhitelist(IStrategy[] calldata strategiesToRemoveFromWhitelist) external onlyStrategyWhitelister {\n        uint256 strategiesToRemoveFromWhitelistLength = strategiesToRemoveFromWhitelist.length;\n        for (uint256 i = 0; i < strategiesToRemoveFromWhitelistLength;) {\n            // change storage and emit event only if strategy is already in whitelist\n            if (strategyIsWhitelistedForDeposit[strategiesToRemoveFromWhitelist[i]]) {\n                strategyIsWhitelistedForDeposit[strategiesToRemoveFromWhitelist[i]] = false;\n                emit StrategyRemovedFromDepositWhitelist(strategiesToRemoveFromWhitelist[i]);\n            }\n            unchecked {\n                ++i;\n            }\n        }\n    }"
}