{
  "contractName": "IACL",
  "abi": [
    {
      "constant": false,
      "inputs": [
        {
          "name": "permissionsCreator",
          "type": "address"
        }
      ],
      "name": "initialize",
      "outputs": [],
      "payable": false,
      "stateMutability": "nonpayable",
      "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"
    }
  ],
  "metadata": "",
  "bytecode": "0x",
  "deployedBytecode": "0x",
  "sourceMap": "",
  "deployedSourceMap": "",
  "source": "/*\n * SPDX-License-Identitifer:    MIT\n */\n\npragma solidity ^0.4.24;\n\n\ninterface IACL {\n    function initialize(address permissionsCreator) external;\n\n    // TODO: this should be external\n    // See https://github.com/ethereum/solidity/issues/4832\n    function hasPermission(address who, address where, bytes32 what, bytes how) public view returns (bool);\n}\n",
  "sourcePath": "@aragon/os/contracts/acl/IACL.sol",
  "ast": {
    "absolutePath": "@aragon/os/contracts/acl/IACL.sol",
    "exportedSymbols": {
      "IACL": [
        5304
      ]
    },
    "id": 5305,
    "nodeType": "SourceUnit",
    "nodes": [
      {
        "id": 5285,
        "literals": [
          "solidity",
          "^",
          "0.4",
          ".24"
        ],
        "nodeType": "PragmaDirective",
        "src": "44:24:13"
      },
      {
        "baseContracts": [],
        "contractDependencies": [],
        "contractKind": "interface",
        "documentation": null,
        "fullyImplemented": false,
        "id": 5304,
        "linearizedBaseContracts": [
          5304
        ],
        "name": "IACL",
        "nodeType": "ContractDefinition",
        "nodes": [
          {
            "body": null,
            "documentation": null,
            "id": 5290,
            "implemented": false,
            "isConstructor": false,
            "isDeclaredConst": false,
            "modifiers": [],
            "name": "initialize",
            "nodeType": "FunctionDefinition",
            "parameters": {
              "id": 5288,
              "nodeType": "ParameterList",
              "parameters": [
                {
                  "constant": false,
                  "id": 5287,
                  "name": "permissionsCreator",
                  "nodeType": "VariableDeclaration",
                  "scope": 5290,
                  "src": "112:26:13",
                  "stateVariable": false,
                  "storageLocation": "default",
                  "typeDescriptions": {
                    "typeIdentifier": "t_address",
                    "typeString": "address"
                  },
                  "typeName": {
                    "id": 5286,
                    "name": "address",
                    "nodeType": "ElementaryTypeName",
                    "src": "112:7:13",
                    "typeDescriptions": {
                      "typeIdentifier": "t_address",
                      "typeString": "address"
                    }
                  },
                  "value": null,
                  "visibility": "internal"
                }
              ],
              "src": "111:28:13"
            },
            "payable": false,
            "returnParameters": {
              "id": 5289,
              "nodeType": "ParameterList",
              "parameters": [],
              "src": "148:0:13"
            },
            "scope": 5304,
            "src": "92:57:13",
            "stateMutability": "nonpayable",
            "superFunction": null,
            "visibility": "external"
          },
          {
            "body": null,
            "documentation": null,
            "id": 5303,
            "implemented": false,
            "isConstructor": false,
            "isDeclaredConst": true,
            "modifiers": [],
            "name": "hasPermission",
            "nodeType": "FunctionDefinition",
            "parameters": {
              "id": 5299,
              "nodeType": "ParameterList",
              "parameters": [
                {
                  "constant": false,
                  "id": 5292,
                  "name": "who",
                  "nodeType": "VariableDeclaration",
                  "scope": 5303,
                  "src": "275:11:13",
                  "stateVariable": false,
                  "storageLocation": "default",
                  "typeDescriptions": {
                    "typeIdentifier": "t_address",
                    "typeString": "address"
                  },
                  "typeName": {
                    "id": 5291,
                    "name": "address",
                    "nodeType": "ElementaryTypeName",
                    "src": "275:7:13",
                    "typeDescriptions": {
                      "typeIdentifier": "t_address",
                      "typeString": "address"
                    }
                  },
                  "value": null,
                  "visibility": "internal"
                },
                {
                  "constant": false,
                  "id": 5294,
                  "name": "where",
                  "nodeType": "VariableDeclaration",
                  "scope": 5303,
                  "src": "288:13:13",
                  "stateVariable": false,
                  "storageLocation": "default",
                  "typeDescriptions": {
                    "typeIdentifier": "t_address",
                    "typeString": "address"
                  },
                  "typeName": {
                    "id": 5293,
                    "name": "address",
                    "nodeType": "ElementaryTypeName",
                    "src": "288:7:13",
                    "typeDescriptions": {
                      "typeIdentifier": "t_address",
                      "typeString": "address"
                    }
                  },
                  "value": null,
                  "visibility": "internal"
                },
                {
                  "constant": false,
                  "id": 5296,
                  "name": "what",
                  "nodeType": "VariableDeclaration",
                  "scope": 5303,
                  "src": "303:12:13",
                  "stateVariable": false,
                  "storageLocation": "default",
                  "typeDescriptions": {
                    "typeIdentifier": "t_bytes32",
                    "typeString": "bytes32"
                  },
                  "typeName": {
                    "id": 5295,
                    "name": "bytes32",
                    "nodeType": "ElementaryTypeName",
                    "src": "303:7:13",
                    "typeDescriptions": {
                      "typeIdentifier": "t_bytes32",
                      "typeString": "bytes32"
                    }
                  },
                  "value": null,
                  "visibility": "internal"
                },
                {
                  "constant": false,
                  "id": 5298,
                  "name": "how",
                  "nodeType": "VariableDeclaration",
                  "scope": 5303,
                  "src": "317:9:13",
                  "stateVariable": false,
                  "storageLocation": "default",
                  "typeDescriptions": {
                    "typeIdentifier": "t_bytes_memory_ptr",
                    "typeString": "bytes"
                  },
                  "typeName": {
                    "id": 5297,
                    "name": "bytes",
                    "nodeType": "ElementaryTypeName",
                    "src": "317:5:13",
                    "typeDescriptions": {
                      "typeIdentifier": "t_bytes_storage_ptr",
                      "typeString": "bytes"
                    }
                  },
                  "value": null,
                  "visibility": "internal"
                }
              ],
              "src": "274:53:13"
            },
            "payable": false,
            "returnParameters": {
              "id": 5302,
              "nodeType": "ParameterList",
              "parameters": [
                {
                  "constant": false,
                  "id": 5301,
                  "name": "",
                  "nodeType": "VariableDeclaration",
                  "scope": 5303,
                  "src": "349:4:13",
                  "stateVariable": false,
                  "storageLocation": "default",
                  "typeDescriptions": {
                    "typeIdentifier": "t_bool",
                    "typeString": "bool"
                  },
                  "typeName": {
                    "id": 5300,
                    "name": "bool",
                    "nodeType": "ElementaryTypeName",
                    "src": "349:4:13",
                    "typeDescriptions": {
                      "typeIdentifier": "t_bool",
                      "typeString": "bool"
                    }
                  },
                  "value": null,
                  "visibility": "internal"
                }
              ],
              "src": "348:6:13"
            },
            "scope": 5304,
            "src": "252:103:13",
            "stateMutability": "view",
            "superFunction": null,
            "visibility": "public"
          }
        ],
        "scope": 5305,
        "src": "71:286:13"
      }
    ],
    "src": "44:314:13"
  },
  "legacyAST": {
    "absolutePath": "@aragon/os/contracts/acl/IACL.sol",
    "exportedSymbols": {
      "IACL": [
        5304
      ]
    },
    "id": 5305,
    "nodeType": "SourceUnit",
    "nodes": [
      {
        "id": 5285,
        "literals": [
          "solidity",
          "^",
          "0.4",
          ".24"
        ],
        "nodeType": "PragmaDirective",
        "src": "44:24:13"
      },
      {
        "baseContracts": [],
        "contractDependencies": [],
        "contractKind": "interface",
        "documentation": null,
        "fullyImplemented": false,
        "id": 5304,
        "linearizedBaseContracts": [
          5304
        ],
        "name": "IACL",
        "nodeType": "ContractDefinition",
        "nodes": [
          {
            "body": null,
            "documentation": null,
            "id": 5290,
            "implemented": false,
            "isConstructor": false,
            "isDeclaredConst": false,
            "modifiers": [],
            "name": "initialize",
            "nodeType": "FunctionDefinition",
            "parameters": {
              "id": 5288,
              "nodeType": "ParameterList",
              "parameters": [
                {
                  "constant": false,
                  "id": 5287,
                  "name": "permissionsCreator",
                  "nodeType": "VariableDeclaration",
                  "scope": 5290,
                  "src": "112:26:13",
                  "stateVariable": false,
                  "storageLocation": "default",
                  "typeDescriptions": {
                    "typeIdentifier": "t_address",
                    "typeString": "address"
                  },
                  "typeName": {
                    "id": 5286,
                    "name": "address",
                    "nodeType": "ElementaryTypeName",
                    "src": "112:7:13",
                    "typeDescriptions": {
                      "typeIdentifier": "t_address",
                      "typeString": "address"
                    }
                  },
                  "value": null,
                  "visibility": "internal"
                }
              ],
              "src": "111:28:13"
            },
            "payable": false,
            "returnParameters": {
              "id": 5289,
              "nodeType": "ParameterList",
              "parameters": [],
              "src": "148:0:13"
            },
            "scope": 5304,
            "src": "92:57:13",
            "stateMutability": "nonpayable",
            "superFunction": null,
            "visibility": "external"
          },
          {
            "body": null,
            "documentation": null,
            "id": 5303,
            "implemented": false,
            "isConstructor": false,
            "isDeclaredConst": true,
            "modifiers": [],
            "name": "hasPermission",
            "nodeType": "FunctionDefinition",
            "parameters": {
              "id": 5299,
              "nodeType": "ParameterList",
              "parameters": [
                {
                  "constant": false,
                  "id": 5292,
                  "name": "who",
                  "nodeType": "VariableDeclaration",
                  "scope": 5303,
                  "src": "275:11:13",
                  "stateVariable": false,
                  "storageLocation": "default",
                  "typeDescriptions": {
                    "typeIdentifier": "t_address",
                    "typeString": "address"
                  },
                  "typeName": {
                    "id": 5291,
                    "name": "address",
                    "nodeType": "ElementaryTypeName",
                    "src": "275:7:13",
                    "typeDescriptions": {
                      "typeIdentifier": "t_address",
                      "typeString": "address"
                    }
                  },
                  "value": null,
                  "visibility": "internal"
                },
                {
                  "constant": false,
                  "id": 5294,
                  "name": "where",
                  "nodeType": "VariableDeclaration",
                  "scope": 5303,
                  "src": "288:13:13",
                  "stateVariable": false,
                  "storageLocation": "default",
                  "typeDescriptions": {
                    "typeIdentifier": "t_address",
                    "typeString": "address"
                  },
                  "typeName": {
                    "id": 5293,
                    "name": "address",
                    "nodeType": "ElementaryTypeName",
                    "src": "288:7:13",
                    "typeDescriptions": {
                      "typeIdentifier": "t_address",
                      "typeString": "address"
                    }
                  },
                  "value": null,
                  "visibility": "internal"
                },
                {
                  "constant": false,
                  "id": 5296,
                  "name": "what",
                  "nodeType": "VariableDeclaration",
                  "scope": 5303,
                  "src": "303:12:13",
                  "stateVariable": false,
                  "storageLocation": "default",
                  "typeDescriptions": {
                    "typeIdentifier": "t_bytes32",
                    "typeString": "bytes32"
                  },
                  "typeName": {
                    "id": 5295,
                    "name": "bytes32",
                    "nodeType": "ElementaryTypeName",
                    "src": "303:7:13",
                    "typeDescriptions": {
                      "typeIdentifier": "t_bytes32",
                      "typeString": "bytes32"
                    }
                  },
                  "value": null,
                  "visibility": "internal"
                },
                {
                  "constant": false,
                  "id": 5298,
                  "name": "how",
                  "nodeType": "VariableDeclaration",
                  "scope": 5303,
                  "src": "317:9:13",
                  "stateVariable": false,
                  "storageLocation": "default",
                  "typeDescriptions": {
                    "typeIdentifier": "t_bytes_memory_ptr",
                    "typeString": "bytes"
                  },
                  "typeName": {
                    "id": 5297,
                    "name": "bytes",
                    "nodeType": "ElementaryTypeName",
                    "src": "317:5:13",
                    "typeDescriptions": {
                      "typeIdentifier": "t_bytes_storage_ptr",
                      "typeString": "bytes"
                    }
                  },
                  "value": null,
                  "visibility": "internal"
                }
              ],
              "src": "274:53:13"
            },
            "payable": false,
            "returnParameters": {
              "id": 5302,
              "nodeType": "ParameterList",
              "parameters": [
                {
                  "constant": false,
                  "id": 5301,
                  "name": "",
                  "nodeType": "VariableDeclaration",
                  "scope": 5303,
                  "src": "349:4:13",
                  "stateVariable": false,
                  "storageLocation": "default",
                  "typeDescriptions": {
                    "typeIdentifier": "t_bool",
                    "typeString": "bool"
                  },
                  "typeName": {
                    "id": 5300,
                    "name": "bool",
                    "nodeType": "ElementaryTypeName",
                    "src": "349:4:13",
                    "typeDescriptions": {
                      "typeIdentifier": "t_bool",
                      "typeString": "bool"
                    }
                  },
                  "value": null,
                  "visibility": "internal"
                }
              ],
              "src": "348:6:13"
            },
            "scope": 5304,
            "src": "252:103:13",
            "stateMutability": "view",
            "superFunction": null,
            "visibility": "public"
          }
        ],
        "scope": 5305,
        "src": "71:286:13"
      }
    ],
    "src": "44:314:13"
  },
  "compiler": {
    "name": "solc",
    "version": "0.4.24+commit.e67f0147.Emscripten.clang"
  },
  "networks": {},
  "schemaVersion": "3.2.0",
  "updatedAt": "2020-06-07T23:27:00.556Z",
  "devdoc": {
    "methods": {}
  },
  "userdoc": {
    "methods": {}
  }
}