{
    "Function": "_finalImplementation",
    "File": "contracts/gmp-sdk/upgradable/FinalProxy.sol",
    "Parent Contracts": [
        "contracts/gmp-sdk/interfaces/IFinalProxy.sol",
        "contracts/gmp-sdk/upgradable/Proxy.sol",
        "contracts/gmp-sdk/upgradable/BaseProxy.sol",
        "contracts/gmp-sdk/interfaces/IProxy.sol"
    ],
    "High-Level Calls": [
        "Create3"
    ],
    "Internal Calls": [
        "code(address)"
    ],
    "Library Calls": [
        "deployedAddress"
    ],
    "Low-Level Calls": [],
    "Code": "function _finalImplementation() internal view virtual returns (address implementation_) {\n        /**\n         * @dev Computing the address is cheaper than using storage\n         */\n        implementation_ = Create3.deployedAddress(address(this), FINAL_IMPLEMENTATION_SALT);\n\n        if (implementation_.code.length == 0) implementation_ = address(0);\n    }"
}