{
  "contractName": "UnstructuredStorage",
  "abi": [],
  "bytecode": "0x604c602c600b82828239805160001a60731460008114601c57601e565bfe5b5030600052607381538281f30073000000000000000000000000000000000000000030146080604052600080fd00a165627a7a723058209d8d44dc60b1f28d8f782ebcd7dfc126491532b427c91fd4564d4d0845fb996e0029",
  "deployedBytecode": "0x73000000000000000000000000000000000000000030146080604052600080fd00a165627a7a723058209d8d44dc60b1f28d8f782ebcd7dfc126491532b427c91fd4564d4d0845fb996e0029",
  "sourceMap": "71:1078:31:-;;132:2:-1;166:7;155:9;146:7;137:37;252:7;246:14;243:1;238:23;232:4;229:33;270:1;265:20;;;;222:63;;265:20;274:9;222:63;;298:9;295:1;288:20;328:4;319:7;311:22;352:7;343;336:24",
  "deployedSourceMap": "71:1078:31:-;;;;;;;;",
  "source": "/*\n * SPDX-License-Identitifer:    MIT\n */\n\npragma solidity ^0.4.24;\n\n\nlibrary UnstructuredStorage {\n    function getStorageBool(bytes32 position) internal view returns (bool data) {\n        assembly { data := sload(position) }\n    }\n\n    function getStorageAddress(bytes32 position) internal view returns (address data) {\n        assembly { data := sload(position) }\n    }\n\n    function getStorageBytes32(bytes32 position) internal view returns (bytes32 data) {\n        assembly { data := sload(position) }\n    }\n\n    function getStorageUint256(bytes32 position) internal view returns (uint256 data) {\n        assembly { data := sload(position) }\n    }\n\n    function setStorageBool(bytes32 position, bool data) internal {\n        assembly { sstore(position, data) }\n    }\n\n    function setStorageAddress(bytes32 position, address data) internal {\n        assembly { sstore(position, data) }\n    }\n\n    function setStorageBytes32(bytes32 position, bytes32 data) internal {\n        assembly { sstore(position, data) }\n    }\n\n    function setStorageUint256(bytes32 position, uint256 data) internal {\n        assembly { sstore(position, data) }\n    }\n}\n",
  "sourcePath": "@aragon/os/contracts/common/UnstructuredStorage.sol",
  "ast": {
    "absolutePath": "@aragon/os/contracts/common/UnstructuredStorage.sol",
    "exportedSymbols": {
      "UnstructuredStorage": [
        8975
      ]
    },
    "id": 8976,
    "nodeType": "SourceUnit",
    "nodes": [
      {
        "id": 8902,
        "literals": [
          "solidity",
          "^",
          "0.4",
          ".24"
        ],
        "nodeType": "PragmaDirective",
        "src": "44:24:31"
      },
      {
        "baseContracts": [],
        "contractDependencies": [],
        "contractKind": "library",
        "documentation": null,
        "fullyImplemented": true,
        "id": 8975,
        "linearizedBaseContracts": [
          8975
        ],
        "name": "UnstructuredStorage",
        "nodeType": "ContractDefinition",
        "nodes": [
          {
            "body": {
              "id": 8910,
              "nodeType": "Block",
              "src": "181:52:31",
              "statements": [
                {
                  "externalReferences": [
                    {
                      "data": {
                        "declaration": 8907,
                        "isOffset": false,
                        "isSlot": false,
                        "src": "202:4:31",
                        "valueSize": 1
                      }
                    },
                    {
                      "position": {
                        "declaration": 8904,
                        "isOffset": false,
                        "isSlot": false,
                        "src": "216:8:31",
                        "valueSize": 1
                      }
                    }
                  ],
                  "id": 8909,
                  "nodeType": "InlineAssembly",
                  "operations": "{\n    data := sload(position)\n}",
                  "src": "191:42:31"
                }
              ]
            },
            "documentation": null,
            "id": 8911,
            "implemented": true,
            "isConstructor": false,
            "isDeclaredConst": true,
            "modifiers": [],
            "name": "getStorageBool",
            "nodeType": "FunctionDefinition",
            "parameters": {
              "id": 8905,
              "nodeType": "ParameterList",
              "parameters": [
                {
                  "constant": false,
                  "id": 8904,
                  "name": "position",
                  "nodeType": "VariableDeclaration",
                  "scope": 8911,
                  "src": "129:16:31",
                  "stateVariable": false,
                  "storageLocation": "default",
                  "typeDescriptions": {
                    "typeIdentifier": "t_bytes32",
                    "typeString": "bytes32"
                  },
                  "typeName": {
                    "id": 8903,
                    "name": "bytes32",
                    "nodeType": "ElementaryTypeName",
                    "src": "129:7:31",
                    "typeDescriptions": {
                      "typeIdentifier": "t_bytes32",
                      "typeString": "bytes32"
                    }
                  },
                  "value": null,
                  "visibility": "internal"
                }
              ],
              "src": "128:18:31"
            },
            "payable": false,
            "returnParameters": {
              "id": 8908,
              "nodeType": "ParameterList",
              "parameters": [
                {
                  "constant": false,
                  "id": 8907,
                  "name": "data",
                  "nodeType": "VariableDeclaration",
                  "scope": 8911,
                  "src": "170:9:31",
                  "stateVariable": false,
                  "storageLocation": "default",
                  "typeDescriptions": {
                    "typeIdentifier": "t_bool",
                    "typeString": "bool"
                  },
                  "typeName": {
                    "id": 8906,
                    "name": "bool",
                    "nodeType": "ElementaryTypeName",
                    "src": "170:4:31",
                    "typeDescriptions": {
                      "typeIdentifier": "t_bool",
                      "typeString": "bool"
                    }
                  },
                  "value": null,
                  "visibility": "internal"
                }
              ],
              "src": "169:11:31"
            },
            "scope": 8975,
            "src": "105:128:31",
            "stateMutability": "view",
            "superFunction": null,
            "visibility": "internal"
          },
          {
            "body": {
              "id": 8919,
              "nodeType": "Block",
              "src": "321:52:31",
              "statements": [
                {
                  "externalReferences": [
                    {
                      "data": {
                        "declaration": 8916,
                        "isOffset": false,
                        "isSlot": false,
                        "src": "342:4:31",
                        "valueSize": 1
                      }
                    },
                    {
                      "position": {
                        "declaration": 8913,
                        "isOffset": false,
                        "isSlot": false,
                        "src": "356:8:31",
                        "valueSize": 1
                      }
                    }
                  ],
                  "id": 8918,
                  "nodeType": "InlineAssembly",
                  "operations": "{\n    data := sload(position)\n}",
                  "src": "331:42:31"
                }
              ]
            },
            "documentation": null,
            "id": 8920,
            "implemented": true,
            "isConstructor": false,
            "isDeclaredConst": true,
            "modifiers": [],
            "name": "getStorageAddress",
            "nodeType": "FunctionDefinition",
            "parameters": {
              "id": 8914,
              "nodeType": "ParameterList",
              "parameters": [
                {
                  "constant": false,
                  "id": 8913,
                  "name": "position",
                  "nodeType": "VariableDeclaration",
                  "scope": 8920,
                  "src": "266:16:31",
                  "stateVariable": false,
                  "storageLocation": "default",
                  "typeDescriptions": {
                    "typeIdentifier": "t_bytes32",
                    "typeString": "bytes32"
                  },
                  "typeName": {
                    "id": 8912,
                    "name": "bytes32",
                    "nodeType": "ElementaryTypeName",
                    "src": "266:7:31",
                    "typeDescriptions": {
                      "typeIdentifier": "t_bytes32",
                      "typeString": "bytes32"
                    }
                  },
                  "value": null,
                  "visibility": "internal"
                }
              ],
              "src": "265:18:31"
            },
            "payable": false,
            "returnParameters": {
              "id": 8917,
              "nodeType": "ParameterList",
              "parameters": [
                {
                  "constant": false,
                  "id": 8916,
                  "name": "data",
                  "nodeType": "VariableDeclaration",
                  "scope": 8920,
                  "src": "307:12:31",
                  "stateVariable": false,
                  "storageLocation": "default",
                  "typeDescriptions": {
                    "typeIdentifier": "t_address",
                    "typeString": "address"
                  },
                  "typeName": {
                    "id": 8915,
                    "name": "address",
                    "nodeType": "ElementaryTypeName",
                    "src": "307:7:31",
                    "typeDescriptions": {
                      "typeIdentifier": "t_address",
                      "typeString": "address"
                    }
                  },
                  "value": null,
                  "visibility": "internal"
                }
              ],
              "src": "306:14:31"
            },
            "scope": 8975,
            "src": "239:134:31",
            "stateMutability": "view",
            "superFunction": null,
            "visibility": "internal"
          },
          {
            "body": {
              "id": 8928,
              "nodeType": "Block",
              "src": "461:52:31",
              "statements": [
                {
                  "externalReferences": [
                    {
                      "data": {
                        "declaration": 8925,
                        "isOffset": false,
                        "isSlot": false,
                        "src": "482:4:31",
                        "valueSize": 1
                      }
                    },
                    {
                      "position": {
                        "declaration": 8922,
                        "isOffset": false,
                        "isSlot": false,
                        "src": "496:8:31",
                        "valueSize": 1
                      }
                    }
                  ],
                  "id": 8927,
                  "nodeType": "InlineAssembly",
                  "operations": "{\n    data := sload(position)\n}",
                  "src": "471:42:31"
                }
              ]
            },
            "documentation": null,
            "id": 8929,
            "implemented": true,
            "isConstructor": false,
            "isDeclaredConst": true,
            "modifiers": [],
            "name": "getStorageBytes32",
            "nodeType": "FunctionDefinition",
            "parameters": {
              "id": 8923,
              "nodeType": "ParameterList",
              "parameters": [
                {
                  "constant": false,
                  "id": 8922,
                  "name": "position",
                  "nodeType": "VariableDeclaration",
                  "scope": 8929,
                  "src": "406:16:31",
                  "stateVariable": false,
                  "storageLocation": "default",
                  "typeDescriptions": {
                    "typeIdentifier": "t_bytes32",
                    "typeString": "bytes32"
                  },
                  "typeName": {
                    "id": 8921,
                    "name": "bytes32",
                    "nodeType": "ElementaryTypeName",
                    "src": "406:7:31",
                    "typeDescriptions": {
                      "typeIdentifier": "t_bytes32",
                      "typeString": "bytes32"
                    }
                  },
                  "value": null,
                  "visibility": "internal"
                }
              ],
              "src": "405:18:31"
            },
            "payable": false,
            "returnParameters": {
              "id": 8926,
              "nodeType": "ParameterList",
              "parameters": [
                {
                  "constant": false,
                  "id": 8925,
                  "name": "data",
                  "nodeType": "VariableDeclaration",
                  "scope": 8929,
                  "src": "447:12:31",
                  "stateVariable": false,
                  "storageLocation": "default",
                  "typeDescriptions": {
                    "typeIdentifier": "t_bytes32",
                    "typeString": "bytes32"
                  },
                  "typeName": {
                    "id": 8924,
                    "name": "bytes32",
                    "nodeType": "ElementaryTypeName",
                    "src": "447:7:31",
                    "typeDescriptions": {
                      "typeIdentifier": "t_bytes32",
                      "typeString": "bytes32"
                    }
                  },
                  "value": null,
                  "visibility": "internal"
                }
              ],
              "src": "446:14:31"
            },
            "scope": 8975,
            "src": "379:134:31",
            "stateMutability": "view",
            "superFunction": null,
            "visibility": "internal"
          },
          {
            "body": {
              "id": 8937,
              "nodeType": "Block",
              "src": "601:52:31",
              "statements": [
                {
                  "externalReferences": [
                    {
                      "data": {
                        "declaration": 8934,
                        "isOffset": false,
                        "isSlot": false,
                        "src": "622:4:31",
                        "valueSize": 1
                      }
                    },
                    {
                      "position": {
                        "declaration": 8931,
                        "isOffset": false,
                        "isSlot": false,
                        "src": "636:8:31",
                        "valueSize": 1
                      }
                    }
                  ],
                  "id": 8936,
                  "nodeType": "InlineAssembly",
                  "operations": "{\n    data := sload(position)\n}",
                  "src": "611:42:31"
                }
              ]
            },
            "documentation": null,
            "id": 8938,
            "implemented": true,
            "isConstructor": false,
            "isDeclaredConst": true,
            "modifiers": [],
            "name": "getStorageUint256",
            "nodeType": "FunctionDefinition",
            "parameters": {
              "id": 8932,
              "nodeType": "ParameterList",
              "parameters": [
                {
                  "constant": false,
                  "id": 8931,
                  "name": "position",
                  "nodeType": "VariableDeclaration",
                  "scope": 8938,
                  "src": "546:16:31",
                  "stateVariable": false,
                  "storageLocation": "default",
                  "typeDescriptions": {
                    "typeIdentifier": "t_bytes32",
                    "typeString": "bytes32"
                  },
                  "typeName": {
                    "id": 8930,
                    "name": "bytes32",
                    "nodeType": "ElementaryTypeName",
                    "src": "546:7:31",
                    "typeDescriptions": {
                      "typeIdentifier": "t_bytes32",
                      "typeString": "bytes32"
                    }
                  },
                  "value": null,
                  "visibility": "internal"
                }
              ],
              "src": "545:18:31"
            },
            "payable": false,
            "returnParameters": {
              "id": 8935,
              "nodeType": "ParameterList",
              "parameters": [
                {
                  "constant": false,
                  "id": 8934,
                  "name": "data",
                  "nodeType": "VariableDeclaration",
                  "scope": 8938,
                  "src": "587:12:31",
                  "stateVariable": false,
                  "storageLocation": "default",
                  "typeDescriptions": {
                    "typeIdentifier": "t_uint256",
                    "typeString": "uint256"
                  },
                  "typeName": {
                    "id": 8933,
                    "name": "uint256",
                    "nodeType": "ElementaryTypeName",
                    "src": "587:7:31",
                    "typeDescriptions": {
                      "typeIdentifier": "t_uint256",
                      "typeString": "uint256"
                    }
                  },
                  "value": null,
                  "visibility": "internal"
                }
              ],
              "src": "586:14:31"
            },
            "scope": 8975,
            "src": "519:134:31",
            "stateMutability": "view",
            "superFunction": null,
            "visibility": "internal"
          },
          {
            "body": {
              "id": 8946,
              "nodeType": "Block",
              "src": "721:51:31",
              "statements": [
                {
                  "externalReferences": [
                    {
                      "position": {
                        "declaration": 8940,
                        "isOffset": false,
                        "isSlot": false,
                        "src": "749:8:31",
                        "valueSize": 1
                      }
                    },
                    {
                      "data": {
                        "declaration": 8942,
                        "isOffset": false,
                        "isSlot": false,
                        "src": "759:4:31",
                        "valueSize": 1
                      }
                    }
                  ],
                  "id": 8945,
                  "nodeType": "InlineAssembly",
                  "operations": "{\n    sstore(position, data)\n}",
                  "src": "731:41:31"
                }
              ]
            },
            "documentation": null,
            "id": 8947,
            "implemented": true,
            "isConstructor": false,
            "isDeclaredConst": false,
            "modifiers": [],
            "name": "setStorageBool",
            "nodeType": "FunctionDefinition",
            "parameters": {
              "id": 8943,
              "nodeType": "ParameterList",
              "parameters": [
                {
                  "constant": false,
                  "id": 8940,
                  "name": "position",
                  "nodeType": "VariableDeclaration",
                  "scope": 8947,
                  "src": "683:16:31",
                  "stateVariable": false,
                  "storageLocation": "default",
                  "typeDescriptions": {
                    "typeIdentifier": "t_bytes32",
                    "typeString": "bytes32"
                  },
                  "typeName": {
                    "id": 8939,
                    "name": "bytes32",
                    "nodeType": "ElementaryTypeName",
                    "src": "683:7:31",
                    "typeDescriptions": {
                      "typeIdentifier": "t_bytes32",
                      "typeString": "bytes32"
                    }
                  },
                  "value": null,
                  "visibility": "internal"
                },
                {
                  "constant": false,
                  "id": 8942,
                  "name": "data",
                  "nodeType": "VariableDeclaration",
                  "scope": 8947,
                  "src": "701:9:31",
                  "stateVariable": false,
                  "storageLocation": "default",
                  "typeDescriptions": {
                    "typeIdentifier": "t_bool",
                    "typeString": "bool"
                  },
                  "typeName": {
                    "id": 8941,
                    "name": "bool",
                    "nodeType": "ElementaryTypeName",
                    "src": "701:4:31",
                    "typeDescriptions": {
                      "typeIdentifier": "t_bool",
                      "typeString": "bool"
                    }
                  },
                  "value": null,
                  "visibility": "internal"
                }
              ],
              "src": "682:29:31"
            },
            "payable": false,
            "returnParameters": {
              "id": 8944,
              "nodeType": "ParameterList",
              "parameters": [],
              "src": "721:0:31"
            },
            "scope": 8975,
            "src": "659:113:31",
            "stateMutability": "nonpayable",
            "superFunction": null,
            "visibility": "internal"
          },
          {
            "body": {
              "id": 8955,
              "nodeType": "Block",
              "src": "846:51:31",
              "statements": [
                {
                  "externalReferences": [
                    {
                      "position": {
                        "declaration": 8949,
                        "isOffset": false,
                        "isSlot": false,
                        "src": "874:8:31",
                        "valueSize": 1
                      }
                    },
                    {
                      "data": {
                        "declaration": 8951,
                        "isOffset": false,
                        "isSlot": false,
                        "src": "884:4:31",
                        "valueSize": 1
                      }
                    }
                  ],
                  "id": 8954,
                  "nodeType": "InlineAssembly",
                  "operations": "{\n    sstore(position, data)\n}",
                  "src": "856:41:31"
                }
              ]
            },
            "documentation": null,
            "id": 8956,
            "implemented": true,
            "isConstructor": false,
            "isDeclaredConst": false,
            "modifiers": [],
            "name": "setStorageAddress",
            "nodeType": "FunctionDefinition",
            "parameters": {
              "id": 8952,
              "nodeType": "ParameterList",
              "parameters": [
                {
                  "constant": false,
                  "id": 8949,
                  "name": "position",
                  "nodeType": "VariableDeclaration",
                  "scope": 8956,
                  "src": "805:16:31",
                  "stateVariable": false,
                  "storageLocation": "default",
                  "typeDescriptions": {
                    "typeIdentifier": "t_bytes32",
                    "typeString": "bytes32"
                  },
                  "typeName": {
                    "id": 8948,
                    "name": "bytes32",
                    "nodeType": "ElementaryTypeName",
                    "src": "805:7:31",
                    "typeDescriptions": {
                      "typeIdentifier": "t_bytes32",
                      "typeString": "bytes32"
                    }
                  },
                  "value": null,
                  "visibility": "internal"
                },
                {
                  "constant": false,
                  "id": 8951,
                  "name": "data",
                  "nodeType": "VariableDeclaration",
                  "scope": 8956,
                  "src": "823:12:31",
                  "stateVariable": false,
                  "storageLocation": "default",
                  "typeDescriptions": {
                    "typeIdentifier": "t_address",
                    "typeString": "address"
                  },
                  "typeName": {
                    "id": 8950,
                    "name": "address",
                    "nodeType": "ElementaryTypeName",
                    "src": "823:7:31",
                    "typeDescriptions": {
                      "typeIdentifier": "t_address",
                      "typeString": "address"
                    }
                  },
                  "value": null,
                  "visibility": "internal"
                }
              ],
              "src": "804:32:31"
            },
            "payable": false,
            "returnParameters": {
              "id": 8953,
              "nodeType": "ParameterList",
              "parameters": [],
              "src": "846:0:31"
            },
            "scope": 8975,
            "src": "778:119:31",
            "stateMutability": "nonpayable",
            "superFunction": null,
            "visibility": "internal"
          },
          {
            "body": {
              "id": 8964,
              "nodeType": "Block",
              "src": "971:51:31",
              "statements": [
                {
                  "externalReferences": [
                    {
                      "position": {
                        "declaration": 8958,
                        "isOffset": false,
                        "isSlot": false,
                        "src": "999:8:31",
                        "valueSize": 1
                      }
                    },
                    {
                      "data": {
                        "declaration": 8960,
                        "isOffset": false,
                        "isSlot": false,
                        "src": "1009:4:31",
                        "valueSize": 1
                      }
                    }
                  ],
                  "id": 8963,
                  "nodeType": "InlineAssembly",
                  "operations": "{\n    sstore(position, data)\n}",
                  "src": "981:41:31"
                }
              ]
            },
            "documentation": null,
            "id": 8965,
            "implemented": true,
            "isConstructor": false,
            "isDeclaredConst": false,
            "modifiers": [],
            "name": "setStorageBytes32",
            "nodeType": "FunctionDefinition",
            "parameters": {
              "id": 8961,
              "nodeType": "ParameterList",
              "parameters": [
                {
                  "constant": false,
                  "id": 8958,
                  "name": "position",
                  "nodeType": "VariableDeclaration",
                  "scope": 8965,
                  "src": "930:16:31",
                  "stateVariable": false,
                  "storageLocation": "default",
                  "typeDescriptions": {
                    "typeIdentifier": "t_bytes32",
                    "typeString": "bytes32"
                  },
                  "typeName": {
                    "id": 8957,
                    "name": "bytes32",
                    "nodeType": "ElementaryTypeName",
                    "src": "930:7:31",
                    "typeDescriptions": {
                      "typeIdentifier": "t_bytes32",
                      "typeString": "bytes32"
                    }
                  },
                  "value": null,
                  "visibility": "internal"
                },
                {
                  "constant": false,
                  "id": 8960,
                  "name": "data",
                  "nodeType": "VariableDeclaration",
                  "scope": 8965,
                  "src": "948:12:31",
                  "stateVariable": false,
                  "storageLocation": "default",
                  "typeDescriptions": {
                    "typeIdentifier": "t_bytes32",
                    "typeString": "bytes32"
                  },
                  "typeName": {
                    "id": 8959,
                    "name": "bytes32",
                    "nodeType": "ElementaryTypeName",
                    "src": "948:7:31",
                    "typeDescriptions": {
                      "typeIdentifier": "t_bytes32",
                      "typeString": "bytes32"
                    }
                  },
                  "value": null,
                  "visibility": "internal"
                }
              ],
              "src": "929:32:31"
            },
            "payable": false,
            "returnParameters": {
              "id": 8962,
              "nodeType": "ParameterList",
              "parameters": [],
              "src": "971:0:31"
            },
            "scope": 8975,
            "src": "903:119:31",
            "stateMutability": "nonpayable",
            "superFunction": null,
            "visibility": "internal"
          },
          {
            "body": {
              "id": 8973,
              "nodeType": "Block",
              "src": "1096:51:31",
              "statements": [
                {
                  "externalReferences": [
                    {
                      "position": {
                        "declaration": 8967,
                        "isOffset": false,
                        "isSlot": false,
                        "src": "1124:8:31",
                        "valueSize": 1
                      }
                    },
                    {
                      "data": {
                        "declaration": 8969,
                        "isOffset": false,
                        "isSlot": false,
                        "src": "1134:4:31",
                        "valueSize": 1
                      }
                    }
                  ],
                  "id": 8972,
                  "nodeType": "InlineAssembly",
                  "operations": "{\n    sstore(position, data)\n}",
                  "src": "1106:41:31"
                }
              ]
            },
            "documentation": null,
            "id": 8974,
            "implemented": true,
            "isConstructor": false,
            "isDeclaredConst": false,
            "modifiers": [],
            "name": "setStorageUint256",
            "nodeType": "FunctionDefinition",
            "parameters": {
              "id": 8970,
              "nodeType": "ParameterList",
              "parameters": [
                {
                  "constant": false,
                  "id": 8967,
                  "name": "position",
                  "nodeType": "VariableDeclaration",
                  "scope": 8974,
                  "src": "1055:16:31",
                  "stateVariable": false,
                  "storageLocation": "default",
                  "typeDescriptions": {
                    "typeIdentifier": "t_bytes32",
                    "typeString": "bytes32"
                  },
                  "typeName": {
                    "id": 8966,
                    "name": "bytes32",
                    "nodeType": "ElementaryTypeName",
                    "src": "1055:7:31",
                    "typeDescriptions": {
                      "typeIdentifier": "t_bytes32",
                      "typeString": "bytes32"
                    }
                  },
                  "value": null,
                  "visibility": "internal"
                },
                {
                  "constant": false,
                  "id": 8969,
                  "name": "data",
                  "nodeType": "VariableDeclaration",
                  "scope": 8974,
                  "src": "1073:12:31",
                  "stateVariable": false,
                  "storageLocation": "default",
                  "typeDescriptions": {
                    "typeIdentifier": "t_uint256",
                    "typeString": "uint256"
                  },
                  "typeName": {
                    "id": 8968,
                    "name": "uint256",
                    "nodeType": "ElementaryTypeName",
                    "src": "1073:7:31",
                    "typeDescriptions": {
                      "typeIdentifier": "t_uint256",
                      "typeString": "uint256"
                    }
                  },
                  "value": null,
                  "visibility": "internal"
                }
              ],
              "src": "1054:32:31"
            },
            "payable": false,
            "returnParameters": {
              "id": 8971,
              "nodeType": "ParameterList",
              "parameters": [],
              "src": "1096:0:31"
            },
            "scope": 8975,
            "src": "1028:119:31",
            "stateMutability": "nonpayable",
            "superFunction": null,
            "visibility": "internal"
          }
        ],
        "scope": 8976,
        "src": "71:1078:31"
      }
    ],
    "src": "44:1106:31"
  },
  "legacyAST": {
    "absolutePath": "@aragon/os/contracts/common/UnstructuredStorage.sol",
    "exportedSymbols": {
      "UnstructuredStorage": [
        8975
      ]
    },
    "id": 8976,
    "nodeType": "SourceUnit",
    "nodes": [
      {
        "id": 8902,
        "literals": [
          "solidity",
          "^",
          "0.4",
          ".24"
        ],
        "nodeType": "PragmaDirective",
        "src": "44:24:31"
      },
      {
        "baseContracts": [],
        "contractDependencies": [],
        "contractKind": "library",
        "documentation": null,
        "fullyImplemented": true,
        "id": 8975,
        "linearizedBaseContracts": [
          8975
        ],
        "name": "UnstructuredStorage",
        "nodeType": "ContractDefinition",
        "nodes": [
          {
            "body": {
              "id": 8910,
              "nodeType": "Block",
              "src": "181:52:31",
              "statements": [
                {
                  "externalReferences": [
                    {
                      "data": {
                        "declaration": 8907,
                        "isOffset": false,
                        "isSlot": false,
                        "src": "202:4:31",
                        "valueSize": 1
                      }
                    },
                    {
                      "position": {
                        "declaration": 8904,
                        "isOffset": false,
                        "isSlot": false,
                        "src": "216:8:31",
                        "valueSize": 1
                      }
                    }
                  ],
                  "id": 8909,
                  "nodeType": "InlineAssembly",
                  "operations": "{\n    data := sload(position)\n}",
                  "src": "191:42:31"
                }
              ]
            },
            "documentation": null,
            "id": 8911,
            "implemented": true,
            "isConstructor": false,
            "isDeclaredConst": true,
            "modifiers": [],
            "name": "getStorageBool",
            "nodeType": "FunctionDefinition",
            "parameters": {
              "id": 8905,
              "nodeType": "ParameterList",
              "parameters": [
                {
                  "constant": false,
                  "id": 8904,
                  "name": "position",
                  "nodeType": "VariableDeclaration",
                  "scope": 8911,
                  "src": "129:16:31",
                  "stateVariable": false,
                  "storageLocation": "default",
                  "typeDescriptions": {
                    "typeIdentifier": "t_bytes32",
                    "typeString": "bytes32"
                  },
                  "typeName": {
                    "id": 8903,
                    "name": "bytes32",
                    "nodeType": "ElementaryTypeName",
                    "src": "129:7:31",
                    "typeDescriptions": {
                      "typeIdentifier": "t_bytes32",
                      "typeString": "bytes32"
                    }
                  },
                  "value": null,
                  "visibility": "internal"
                }
              ],
              "src": "128:18:31"
            },
            "payable": false,
            "returnParameters": {
              "id": 8908,
              "nodeType": "ParameterList",
              "parameters": [
                {
                  "constant": false,
                  "id": 8907,
                  "name": "data",
                  "nodeType": "VariableDeclaration",
                  "scope": 8911,
                  "src": "170:9:31",
                  "stateVariable": false,
                  "storageLocation": "default",
                  "typeDescriptions": {
                    "typeIdentifier": "t_bool",
                    "typeString": "bool"
                  },
                  "typeName": {
                    "id": 8906,
                    "name": "bool",
                    "nodeType": "ElementaryTypeName",
                    "src": "170:4:31",
                    "typeDescriptions": {
                      "typeIdentifier": "t_bool",
                      "typeString": "bool"
                    }
                  },
                  "value": null,
                  "visibility": "internal"
                }
              ],
              "src": "169:11:31"
            },
            "scope": 8975,
            "src": "105:128:31",
            "stateMutability": "view",
            "superFunction": null,
            "visibility": "internal"
          },
          {
            "body": {
              "id": 8919,
              "nodeType": "Block",
              "src": "321:52:31",
              "statements": [
                {
                  "externalReferences": [
                    {
                      "data": {
                        "declaration": 8916,
                        "isOffset": false,
                        "isSlot": false,
                        "src": "342:4:31",
                        "valueSize": 1
                      }
                    },
                    {
                      "position": {
                        "declaration": 8913,
                        "isOffset": false,
                        "isSlot": false,
                        "src": "356:8:31",
                        "valueSize": 1
                      }
                    }
                  ],
                  "id": 8918,
                  "nodeType": "InlineAssembly",
                  "operations": "{\n    data := sload(position)\n}",
                  "src": "331:42:31"
                }
              ]
            },
            "documentation": null,
            "id": 8920,
            "implemented": true,
            "isConstructor": false,
            "isDeclaredConst": true,
            "modifiers": [],
            "name": "getStorageAddress",
            "nodeType": "FunctionDefinition",
            "parameters": {
              "id": 8914,
              "nodeType": "ParameterList",
              "parameters": [
                {
                  "constant": false,
                  "id": 8913,
                  "name": "position",
                  "nodeType": "VariableDeclaration",
                  "scope": 8920,
                  "src": "266:16:31",
                  "stateVariable": false,
                  "storageLocation": "default",
                  "typeDescriptions": {
                    "typeIdentifier": "t_bytes32",
                    "typeString": "bytes32"
                  },
                  "typeName": {
                    "id": 8912,
                    "name": "bytes32",
                    "nodeType": "ElementaryTypeName",
                    "src": "266:7:31",
                    "typeDescriptions": {
                      "typeIdentifier": "t_bytes32",
                      "typeString": "bytes32"
                    }
                  },
                  "value": null,
                  "visibility": "internal"
                }
              ],
              "src": "265:18:31"
            },
            "payable": false,
            "returnParameters": {
              "id": 8917,
              "nodeType": "ParameterList",
              "parameters": [
                {
                  "constant": false,
                  "id": 8916,
                  "name": "data",
                  "nodeType": "VariableDeclaration",
                  "scope": 8920,
                  "src": "307:12:31",
                  "stateVariable": false,
                  "storageLocation": "default",
                  "typeDescriptions": {
                    "typeIdentifier": "t_address",
                    "typeString": "address"
                  },
                  "typeName": {
                    "id": 8915,
                    "name": "address",
                    "nodeType": "ElementaryTypeName",
                    "src": "307:7:31",
                    "typeDescriptions": {
                      "typeIdentifier": "t_address",
                      "typeString": "address"
                    }
                  },
                  "value": null,
                  "visibility": "internal"
                }
              ],
              "src": "306:14:31"
            },
            "scope": 8975,
            "src": "239:134:31",
            "stateMutability": "view",
            "superFunction": null,
            "visibility": "internal"
          },
          {
            "body": {
              "id": 8928,
              "nodeType": "Block",
              "src": "461:52:31",
              "statements": [
                {
                  "externalReferences": [
                    {
                      "data": {
                        "declaration": 8925,
                        "isOffset": false,
                        "isSlot": false,
                        "src": "482:4:31",
                        "valueSize": 1
                      }
                    },
                    {
                      "position": {
                        "declaration": 8922,
                        "isOffset": false,
                        "isSlot": false,
                        "src": "496:8:31",
                        "valueSize": 1
                      }
                    }
                  ],
                  "id": 8927,
                  "nodeType": "InlineAssembly",
                  "operations": "{\n    data := sload(position)\n}",
                  "src": "471:42:31"
                }
              ]
            },
            "documentation": null,
            "id": 8929,
            "implemented": true,
            "isConstructor": false,
            "isDeclaredConst": true,
            "modifiers": [],
            "name": "getStorageBytes32",
            "nodeType": "FunctionDefinition",
            "parameters": {
              "id": 8923,
              "nodeType": "ParameterList",
              "parameters": [
                {
                  "constant": false,
                  "id": 8922,
                  "name": "position",
                  "nodeType": "VariableDeclaration",
                  "scope": 8929,
                  "src": "406:16:31",
                  "stateVariable": false,
                  "storageLocation": "default",
                  "typeDescriptions": {
                    "typeIdentifier": "t_bytes32",
                    "typeString": "bytes32"
                  },
                  "typeName": {
                    "id": 8921,
                    "name": "bytes32",
                    "nodeType": "ElementaryTypeName",
                    "src": "406:7:31",
                    "typeDescriptions": {
                      "typeIdentifier": "t_bytes32",
                      "typeString": "bytes32"
                    }
                  },
                  "value": null,
                  "visibility": "internal"
                }
              ],
              "src": "405:18:31"
            },
            "payable": false,
            "returnParameters": {
              "id": 8926,
              "nodeType": "ParameterList",
              "parameters": [
                {
                  "constant": false,
                  "id": 8925,
                  "name": "data",
                  "nodeType": "VariableDeclaration",
                  "scope": 8929,
                  "src": "447:12:31",
                  "stateVariable": false,
                  "storageLocation": "default",
                  "typeDescriptions": {
                    "typeIdentifier": "t_bytes32",
                    "typeString": "bytes32"
                  },
                  "typeName": {
                    "id": 8924,
                    "name": "bytes32",
                    "nodeType": "ElementaryTypeName",
                    "src": "447:7:31",
                    "typeDescriptions": {
                      "typeIdentifier": "t_bytes32",
                      "typeString": "bytes32"
                    }
                  },
                  "value": null,
                  "visibility": "internal"
                }
              ],
              "src": "446:14:31"
            },
            "scope": 8975,
            "src": "379:134:31",
            "stateMutability": "view",
            "superFunction": null,
            "visibility": "internal"
          },
          {
            "body": {
              "id": 8937,
              "nodeType": "Block",
              "src": "601:52:31",
              "statements": [
                {
                  "externalReferences": [
                    {
                      "data": {
                        "declaration": 8934,
                        "isOffset": false,
                        "isSlot": false,
                        "src": "622:4:31",
                        "valueSize": 1
                      }
                    },
                    {
                      "position": {
                        "declaration": 8931,
                        "isOffset": false,
                        "isSlot": false,
                        "src": "636:8:31",
                        "valueSize": 1
                      }
                    }
                  ],
                  "id": 8936,
                  "nodeType": "InlineAssembly",
                  "operations": "{\n    data := sload(position)\n}",
                  "src": "611:42:31"
                }
              ]
            },
            "documentation": null,
            "id": 8938,
            "implemented": true,
            "isConstructor": false,
            "isDeclaredConst": true,
            "modifiers": [],
            "name": "getStorageUint256",
            "nodeType": "FunctionDefinition",
            "parameters": {
              "id": 8932,
              "nodeType": "ParameterList",
              "parameters": [
                {
                  "constant": false,
                  "id": 8931,
                  "name": "position",
                  "nodeType": "VariableDeclaration",
                  "scope": 8938,
                  "src": "546:16:31",
                  "stateVariable": false,
                  "storageLocation": "default",
                  "typeDescriptions": {
                    "typeIdentifier": "t_bytes32",
                    "typeString": "bytes32"
                  },
                  "typeName": {
                    "id": 8930,
                    "name": "bytes32",
                    "nodeType": "ElementaryTypeName",
                    "src": "546:7:31",
                    "typeDescriptions": {
                      "typeIdentifier": "t_bytes32",
                      "typeString": "bytes32"
                    }
                  },
                  "value": null,
                  "visibility": "internal"
                }
              ],
              "src": "545:18:31"
            },
            "payable": false,
            "returnParameters": {
              "id": 8935,
              "nodeType": "ParameterList",
              "parameters": [
                {
                  "constant": false,
                  "id": 8934,
                  "name": "data",
                  "nodeType": "VariableDeclaration",
                  "scope": 8938,
                  "src": "587:12:31",
                  "stateVariable": false,
                  "storageLocation": "default",
                  "typeDescriptions": {
                    "typeIdentifier": "t_uint256",
                    "typeString": "uint256"
                  },
                  "typeName": {
                    "id": 8933,
                    "name": "uint256",
                    "nodeType": "ElementaryTypeName",
                    "src": "587:7:31",
                    "typeDescriptions": {
                      "typeIdentifier": "t_uint256",
                      "typeString": "uint256"
                    }
                  },
                  "value": null,
                  "visibility": "internal"
                }
              ],
              "src": "586:14:31"
            },
            "scope": 8975,
            "src": "519:134:31",
            "stateMutability": "view",
            "superFunction": null,
            "visibility": "internal"
          },
          {
            "body": {
              "id": 8946,
              "nodeType": "Block",
              "src": "721:51:31",
              "statements": [
                {
                  "externalReferences": [
                    {
                      "position": {
                        "declaration": 8940,
                        "isOffset": false,
                        "isSlot": false,
                        "src": "749:8:31",
                        "valueSize": 1
                      }
                    },
                    {
                      "data": {
                        "declaration": 8942,
                        "isOffset": false,
                        "isSlot": false,
                        "src": "759:4:31",
                        "valueSize": 1
                      }
                    }
                  ],
                  "id": 8945,
                  "nodeType": "InlineAssembly",
                  "operations": "{\n    sstore(position, data)\n}",
                  "src": "731:41:31"
                }
              ]
            },
            "documentation": null,
            "id": 8947,
            "implemented": true,
            "isConstructor": false,
            "isDeclaredConst": false,
            "modifiers": [],
            "name": "setStorageBool",
            "nodeType": "FunctionDefinition",
            "parameters": {
              "id": 8943,
              "nodeType": "ParameterList",
              "parameters": [
                {
                  "constant": false,
                  "id": 8940,
                  "name": "position",
                  "nodeType": "VariableDeclaration",
                  "scope": 8947,
                  "src": "683:16:31",
                  "stateVariable": false,
                  "storageLocation": "default",
                  "typeDescriptions": {
                    "typeIdentifier": "t_bytes32",
                    "typeString": "bytes32"
                  },
                  "typeName": {
                    "id": 8939,
                    "name": "bytes32",
                    "nodeType": "ElementaryTypeName",
                    "src": "683:7:31",
                    "typeDescriptions": {
                      "typeIdentifier": "t_bytes32",
                      "typeString": "bytes32"
                    }
                  },
                  "value": null,
                  "visibility": "internal"
                },
                {
                  "constant": false,
                  "id": 8942,
                  "name": "data",
                  "nodeType": "VariableDeclaration",
                  "scope": 8947,
                  "src": "701:9:31",
                  "stateVariable": false,
                  "storageLocation": "default",
                  "typeDescriptions": {
                    "typeIdentifier": "t_bool",
                    "typeString": "bool"
                  },
                  "typeName": {
                    "id": 8941,
                    "name": "bool",
                    "nodeType": "ElementaryTypeName",
                    "src": "701:4:31",
                    "typeDescriptions": {
                      "typeIdentifier": "t_bool",
                      "typeString": "bool"
                    }
                  },
                  "value": null,
                  "visibility": "internal"
                }
              ],
              "src": "682:29:31"
            },
            "payable": false,
            "returnParameters": {
              "id": 8944,
              "nodeType": "ParameterList",
              "parameters": [],
              "src": "721:0:31"
            },
            "scope": 8975,
            "src": "659:113:31",
            "stateMutability": "nonpayable",
            "superFunction": null,
            "visibility": "internal"
          },
          {
            "body": {
              "id": 8955,
              "nodeType": "Block",
              "src": "846:51:31",
              "statements": [
                {
                  "externalReferences": [
                    {
                      "position": {
                        "declaration": 8949,
                        "isOffset": false,
                        "isSlot": false,
                        "src": "874:8:31",
                        "valueSize": 1
                      }
                    },
                    {
                      "data": {
                        "declaration": 8951,
                        "isOffset": false,
                        "isSlot": false,
                        "src": "884:4:31",
                        "valueSize": 1
                      }
                    }
                  ],
                  "id": 8954,
                  "nodeType": "InlineAssembly",
                  "operations": "{\n    sstore(position, data)\n}",
                  "src": "856:41:31"
                }
              ]
            },
            "documentation": null,
            "id": 8956,
            "implemented": true,
            "isConstructor": false,
            "isDeclaredConst": false,
            "modifiers": [],
            "name": "setStorageAddress",
            "nodeType": "FunctionDefinition",
            "parameters": {
              "id": 8952,
              "nodeType": "ParameterList",
              "parameters": [
                {
                  "constant": false,
                  "id": 8949,
                  "name": "position",
                  "nodeType": "VariableDeclaration",
                  "scope": 8956,
                  "src": "805:16:31",
                  "stateVariable": false,
                  "storageLocation": "default",
                  "typeDescriptions": {
                    "typeIdentifier": "t_bytes32",
                    "typeString": "bytes32"
                  },
                  "typeName": {
                    "id": 8948,
                    "name": "bytes32",
                    "nodeType": "ElementaryTypeName",
                    "src": "805:7:31",
                    "typeDescriptions": {
                      "typeIdentifier": "t_bytes32",
                      "typeString": "bytes32"
                    }
                  },
                  "value": null,
                  "visibility": "internal"
                },
                {
                  "constant": false,
                  "id": 8951,
                  "name": "data",
                  "nodeType": "VariableDeclaration",
                  "scope": 8956,
                  "src": "823:12:31",
                  "stateVariable": false,
                  "storageLocation": "default",
                  "typeDescriptions": {
                    "typeIdentifier": "t_address",
                    "typeString": "address"
                  },
                  "typeName": {
                    "id": 8950,
                    "name": "address",
                    "nodeType": "ElementaryTypeName",
                    "src": "823:7:31",
                    "typeDescriptions": {
                      "typeIdentifier": "t_address",
                      "typeString": "address"
                    }
                  },
                  "value": null,
                  "visibility": "internal"
                }
              ],
              "src": "804:32:31"
            },
            "payable": false,
            "returnParameters": {
              "id": 8953,
              "nodeType": "ParameterList",
              "parameters": [],
              "src": "846:0:31"
            },
            "scope": 8975,
            "src": "778:119:31",
            "stateMutability": "nonpayable",
            "superFunction": null,
            "visibility": "internal"
          },
          {
            "body": {
              "id": 8964,
              "nodeType": "Block",
              "src": "971:51:31",
              "statements": [
                {
                  "externalReferences": [
                    {
                      "position": {
                        "declaration": 8958,
                        "isOffset": false,
                        "isSlot": false,
                        "src": "999:8:31",
                        "valueSize": 1
                      }
                    },
                    {
                      "data": {
                        "declaration": 8960,
                        "isOffset": false,
                        "isSlot": false,
                        "src": "1009:4:31",
                        "valueSize": 1
                      }
                    }
                  ],
                  "id": 8963,
                  "nodeType": "InlineAssembly",
                  "operations": "{\n    sstore(position, data)\n}",
                  "src": "981:41:31"
                }
              ]
            },
            "documentation": null,
            "id": 8965,
            "implemented": true,
            "isConstructor": false,
            "isDeclaredConst": false,
            "modifiers": [],
            "name": "setStorageBytes32",
            "nodeType": "FunctionDefinition",
            "parameters": {
              "id": 8961,
              "nodeType": "ParameterList",
              "parameters": [
                {
                  "constant": false,
                  "id": 8958,
                  "name": "position",
                  "nodeType": "VariableDeclaration",
                  "scope": 8965,
                  "src": "930:16:31",
                  "stateVariable": false,
                  "storageLocation": "default",
                  "typeDescriptions": {
                    "typeIdentifier": "t_bytes32",
                    "typeString": "bytes32"
                  },
                  "typeName": {
                    "id": 8957,
                    "name": "bytes32",
                    "nodeType": "ElementaryTypeName",
                    "src": "930:7:31",
                    "typeDescriptions": {
                      "typeIdentifier": "t_bytes32",
                      "typeString": "bytes32"
                    }
                  },
                  "value": null,
                  "visibility": "internal"
                },
                {
                  "constant": false,
                  "id": 8960,
                  "name": "data",
                  "nodeType": "VariableDeclaration",
                  "scope": 8965,
                  "src": "948:12:31",
                  "stateVariable": false,
                  "storageLocation": "default",
                  "typeDescriptions": {
                    "typeIdentifier": "t_bytes32",
                    "typeString": "bytes32"
                  },
                  "typeName": {
                    "id": 8959,
                    "name": "bytes32",
                    "nodeType": "ElementaryTypeName",
                    "src": "948:7:31",
                    "typeDescriptions": {
                      "typeIdentifier": "t_bytes32",
                      "typeString": "bytes32"
                    }
                  },
                  "value": null,
                  "visibility": "internal"
                }
              ],
              "src": "929:32:31"
            },
            "payable": false,
            "returnParameters": {
              "id": 8962,
              "nodeType": "ParameterList",
              "parameters": [],
              "src": "971:0:31"
            },
            "scope": 8975,
            "src": "903:119:31",
            "stateMutability": "nonpayable",
            "superFunction": null,
            "visibility": "internal"
          },
          {
            "body": {
              "id": 8973,
              "nodeType": "Block",
              "src": "1096:51:31",
              "statements": [
                {
                  "externalReferences": [
                    {
                      "position": {
                        "declaration": 8967,
                        "isOffset": false,
                        "isSlot": false,
                        "src": "1124:8:31",
                        "valueSize": 1
                      }
                    },
                    {
                      "data": {
                        "declaration": 8969,
                        "isOffset": false,
                        "isSlot": false,
                        "src": "1134:4:31",
                        "valueSize": 1
                      }
                    }
                  ],
                  "id": 8972,
                  "nodeType": "InlineAssembly",
                  "operations": "{\n    sstore(position, data)\n}",
                  "src": "1106:41:31"
                }
              ]
            },
            "documentation": null,
            "id": 8974,
            "implemented": true,
            "isConstructor": false,
            "isDeclaredConst": false,
            "modifiers": [],
            "name": "setStorageUint256",
            "nodeType": "FunctionDefinition",
            "parameters": {
              "id": 8970,
              "nodeType": "ParameterList",
              "parameters": [
                {
                  "constant": false,
                  "id": 8967,
                  "name": "position",
                  "nodeType": "VariableDeclaration",
                  "scope": 8974,
                  "src": "1055:16:31",
                  "stateVariable": false,
                  "storageLocation": "default",
                  "typeDescriptions": {
                    "typeIdentifier": "t_bytes32",
                    "typeString": "bytes32"
                  },
                  "typeName": {
                    "id": 8966,
                    "name": "bytes32",
                    "nodeType": "ElementaryTypeName",
                    "src": "1055:7:31",
                    "typeDescriptions": {
                      "typeIdentifier": "t_bytes32",
                      "typeString": "bytes32"
                    }
                  },
                  "value": null,
                  "visibility": "internal"
                },
                {
                  "constant": false,
                  "id": 8969,
                  "name": "data",
                  "nodeType": "VariableDeclaration",
                  "scope": 8974,
                  "src": "1073:12:31",
                  "stateVariable": false,
                  "storageLocation": "default",
                  "typeDescriptions": {
                    "typeIdentifier": "t_uint256",
                    "typeString": "uint256"
                  },
                  "typeName": {
                    "id": 8968,
                    "name": "uint256",
                    "nodeType": "ElementaryTypeName",
                    "src": "1073:7:31",
                    "typeDescriptions": {
                      "typeIdentifier": "t_uint256",
                      "typeString": "uint256"
                    }
                  },
                  "value": null,
                  "visibility": "internal"
                }
              ],
              "src": "1054:32:31"
            },
            "payable": false,
            "returnParameters": {
              "id": 8971,
              "nodeType": "ParameterList",
              "parameters": [],
              "src": "1096:0:31"
            },
            "scope": 8975,
            "src": "1028:119:31",
            "stateMutability": "nonpayable",
            "superFunction": null,
            "visibility": "internal"
          }
        ],
        "scope": 8976,
        "src": "71:1078:31"
      }
    ],
    "src": "44:1106:31"
  },
  "compiler": {
    "name": "solc",
    "version": "0.4.24+commit.e67f0147.Emscripten.clang"
  },
  "networks": {},
  "schemaVersion": "3.0.1",
  "updatedAt": "2019-03-29T09:45:33.508Z",
  "devdoc": {
    "methods": {}
  },
  "userdoc": {
    "methods": {}
  }
}