{
  "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": "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"
    }
  ],
  "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\n// This should be an interface, but interfaces can't inherit yet :(\ncontract IKernel is IVaultRecoverable {\n    event SetApp(bytes32 indexed namespace, bytes32 indexed appId, address app);\n\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": [
        10248
      ]
    },
    "id": 10249,
    "nodeType": "SourceUnit",
    "nodes": [
      {
        "id": 10199,
        "literals": [
          "solidity",
          "^",
          "0.4",
          ".24"
        ],
        "nodeType": "PragmaDirective",
        "src": "44:24:43"
      },
      {
        "absolutePath": "@aragon/os/contracts/acl/IACL.sol",
        "file": "../acl/IACL.sol",
        "id": 10200,
        "nodeType": "ImportDirective",
        "scope": 10249,
        "sourceUnit": 7682,
        "src": "70:25:43",
        "symbolAliases": [],
        "unitAlias": ""
      },
      {
        "absolutePath": "@aragon/os/contracts/common/IVaultRecoverable.sol",
        "file": "../common/IVaultRecoverable.sol",
        "id": 10201,
        "nodeType": "ImportDirective",
        "scope": 10249,
        "sourceUnit": 8664,
        "src": "96:41:43",
        "symbolAliases": [],
        "unitAlias": ""
      },
      {
        "baseContracts": [
          {
            "arguments": null,
            "baseName": {
              "contractScope": null,
              "id": 10202,
              "name": "IVaultRecoverable",
              "nodeType": "UserDefinedTypeName",
              "referencedDeclaration": 8663,
              "src": "228:17:43",
              "typeDescriptions": {
                "typeIdentifier": "t_contract$_IVaultRecoverable_$8663",
                "typeString": "contract IVaultRecoverable"
              }
            },
            "id": 10203,
            "nodeType": "InheritanceSpecifier",
            "src": "228:17:43"
          }
        ],
        "contractDependencies": [
          8663
        ],
        "contractKind": "contract",
        "documentation": null,
        "fullyImplemented": false,
        "id": 10248,
        "linearizedBaseContracts": [
          10248,
          8663
        ],
        "name": "IKernel",
        "nodeType": "ContractDefinition",
        "nodes": [
          {
            "anonymous": false,
            "documentation": null,
            "id": 10211,
            "name": "SetApp",
            "nodeType": "EventDefinition",
            "parameters": {
              "id": 10210,
              "nodeType": "ParameterList",
              "parameters": [
                {
                  "constant": false,
                  "id": 10205,
                  "indexed": true,
                  "name": "namespace",
                  "nodeType": "VariableDeclaration",
                  "scope": 10211,
                  "src": "265:25:43",
                  "stateVariable": false,
                  "storageLocation": "default",
                  "typeDescriptions": {
                    "typeIdentifier": "t_bytes32",
                    "typeString": "bytes32"
                  },
                  "typeName": {
                    "id": 10204,
                    "name": "bytes32",
                    "nodeType": "ElementaryTypeName",
                    "src": "265:7:43",
                    "typeDescriptions": {
                      "typeIdentifier": "t_bytes32",
                      "typeString": "bytes32"
                    }
                  },
                  "value": null,
                  "visibility": "internal"
                },
                {
                  "constant": false,
                  "id": 10207,
                  "indexed": true,
                  "name": "appId",
                  "nodeType": "VariableDeclaration",
                  "scope": 10211,
                  "src": "292:21:43",
                  "stateVariable": false,
                  "storageLocation": "default",
                  "typeDescriptions": {
                    "typeIdentifier": "t_bytes32",
                    "typeString": "bytes32"
                  },
                  "typeName": {
                    "id": 10206,
                    "name": "bytes32",
                    "nodeType": "ElementaryTypeName",
                    "src": "292:7:43",
                    "typeDescriptions": {
                      "typeIdentifier": "t_bytes32",
                      "typeString": "bytes32"
                    }
                  },
                  "value": null,
                  "visibility": "internal"
                },
                {
                  "constant": false,
                  "id": 10209,
                  "indexed": false,
                  "name": "app",
                  "nodeType": "VariableDeclaration",
                  "scope": 10211,
                  "src": "315:11:43",
                  "stateVariable": false,
                  "storageLocation": "default",
                  "typeDescriptions": {
                    "typeIdentifier": "t_address",
                    "typeString": "address"
                  },
                  "typeName": {
                    "id": 10208,
                    "name": "address",
                    "nodeType": "ElementaryTypeName",
                    "src": "315:7:43",
                    "typeDescriptions": {
                      "typeIdentifier": "t_address",
                      "typeString": "address"
                    }
                  },
                  "value": null,
                  "visibility": "internal"
                }
              ],
              "src": "264:63:43"
            },
            "src": "252:76:43"
          },
          {
            "body": null,
            "documentation": null,
            "id": 10216,
            "implemented": false,
            "isConstructor": false,
            "isDeclaredConst": true,
            "modifiers": [],
            "name": "acl",
            "nodeType": "FunctionDefinition",
            "parameters": {
              "id": 10212,
              "nodeType": "ParameterList",
              "parameters": [],
              "src": "346:2:43"
            },
            "payable": false,
            "returnParameters": {
              "id": 10215,
              "nodeType": "ParameterList",
              "parameters": [
                {
                  "constant": false,
                  "id": 10214,
                  "name": "",
                  "nodeType": "VariableDeclaration",
                  "scope": 10216,
                  "src": "370:4:43",
                  "stateVariable": false,
                  "storageLocation": "default",
                  "typeDescriptions": {
                    "typeIdentifier": "t_contract$_IACL_$7681",
                    "typeString": "contract IACL"
                  },
                  "typeName": {
                    "contractScope": null,
                    "id": 10213,
                    "name": "IACL",
                    "nodeType": "UserDefinedTypeName",
                    "referencedDeclaration": 7681,
                    "src": "370:4:43",
                    "typeDescriptions": {
                      "typeIdentifier": "t_contract$_IACL_$7681",
                      "typeString": "contract IACL"
                    }
                  },
                  "value": null,
                  "visibility": "internal"
                }
              ],
              "src": "369:6:43"
            },
            "scope": 10248,
            "src": "334:42:43",
            "stateMutability": "view",
            "superFunction": null,
            "visibility": "public"
          },
          {
            "body": null,
            "documentation": null,
            "id": 10229,
            "implemented": false,
            "isConstructor": false,
            "isDeclaredConst": true,
            "modifiers": [],
            "name": "hasPermission",
            "nodeType": "FunctionDefinition",
            "parameters": {
              "id": 10225,
              "nodeType": "ParameterList",
              "parameters": [
                {
                  "constant": false,
                  "id": 10218,
                  "name": "who",
                  "nodeType": "VariableDeclaration",
                  "scope": 10229,
                  "src": "404:11:43",
                  "stateVariable": false,
                  "storageLocation": "default",
                  "typeDescriptions": {
                    "typeIdentifier": "t_address",
                    "typeString": "address"
                  },
                  "typeName": {
                    "id": 10217,
                    "name": "address",
                    "nodeType": "ElementaryTypeName",
                    "src": "404:7:43",
                    "typeDescriptions": {
                      "typeIdentifier": "t_address",
                      "typeString": "address"
                    }
                  },
                  "value": null,
                  "visibility": "internal"
                },
                {
                  "constant": false,
                  "id": 10220,
                  "name": "where",
                  "nodeType": "VariableDeclaration",
                  "scope": 10229,
                  "src": "417:13:43",
                  "stateVariable": false,
                  "storageLocation": "default",
                  "typeDescriptions": {
                    "typeIdentifier": "t_address",
                    "typeString": "address"
                  },
                  "typeName": {
                    "id": 10219,
                    "name": "address",
                    "nodeType": "ElementaryTypeName",
                    "src": "417:7:43",
                    "typeDescriptions": {
                      "typeIdentifier": "t_address",
                      "typeString": "address"
                    }
                  },
                  "value": null,
                  "visibility": "internal"
                },
                {
                  "constant": false,
                  "id": 10222,
                  "name": "what",
                  "nodeType": "VariableDeclaration",
                  "scope": 10229,
                  "src": "432:12:43",
                  "stateVariable": false,
                  "storageLocation": "default",
                  "typeDescriptions": {
                    "typeIdentifier": "t_bytes32",
                    "typeString": "bytes32"
                  },
                  "typeName": {
                    "id": 10221,
                    "name": "bytes32",
                    "nodeType": "ElementaryTypeName",
                    "src": "432:7:43",
                    "typeDescriptions": {
                      "typeIdentifier": "t_bytes32",
                      "typeString": "bytes32"
                    }
                  },
                  "value": null,
                  "visibility": "internal"
                },
                {
                  "constant": false,
                  "id": 10224,
                  "name": "how",
                  "nodeType": "VariableDeclaration",
                  "scope": 10229,
                  "src": "446:9:43",
                  "stateVariable": false,
                  "storageLocation": "default",
                  "typeDescriptions": {
                    "typeIdentifier": "t_bytes_memory_ptr",
                    "typeString": "bytes"
                  },
                  "typeName": {
                    "id": 10223,
                    "name": "bytes",
                    "nodeType": "ElementaryTypeName",
                    "src": "446:5:43",
                    "typeDescriptions": {
                      "typeIdentifier": "t_bytes_storage_ptr",
                      "typeString": "bytes"
                    }
                  },
                  "value": null,
                  "visibility": "internal"
                }
              ],
              "src": "403:53:43"
            },
            "payable": false,
            "returnParameters": {
              "id": 10228,
              "nodeType": "ParameterList",
              "parameters": [
                {
                  "constant": false,
                  "id": 10227,
                  "name": "",
                  "nodeType": "VariableDeclaration",
                  "scope": 10229,
                  "src": "478:4:43",
                  "stateVariable": false,
                  "storageLocation": "default",
                  "typeDescriptions": {
                    "typeIdentifier": "t_bool",
                    "typeString": "bool"
                  },
                  "typeName": {
                    "id": 10226,
                    "name": "bool",
                    "nodeType": "ElementaryTypeName",
                    "src": "478:4:43",
                    "typeDescriptions": {
                      "typeIdentifier": "t_bool",
                      "typeString": "bool"
                    }
                  },
                  "value": null,
                  "visibility": "internal"
                }
              ],
              "src": "477:6:43"
            },
            "scope": 10248,
            "src": "381:103:43",
            "stateMutability": "view",
            "superFunction": null,
            "visibility": "public"
          },
          {
            "body": null,
            "documentation": null,
            "id": 10238,
            "implemented": false,
            "isConstructor": false,
            "isDeclaredConst": false,
            "modifiers": [],
            "name": "setApp",
            "nodeType": "FunctionDefinition",
            "parameters": {
              "id": 10236,
              "nodeType": "ParameterList",
              "parameters": [
                {
                  "constant": false,
                  "id": 10231,
                  "name": "namespace",
                  "nodeType": "VariableDeclaration",
                  "scope": 10238,
                  "src": "506:17:43",
                  "stateVariable": false,
                  "storageLocation": "default",
                  "typeDescriptions": {
                    "typeIdentifier": "t_bytes32",
                    "typeString": "bytes32"
                  },
                  "typeName": {
                    "id": 10230,
                    "name": "bytes32",
                    "nodeType": "ElementaryTypeName",
                    "src": "506:7:43",
                    "typeDescriptions": {
                      "typeIdentifier": "t_bytes32",
                      "typeString": "bytes32"
                    }
                  },
                  "value": null,
                  "visibility": "internal"
                },
                {
                  "constant": false,
                  "id": 10233,
                  "name": "appId",
                  "nodeType": "VariableDeclaration",
                  "scope": 10238,
                  "src": "525:13:43",
                  "stateVariable": false,
                  "storageLocation": "default",
                  "typeDescriptions": {
                    "typeIdentifier": "t_bytes32",
                    "typeString": "bytes32"
                  },
                  "typeName": {
                    "id": 10232,
                    "name": "bytes32",
                    "nodeType": "ElementaryTypeName",
                    "src": "525:7:43",
                    "typeDescriptions": {
                      "typeIdentifier": "t_bytes32",
                      "typeString": "bytes32"
                    }
                  },
                  "value": null,
                  "visibility": "internal"
                },
                {
                  "constant": false,
                  "id": 10235,
                  "name": "app",
                  "nodeType": "VariableDeclaration",
                  "scope": 10238,
                  "src": "540:11:43",
                  "stateVariable": false,
                  "storageLocation": "default",
                  "typeDescriptions": {
                    "typeIdentifier": "t_address",
                    "typeString": "address"
                  },
                  "typeName": {
                    "id": 10234,
                    "name": "address",
                    "nodeType": "ElementaryTypeName",
                    "src": "540:7:43",
                    "typeDescriptions": {
                      "typeIdentifier": "t_address",
                      "typeString": "address"
                    }
                  },
                  "value": null,
                  "visibility": "internal"
                }
              ],
              "src": "505:47:43"
            },
            "payable": false,
            "returnParameters": {
              "id": 10237,
              "nodeType": "ParameterList",
              "parameters": [],
              "src": "559:0:43"
            },
            "scope": 10248,
            "src": "490:70:43",
            "stateMutability": "nonpayable",
            "superFunction": null,
            "visibility": "public"
          },
          {
            "body": null,
            "documentation": null,
            "id": 10247,
            "implemented": false,
            "isConstructor": false,
            "isDeclaredConst": true,
            "modifiers": [],
            "name": "getApp",
            "nodeType": "FunctionDefinition",
            "parameters": {
              "id": 10243,
              "nodeType": "ParameterList",
              "parameters": [
                {
                  "constant": false,
                  "id": 10240,
                  "name": "namespace",
                  "nodeType": "VariableDeclaration",
                  "scope": 10247,
                  "src": "581:17:43",
                  "stateVariable": false,
                  "storageLocation": "default",
                  "typeDescriptions": {
                    "typeIdentifier": "t_bytes32",
                    "typeString": "bytes32"
                  },
                  "typeName": {
                    "id": 10239,
                    "name": "bytes32",
                    "nodeType": "ElementaryTypeName",
                    "src": "581:7:43",
                    "typeDescriptions": {
                      "typeIdentifier": "t_bytes32",
                      "typeString": "bytes32"
                    }
                  },
                  "value": null,
                  "visibility": "internal"
                },
                {
                  "constant": false,
                  "id": 10242,
                  "name": "appId",
                  "nodeType": "VariableDeclaration",
                  "scope": 10247,
                  "src": "600:13:43",
                  "stateVariable": false,
                  "storageLocation": "default",
                  "typeDescriptions": {
                    "typeIdentifier": "t_bytes32",
                    "typeString": "bytes32"
                  },
                  "typeName": {
                    "id": 10241,
                    "name": "bytes32",
                    "nodeType": "ElementaryTypeName",
                    "src": "600:7:43",
                    "typeDescriptions": {
                      "typeIdentifier": "t_bytes32",
                      "typeString": "bytes32"
                    }
                  },
                  "value": null,
                  "visibility": "internal"
                }
              ],
              "src": "580:34:43"
            },
            "payable": false,
            "returnParameters": {
              "id": 10246,
              "nodeType": "ParameterList",
              "parameters": [
                {
                  "constant": false,
                  "id": 10245,
                  "name": "",
                  "nodeType": "VariableDeclaration",
                  "scope": 10247,
                  "src": "636:7:43",
                  "stateVariable": false,
                  "storageLocation": "default",
                  "typeDescriptions": {
                    "typeIdentifier": "t_address",
                    "typeString": "address"
                  },
                  "typeName": {
                    "id": 10244,
                    "name": "address",
                    "nodeType": "ElementaryTypeName",
                    "src": "636:7:43",
                    "typeDescriptions": {
                      "typeIdentifier": "t_address",
                      "typeString": "address"
                    }
                  },
                  "value": null,
                  "visibility": "internal"
                }
              ],
              "src": "635:9:43"
            },
            "scope": 10248,
            "src": "565:80:43",
            "stateMutability": "view",
            "superFunction": null,
            "visibility": "public"
          }
        ],
        "scope": 10249,
        "src": "208:439:43"
      }
    ],
    "src": "44:604:43"
  },
  "legacyAST": {
    "absolutePath": "@aragon/os/contracts/kernel/IKernel.sol",
    "exportedSymbols": {
      "IKernel": [
        10248
      ]
    },
    "id": 10249,
    "nodeType": "SourceUnit",
    "nodes": [
      {
        "id": 10199,
        "literals": [
          "solidity",
          "^",
          "0.4",
          ".24"
        ],
        "nodeType": "PragmaDirective",
        "src": "44:24:43"
      },
      {
        "absolutePath": "@aragon/os/contracts/acl/IACL.sol",
        "file": "../acl/IACL.sol",
        "id": 10200,
        "nodeType": "ImportDirective",
        "scope": 10249,
        "sourceUnit": 7682,
        "src": "70:25:43",
        "symbolAliases": [],
        "unitAlias": ""
      },
      {
        "absolutePath": "@aragon/os/contracts/common/IVaultRecoverable.sol",
        "file": "../common/IVaultRecoverable.sol",
        "id": 10201,
        "nodeType": "ImportDirective",
        "scope": 10249,
        "sourceUnit": 8664,
        "src": "96:41:43",
        "symbolAliases": [],
        "unitAlias": ""
      },
      {
        "baseContracts": [
          {
            "arguments": null,
            "baseName": {
              "contractScope": null,
              "id": 10202,
              "name": "IVaultRecoverable",
              "nodeType": "UserDefinedTypeName",
              "referencedDeclaration": 8663,
              "src": "228:17:43",
              "typeDescriptions": {
                "typeIdentifier": "t_contract$_IVaultRecoverable_$8663",
                "typeString": "contract IVaultRecoverable"
              }
            },
            "id": 10203,
            "nodeType": "InheritanceSpecifier",
            "src": "228:17:43"
          }
        ],
        "contractDependencies": [
          8663
        ],
        "contractKind": "contract",
        "documentation": null,
        "fullyImplemented": false,
        "id": 10248,
        "linearizedBaseContracts": [
          10248,
          8663
        ],
        "name": "IKernel",
        "nodeType": "ContractDefinition",
        "nodes": [
          {
            "anonymous": false,
            "documentation": null,
            "id": 10211,
            "name": "SetApp",
            "nodeType": "EventDefinition",
            "parameters": {
              "id": 10210,
              "nodeType": "ParameterList",
              "parameters": [
                {
                  "constant": false,
                  "id": 10205,
                  "indexed": true,
                  "name": "namespace",
                  "nodeType": "VariableDeclaration",
                  "scope": 10211,
                  "src": "265:25:43",
                  "stateVariable": false,
                  "storageLocation": "default",
                  "typeDescriptions": {
                    "typeIdentifier": "t_bytes32",
                    "typeString": "bytes32"
                  },
                  "typeName": {
                    "id": 10204,
                    "name": "bytes32",
                    "nodeType": "ElementaryTypeName",
                    "src": "265:7:43",
                    "typeDescriptions": {
                      "typeIdentifier": "t_bytes32",
                      "typeString": "bytes32"
                    }
                  },
                  "value": null,
                  "visibility": "internal"
                },
                {
                  "constant": false,
                  "id": 10207,
                  "indexed": true,
                  "name": "appId",
                  "nodeType": "VariableDeclaration",
                  "scope": 10211,
                  "src": "292:21:43",
                  "stateVariable": false,
                  "storageLocation": "default",
                  "typeDescriptions": {
                    "typeIdentifier": "t_bytes32",
                    "typeString": "bytes32"
                  },
                  "typeName": {
                    "id": 10206,
                    "name": "bytes32",
                    "nodeType": "ElementaryTypeName",
                    "src": "292:7:43",
                    "typeDescriptions": {
                      "typeIdentifier": "t_bytes32",
                      "typeString": "bytes32"
                    }
                  },
                  "value": null,
                  "visibility": "internal"
                },
                {
                  "constant": false,
                  "id": 10209,
                  "indexed": false,
                  "name": "app",
                  "nodeType": "VariableDeclaration",
                  "scope": 10211,
                  "src": "315:11:43",
                  "stateVariable": false,
                  "storageLocation": "default",
                  "typeDescriptions": {
                    "typeIdentifier": "t_address",
                    "typeString": "address"
                  },
                  "typeName": {
                    "id": 10208,
                    "name": "address",
                    "nodeType": "ElementaryTypeName",
                    "src": "315:7:43",
                    "typeDescriptions": {
                      "typeIdentifier": "t_address",
                      "typeString": "address"
                    }
                  },
                  "value": null,
                  "visibility": "internal"
                }
              ],
              "src": "264:63:43"
            },
            "src": "252:76:43"
          },
          {
            "body": null,
            "documentation": null,
            "id": 10216,
            "implemented": false,
            "isConstructor": false,
            "isDeclaredConst": true,
            "modifiers": [],
            "name": "acl",
            "nodeType": "FunctionDefinition",
            "parameters": {
              "id": 10212,
              "nodeType": "ParameterList",
              "parameters": [],
              "src": "346:2:43"
            },
            "payable": false,
            "returnParameters": {
              "id": 10215,
              "nodeType": "ParameterList",
              "parameters": [
                {
                  "constant": false,
                  "id": 10214,
                  "name": "",
                  "nodeType": "VariableDeclaration",
                  "scope": 10216,
                  "src": "370:4:43",
                  "stateVariable": false,
                  "storageLocation": "default",
                  "typeDescriptions": {
                    "typeIdentifier": "t_contract$_IACL_$7681",
                    "typeString": "contract IACL"
                  },
                  "typeName": {
                    "contractScope": null,
                    "id": 10213,
                    "name": "IACL",
                    "nodeType": "UserDefinedTypeName",
                    "referencedDeclaration": 7681,
                    "src": "370:4:43",
                    "typeDescriptions": {
                      "typeIdentifier": "t_contract$_IACL_$7681",
                      "typeString": "contract IACL"
                    }
                  },
                  "value": null,
                  "visibility": "internal"
                }
              ],
              "src": "369:6:43"
            },
            "scope": 10248,
            "src": "334:42:43",
            "stateMutability": "view",
            "superFunction": null,
            "visibility": "public"
          },
          {
            "body": null,
            "documentation": null,
            "id": 10229,
            "implemented": false,
            "isConstructor": false,
            "isDeclaredConst": true,
            "modifiers": [],
            "name": "hasPermission",
            "nodeType": "FunctionDefinition",
            "parameters": {
              "id": 10225,
              "nodeType": "ParameterList",
              "parameters": [
                {
                  "constant": false,
                  "id": 10218,
                  "name": "who",
                  "nodeType": "VariableDeclaration",
                  "scope": 10229,
                  "src": "404:11:43",
                  "stateVariable": false,
                  "storageLocation": "default",
                  "typeDescriptions": {
                    "typeIdentifier": "t_address",
                    "typeString": "address"
                  },
                  "typeName": {
                    "id": 10217,
                    "name": "address",
                    "nodeType": "ElementaryTypeName",
                    "src": "404:7:43",
                    "typeDescriptions": {
                      "typeIdentifier": "t_address",
                      "typeString": "address"
                    }
                  },
                  "value": null,
                  "visibility": "internal"
                },
                {
                  "constant": false,
                  "id": 10220,
                  "name": "where",
                  "nodeType": "VariableDeclaration",
                  "scope": 10229,
                  "src": "417:13:43",
                  "stateVariable": false,
                  "storageLocation": "default",
                  "typeDescriptions": {
                    "typeIdentifier": "t_address",
                    "typeString": "address"
                  },
                  "typeName": {
                    "id": 10219,
                    "name": "address",
                    "nodeType": "ElementaryTypeName",
                    "src": "417:7:43",
                    "typeDescriptions": {
                      "typeIdentifier": "t_address",
                      "typeString": "address"
                    }
                  },
                  "value": null,
                  "visibility": "internal"
                },
                {
                  "constant": false,
                  "id": 10222,
                  "name": "what",
                  "nodeType": "VariableDeclaration",
                  "scope": 10229,
                  "src": "432:12:43",
                  "stateVariable": false,
                  "storageLocation": "default",
                  "typeDescriptions": {
                    "typeIdentifier": "t_bytes32",
                    "typeString": "bytes32"
                  },
                  "typeName": {
                    "id": 10221,
                    "name": "bytes32",
                    "nodeType": "ElementaryTypeName",
                    "src": "432:7:43",
                    "typeDescriptions": {
                      "typeIdentifier": "t_bytes32",
                      "typeString": "bytes32"
                    }
                  },
                  "value": null,
                  "visibility": "internal"
                },
                {
                  "constant": false,
                  "id": 10224,
                  "name": "how",
                  "nodeType": "VariableDeclaration",
                  "scope": 10229,
                  "src": "446:9:43",
                  "stateVariable": false,
                  "storageLocation": "default",
                  "typeDescriptions": {
                    "typeIdentifier": "t_bytes_memory_ptr",
                    "typeString": "bytes"
                  },
                  "typeName": {
                    "id": 10223,
                    "name": "bytes",
                    "nodeType": "ElementaryTypeName",
                    "src": "446:5:43",
                    "typeDescriptions": {
                      "typeIdentifier": "t_bytes_storage_ptr",
                      "typeString": "bytes"
                    }
                  },
                  "value": null,
                  "visibility": "internal"
                }
              ],
              "src": "403:53:43"
            },
            "payable": false,
            "returnParameters": {
              "id": 10228,
              "nodeType": "ParameterList",
              "parameters": [
                {
                  "constant": false,
                  "id": 10227,
                  "name": "",
                  "nodeType": "VariableDeclaration",
                  "scope": 10229,
                  "src": "478:4:43",
                  "stateVariable": false,
                  "storageLocation": "default",
                  "typeDescriptions": {
                    "typeIdentifier": "t_bool",
                    "typeString": "bool"
                  },
                  "typeName": {
                    "id": 10226,
                    "name": "bool",
                    "nodeType": "ElementaryTypeName",
                    "src": "478:4:43",
                    "typeDescriptions": {
                      "typeIdentifier": "t_bool",
                      "typeString": "bool"
                    }
                  },
                  "value": null,
                  "visibility": "internal"
                }
              ],
              "src": "477:6:43"
            },
            "scope": 10248,
            "src": "381:103:43",
            "stateMutability": "view",
            "superFunction": null,
            "visibility": "public"
          },
          {
            "body": null,
            "documentation": null,
            "id": 10238,
            "implemented": false,
            "isConstructor": false,
            "isDeclaredConst": false,
            "modifiers": [],
            "name": "setApp",
            "nodeType": "FunctionDefinition",
            "parameters": {
              "id": 10236,
              "nodeType": "ParameterList",
              "parameters": [
                {
                  "constant": false,
                  "id": 10231,
                  "name": "namespace",
                  "nodeType": "VariableDeclaration",
                  "scope": 10238,
                  "src": "506:17:43",
                  "stateVariable": false,
                  "storageLocation": "default",
                  "typeDescriptions": {
                    "typeIdentifier": "t_bytes32",
                    "typeString": "bytes32"
                  },
                  "typeName": {
                    "id": 10230,
                    "name": "bytes32",
                    "nodeType": "ElementaryTypeName",
                    "src": "506:7:43",
                    "typeDescriptions": {
                      "typeIdentifier": "t_bytes32",
                      "typeString": "bytes32"
                    }
                  },
                  "value": null,
                  "visibility": "internal"
                },
                {
                  "constant": false,
                  "id": 10233,
                  "name": "appId",
                  "nodeType": "VariableDeclaration",
                  "scope": 10238,
                  "src": "525:13:43",
                  "stateVariable": false,
                  "storageLocation": "default",
                  "typeDescriptions": {
                    "typeIdentifier": "t_bytes32",
                    "typeString": "bytes32"
                  },
                  "typeName": {
                    "id": 10232,
                    "name": "bytes32",
                    "nodeType": "ElementaryTypeName",
                    "src": "525:7:43",
                    "typeDescriptions": {
                      "typeIdentifier": "t_bytes32",
                      "typeString": "bytes32"
                    }
                  },
                  "value": null,
                  "visibility": "internal"
                },
                {
                  "constant": false,
                  "id": 10235,
                  "name": "app",
                  "nodeType": "VariableDeclaration",
                  "scope": 10238,
                  "src": "540:11:43",
                  "stateVariable": false,
                  "storageLocation": "default",
                  "typeDescriptions": {
                    "typeIdentifier": "t_address",
                    "typeString": "address"
                  },
                  "typeName": {
                    "id": 10234,
                    "name": "address",
                    "nodeType": "ElementaryTypeName",
                    "src": "540:7:43",
                    "typeDescriptions": {
                      "typeIdentifier": "t_address",
                      "typeString": "address"
                    }
                  },
                  "value": null,
                  "visibility": "internal"
                }
              ],
              "src": "505:47:43"
            },
            "payable": false,
            "returnParameters": {
              "id": 10237,
              "nodeType": "ParameterList",
              "parameters": [],
              "src": "559:0:43"
            },
            "scope": 10248,
            "src": "490:70:43",
            "stateMutability": "nonpayable",
            "superFunction": null,
            "visibility": "public"
          },
          {
            "body": null,
            "documentation": null,
            "id": 10247,
            "implemented": false,
            "isConstructor": false,
            "isDeclaredConst": true,
            "modifiers": [],
            "name": "getApp",
            "nodeType": "FunctionDefinition",
            "parameters": {
              "id": 10243,
              "nodeType": "ParameterList",
              "parameters": [
                {
                  "constant": false,
                  "id": 10240,
                  "name": "namespace",
                  "nodeType": "VariableDeclaration",
                  "scope": 10247,
                  "src": "581:17:43",
                  "stateVariable": false,
                  "storageLocation": "default",
                  "typeDescriptions": {
                    "typeIdentifier": "t_bytes32",
                    "typeString": "bytes32"
                  },
                  "typeName": {
                    "id": 10239,
                    "name": "bytes32",
                    "nodeType": "ElementaryTypeName",
                    "src": "581:7:43",
                    "typeDescriptions": {
                      "typeIdentifier": "t_bytes32",
                      "typeString": "bytes32"
                    }
                  },
                  "value": null,
                  "visibility": "internal"
                },
                {
                  "constant": false,
                  "id": 10242,
                  "name": "appId",
                  "nodeType": "VariableDeclaration",
                  "scope": 10247,
                  "src": "600:13:43",
                  "stateVariable": false,
                  "storageLocation": "default",
                  "typeDescriptions": {
                    "typeIdentifier": "t_bytes32",
                    "typeString": "bytes32"
                  },
                  "typeName": {
                    "id": 10241,
                    "name": "bytes32",
                    "nodeType": "ElementaryTypeName",
                    "src": "600:7:43",
                    "typeDescriptions": {
                      "typeIdentifier": "t_bytes32",
                      "typeString": "bytes32"
                    }
                  },
                  "value": null,
                  "visibility": "internal"
                }
              ],
              "src": "580:34:43"
            },
            "payable": false,
            "returnParameters": {
              "id": 10246,
              "nodeType": "ParameterList",
              "parameters": [
                {
                  "constant": false,
                  "id": 10245,
                  "name": "",
                  "nodeType": "VariableDeclaration",
                  "scope": 10247,
                  "src": "636:7:43",
                  "stateVariable": false,
                  "storageLocation": "default",
                  "typeDescriptions": {
                    "typeIdentifier": "t_address",
                    "typeString": "address"
                  },
                  "typeName": {
                    "id": 10244,
                    "name": "address",
                    "nodeType": "ElementaryTypeName",
                    "src": "636:7:43",
                    "typeDescriptions": {
                      "typeIdentifier": "t_address",
                      "typeString": "address"
                    }
                  },
                  "value": null,
                  "visibility": "internal"
                }
              ],
              "src": "635:9:43"
            },
            "scope": 10248,
            "src": "565:80:43",
            "stateMutability": "view",
            "superFunction": null,
            "visibility": "public"
          }
        ],
        "scope": 10249,
        "src": "208:439:43"
      }
    ],
    "src": "44:604:43"
  },
  "compiler": {
    "name": "solc",
    "version": "0.4.24+commit.e67f0147.Emscripten.clang"
  },
  "networks": {},
  "schemaVersion": "3.0.1",
  "updatedAt": "2019-03-29T09:45:33.520Z",
  "devdoc": {
    "methods": {}
  },
  "userdoc": {
    "methods": {}
  }
}