{
  "contractName": "IKernel",
  "abi": [
    {
      "constant": true,
      "inputs": [],
      "name": "getRecoveryVault",
      "outputs": [
        {
          "name": "",
          "type": "address"
        }
      ],
      "payable": false,
      "stateMutability": "view",
      "type": "function"
    },
    {
      "constant": true,
      "inputs": [
        {
          "name": "token",
          "type": "address"
        }
      ],
      "name": "allowRecoverability",
      "outputs": [
        {
          "name": "",
          "type": "bool"
        }
      ],
      "payable": false,
      "stateMutability": "view",
      "type": "function"
    },
    {
      "constant": false,
      "inputs": [
        {
          "name": "token",
          "type": "address"
        }
      ],
      "name": "transferToVault",
      "outputs": [],
      "payable": false,
      "stateMutability": "nonpayable",
      "type": "function"
    },
    {
      "anonymous": false,
      "inputs": [
        {
          "indexed": true,
          "name": "vault",
          "type": "address"
        },
        {
          "indexed": true,
          "name": "token",
          "type": "address"
        },
        {
          "indexed": false,
          "name": "amount",
          "type": "uint256"
        }
      ],
      "name": "RecoverToVault",
      "type": "event"
    },
    {
      "anonymous": false,
      "inputs": [
        {
          "indexed": true,
          "name": "namespace",
          "type": "bytes32"
        },
        {
          "indexed": true,
          "name": "appId",
          "type": "bytes32"
        },
        {
          "indexed": false,
          "name": "app",
          "type": "address"
        }
      ],
      "name": "SetApp",
      "type": "event"
    },
    {
      "constant": true,
      "inputs": [],
      "name": "acl",
      "outputs": [
        {
          "name": "",
          "type": "address"
        }
      ],
      "payable": false,
      "stateMutability": "view",
      "type": "function"
    },
    {
      "constant": true,
      "inputs": [
        {
          "name": "who",
          "type": "address"
        },
        {
          "name": "where",
          "type": "address"
        },
        {
          "name": "what",
          "type": "bytes32"
        },
        {
          "name": "how",
          "type": "bytes"
        }
      ],
      "name": "hasPermission",
      "outputs": [
        {
          "name": "",
          "type": "bool"
        }
      ],
      "payable": false,
      "stateMutability": "view",
      "type": "function"
    },
    {
      "constant": false,
      "inputs": [
        {
          "name": "namespace",
          "type": "bytes32"
        },
        {
          "name": "appId",
          "type": "bytes32"
        },
        {
          "name": "app",
          "type": "address"
        }
      ],
      "name": "setApp",
      "outputs": [],
      "payable": false,
      "stateMutability": "nonpayable",
      "type": "function"
    },
    {
      "constant": true,
      "inputs": [
        {
          "name": "namespace",
          "type": "bytes32"
        },
        {
          "name": "appId",
          "type": "bytes32"
        }
      ],
      "name": "getApp",
      "outputs": [
        {
          "name": "",
          "type": "address"
        }
      ],
      "payable": false,
      "stateMutability": "view",
      "type": "function"
    }
  ],
  "metadata": "",
  "bytecode": "0x",
  "deployedBytecode": "0x",
  "sourceMap": "",
  "deployedSourceMap": "",
  "source": "/*\n * SPDX-License-Identitifer:    MIT\n */\n\npragma solidity ^0.4.24;\n\nimport \"../acl/IACL.sol\";\nimport \"../common/IVaultRecoverable.sol\";\n\n\ninterface IKernelEvents {\n    event SetApp(bytes32 indexed namespace, bytes32 indexed appId, address app);\n}\n\n\n// This should be an interface, but interfaces can't inherit yet :(\ncontract IKernel is IKernelEvents, IVaultRecoverable {\n    function acl() public view returns (IACL);\n    function hasPermission(address who, address where, bytes32 what, bytes how) public view returns (bool);\n\n    function setApp(bytes32 namespace, bytes32 appId, address app) public;\n    function getApp(bytes32 namespace, bytes32 appId) public view returns (address);\n}\n",
  "sourcePath": "@aragon/os/contracts/kernel/IKernel.sol",
  "ast": {
    "absolutePath": "@aragon/os/contracts/kernel/IKernel.sol",
    "exportedSymbols": {
      "IKernel": [
        8231
      ],
      "IKernelEvents": [
        8190
      ]
    },
    "id": 8232,
    "nodeType": "SourceUnit",
    "nodes": [
      {
        "id": 8179,
        "literals": [
          "solidity",
          "^",
          "0.4",
          ".24"
        ],
        "nodeType": "PragmaDirective",
        "src": "44:24:49"
      },
      {
        "absolutePath": "@aragon/os/contracts/acl/IACL.sol",
        "file": "../acl/IACL.sol",
        "id": 8180,
        "nodeType": "ImportDirective",
        "scope": 8232,
        "sourceUnit": 5305,
        "src": "70:25:49",
        "symbolAliases": [],
        "unitAlias": ""
      },
      {
        "absolutePath": "@aragon/os/contracts/common/IVaultRecoverable.sol",
        "file": "../common/IVaultRecoverable.sol",
        "id": 8181,
        "nodeType": "ImportDirective",
        "scope": 8232,
        "sourceUnit": 6344,
        "src": "96:41:49",
        "symbolAliases": [],
        "unitAlias": ""
      },
      {
        "baseContracts": [],
        "contractDependencies": [],
        "contractKind": "interface",
        "documentation": null,
        "fullyImplemented": true,
        "id": 8190,
        "linearizedBaseContracts": [
          8190
        ],
        "name": "IKernelEvents",
        "nodeType": "ContractDefinition",
        "nodes": [
          {
            "anonymous": false,
            "documentation": null,
            "id": 8189,
            "name": "SetApp",
            "nodeType": "EventDefinition",
            "parameters": {
              "id": 8188,
              "nodeType": "ParameterList",
              "parameters": [
                {
                  "constant": false,
                  "id": 8183,
                  "indexed": true,
                  "name": "namespace",
                  "nodeType": "VariableDeclaration",
                  "scope": 8189,
                  "src": "183:25:49",
                  "stateVariable": false,
                  "storageLocation": "default",
                  "typeDescriptions": {
                    "typeIdentifier": "t_bytes32",
                    "typeString": "bytes32"
                  },
                  "typeName": {
                    "id": 8182,
                    "name": "bytes32",
                    "nodeType": "ElementaryTypeName",
                    "src": "183:7:49",
                    "typeDescriptions": {
                      "typeIdentifier": "t_bytes32",
                      "typeString": "bytes32"
                    }
                  },
                  "value": null,
                  "visibility": "internal"
                },
                {
                  "constant": false,
                  "id": 8185,
                  "indexed": true,
                  "name": "appId",
                  "nodeType": "VariableDeclaration",
                  "scope": 8189,
                  "src": "210:21:49",
                  "stateVariable": false,
                  "storageLocation": "default",
                  "typeDescriptions": {
                    "typeIdentifier": "t_bytes32",
                    "typeString": "bytes32"
                  },
                  "typeName": {
                    "id": 8184,
                    "name": "bytes32",
                    "nodeType": "ElementaryTypeName",
                    "src": "210:7:49",
                    "typeDescriptions": {
                      "typeIdentifier": "t_bytes32",
                      "typeString": "bytes32"
                    }
                  },
                  "value": null,
                  "visibility": "internal"
                },
                {
                  "constant": false,
                  "id": 8187,
                  "indexed": false,
                  "name": "app",
                  "nodeType": "VariableDeclaration",
                  "scope": 8189,
                  "src": "233:11:49",
                  "stateVariable": false,
                  "storageLocation": "default",
                  "typeDescriptions": {
                    "typeIdentifier": "t_address",
                    "typeString": "address"
                  },
                  "typeName": {
                    "id": 8186,
                    "name": "address",
                    "nodeType": "ElementaryTypeName",
                    "src": "233:7:49",
                    "typeDescriptions": {
                      "typeIdentifier": "t_address",
                      "typeString": "address"
                    }
                  },
                  "value": null,
                  "visibility": "internal"
                }
              ],
              "src": "182:63:49"
            },
            "src": "170:76:49"
          }
        ],
        "scope": 8232,
        "src": "140:108:49"
      },
      {
        "baseContracts": [
          {
            "arguments": null,
            "baseName": {
              "contractScope": null,
              "id": 8191,
              "name": "IKernelEvents",
              "nodeType": "UserDefinedTypeName",
              "referencedDeclaration": 8190,
              "src": "339:13:49",
              "typeDescriptions": {
                "typeIdentifier": "t_contract$_IKernelEvents_$8190",
                "typeString": "contract IKernelEvents"
              }
            },
            "id": 8192,
            "nodeType": "InheritanceSpecifier",
            "src": "339:13:49"
          },
          {
            "arguments": null,
            "baseName": {
              "contractScope": null,
              "id": 8193,
              "name": "IVaultRecoverable",
              "nodeType": "UserDefinedTypeName",
              "referencedDeclaration": 6343,
              "src": "354:17:49",
              "typeDescriptions": {
                "typeIdentifier": "t_contract$_IVaultRecoverable_$6343",
                "typeString": "contract IVaultRecoverable"
              }
            },
            "id": 8194,
            "nodeType": "InheritanceSpecifier",
            "src": "354:17:49"
          }
        ],
        "contractDependencies": [
          6343,
          8190
        ],
        "contractKind": "contract",
        "documentation": null,
        "fullyImplemented": false,
        "id": 8231,
        "linearizedBaseContracts": [
          8231,
          6343,
          8190
        ],
        "name": "IKernel",
        "nodeType": "ContractDefinition",
        "nodes": [
          {
            "body": null,
            "documentation": null,
            "id": 8199,
            "implemented": false,
            "isConstructor": false,
            "isDeclaredConst": true,
            "modifiers": [],
            "name": "acl",
            "nodeType": "FunctionDefinition",
            "parameters": {
              "id": 8195,
              "nodeType": "ParameterList",
              "parameters": [],
              "src": "390:2:49"
            },
            "payable": false,
            "returnParameters": {
              "id": 8198,
              "nodeType": "ParameterList",
              "parameters": [
                {
                  "constant": false,
                  "id": 8197,
                  "name": "",
                  "nodeType": "VariableDeclaration",
                  "scope": 8199,
                  "src": "414:4:49",
                  "stateVariable": false,
                  "storageLocation": "default",
                  "typeDescriptions": {
                    "typeIdentifier": "t_contract$_IACL_$5304",
                    "typeString": "contract IACL"
                  },
                  "typeName": {
                    "contractScope": null,
                    "id": 8196,
                    "name": "IACL",
                    "nodeType": "UserDefinedTypeName",
                    "referencedDeclaration": 5304,
                    "src": "414:4:49",
                    "typeDescriptions": {
                      "typeIdentifier": "t_contract$_IACL_$5304",
                      "typeString": "contract IACL"
                    }
                  },
                  "value": null,
                  "visibility": "internal"
                }
              ],
              "src": "413:6:49"
            },
            "scope": 8231,
            "src": "378:42:49",
            "stateMutability": "view",
            "superFunction": null,
            "visibility": "public"
          },
          {
            "body": null,
            "documentation": null,
            "id": 8212,
            "implemented": false,
            "isConstructor": false,
            "isDeclaredConst": true,
            "modifiers": [],
            "name": "hasPermission",
            "nodeType": "FunctionDefinition",
            "parameters": {
              "id": 8208,
              "nodeType": "ParameterList",
              "parameters": [
                {
                  "constant": false,
                  "id": 8201,
                  "name": "who",
                  "nodeType": "VariableDeclaration",
                  "scope": 8212,
                  "src": "448:11:49",
                  "stateVariable": false,
                  "storageLocation": "default",
                  "typeDescriptions": {
                    "typeIdentifier": "t_address",
                    "typeString": "address"
                  },
                  "typeName": {
                    "id": 8200,
                    "name": "address",
                    "nodeType": "ElementaryTypeName",
                    "src": "448:7:49",
                    "typeDescriptions": {
                      "typeIdentifier": "t_address",
                      "typeString": "address"
                    }
                  },
                  "value": null,
                  "visibility": "internal"
                },
                {
                  "constant": false,
                  "id": 8203,
                  "name": "where",
                  "nodeType": "VariableDeclaration",
                  "scope": 8212,
                  "src": "461:13:49",
                  "stateVariable": false,
                  "storageLocation": "default",
                  "typeDescriptions": {
                    "typeIdentifier": "t_address",
                    "typeString": "address"
                  },
                  "typeName": {
                    "id": 8202,
                    "name": "address",
                    "nodeType": "ElementaryTypeName",
                    "src": "461:7:49",
                    "typeDescriptions": {
                      "typeIdentifier": "t_address",
                      "typeString": "address"
                    }
                  },
                  "value": null,
                  "visibility": "internal"
                },
                {
                  "constant": false,
                  "id": 8205,
                  "name": "what",
                  "nodeType": "VariableDeclaration",
                  "scope": 8212,
                  "src": "476:12:49",
                  "stateVariable": false,
                  "storageLocation": "default",
                  "typeDescriptions": {
                    "typeIdentifier": "t_bytes32",
                    "typeString": "bytes32"
                  },
                  "typeName": {
                    "id": 8204,
                    "name": "bytes32",
                    "nodeType": "ElementaryTypeName",
                    "src": "476:7:49",
                    "typeDescriptions": {
                      "typeIdentifier": "t_bytes32",
                      "typeString": "bytes32"
                    }
                  },
                  "value": null,
                  "visibility": "internal"
                },
                {
                  "constant": false,
                  "id": 8207,
                  "name": "how",
                  "nodeType": "VariableDeclaration",
                  "scope": 8212,
                  "src": "490:9:49",
                  "stateVariable": false,
                  "storageLocation": "default",
                  "typeDescriptions": {
                    "typeIdentifier": "t_bytes_memory_ptr",
                    "typeString": "bytes"
                  },
                  "typeName": {
                    "id": 8206,
                    "name": "bytes",
                    "nodeType": "ElementaryTypeName",
                    "src": "490:5:49",
                    "typeDescriptions": {
                      "typeIdentifier": "t_bytes_storage_ptr",
                      "typeString": "bytes"
                    }
                  },
                  "value": null,
                  "visibility": "internal"
                }
              ],
              "src": "447:53:49"
            },
            "payable": false,
            "returnParameters": {
              "id": 8211,
              "nodeType": "ParameterList",
              "parameters": [
                {
                  "constant": false,
                  "id": 8210,
                  "name": "",
                  "nodeType": "VariableDeclaration",
                  "scope": 8212,
                  "src": "522:4:49",
                  "stateVariable": false,
                  "storageLocation": "default",
                  "typeDescriptions": {
                    "typeIdentifier": "t_bool",
                    "typeString": "bool"
                  },
                  "typeName": {
                    "id": 8209,
                    "name": "bool",
                    "nodeType": "ElementaryTypeName",
                    "src": "522:4:49",
                    "typeDescriptions": {
                      "typeIdentifier": "t_bool",
                      "typeString": "bool"
                    }
                  },
                  "value": null,
                  "visibility": "internal"
                }
              ],
              "src": "521:6:49"
            },
            "scope": 8231,
            "src": "425:103:49",
            "stateMutability": "view",
            "superFunction": null,
            "visibility": "public"
          },
          {
            "body": null,
            "documentation": null,
            "id": 8221,
            "implemented": false,
            "isConstructor": false,
            "isDeclaredConst": false,
            "modifiers": [],
            "name": "setApp",
            "nodeType": "FunctionDefinition",
            "parameters": {
              "id": 8219,
              "nodeType": "ParameterList",
              "parameters": [
                {
                  "constant": false,
                  "id": 8214,
                  "name": "namespace",
                  "nodeType": "VariableDeclaration",
                  "scope": 8221,
                  "src": "550:17:49",
                  "stateVariable": false,
                  "storageLocation": "default",
                  "typeDescriptions": {
                    "typeIdentifier": "t_bytes32",
                    "typeString": "bytes32"
                  },
                  "typeName": {
                    "id": 8213,
                    "name": "bytes32",
                    "nodeType": "ElementaryTypeName",
                    "src": "550:7:49",
                    "typeDescriptions": {
                      "typeIdentifier": "t_bytes32",
                      "typeString": "bytes32"
                    }
                  },
                  "value": null,
                  "visibility": "internal"
                },
                {
                  "constant": false,
                  "id": 8216,
                  "name": "appId",
                  "nodeType": "VariableDeclaration",
                  "scope": 8221,
                  "src": "569:13:49",
                  "stateVariable": false,
                  "storageLocation": "default",
                  "typeDescriptions": {
                    "typeIdentifier": "t_bytes32",
                    "typeString": "bytes32"
                  },
                  "typeName": {
                    "id": 8215,
                    "name": "bytes32",
                    "nodeType": "ElementaryTypeName",
                    "src": "569:7:49",
                    "typeDescriptions": {
                      "typeIdentifier": "t_bytes32",
                      "typeString": "bytes32"
                    }
                  },
                  "value": null,
                  "visibility": "internal"
                },
                {
                  "constant": false,
                  "id": 8218,
                  "name": "app",
                  "nodeType": "VariableDeclaration",
                  "scope": 8221,
                  "src": "584:11:49",
                  "stateVariable": false,
                  "storageLocation": "default",
                  "typeDescriptions": {
                    "typeIdentifier": "t_address",
                    "typeString": "address"
                  },
                  "typeName": {
                    "id": 8217,
                    "name": "address",
                    "nodeType": "ElementaryTypeName",
                    "src": "584:7:49",
                    "typeDescriptions": {
                      "typeIdentifier": "t_address",
                      "typeString": "address"
                    }
                  },
                  "value": null,
                  "visibility": "internal"
                }
              ],
              "src": "549:47:49"
            },
            "payable": false,
            "returnParameters": {
              "id": 8220,
              "nodeType": "ParameterList",
              "parameters": [],
              "src": "603:0:49"
            },
            "scope": 8231,
            "src": "534:70:49",
            "stateMutability": "nonpayable",
            "superFunction": null,
            "visibility": "public"
          },
          {
            "body": null,
            "documentation": null,
            "id": 8230,
            "implemented": false,
            "isConstructor": false,
            "isDeclaredConst": true,
            "modifiers": [],
            "name": "getApp",
            "nodeType": "FunctionDefinition",
            "parameters": {
              "id": 8226,
              "nodeType": "ParameterList",
              "parameters": [
                {
                  "constant": false,
                  "id": 8223,
                  "name": "namespace",
                  "nodeType": "VariableDeclaration",
                  "scope": 8230,
                  "src": "625:17:49",
                  "stateVariable": false,
                  "storageLocation": "default",
                  "typeDescriptions": {
                    "typeIdentifier": "t_bytes32",
                    "typeString": "bytes32"
                  },
                  "typeName": {
                    "id": 8222,
                    "name": "bytes32",
                    "nodeType": "ElementaryTypeName",
                    "src": "625:7:49",
                    "typeDescriptions": {
                      "typeIdentifier": "t_bytes32",
                      "typeString": "bytes32"
                    }
                  },
                  "value": null,
                  "visibility": "internal"
                },
                {
                  "constant": false,
                  "id": 8225,
                  "name": "appId",
                  "nodeType": "VariableDeclaration",
                  "scope": 8230,
                  "src": "644:13:49",
                  "stateVariable": false,
                  "storageLocation": "default",
                  "typeDescriptions": {
                    "typeIdentifier": "t_bytes32",
                    "typeString": "bytes32"
                  },
                  "typeName": {
                    "id": 8224,
                    "name": "bytes32",
                    "nodeType": "ElementaryTypeName",
                    "src": "644:7:49",
                    "typeDescriptions": {
                      "typeIdentifier": "t_bytes32",
                      "typeString": "bytes32"
                    }
                  },
                  "value": null,
                  "visibility": "internal"
                }
              ],
              "src": "624:34:49"
            },
            "payable": false,
            "returnParameters": {
              "id": 8229,
              "nodeType": "ParameterList",
              "parameters": [
                {
                  "constant": false,
                  "id": 8228,
                  "name": "",
                  "nodeType": "VariableDeclaration",
                  "scope": 8230,
                  "src": "680:7:49",
                  "stateVariable": false,
                  "storageLocation": "default",
                  "typeDescriptions": {
                    "typeIdentifier": "t_address",
                    "typeString": "address"
                  },
                  "typeName": {
                    "id": 8227,
                    "name": "address",
                    "nodeType": "ElementaryTypeName",
                    "src": "680:7:49",
                    "typeDescriptions": {
                      "typeIdentifier": "t_address",
                      "typeString": "address"
                    }
                  },
                  "value": null,
                  "visibility": "internal"
                }
              ],
              "src": "679:9:49"
            },
            "scope": 8231,
            "src": "609:80:49",
            "stateMutability": "view",
            "superFunction": null,
            "visibility": "public"
          }
        ],
        "scope": 8232,
        "src": "319:372:49"
      }
    ],
    "src": "44:648:49"
  },
  "legacyAST": {
    "absolutePath": "@aragon/os/contracts/kernel/IKernel.sol",
    "exportedSymbols": {
      "IKernel": [
        8231
      ],
      "IKernelEvents": [
        8190
      ]
    },
    "id": 8232,
    "nodeType": "SourceUnit",
    "nodes": [
      {
        "id": 8179,
        "literals": [
          "solidity",
          "^",
          "0.4",
          ".24"
        ],
        "nodeType": "PragmaDirective",
        "src": "44:24:49"
      },
      {
        "absolutePath": "@aragon/os/contracts/acl/IACL.sol",
        "file": "../acl/IACL.sol",
        "id": 8180,
        "nodeType": "ImportDirective",
        "scope": 8232,
        "sourceUnit": 5305,
        "src": "70:25:49",
        "symbolAliases": [],
        "unitAlias": ""
      },
      {
        "absolutePath": "@aragon/os/contracts/common/IVaultRecoverable.sol",
        "file": "../common/IVaultRecoverable.sol",
        "id": 8181,
        "nodeType": "ImportDirective",
        "scope": 8232,
        "sourceUnit": 6344,
        "src": "96:41:49",
        "symbolAliases": [],
        "unitAlias": ""
      },
      {
        "baseContracts": [],
        "contractDependencies": [],
        "contractKind": "interface",
        "documentation": null,
        "fullyImplemented": true,
        "id": 8190,
        "linearizedBaseContracts": [
          8190
        ],
        "name": "IKernelEvents",
        "nodeType": "ContractDefinition",
        "nodes": [
          {
            "anonymous": false,
            "documentation": null,
            "id": 8189,
            "name": "SetApp",
            "nodeType": "EventDefinition",
            "parameters": {
              "id": 8188,
              "nodeType": "ParameterList",
              "parameters": [
                {
                  "constant": false,
                  "id": 8183,
                  "indexed": true,
                  "name": "namespace",
                  "nodeType": "VariableDeclaration",
                  "scope": 8189,
                  "src": "183:25:49",
                  "stateVariable": false,
                  "storageLocation": "default",
                  "typeDescriptions": {
                    "typeIdentifier": "t_bytes32",
                    "typeString": "bytes32"
                  },
                  "typeName": {
                    "id": 8182,
                    "name": "bytes32",
                    "nodeType": "ElementaryTypeName",
                    "src": "183:7:49",
                    "typeDescriptions": {
                      "typeIdentifier": "t_bytes32",
                      "typeString": "bytes32"
                    }
                  },
                  "value": null,
                  "visibility": "internal"
                },
                {
                  "constant": false,
                  "id": 8185,
                  "indexed": true,
                  "name": "appId",
                  "nodeType": "VariableDeclaration",
                  "scope": 8189,
                  "src": "210:21:49",
                  "stateVariable": false,
                  "storageLocation": "default",
                  "typeDescriptions": {
                    "typeIdentifier": "t_bytes32",
                    "typeString": "bytes32"
                  },
                  "typeName": {
                    "id": 8184,
                    "name": "bytes32",
                    "nodeType": "ElementaryTypeName",
                    "src": "210:7:49",
                    "typeDescriptions": {
                      "typeIdentifier": "t_bytes32",
                      "typeString": "bytes32"
                    }
                  },
                  "value": null,
                  "visibility": "internal"
                },
                {
                  "constant": false,
                  "id": 8187,
                  "indexed": false,
                  "name": "app",
                  "nodeType": "VariableDeclaration",
                  "scope": 8189,
                  "src": "233:11:49",
                  "stateVariable": false,
                  "storageLocation": "default",
                  "typeDescriptions": {
                    "typeIdentifier": "t_address",
                    "typeString": "address"
                  },
                  "typeName": {
                    "id": 8186,
                    "name": "address",
                    "nodeType": "ElementaryTypeName",
                    "src": "233:7:49",
                    "typeDescriptions": {
                      "typeIdentifier": "t_address",
                      "typeString": "address"
                    }
                  },
                  "value": null,
                  "visibility": "internal"
                }
              ],
              "src": "182:63:49"
            },
            "src": "170:76:49"
          }
        ],
        "scope": 8232,
        "src": "140:108:49"
      },
      {
        "baseContracts": [
          {
            "arguments": null,
            "baseName": {
              "contractScope": null,
              "id": 8191,
              "name": "IKernelEvents",
              "nodeType": "UserDefinedTypeName",
              "referencedDeclaration": 8190,
              "src": "339:13:49",
              "typeDescriptions": {
                "typeIdentifier": "t_contract$_IKernelEvents_$8190",
                "typeString": "contract IKernelEvents"
              }
            },
            "id": 8192,
            "nodeType": "InheritanceSpecifier",
            "src": "339:13:49"
          },
          {
            "arguments": null,
            "baseName": {
              "contractScope": null,
              "id": 8193,
              "name": "IVaultRecoverable",
              "nodeType": "UserDefinedTypeName",
              "referencedDeclaration": 6343,
              "src": "354:17:49",
              "typeDescriptions": {
                "typeIdentifier": "t_contract$_IVaultRecoverable_$6343",
                "typeString": "contract IVaultRecoverable"
              }
            },
            "id": 8194,
            "nodeType": "InheritanceSpecifier",
            "src": "354:17:49"
          }
        ],
        "contractDependencies": [
          6343,
          8190
        ],
        "contractKind": "contract",
        "documentation": null,
        "fullyImplemented": false,
        "id": 8231,
        "linearizedBaseContracts": [
          8231,
          6343,
          8190
        ],
        "name": "IKernel",
        "nodeType": "ContractDefinition",
        "nodes": [
          {
            "body": null,
            "documentation": null,
            "id": 8199,
            "implemented": false,
            "isConstructor": false,
            "isDeclaredConst": true,
            "modifiers": [],
            "name": "acl",
            "nodeType": "FunctionDefinition",
            "parameters": {
              "id": 8195,
              "nodeType": "ParameterList",
              "parameters": [],
              "src": "390:2:49"
            },
            "payable": false,
            "returnParameters": {
              "id": 8198,
              "nodeType": "ParameterList",
              "parameters": [
                {
                  "constant": false,
                  "id": 8197,
                  "name": "",
                  "nodeType": "VariableDeclaration",
                  "scope": 8199,
                  "src": "414:4:49",
                  "stateVariable": false,
                  "storageLocation": "default",
                  "typeDescriptions": {
                    "typeIdentifier": "t_contract$_IACL_$5304",
                    "typeString": "contract IACL"
                  },
                  "typeName": {
                    "contractScope": null,
                    "id": 8196,
                    "name": "IACL",
                    "nodeType": "UserDefinedTypeName",
                    "referencedDeclaration": 5304,
                    "src": "414:4:49",
                    "typeDescriptions": {
                      "typeIdentifier": "t_contract$_IACL_$5304",
                      "typeString": "contract IACL"
                    }
                  },
                  "value": null,
                  "visibility": "internal"
                }
              ],
              "src": "413:6:49"
            },
            "scope": 8231,
            "src": "378:42:49",
            "stateMutability": "view",
            "superFunction": null,
            "visibility": "public"
          },
          {
            "body": null,
            "documentation": null,
            "id": 8212,
            "implemented": false,
            "isConstructor": false,
            "isDeclaredConst": true,
            "modifiers": [],
            "name": "hasPermission",
            "nodeType": "FunctionDefinition",
            "parameters": {
              "id": 8208,
              "nodeType": "ParameterList",
              "parameters": [
                {
                  "constant": false,
                  "id": 8201,
                  "name": "who",
                  "nodeType": "VariableDeclaration",
                  "scope": 8212,
                  "src": "448:11:49",
                  "stateVariable": false,
                  "storageLocation": "default",
                  "typeDescriptions": {
                    "typeIdentifier": "t_address",
                    "typeString": "address"
                  },
                  "typeName": {
                    "id": 8200,
                    "name": "address",
                    "nodeType": "ElementaryTypeName",
                    "src": "448:7:49",
                    "typeDescriptions": {
                      "typeIdentifier": "t_address",
                      "typeString": "address"
                    }
                  },
                  "value": null,
                  "visibility": "internal"
                },
                {
                  "constant": false,
                  "id": 8203,
                  "name": "where",
                  "nodeType": "VariableDeclaration",
                  "scope": 8212,
                  "src": "461:13:49",
                  "stateVariable": false,
                  "storageLocation": "default",
                  "typeDescriptions": {
                    "typeIdentifier": "t_address",
                    "typeString": "address"
                  },
                  "typeName": {
                    "id": 8202,
                    "name": "address",
                    "nodeType": "ElementaryTypeName",
                    "src": "461:7:49",
                    "typeDescriptions": {
                      "typeIdentifier": "t_address",
                      "typeString": "address"
                    }
                  },
                  "value": null,
                  "visibility": "internal"
                },
                {
                  "constant": false,
                  "id": 8205,
                  "name": "what",
                  "nodeType": "VariableDeclaration",
                  "scope": 8212,
                  "src": "476:12:49",
                  "stateVariable": false,
                  "storageLocation": "default",
                  "typeDescriptions": {
                    "typeIdentifier": "t_bytes32",
                    "typeString": "bytes32"
                  },
                  "typeName": {
                    "id": 8204,
                    "name": "bytes32",
                    "nodeType": "ElementaryTypeName",
                    "src": "476:7:49",
                    "typeDescriptions": {
                      "typeIdentifier": "t_bytes32",
                      "typeString": "bytes32"
                    }
                  },
                  "value": null,
                  "visibility": "internal"
                },
                {
                  "constant": false,
                  "id": 8207,
                  "name": "how",
                  "nodeType": "VariableDeclaration",
                  "scope": 8212,
                  "src": "490:9:49",
                  "stateVariable": false,
                  "storageLocation": "default",
                  "typeDescriptions": {
                    "typeIdentifier": "t_bytes_memory_ptr",
                    "typeString": "bytes"
                  },
                  "typeName": {
                    "id": 8206,
                    "name": "bytes",
                    "nodeType": "ElementaryTypeName",
                    "src": "490:5:49",
                    "typeDescriptions": {
                      "typeIdentifier": "t_bytes_storage_ptr",
                      "typeString": "bytes"
                    }
                  },
                  "value": null,
                  "visibility": "internal"
                }
              ],
              "src": "447:53:49"
            },
            "payable": false,
            "returnParameters": {
              "id": 8211,
              "nodeType": "ParameterList",
              "parameters": [
                {
                  "constant": false,
                  "id": 8210,
                  "name": "",
                  "nodeType": "VariableDeclaration",
                  "scope": 8212,
                  "src": "522:4:49",
                  "stateVariable": false,
                  "storageLocation": "default",
                  "typeDescriptions": {
                    "typeIdentifier": "t_bool",
                    "typeString": "bool"
                  },
                  "typeName": {
                    "id": 8209,
                    "name": "bool",
                    "nodeType": "ElementaryTypeName",
                    "src": "522:4:49",
                    "typeDescriptions": {
                      "typeIdentifier": "t_bool",
                      "typeString": "bool"
                    }
                  },
                  "value": null,
                  "visibility": "internal"
                }
              ],
              "src": "521:6:49"
            },
            "scope": 8231,
            "src": "425:103:49",
            "stateMutability": "view",
            "superFunction": null,
            "visibility": "public"
          },
          {
            "body": null,
            "documentation": null,
            "id": 8221,
            "implemented": false,
            "isConstructor": false,
            "isDeclaredConst": false,
            "modifiers": [],
            "name": "setApp",
            "nodeType": "FunctionDefinition",
            "parameters": {
              "id": 8219,
              "nodeType": "ParameterList",
              "parameters": [
                {
                  "constant": false,
                  "id": 8214,
                  "name": "namespace",
                  "nodeType": "VariableDeclaration",
                  "scope": 8221,
                  "src": "550:17:49",
                  "stateVariable": false,
                  "storageLocation": "default",
                  "typeDescriptions": {
                    "typeIdentifier": "t_bytes32",
                    "typeString": "bytes32"
                  },
                  "typeName": {
                    "id": 8213,
                    "name": "bytes32",
                    "nodeType": "ElementaryTypeName",
                    "src": "550:7:49",
                    "typeDescriptions": {
                      "typeIdentifier": "t_bytes32",
                      "typeString": "bytes32"
                    }
                  },
                  "value": null,
                  "visibility": "internal"
                },
                {
                  "constant": false,
                  "id": 8216,
                  "name": "appId",
                  "nodeType": "VariableDeclaration",
                  "scope": 8221,
                  "src": "569:13:49",
                  "stateVariable": false,
                  "storageLocation": "default",
                  "typeDescriptions": {
                    "typeIdentifier": "t_bytes32",
                    "typeString": "bytes32"
                  },
                  "typeName": {
                    "id": 8215,
                    "name": "bytes32",
                    "nodeType": "ElementaryTypeName",
                    "src": "569:7:49",
                    "typeDescriptions": {
                      "typeIdentifier": "t_bytes32",
                      "typeString": "bytes32"
                    }
                  },
                  "value": null,
                  "visibility": "internal"
                },
                {
                  "constant": false,
                  "id": 8218,
                  "name": "app",
                  "nodeType": "VariableDeclaration",
                  "scope": 8221,
                  "src": "584:11:49",
                  "stateVariable": false,
                  "storageLocation": "default",
                  "typeDescriptions": {
                    "typeIdentifier": "t_address",
                    "typeString": "address"
                  },
                  "typeName": {
                    "id": 8217,
                    "name": "address",
                    "nodeType": "ElementaryTypeName",
                    "src": "584:7:49",
                    "typeDescriptions": {
                      "typeIdentifier": "t_address",
                      "typeString": "address"
                    }
                  },
                  "value": null,
                  "visibility": "internal"
                }
              ],
              "src": "549:47:49"
            },
            "payable": false,
            "returnParameters": {
              "id": 8220,
              "nodeType": "ParameterList",
              "parameters": [],
              "src": "603:0:49"
            },
            "scope": 8231,
            "src": "534:70:49",
            "stateMutability": "nonpayable",
            "superFunction": null,
            "visibility": "public"
          },
          {
            "body": null,
            "documentation": null,
            "id": 8230,
            "implemented": false,
            "isConstructor": false,
            "isDeclaredConst": true,
            "modifiers": [],
            "name": "getApp",
            "nodeType": "FunctionDefinition",
            "parameters": {
              "id": 8226,
              "nodeType": "ParameterList",
              "parameters": [
                {
                  "constant": false,
                  "id": 8223,
                  "name": "namespace",
                  "nodeType": "VariableDeclaration",
                  "scope": 8230,
                  "src": "625:17:49",
                  "stateVariable": false,
                  "storageLocation": "default",
                  "typeDescriptions": {
                    "typeIdentifier": "t_bytes32",
                    "typeString": "bytes32"
                  },
                  "typeName": {
                    "id": 8222,
                    "name": "bytes32",
                    "nodeType": "ElementaryTypeName",
                    "src": "625:7:49",
                    "typeDescriptions": {
                      "typeIdentifier": "t_bytes32",
                      "typeString": "bytes32"
                    }
                  },
                  "value": null,
                  "visibility": "internal"
                },
                {
                  "constant": false,
                  "id": 8225,
                  "name": "appId",
                  "nodeType": "VariableDeclaration",
                  "scope": 8230,
                  "src": "644:13:49",
                  "stateVariable": false,
                  "storageLocation": "default",
                  "typeDescriptions": {
                    "typeIdentifier": "t_bytes32",
                    "typeString": "bytes32"
                  },
                  "typeName": {
                    "id": 8224,
                    "name": "bytes32",
                    "nodeType": "ElementaryTypeName",
                    "src": "644:7:49",
                    "typeDescriptions": {
                      "typeIdentifier": "t_bytes32",
                      "typeString": "bytes32"
                    }
                  },
                  "value": null,
                  "visibility": "internal"
                }
              ],
              "src": "624:34:49"
            },
            "payable": false,
            "returnParameters": {
              "id": 8229,
              "nodeType": "ParameterList",
              "parameters": [
                {
                  "constant": false,
                  "id": 8228,
                  "name": "",
                  "nodeType": "VariableDeclaration",
                  "scope": 8230,
                  "src": "680:7:49",
                  "stateVariable": false,
                  "storageLocation": "default",
                  "typeDescriptions": {
                    "typeIdentifier": "t_address",
                    "typeString": "address"
                  },
                  "typeName": {
                    "id": 8227,
                    "name": "address",
                    "nodeType": "ElementaryTypeName",
                    "src": "680:7:49",
                    "typeDescriptions": {
                      "typeIdentifier": "t_address",
                      "typeString": "address"
                    }
                  },
                  "value": null,
                  "visibility": "internal"
                }
              ],
              "src": "679:9:49"
            },
            "scope": 8231,
            "src": "609:80:49",
            "stateMutability": "view",
            "superFunction": null,
            "visibility": "public"
          }
        ],
        "scope": 8232,
        "src": "319:372:49"
      }
    ],
    "src": "44:648:49"
  },
  "compiler": {
    "name": "solc",
    "version": "0.4.24+commit.e67f0147.Emscripten.clang"
  },
  "networks": {},
  "schemaVersion": "3.2.0",
  "updatedAt": "2020-06-07T23:27:00.598Z",
  "devdoc": {
    "methods": {}
  },
  "userdoc": {
    "methods": {}
  }
}