{
    "Function": "constructor",
    "File": "contracts/proxy/UpgradeableProxy.sol",
    "Parent Contracts": [
        "contracts/proxy/OVMProxy.sol"
    ],
    "High-Level Calls": [
        "Address"
    ],
    "Internal Calls": [
        "_setImplementation",
        "keccak256(bytes)",
        "assert(bool)"
    ],
    "Library Calls": [
        "functionDelegateCall"
    ],
    "Low-Level Calls": [],
    "Code": "constructor(address _logic, bytes memory _data) payable {\n        assert(\n            _IMPLEMENTATION_SLOT ==\n                bytes32(uint256(keccak256(\"eip1967.proxy.implementation\")) - 1)\n        );\n        _setImplementation(_logic);\n        if (_data.length > 0) {\n            Address.functionDelegateCall(_logic, _data);\n        }\n    }"
}