{
    "Function": "executeEmergency",
    "File": "contracts/governance/TimelockControllerEmergency.sol",
    "Parent Contracts": [
        "node_modules/@openzeppelin/contracts/access/AccessControl.sol",
        "node_modules/@openzeppelin/contracts/utils/introspection/ERC165.sol",
        "node_modules/@openzeppelin/contracts/utils/introspection/IERC165.sol",
        "node_modules/@openzeppelin/contracts/access/IAccessControl.sol",
        "node_modules/@openzeppelin/contracts/utils/Context.sol"
    ],
    "High-Level Calls": [],
    "Internal Calls": [
        "onlyRole",
        "_call"
    ],
    "Library Calls": [],
    "Low-Level Calls": [],
    "Code": "function executeEmergency(\n        address target,\n        uint256 value,\n        bytes calldata data\n    ) public payable onlyRole(EMERGENCY_ROLE) {\n        _call(0, 0, target, value, data);\n    }"
}