{
    "Function": "_checkOwner",
    "File": "contracts/oz/utils/Ownable.sol",
    "Parent Contracts": [
        "contracts/oz/utils/Context.sol"
    ],
    "High-Level Calls": [],
    "Internal Calls": [
        "require(bool,string)",
        "owner",
        "_msgSender"
    ],
    "Library Calls": [],
    "Low-Level Calls": [],
    "Code": "function _checkOwner() internal view virtual {\n        require(owner() == _msgSender(), \"Ownable: caller is not the owner\");\n    }"
}