{
    "Function": "unauthorize",
    "File": "src/Caller.sol",
    "Parent Contracts": [
        "lib/openzeppelin-contracts/contracts/metatx/ERC2771Context.sol",
        "lib/openzeppelin-contracts/contracts/utils/Context.sol",
        "lib/openzeppelin-contracts/contracts/utils/cryptography/EIP712.sol"
    ],
    "High-Level Calls": [
        "EnumerableSet"
    ],
    "Internal Calls": [
        "require(bool,string)",
        "_msgSender"
    ],
    "Library Calls": [
        "remove"
    ],
    "Low-Level Calls": [],
    "Code": "function unauthorize(address user) public {\n        address sender = _msgSender();\n        require(_authorized[sender].remove(user), \"Address is not authorized\");\n        emit Unauthorized(sender, user);\n    }"
}