@latticexyz/world 2.0.0-alpha.50 → 2.0.0-alpha.52

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (97) hide show
  1. package/abi/AccessControl.json +212 -212
  2. package/abi/AccessControlTest.json +325 -325
  3. package/abi/AddressArray.json +788 -788
  4. package/abi/ArrayLib.json +139 -139
  5. package/abi/Bool.json +545 -545
  6. package/abi/Call.json +100 -100
  7. package/abi/CommonBase.json +125 -125
  8. package/abi/CoreModule.json +179 -179
  9. package/abi/DecodeSlice.json +3187 -3187
  10. package/abi/EncodeArray.json +3336 -3336
  11. package/abi/FunctionSelectors.json +8030 -2253
  12. package/abi/Hooks.json +4084 -1322
  13. package/abi/IBaseWorld.json +45 -45
  14. package/abi/IErrors.json +57 -57
  15. package/abi/IModule.json +34 -34
  16. package/abi/IMulticall3.json +283 -283
  17. package/abi/IRegistrationSystem.json +182 -182
  18. package/abi/ISystemHook.json +19 -19
  19. package/abi/IWorldCore.json +185 -185
  20. package/abi/IWorldTestSystem.json +4346 -4346
  21. package/abi/InstalledModules.json +6151 -1754
  22. package/abi/KeysWithValue.json +788 -788
  23. package/abi/KeysWithValueHook.json +422 -422
  24. package/abi/KeysWithValueModule.json +272 -272
  25. package/abi/KeysWithValueModuleTest.json +1378 -1378
  26. package/abi/NamespaceOwner.json +619 -619
  27. package/abi/RegistrationModule.json +383 -383
  28. package/abi/RegistrationSystem.json +1098 -1098
  29. package/abi/ResourceAccess.json +756 -756
  30. package/abi/ResourceSelector.json +282 -282
  31. package/abi/ResourceType.json +3089 -872
  32. package/abi/ScriptBase.json +125 -125
  33. package/abi/SliceInstance.json +4 -4
  34. package/abi/SliceLib.json +4 -4
  35. package/abi/StdAssertions.json +1894 -1894
  36. package/abi/StdChains.json +1051 -1051
  37. package/abi/StdCheats.json +3257 -3257
  38. package/abi/StdCheatsSafe.json +3257 -3257
  39. package/abi/StdInvariant.json +336 -336
  40. package/abi/StdUtils.json +1122 -1122
  41. package/abi/Storage.json +488 -488
  42. package/abi/Store.json +4 -4
  43. package/abi/StoreCore.json +44 -44
  44. package/abi/StoreCoreExtended.json +44 -44
  45. package/abi/StoreCoreInternal.json +44 -44
  46. package/abi/StoreMetadata.json +1648 -1648
  47. package/abi/StoreSwitch.json +6 -6
  48. package/abi/StoreView.json +8 -8
  49. package/abi/System.json +22 -22
  50. package/abi/SystemRegistry.json +3279 -1033
  51. package/abi/SystemTest.json +174 -174
  52. package/abi/Systems.json +1186 -1186
  53. package/abi/TableId.json +27 -27
  54. package/abi/Test.json +52 -52
  55. package/abi/TestBase.json +125 -125
  56. package/abi/TestSystem.json +174 -174
  57. package/abi/TightCoder.json +240 -240
  58. package/abi/Types.json +8 -8
  59. package/abi/Utils.json +67 -67
  60. package/abi/Vm.json +1850 -1850
  61. package/abi/VmSafe.json +1850 -1850
  62. package/abi/World.json +1290 -1290
  63. package/abi/WorldContext.json +59 -59
  64. package/abi/WorldTest.json +4348 -4348
  65. package/abi/WorldTestSystem.json +4349 -4349
  66. package/abi/WorldTestTableHook.json +4348 -4348
  67. package/abi/console2.json +11459 -11459
  68. package/abi/constants.json +7 -7
  69. package/abi/getKeysWithValue.json +115 -115
  70. package/abi/getTargetTableSelector.json +81 -81
  71. package/abi/stdError.json +78 -78
  72. package/abi/stdJson.json +1016 -1016
  73. package/abi/stdMath.json +218 -218
  74. package/abi/stdStorage.json +2400 -2400
  75. package/abi/stdStorageSafe.json +2400 -2400
  76. package/dist/mud.config.mjs +3 -9
  77. package/package.json +5 -5
  78. package/src/modules/registration/tables/ResourceType.sol +36 -0
  79. package/src/modules/registration/tables/SystemRegistry.sol +36 -0
  80. package/src/tables/FunctionSelectors.sol +101 -0
  81. package/src/tables/InstalledModules.sol +73 -0
  82. package/types/ethers-contracts/factories/AccessControlTest__factory.ts +1 -1
  83. package/types/ethers-contracts/factories/CoreModule__factory.ts +1 -1
  84. package/types/ethers-contracts/factories/KeysWithValueHook__factory.ts +1 -1
  85. package/types/ethers-contracts/factories/KeysWithValueModuleTest__factory.ts +1 -1
  86. package/types/ethers-contracts/factories/KeysWithValueModule__factory.ts +1 -1
  87. package/types/ethers-contracts/factories/RegistrationModule__factory.ts +1 -1
  88. package/types/ethers-contracts/factories/RegistrationSystem__factory.ts +1 -1
  89. package/types/ethers-contracts/factories/StoreCore__factory.ts +1 -1
  90. package/types/ethers-contracts/factories/StoreSwitch__factory.ts +1 -1
  91. package/types/ethers-contracts/factories/StoreView__factory.ts +1 -1
  92. package/types/ethers-contracts/factories/SystemTest__factory.ts +1 -1
  93. package/types/ethers-contracts/factories/TestSystem__factory.ts +1 -1
  94. package/types/ethers-contracts/factories/WorldTestSystem__factory.ts +1 -1
  95. package/types/ethers-contracts/factories/WorldTestTableHook__factory.ts +1 -1
  96. package/types/ethers-contracts/factories/WorldTest__factory.ts +1 -1
  97. package/types/ethers-contracts/factories/World__factory.ts +1 -1
@@ -1,17 +1,17 @@
1
1
  {
2
2
  "abi": [],
3
3
  "bytecode": {
4
- "object": "0x60566037600b82828239805160001a607314602a57634e487b7160e01b600052600060045260246000fd5b30600052607381538281f3fe73000000000000000000000000000000000000000030146080604052600080fdfea264697066735822122060c4d9bf87aee1fbe2485216b19827a31c95474c4b2245496cd4b5f193b82de264736f6c634300080d0033",
4
+ "object": "0x60566037600b82828239805160001a607314602a57634e487b7160e01b600052600060045260246000fd5b30600052607381538281f3fe73000000000000000000000000000000000000000030146080604052600080fdfea2646970667358221220cb0a7e3d5a33eb421c98eb9ef1979e2b120f50f4c6ddb5f5a591f015aa509ec664736f6c634300080d0033",
5
5
  "sourceMap": "295:1467:85:-:0;;;;;;;;;;;;;;;-1:-1:-1;;;295:1467:85;;;;;;;;;;;;;;;;;",
6
6
  "linkReferences": {}
7
7
  },
8
8
  "deployedBytecode": {
9
- "object": "0x73000000000000000000000000000000000000000030146080604052600080fdfea264697066735822122060c4d9bf87aee1fbe2485216b19827a31c95474c4b2245496cd4b5f193b82de264736f6c634300080d0033",
9
+ "object": "0x73000000000000000000000000000000000000000030146080604052600080fdfea2646970667358221220cb0a7e3d5a33eb421c98eb9ef1979e2b120f50f4c6ddb5f5a591f015aa509ec664736f6c634300080d0033",
10
10
  "sourceMap": "295:1467:85:-:0;;;;;;;;",
11
11
  "linkReferences": {}
12
12
  },
13
13
  "methodIdentifiers": {},
14
- "rawMetadata": "{\"compiler\":{\"version\":\"0.8.13+commit.abaa5c0e\"},\"language\":\"Solidity\",\"output\":{\"abi\":[],\"devdoc\":{\"kind\":\"dev\",\"methods\":{},\"version\":1},\"userdoc\":{\"kind\":\"user\",\"methods\":{},\"version\":1}},\"settings\":{\"compilationTarget\":{\"src/AccessControl.sol\":\"AccessControl\"},\"evmVersion\":\"london\",\"libraries\":{},\"metadata\":{\"bytecodeHash\":\"ipfs\"},\"optimizer\":{\"enabled\":true,\"runs\":3000},\"remappings\":[\":@latticexyz/=../../node_modules/@latticexyz/\",\":@rari-capital/=/home/runner/work/mud/mud/packages/store/../../node_modules/@rari-capital/\",\":@solidstate/=/home/runner/work/mud/mud/packages/store/../../node_modules/@solidstate/\",\":abdk-libraries-solidity/=/home/runner/work/mud/mud/packages/store/../../node_modules/abdk-libraries-solidity/\",\":base64-sol/=/home/runner/work/mud/mud/packages/store/../../node_modules/base64-sol/\",\":create-mud/=/home/runner/work/mud/mud/packages/store/../../node_modules/create-mud/\",\":ds-test/=../../node_modules/ds-test/src/\",\":forge-std/=../../node_modules/forge-std/src/\",\":hardhat/=/home/runner/work/mud/mud/packages/store/../../node_modules/hardhat/\",\":memmove/=/home/runner/work/mud/mud/node_modules/memmove/src/\",\":solmate/=/home/runner/work/mud/mud/node_modules/solmate/src/\",\":store/=/home/runner/work/mud/mud/packages/store/src/\",\":test/=../store/test/\"]},\"sources\":{\"../../node_modules/@latticexyz/schema-type/src/solidity/SchemaType.sol\":{\"keccak256\":\"0xe881f296ba0fe410faa6395ee4a65b9bf154947aebc6aa323d41a0484504221e\",\"license\":\"MIT\",\"urls\":[\"bzz-raw://ba7f706464d14365ff751936ba96f79f200df7bcd9d9f8abccd0b41387ca7967\",\"dweb:/ipfs/QmTiHgH3ZM2oJoqsbNs3iwwPFNYFNU7m8co87woxRLaUZ6\"]},\"../../node_modules/@latticexyz/store/src/Bytes.sol\":{\"keccak256\":\"0x117331c70b8cda783991a6b3e14861176068086526548d334cef8e1c24e16d5b\",\"license\":\"MIT\",\"urls\":[\"bzz-raw://613026caf6782e8a4ad0f366781fc13141492b667a723bdea69250c9b517c790\",\"dweb:/ipfs/QmQqwBSjcrDUoVvmXxeKZZpyGSEpeMTh2QZRExQTdZLrCt\"]},\"../../node_modules/@latticexyz/store/src/IStore.sol\":{\"keccak256\":\"0xe2816ec64a4dd062d2f6bdad94ec8432c45b1e9830eae7f20d5c520f7c550291\",\"license\":\"MIT\",\"urls\":[\"bzz-raw://d1bf2f187f83d57967b03768798fef5e6c425eecf64e4c425ea8a92c5710cb4f\",\"dweb:/ipfs/QmTNdfJaNtEBX5r3r7LRsrAaznPiWRTZigM3HHsvxzvPrp\"]},\"../../node_modules/@latticexyz/store/src/Memory.sol\":{\"keccak256\":\"0xdcd3da381bf9618de6b5e2d6235b1e22c54078242f1b66e897cfaf2776850db5\",\"license\":\"MIT\",\"urls\":[\"bzz-raw://0511205cfb3c935ffc63cc227745360cd549636da5331f249cc34387b5181f44\",\"dweb:/ipfs/QmVYZ7YCT1rJemmTVRsjXZJ4HsWgspRxqbsbhy8AD1jwey\"]},\"../../node_modules/@latticexyz/store/src/PackedCounter.sol\":{\"keccak256\":\"0x4db3052d5a5009da45208715e433556d0fe7aa25f9ec6ba6f7c9711afdaba96e\",\"license\":\"MIT\",\"urls\":[\"bzz-raw://ee5a2906544f37897175c19423ec50e15a070e94bcd97a5201df29e1dc3c7d0f\",\"dweb:/ipfs/QmeA5iZbRLynduDgkaLMZyY3YrPweDkFExuQEDg1GjdVCc\"]},\"../../node_modules/@latticexyz/store/src/Schema.sol\":{\"keccak256\":\"0xf06793dc2e9e9994403d29125359eb2f326b0e6e502d51a8e6e4e45fc9d90a3c\",\"license\":\"MIT\",\"urls\":[\"bzz-raw://8cb23bf421b29839200e5584a770186309dd05cd77d4345c964f47528117a244\",\"dweb:/ipfs/QmQBvrDAtoqibky7CjCLKxGz3MquxK1iNk2Yac55Lc4xF5\"]},\"../../node_modules/@latticexyz/store/src/Slice.sol\":{\"keccak256\":\"0x64107104822c8aa724b120fb37648d5da0a50e66b80a801e460d968748d9a95c\",\"license\":\"MIT\",\"urls\":[\"bzz-raw://afc6e93a56eac7916adbced5c2304c253f22c9c5eed201e4086ea07b1ec36a72\",\"dweb:/ipfs/QmWZEDiEUe3iVEkUYbzzT6dTVYzADJejDmbsjTsXPkk6TY\"]},\"../../node_modules/@latticexyz/store/src/Storage.sol\":{\"keccak256\":\"0x0fc7628696d72f7c1b2c1e43a29a75c1b3747542bc9769b98a2ce898b1bd4969\",\"license\":\"MIT\",\"urls\":[\"bzz-raw://b0251769edbb281e740d40b03526b7d1e206d98eeb1c4e220ac2220c4815f996\",\"dweb:/ipfs/Qmb9CVZ5h7HfAdDnj6n6ybqTHHCyMKkn8EBMFDuqhR1NRn\"]},\"../../node_modules/@latticexyz/store/src/StoreCore.sol\":{\"keccak256\":\"0xc0abd3ef49e483cddae39e8d5609bd905defd3df5f53d29e0a903bd20205fb35\",\"license\":\"MIT\",\"urls\":[\"bzz-raw://91874c3984ad272f8f032d32ac8a1bbf3265da10a33f963bbc5b5bae64d69da9\",\"dweb:/ipfs/QmcWvjJrKPC52FNXHvvYZAF7LLhhB1BWz8MhNjody8J8YJ\"]},\"../../node_modules/@latticexyz/store/src/StoreSwitch.sol\":{\"keccak256\":\"0x018aa381c6f325131f522d87a5824637cded96e5ba9700f49f5ba9c91169463f\",\"license\":\"MIT\",\"urls\":[\"bzz-raw://fd7e64ce076064f28fcc29e984cf0e39e502ca523a69c649cbb649a86d224413\",\"dweb:/ipfs/QmWPy7Fs7BPsK7EAVRwpFP9xdXBQPeiY8dsVwcNZNz947F\"]},\"../../node_modules/@latticexyz/store/src/TableId.sol\":{\"keccak256\":\"0xdf1ef8e460a9411a1d3c8bb7f94e3d45c5ba9e7cf11912a538e28666ee4fab03\",\"license\":\"MIT\",\"urls\":[\"bzz-raw://b0f2e8d277e6e4d111dbd0288e924278d278e89dc298834782fd00af3bd40211\",\"dweb:/ipfs/QmT4zBTdDP7LiKV9mrioMPREmj5vQq5EYjb2ZWzbjiwqr9\"]},\"../../node_modules/@latticexyz/store/src/Utils.sol\":{\"keccak256\":\"0x426216bfa1c0e70640787007a6e39257cf09e586fd04831ea4fb3dd9c5768fc4\",\"license\":\"MIT\",\"urls\":[\"bzz-raw://38e657fa9cfaebe39477eaff27d1ad4d7eeaf0c0058539d2ec7e6976d93df4f4\",\"dweb:/ipfs/QmRuaxqRjUrHHC2ZyTnpmq6sfrWGCDh91B6F5chFAToU6U\"]},\"../../node_modules/@latticexyz/store/src/tables/Hooks.sol\":{\"keccak256\":\"0xc4b70831f2d290e9fe84be01e4b575764f1cdde50ace4c82901b1273451f9ddd\",\"license\":\"MIT\",\"urls\":[\"bzz-raw://797c8755d1c868e79872de205c54f62abb9ecb5a3619d5800fab4ce7258e824c\",\"dweb:/ipfs/Qmar52rCMsXLrx6VxDEQ97p3gzVcSorQgxa73KrfcCwwWc\"]},\"../../node_modules/@latticexyz/store/src/tables/StoreMetadata.sol\":{\"keccak256\":\"0xffa0163bd65610bdc9ee5f8fdbf20da08ff4ca310d36a7ff98d69b6323455bad\",\"license\":\"MIT\",\"urls\":[\"bzz-raw://f794be1a4365a1779c6557d013eb5f0e2bddc46b2c7822b2ef3862048b9d24db\",\"dweb:/ipfs/QmPSTwi7Dxn4DMBvRPF3KscLSzAGnPjWtoSF1Y8e94R8X3\"]},\"../../node_modules/@latticexyz/store/src/tightcoder/DecodeSlice.sol\":{\"keccak256\":\"0x9109f170227f7430388345c88e0b7f416ea46297b7f0b5011c0b794bd6a95e6f\",\"license\":\"MIT\",\"urls\":[\"bzz-raw://18b046c0706a582cba039bc6cce485bcb3489f089a6dec97f965a7ef6585df93\",\"dweb:/ipfs/QmaL2Wwe3AxzW1Lis7Kcp5sb16Y8inUgTTTWwoc8SvoEzC\"]},\"../../node_modules/@latticexyz/store/src/tightcoder/EncodeArray.sol\":{\"keccak256\":\"0x46f0010a3345cbc83f71900b7cd5375fa39e1523f5a34cb67828cfe59128368c\",\"license\":\"MIT\",\"urls\":[\"bzz-raw://457cf33b3424d816011d70a8b03a10f0ea376f3e0990ed6657455a43cf82d35b\",\"dweb:/ipfs/QmejskGLC4Hdu5oWQDMwG3TgiLbLXQJPpnLW37yUVGvBmw\"]},\"../../node_modules/@latticexyz/store/src/tightcoder/TightCoder.sol\":{\"keccak256\":\"0xff0278a4e35174bbed8a38dad8ae7506f725bfe95f0b7c13829c353d68dd25dc\",\"license\":\"MIT\",\"urls\":[\"bzz-raw://26249ec0c2fa3a3430a2f8edbfc5cd678e34ea1cf1d7490ecaf1e925c976eb85\",\"dweb:/ipfs/QmUpkhr5kFiDKc7rZ2z5HcTf5PkrWVJu5sa31tYv911cPL\"]},\"../../node_modules/forge-std/src/console.sol\":{\"keccak256\":\"0x91d5413c2434ca58fd278b6e1e79fd98d10c83931cc2596a6038eee4daeb34ba\",\"license\":\"MIT\",\"urls\":[\"bzz-raw://91ccea707361e48b9b7a161fe81f496b9932bc471e9c4e4e1e9c283f2453cc70\",\"dweb:/ipfs/QmcB66sZhQ6Kz7MUHcLE78YXRUZxoZnnxZjN6yATsbB2ec\"]},\"src/AccessControl.sol\":{\"keccak256\":\"0x3bc8c76a969b25a8614dbaf8b105a6adc5d51bf349b087c7c383e87a47762d41\",\"license\":\"MIT\",\"urls\":[\"bzz-raw://13cbc25c23f037f2c7af27cd86650bd0b68c91e1c52217278b02a9fd5e27f6d1\",\"dweb:/ipfs/QmZeY4TfZsfzCZ2YgoriohaenKvhaS6zZNXumYFwQ2qjEi\"]},\"src/ResourceSelector.sol\":{\"keccak256\":\"0x2ad2ec3bcf38ade16624f149df61bc99cedbbe8b945ee89146439291629b6647\",\"license\":\"MIT\",\"urls\":[\"bzz-raw://0eb94883deb6a0b65a89fda36172a55445ddba2e1e54f8174b8daa07f0506552\",\"dweb:/ipfs/QmUU965G3kssTDkbUcaNDeDSsMaamYSSBS3t59p74sGGB6\"]},\"src/constants.sol\":{\"keccak256\":\"0xff1a7a63b2eb4cf03149d0e523a330f9714f5176dc84c3436c1992b5eb880f96\",\"license\":\"MIT\",\"urls\":[\"bzz-raw://e8e123b0905ebd4578561d7fa96e6b9556034e59f4434f3c192beab86cd12ac8\",\"dweb:/ipfs/QmW5HqMxYPv8NpCnuVWQ9XBm98V8uSDapSReC8LyEZ3Pzn\"]},\"src/interfaces/IErrors.sol\":{\"keccak256\":\"0x8a8a5caf964d336b38123704893463589b3bf6195405c9929c21291faf0e2f6b\",\"license\":\"MIT\",\"urls\":[\"bzz-raw://3aa3dcd4d059015580dbcad309db99db7a18fe7c015f1f83f56d84684f27bd14\",\"dweb:/ipfs/QmVpQW1kF4ruDmXtnTSnGRuxr7RtJqo8NwEXtfdA5TVKq1\"]},\"src/tables/NamespaceOwner.sol\":{\"keccak256\":\"0x9b64097911e5553487d4177ede859673ed4e37b9deae60dc8fdf02410a824915\",\"license\":\"MIT\",\"urls\":[\"bzz-raw://49752514ecc80569b60ff811ca4d82b65bc4f6a191e0037ff744d6412a831228\",\"dweb:/ipfs/QmUG4jGzJDv9zE8P2wPQ2NmiwsjcMS4ytksjhovGQDGUny\"]},\"src/tables/ResourceAccess.sol\":{\"keccak256\":\"0xeaac05c5715a5b36309e750f609ad71a363a32aee082f093b391c83a6ea3f8ad\",\"license\":\"MIT\",\"urls\":[\"bzz-raw://7d71ad6d3aefd1cc11df125d3e2bfbd2c64067187e0d5638960d6acdb2105874\",\"dweb:/ipfs/QmTU2EDgP2YaDXLh9Ld4hoo1HTWyvtCNdK6dtCB3yoerz8\"]}},\"version\":1}",
14
+ "rawMetadata": "{\"compiler\":{\"version\":\"0.8.13+commit.abaa5c0e\"},\"language\":\"Solidity\",\"output\":{\"abi\":[],\"devdoc\":{\"kind\":\"dev\",\"methods\":{},\"version\":1},\"userdoc\":{\"kind\":\"user\",\"methods\":{},\"version\":1}},\"settings\":{\"compilationTarget\":{\"src/AccessControl.sol\":\"AccessControl\"},\"evmVersion\":\"london\",\"libraries\":{},\"metadata\":{\"bytecodeHash\":\"ipfs\"},\"optimizer\":{\"enabled\":true,\"runs\":3000},\"remappings\":[\":@latticexyz/=../../node_modules/@latticexyz/\",\":@rari-capital/=/home/runner/work/mud/mud/packages/store/../../node_modules/@rari-capital/\",\":@solidstate/=/home/runner/work/mud/mud/packages/store/../../node_modules/@solidstate/\",\":abdk-libraries-solidity/=/home/runner/work/mud/mud/packages/store/../../node_modules/abdk-libraries-solidity/\",\":base64-sol/=/home/runner/work/mud/mud/packages/store/../../node_modules/base64-sol/\",\":create-mud/=/home/runner/work/mud/mud/packages/store/../../node_modules/create-mud/\",\":ds-test/=../../node_modules/ds-test/src/\",\":forge-std/=../../node_modules/forge-std/src/\",\":hardhat/=/home/runner/work/mud/mud/packages/store/../../node_modules/hardhat/\",\":memmove/=/home/runner/work/mud/mud/node_modules/memmove/src/\",\":solmate/=/home/runner/work/mud/mud/node_modules/solmate/src/\",\":store/=/home/runner/work/mud/mud/packages/store/src/\",\":test/=../store/test/\"]},\"sources\":{\"../../node_modules/@latticexyz/schema-type/src/solidity/SchemaType.sol\":{\"keccak256\":\"0xe881f296ba0fe410faa6395ee4a65b9bf154947aebc6aa323d41a0484504221e\",\"license\":\"MIT\",\"urls\":[\"bzz-raw://ba7f706464d14365ff751936ba96f79f200df7bcd9d9f8abccd0b41387ca7967\",\"dweb:/ipfs/QmTiHgH3ZM2oJoqsbNs3iwwPFNYFNU7m8co87woxRLaUZ6\"]},\"../../node_modules/@latticexyz/store/src/Bytes.sol\":{\"keccak256\":\"0x117331c70b8cda783991a6b3e14861176068086526548d334cef8e1c24e16d5b\",\"license\":\"MIT\",\"urls\":[\"bzz-raw://613026caf6782e8a4ad0f366781fc13141492b667a723bdea69250c9b517c790\",\"dweb:/ipfs/QmQqwBSjcrDUoVvmXxeKZZpyGSEpeMTh2QZRExQTdZLrCt\"]},\"../../node_modules/@latticexyz/store/src/IStore.sol\":{\"keccak256\":\"0xe2816ec64a4dd062d2f6bdad94ec8432c45b1e9830eae7f20d5c520f7c550291\",\"license\":\"MIT\",\"urls\":[\"bzz-raw://d1bf2f187f83d57967b03768798fef5e6c425eecf64e4c425ea8a92c5710cb4f\",\"dweb:/ipfs/QmTNdfJaNtEBX5r3r7LRsrAaznPiWRTZigM3HHsvxzvPrp\"]},\"../../node_modules/@latticexyz/store/src/Memory.sol\":{\"keccak256\":\"0xdcd3da381bf9618de6b5e2d6235b1e22c54078242f1b66e897cfaf2776850db5\",\"license\":\"MIT\",\"urls\":[\"bzz-raw://0511205cfb3c935ffc63cc227745360cd549636da5331f249cc34387b5181f44\",\"dweb:/ipfs/QmVYZ7YCT1rJemmTVRsjXZJ4HsWgspRxqbsbhy8AD1jwey\"]},\"../../node_modules/@latticexyz/store/src/PackedCounter.sol\":{\"keccak256\":\"0x4db3052d5a5009da45208715e433556d0fe7aa25f9ec6ba6f7c9711afdaba96e\",\"license\":\"MIT\",\"urls\":[\"bzz-raw://ee5a2906544f37897175c19423ec50e15a070e94bcd97a5201df29e1dc3c7d0f\",\"dweb:/ipfs/QmeA5iZbRLynduDgkaLMZyY3YrPweDkFExuQEDg1GjdVCc\"]},\"../../node_modules/@latticexyz/store/src/Schema.sol\":{\"keccak256\":\"0xf06793dc2e9e9994403d29125359eb2f326b0e6e502d51a8e6e4e45fc9d90a3c\",\"license\":\"MIT\",\"urls\":[\"bzz-raw://8cb23bf421b29839200e5584a770186309dd05cd77d4345c964f47528117a244\",\"dweb:/ipfs/QmQBvrDAtoqibky7CjCLKxGz3MquxK1iNk2Yac55Lc4xF5\"]},\"../../node_modules/@latticexyz/store/src/Slice.sol\":{\"keccak256\":\"0x64107104822c8aa724b120fb37648d5da0a50e66b80a801e460d968748d9a95c\",\"license\":\"MIT\",\"urls\":[\"bzz-raw://afc6e93a56eac7916adbced5c2304c253f22c9c5eed201e4086ea07b1ec36a72\",\"dweb:/ipfs/QmWZEDiEUe3iVEkUYbzzT6dTVYzADJejDmbsjTsXPkk6TY\"]},\"../../node_modules/@latticexyz/store/src/Storage.sol\":{\"keccak256\":\"0x0fc7628696d72f7c1b2c1e43a29a75c1b3747542bc9769b98a2ce898b1bd4969\",\"license\":\"MIT\",\"urls\":[\"bzz-raw://b0251769edbb281e740d40b03526b7d1e206d98eeb1c4e220ac2220c4815f996\",\"dweb:/ipfs/Qmb9CVZ5h7HfAdDnj6n6ybqTHHCyMKkn8EBMFDuqhR1NRn\"]},\"../../node_modules/@latticexyz/store/src/StoreCore.sol\":{\"keccak256\":\"0xc0abd3ef49e483cddae39e8d5609bd905defd3df5f53d29e0a903bd20205fb35\",\"license\":\"MIT\",\"urls\":[\"bzz-raw://91874c3984ad272f8f032d32ac8a1bbf3265da10a33f963bbc5b5bae64d69da9\",\"dweb:/ipfs/QmcWvjJrKPC52FNXHvvYZAF7LLhhB1BWz8MhNjody8J8YJ\"]},\"../../node_modules/@latticexyz/store/src/StoreSwitch.sol\":{\"keccak256\":\"0x018aa381c6f325131f522d87a5824637cded96e5ba9700f49f5ba9c91169463f\",\"license\":\"MIT\",\"urls\":[\"bzz-raw://fd7e64ce076064f28fcc29e984cf0e39e502ca523a69c649cbb649a86d224413\",\"dweb:/ipfs/QmWPy7Fs7BPsK7EAVRwpFP9xdXBQPeiY8dsVwcNZNz947F\"]},\"../../node_modules/@latticexyz/store/src/TableId.sol\":{\"keccak256\":\"0xdf1ef8e460a9411a1d3c8bb7f94e3d45c5ba9e7cf11912a538e28666ee4fab03\",\"license\":\"MIT\",\"urls\":[\"bzz-raw://b0f2e8d277e6e4d111dbd0288e924278d278e89dc298834782fd00af3bd40211\",\"dweb:/ipfs/QmT4zBTdDP7LiKV9mrioMPREmj5vQq5EYjb2ZWzbjiwqr9\"]},\"../../node_modules/@latticexyz/store/src/Utils.sol\":{\"keccak256\":\"0x426216bfa1c0e70640787007a6e39257cf09e586fd04831ea4fb3dd9c5768fc4\",\"license\":\"MIT\",\"urls\":[\"bzz-raw://38e657fa9cfaebe39477eaff27d1ad4d7eeaf0c0058539d2ec7e6976d93df4f4\",\"dweb:/ipfs/QmRuaxqRjUrHHC2ZyTnpmq6sfrWGCDh91B6F5chFAToU6U\"]},\"../../node_modules/@latticexyz/store/src/tables/Hooks.sol\":{\"keccak256\":\"0x59236f9e795eb422187a6e1b5af16c4750def014b4f3776e8a335e3a114fe1bc\",\"license\":\"MIT\",\"urls\":[\"bzz-raw://8aa76a349c627b73cc207a1be114370b9fa3aebaf016c806b7e9ea934ee5a6f1\",\"dweb:/ipfs/QmP36cLNqSRdmpAp5kdeLbjxx4JyJa2KkaDjyBXVZ3Htpe\"]},\"../../node_modules/@latticexyz/store/src/tables/StoreMetadata.sol\":{\"keccak256\":\"0xffa0163bd65610bdc9ee5f8fdbf20da08ff4ca310d36a7ff98d69b6323455bad\",\"license\":\"MIT\",\"urls\":[\"bzz-raw://f794be1a4365a1779c6557d013eb5f0e2bddc46b2c7822b2ef3862048b9d24db\",\"dweb:/ipfs/QmPSTwi7Dxn4DMBvRPF3KscLSzAGnPjWtoSF1Y8e94R8X3\"]},\"../../node_modules/@latticexyz/store/src/tightcoder/DecodeSlice.sol\":{\"keccak256\":\"0x9109f170227f7430388345c88e0b7f416ea46297b7f0b5011c0b794bd6a95e6f\",\"license\":\"MIT\",\"urls\":[\"bzz-raw://18b046c0706a582cba039bc6cce485bcb3489f089a6dec97f965a7ef6585df93\",\"dweb:/ipfs/QmaL2Wwe3AxzW1Lis7Kcp5sb16Y8inUgTTTWwoc8SvoEzC\"]},\"../../node_modules/@latticexyz/store/src/tightcoder/EncodeArray.sol\":{\"keccak256\":\"0x46f0010a3345cbc83f71900b7cd5375fa39e1523f5a34cb67828cfe59128368c\",\"license\":\"MIT\",\"urls\":[\"bzz-raw://457cf33b3424d816011d70a8b03a10f0ea376f3e0990ed6657455a43cf82d35b\",\"dweb:/ipfs/QmejskGLC4Hdu5oWQDMwG3TgiLbLXQJPpnLW37yUVGvBmw\"]},\"../../node_modules/@latticexyz/store/src/tightcoder/TightCoder.sol\":{\"keccak256\":\"0xff0278a4e35174bbed8a38dad8ae7506f725bfe95f0b7c13829c353d68dd25dc\",\"license\":\"MIT\",\"urls\":[\"bzz-raw://26249ec0c2fa3a3430a2f8edbfc5cd678e34ea1cf1d7490ecaf1e925c976eb85\",\"dweb:/ipfs/QmUpkhr5kFiDKc7rZ2z5HcTf5PkrWVJu5sa31tYv911cPL\"]},\"../../node_modules/forge-std/src/console.sol\":{\"keccak256\":\"0x91d5413c2434ca58fd278b6e1e79fd98d10c83931cc2596a6038eee4daeb34ba\",\"license\":\"MIT\",\"urls\":[\"bzz-raw://91ccea707361e48b9b7a161fe81f496b9932bc471e9c4e4e1e9c283f2453cc70\",\"dweb:/ipfs/QmcB66sZhQ6Kz7MUHcLE78YXRUZxoZnnxZjN6yATsbB2ec\"]},\"src/AccessControl.sol\":{\"keccak256\":\"0x3bc8c76a969b25a8614dbaf8b105a6adc5d51bf349b087c7c383e87a47762d41\",\"license\":\"MIT\",\"urls\":[\"bzz-raw://13cbc25c23f037f2c7af27cd86650bd0b68c91e1c52217278b02a9fd5e27f6d1\",\"dweb:/ipfs/QmZeY4TfZsfzCZ2YgoriohaenKvhaS6zZNXumYFwQ2qjEi\"]},\"src/ResourceSelector.sol\":{\"keccak256\":\"0x2ad2ec3bcf38ade16624f149df61bc99cedbbe8b945ee89146439291629b6647\",\"license\":\"MIT\",\"urls\":[\"bzz-raw://0eb94883deb6a0b65a89fda36172a55445ddba2e1e54f8174b8daa07f0506552\",\"dweb:/ipfs/QmUU965G3kssTDkbUcaNDeDSsMaamYSSBS3t59p74sGGB6\"]},\"src/constants.sol\":{\"keccak256\":\"0xff1a7a63b2eb4cf03149d0e523a330f9714f5176dc84c3436c1992b5eb880f96\",\"license\":\"MIT\",\"urls\":[\"bzz-raw://e8e123b0905ebd4578561d7fa96e6b9556034e59f4434f3c192beab86cd12ac8\",\"dweb:/ipfs/QmW5HqMxYPv8NpCnuVWQ9XBm98V8uSDapSReC8LyEZ3Pzn\"]},\"src/interfaces/IErrors.sol\":{\"keccak256\":\"0x8a8a5caf964d336b38123704893463589b3bf6195405c9929c21291faf0e2f6b\",\"license\":\"MIT\",\"urls\":[\"bzz-raw://3aa3dcd4d059015580dbcad309db99db7a18fe7c015f1f83f56d84684f27bd14\",\"dweb:/ipfs/QmVpQW1kF4ruDmXtnTSnGRuxr7RtJqo8NwEXtfdA5TVKq1\"]},\"src/tables/NamespaceOwner.sol\":{\"keccak256\":\"0x9b64097911e5553487d4177ede859673ed4e37b9deae60dc8fdf02410a824915\",\"license\":\"MIT\",\"urls\":[\"bzz-raw://49752514ecc80569b60ff811ca4d82b65bc4f6a191e0037ff744d6412a831228\",\"dweb:/ipfs/QmUG4jGzJDv9zE8P2wPQ2NmiwsjcMS4ytksjhovGQDGUny\"]},\"src/tables/ResourceAccess.sol\":{\"keccak256\":\"0xeaac05c5715a5b36309e750f609ad71a363a32aee082f093b391c83a6ea3f8ad\",\"license\":\"MIT\",\"urls\":[\"bzz-raw://7d71ad6d3aefd1cc11df125d3e2bfbd2c64067187e0d5638960d6acdb2105874\",\"dweb:/ipfs/QmTU2EDgP2YaDXLh9Ld4hoo1HTWyvtCNdK6dtCB3yoerz8\"]}},\"version\":1}",
15
15
  "metadata": {
16
16
  "compiler": {
17
17
  "version": "0.8.13+commit.abaa5c0e"
@@ -156,10 +156,10 @@
156
156
  "license": "MIT"
157
157
  },
158
158
  "../../node_modules/@latticexyz/store/src/tables/Hooks.sol": {
159
- "keccak256": "0xc4b70831f2d290e9fe84be01e4b575764f1cdde50ace4c82901b1273451f9ddd",
159
+ "keccak256": "0x59236f9e795eb422187a6e1b5af16c4750def014b4f3776e8a335e3a114fe1bc",
160
160
  "urls": [
161
- "bzz-raw://797c8755d1c868e79872de205c54f62abb9ecb5a3619d5800fab4ce7258e824c",
162
- "dweb:/ipfs/Qmar52rCMsXLrx6VxDEQ97p3gzVcSorQgxa73KrfcCwwWc"
161
+ "bzz-raw://8aa76a349c627b73cc207a1be114370b9fa3aebaf016c806b7e9ea934ee5a6f1",
162
+ "dweb:/ipfs/QmP36cLNqSRdmpAp5kdeLbjxx4JyJa2KkaDjyBXVZ3Htpe"
163
163
  ],
164
164
  "license": "MIT"
165
165
  },
@@ -256,29 +256,29 @@
256
256
  },
257
257
  "ast": {
258
258
  "absolutePath": "src/AccessControl.sol",
259
- "id": 55869,
259
+ "id": 56095,
260
260
  "exportedSymbols": {
261
261
  "AccessControl": [
262
- 55868
262
+ 56094
263
263
  ],
264
264
  "IErrors": [
265
- 57044
265
+ 57270
266
266
  ],
267
267
  "NamespaceOwner": [
268
- 62887
268
+ 64301
269
269
  ],
270
270
  "ResourceAccess": [
271
- 63482
271
+ 64896
272
272
  ],
273
273
  "ResourceSelector": [
274
- 56121
274
+ 56347
275
275
  ]
276
276
  },
277
277
  "nodeType": "SourceUnit",
278
278
  "src": "32:1731:85",
279
279
  "nodes": [
280
280
  {
281
- "id": 55748,
281
+ "id": 55974,
282
282
  "nodeType": "PragmaDirective",
283
283
  "src": "32:24:85",
284
284
  "nodes": [],
@@ -290,23 +290,23 @@
290
290
  ]
291
291
  },
292
292
  {
293
- "id": 55750,
293
+ "id": 55976,
294
294
  "nodeType": "ImportDirective",
295
295
  "src": "58:58:85",
296
296
  "nodes": [],
297
297
  "absolutePath": "src/ResourceSelector.sol",
298
298
  "file": "./ResourceSelector.sol",
299
299
  "nameLocation": "-1:-1:-1",
300
- "scope": 55869,
301
- "sourceUnit": 56122,
300
+ "scope": 56095,
301
+ "sourceUnit": 56348,
302
302
  "symbolAliases": [
303
303
  {
304
304
  "foreign": {
305
- "id": 55749,
305
+ "id": 55975,
306
306
  "name": "ResourceSelector",
307
307
  "nodeType": "Identifier",
308
308
  "overloadedDeclarations": [],
309
- "referencedDeclaration": 56121,
309
+ "referencedDeclaration": 56347,
310
310
  "src": "67:16:85",
311
311
  "typeDescriptions": {}
312
312
  },
@@ -316,23 +316,23 @@
316
316
  "unitAlias": ""
317
317
  },
318
318
  {
319
- "id": 55752,
319
+ "id": 55978,
320
320
  "nodeType": "ImportDirective",
321
321
  "src": "117:51:85",
322
322
  "nodes": [],
323
323
  "absolutePath": "src/interfaces/IErrors.sol",
324
324
  "file": "./interfaces/IErrors.sol",
325
325
  "nameLocation": "-1:-1:-1",
326
- "scope": 55869,
327
- "sourceUnit": 57045,
326
+ "scope": 56095,
327
+ "sourceUnit": 57271,
328
328
  "symbolAliases": [
329
329
  {
330
330
  "foreign": {
331
- "id": 55751,
331
+ "id": 55977,
332
332
  "name": "IErrors",
333
333
  "nodeType": "Identifier",
334
334
  "overloadedDeclarations": [],
335
- "referencedDeclaration": 57044,
335
+ "referencedDeclaration": 57270,
336
336
  "src": "126:7:85",
337
337
  "typeDescriptions": {}
338
338
  },
@@ -342,23 +342,23 @@
342
342
  "unitAlias": ""
343
343
  },
344
344
  {
345
- "id": 55754,
345
+ "id": 55980,
346
346
  "nodeType": "ImportDirective",
347
347
  "src": "170:61:85",
348
348
  "nodes": [],
349
349
  "absolutePath": "src/tables/ResourceAccess.sol",
350
350
  "file": "./tables/ResourceAccess.sol",
351
351
  "nameLocation": "-1:-1:-1",
352
- "scope": 55869,
353
- "sourceUnit": 63492,
352
+ "scope": 56095,
353
+ "sourceUnit": 64906,
354
354
  "symbolAliases": [
355
355
  {
356
356
  "foreign": {
357
- "id": 55753,
357
+ "id": 55979,
358
358
  "name": "ResourceAccess",
359
359
  "nodeType": "Identifier",
360
360
  "overloadedDeclarations": [],
361
- "referencedDeclaration": 63482,
361
+ "referencedDeclaration": 64896,
362
362
  "src": "179:14:85",
363
363
  "typeDescriptions": {}
364
364
  },
@@ -368,23 +368,23 @@
368
368
  "unitAlias": ""
369
369
  },
370
370
  {
371
- "id": 55756,
371
+ "id": 55982,
372
372
  "nodeType": "ImportDirective",
373
373
  "src": "232:61:85",
374
374
  "nodes": [],
375
375
  "absolutePath": "src/tables/NamespaceOwner.sol",
376
376
  "file": "./tables/NamespaceOwner.sol",
377
377
  "nameLocation": "-1:-1:-1",
378
- "scope": 55869,
379
- "sourceUnit": 62888,
378
+ "scope": 56095,
379
+ "sourceUnit": 64302,
380
380
  "symbolAliases": [
381
381
  {
382
382
  "foreign": {
383
- "id": 55755,
383
+ "id": 55981,
384
384
  "name": "NamespaceOwner",
385
385
  "nodeType": "Identifier",
386
386
  "overloadedDeclarations": [],
387
- "referencedDeclaration": 62887,
387
+ "referencedDeclaration": 64301,
388
388
  "src": "241:14:85",
389
389
  "typeDescriptions": {}
390
390
  },
@@ -394,25 +394,25 @@
394
394
  "unitAlias": ""
395
395
  },
396
396
  {
397
- "id": 55868,
397
+ "id": 56094,
398
398
  "nodeType": "ContractDefinition",
399
399
  "src": "295:1467:85",
400
400
  "nodes": [
401
401
  {
402
- "id": 55759,
402
+ "id": 55985,
403
403
  "nodeType": "UsingForDirective",
404
404
  "src": "321:35:85",
405
405
  "nodes": [],
406
406
  "global": false,
407
407
  "libraryName": {
408
- "id": 55757,
408
+ "id": 55983,
409
409
  "name": "ResourceSelector",
410
410
  "nodeType": "IdentifierPath",
411
- "referencedDeclaration": 56121,
411
+ "referencedDeclaration": 56347,
412
412
  "src": "327:16:85"
413
413
  },
414
414
  "typeName": {
415
- "id": 55758,
415
+ "id": 55984,
416
416
  "name": "bytes32",
417
417
  "nodeType": "ElementaryTypeName",
418
418
  "src": "348:7:85",
@@ -423,12 +423,12 @@
423
423
  }
424
424
  },
425
425
  {
426
- "id": 55792,
426
+ "id": 56018,
427
427
  "nodeType": "FunctionDefinition",
428
428
  "src": "458:368:85",
429
429
  "nodes": [],
430
430
  "body": {
431
- "id": 55791,
431
+ "id": 56017,
432
432
  "nodeType": "Block",
433
433
  "src": "555:271:85",
434
434
  "nodes": [],
@@ -439,7 +439,7 @@
439
439
  "typeIdentifier": "t_bool",
440
440
  "typeString": "bool"
441
441
  },
442
- "id": 55789,
442
+ "id": 56015,
443
443
  "isConstant": false,
444
444
  "isLValue": false,
445
445
  "isPure": false,
@@ -449,11 +449,11 @@
449
449
  {
450
450
  "arguments": [
451
451
  {
452
- "id": 55775,
452
+ "id": 56001,
453
453
  "name": "namespace",
454
454
  "nodeType": "Identifier",
455
455
  "overloadedDeclarations": [],
456
- "referencedDeclaration": 55762,
456
+ "referencedDeclaration": 55988,
457
457
  "src": "615:9:85",
458
458
  "typeDescriptions": {
459
459
  "typeIdentifier": "t_bytes16",
@@ -462,7 +462,7 @@
462
462
  },
463
463
  {
464
464
  "hexValue": "30",
465
- "id": 55776,
465
+ "id": 56002,
466
466
  "isConstant": false,
467
467
  "isLValue": false,
468
468
  "isPure": true,
@@ -489,32 +489,32 @@
489
489
  }
490
490
  ],
491
491
  "expression": {
492
- "id": 55773,
492
+ "id": 55999,
493
493
  "name": "ResourceSelector",
494
494
  "nodeType": "Identifier",
495
495
  "overloadedDeclarations": [],
496
- "referencedDeclaration": 56121,
496
+ "referencedDeclaration": 56347,
497
497
  "src": "593:16:85",
498
498
  "typeDescriptions": {
499
- "typeIdentifier": "t_type$_t_contract$_ResourceSelector_$56121_$",
499
+ "typeIdentifier": "t_type$_t_contract$_ResourceSelector_$56347_$",
500
500
  "typeString": "type(library ResourceSelector)"
501
501
  }
502
502
  },
503
- "id": 55774,
503
+ "id": 56000,
504
504
  "isConstant": false,
505
505
  "isLValue": false,
506
506
  "isPure": false,
507
507
  "lValueRequested": false,
508
508
  "memberName": "from",
509
509
  "nodeType": "MemberAccess",
510
- "referencedDeclaration": 55963,
510
+ "referencedDeclaration": 56189,
511
511
  "src": "593:21:85",
512
512
  "typeDescriptions": {
513
513
  "typeIdentifier": "t_function_internal_pure$_t_bytes16_$_t_bytes16_$returns$_t_bytes32_$",
514
514
  "typeString": "function (bytes16,bytes16) pure returns (bytes32)"
515
515
  }
516
516
  },
517
- "id": 55777,
517
+ "id": 56003,
518
518
  "isConstant": false,
519
519
  "isLValue": false,
520
520
  "isPure": false,
@@ -530,11 +530,11 @@
530
530
  }
531
531
  },
532
532
  {
533
- "id": 55778,
533
+ "id": 56004,
534
534
  "name": "caller",
535
535
  "nodeType": "Identifier",
536
536
  "overloadedDeclarations": [],
537
- "referencedDeclaration": 55766,
537
+ "referencedDeclaration": 55992,
538
538
  "src": "630:6:85",
539
539
  "typeDescriptions": {
540
540
  "typeIdentifier": "t_address",
@@ -554,32 +554,32 @@
554
554
  }
555
555
  ],
556
556
  "expression": {
557
- "id": 55771,
557
+ "id": 55997,
558
558
  "name": "ResourceAccess",
559
559
  "nodeType": "Identifier",
560
560
  "overloadedDeclarations": [],
561
- "referencedDeclaration": 63482,
561
+ "referencedDeclaration": 64896,
562
562
  "src": "574:14:85",
563
563
  "typeDescriptions": {
564
- "typeIdentifier": "t_type$_t_contract$_ResourceAccess_$63482_$",
564
+ "typeIdentifier": "t_type$_t_contract$_ResourceAccess_$64896_$",
565
565
  "typeString": "type(library ResourceAccess)"
566
566
  }
567
567
  },
568
- "id": 55772,
568
+ "id": 55998,
569
569
  "isConstant": false,
570
570
  "isLValue": false,
571
571
  "isPure": false,
572
572
  "lValueRequested": false,
573
573
  "memberName": "get",
574
574
  "nodeType": "MemberAccess",
575
- "referencedDeclaration": 63178,
575
+ "referencedDeclaration": 64592,
576
576
  "src": "574:18:85",
577
577
  "typeDescriptions": {
578
578
  "typeIdentifier": "t_function_internal_view$_t_bytes32_$_t_address_$returns$_t_bool_$",
579
579
  "typeString": "function (bytes32,address) view returns (bool)"
580
580
  }
581
581
  },
582
- "id": 55779,
582
+ "id": 56005,
583
583
  "isConstant": false,
584
584
  "isLValue": false,
585
585
  "isPure": false,
@@ -601,11 +601,11 @@
601
601
  {
602
602
  "arguments": [
603
603
  {
604
- "id": 55784,
604
+ "id": 56010,
605
605
  "name": "namespace",
606
606
  "nodeType": "Identifier",
607
607
  "overloadedDeclarations": [],
608
- "referencedDeclaration": 55762,
608
+ "referencedDeclaration": 55988,
609
609
  "src": "733:9:85",
610
610
  "typeDescriptions": {
611
611
  "typeIdentifier": "t_bytes16",
@@ -613,11 +613,11 @@
613
613
  }
614
614
  },
615
615
  {
616
- "id": 55785,
616
+ "id": 56011,
617
617
  "name": "file",
618
618
  "nodeType": "Identifier",
619
619
  "overloadedDeclarations": [],
620
- "referencedDeclaration": 55764,
620
+ "referencedDeclaration": 55990,
621
621
  "src": "744:4:85",
622
622
  "typeDescriptions": {
623
623
  "typeIdentifier": "t_bytes16",
@@ -637,32 +637,32 @@
637
637
  }
638
638
  ],
639
639
  "expression": {
640
- "id": 55782,
640
+ "id": 56008,
641
641
  "name": "ResourceSelector",
642
642
  "nodeType": "Identifier",
643
643
  "overloadedDeclarations": [],
644
- "referencedDeclaration": 56121,
644
+ "referencedDeclaration": 56347,
645
645
  "src": "711:16:85",
646
646
  "typeDescriptions": {
647
- "typeIdentifier": "t_type$_t_contract$_ResourceSelector_$56121_$",
647
+ "typeIdentifier": "t_type$_t_contract$_ResourceSelector_$56347_$",
648
648
  "typeString": "type(library ResourceSelector)"
649
649
  }
650
650
  },
651
- "id": 55783,
651
+ "id": 56009,
652
652
  "isConstant": false,
653
653
  "isLValue": false,
654
654
  "isPure": false,
655
655
  "lValueRequested": false,
656
656
  "memberName": "from",
657
657
  "nodeType": "MemberAccess",
658
- "referencedDeclaration": 55963,
658
+ "referencedDeclaration": 56189,
659
659
  "src": "711:21:85",
660
660
  "typeDescriptions": {
661
661
  "typeIdentifier": "t_function_internal_pure$_t_bytes16_$_t_bytes16_$returns$_t_bytes32_$",
662
662
  "typeString": "function (bytes16,bytes16) pure returns (bytes32)"
663
663
  }
664
664
  },
665
- "id": 55786,
665
+ "id": 56012,
666
666
  "isConstant": false,
667
667
  "isLValue": false,
668
668
  "isPure": false,
@@ -678,11 +678,11 @@
678
678
  }
679
679
  },
680
680
  {
681
- "id": 55787,
681
+ "id": 56013,
682
682
  "name": "caller",
683
683
  "nodeType": "Identifier",
684
684
  "overloadedDeclarations": [],
685
- "referencedDeclaration": 55766,
685
+ "referencedDeclaration": 55992,
686
686
  "src": "751:6:85",
687
687
  "typeDescriptions": {
688
688
  "typeIdentifier": "t_address",
@@ -702,32 +702,32 @@
702
702
  }
703
703
  ],
704
704
  "expression": {
705
- "id": 55780,
705
+ "id": 56006,
706
706
  "name": "ResourceAccess",
707
707
  "nodeType": "Identifier",
708
708
  "overloadedDeclarations": [],
709
- "referencedDeclaration": 63482,
709
+ "referencedDeclaration": 64896,
710
710
  "src": "692:14:85",
711
711
  "typeDescriptions": {
712
- "typeIdentifier": "t_type$_t_contract$_ResourceAccess_$63482_$",
712
+ "typeIdentifier": "t_type$_t_contract$_ResourceAccess_$64896_$",
713
713
  "typeString": "type(library ResourceAccess)"
714
714
  }
715
715
  },
716
- "id": 55781,
716
+ "id": 56007,
717
717
  "isConstant": false,
718
718
  "isLValue": false,
719
719
  "isPure": false,
720
720
  "lValueRequested": false,
721
721
  "memberName": "get",
722
722
  "nodeType": "MemberAccess",
723
- "referencedDeclaration": 63178,
723
+ "referencedDeclaration": 64592,
724
724
  "src": "692:18:85",
725
725
  "typeDescriptions": {
726
726
  "typeIdentifier": "t_function_internal_view$_t_bytes32_$_t_address_$returns$_t_bool_$",
727
727
  "typeString": "function (bytes32,address) view returns (bool)"
728
728
  }
729
729
  },
730
- "id": 55788,
730
+ "id": 56014,
731
731
  "isConstant": false,
732
732
  "isLValue": false,
733
733
  "isPure": false,
@@ -748,15 +748,15 @@
748
748
  "typeString": "bool"
749
749
  }
750
750
  },
751
- "functionReturnParameters": 55770,
752
- "id": 55790,
751
+ "functionReturnParameters": 55996,
752
+ "id": 56016,
753
753
  "nodeType": "Return",
754
754
  "src": "561:197:85"
755
755
  }
756
756
  ]
757
757
  },
758
758
  "documentation": {
759
- "id": 55760,
759
+ "id": 55986,
760
760
  "nodeType": "StructuredDocumentation",
761
761
  "src": "360:95:85",
762
762
  "text": " Returns true if the caller has access to the namespace or file, false otherwise."
@@ -767,17 +767,17 @@
767
767
  "name": "hasAccess",
768
768
  "nameLocation": "467:9:85",
769
769
  "parameters": {
770
- "id": 55767,
770
+ "id": 55993,
771
771
  "nodeType": "ParameterList",
772
772
  "parameters": [
773
773
  {
774
774
  "constant": false,
775
- "id": 55762,
775
+ "id": 55988,
776
776
  "mutability": "mutable",
777
777
  "name": "namespace",
778
778
  "nameLocation": "485:9:85",
779
779
  "nodeType": "VariableDeclaration",
780
- "scope": 55792,
780
+ "scope": 56018,
781
781
  "src": "477:17:85",
782
782
  "stateVariable": false,
783
783
  "storageLocation": "default",
@@ -786,7 +786,7 @@
786
786
  "typeString": "bytes16"
787
787
  },
788
788
  "typeName": {
789
- "id": 55761,
789
+ "id": 55987,
790
790
  "name": "bytes16",
791
791
  "nodeType": "ElementaryTypeName",
792
792
  "src": "477:7:85",
@@ -799,12 +799,12 @@
799
799
  },
800
800
  {
801
801
  "constant": false,
802
- "id": 55764,
802
+ "id": 55990,
803
803
  "mutability": "mutable",
804
804
  "name": "file",
805
805
  "nameLocation": "504:4:85",
806
806
  "nodeType": "VariableDeclaration",
807
- "scope": 55792,
807
+ "scope": 56018,
808
808
  "src": "496:12:85",
809
809
  "stateVariable": false,
810
810
  "storageLocation": "default",
@@ -813,7 +813,7 @@
813
813
  "typeString": "bytes16"
814
814
  },
815
815
  "typeName": {
816
- "id": 55763,
816
+ "id": 55989,
817
817
  "name": "bytes16",
818
818
  "nodeType": "ElementaryTypeName",
819
819
  "src": "496:7:85",
@@ -826,12 +826,12 @@
826
826
  },
827
827
  {
828
828
  "constant": false,
829
- "id": 55766,
829
+ "id": 55992,
830
830
  "mutability": "mutable",
831
831
  "name": "caller",
832
832
  "nameLocation": "518:6:85",
833
833
  "nodeType": "VariableDeclaration",
834
- "scope": 55792,
834
+ "scope": 56018,
835
835
  "src": "510:14:85",
836
836
  "stateVariable": false,
837
837
  "storageLocation": "default",
@@ -840,7 +840,7 @@
840
840
  "typeString": "address"
841
841
  },
842
842
  "typeName": {
843
- "id": 55765,
843
+ "id": 55991,
844
844
  "name": "address",
845
845
  "nodeType": "ElementaryTypeName",
846
846
  "src": "510:7:85",
@@ -856,17 +856,17 @@
856
856
  "src": "476:49:85"
857
857
  },
858
858
  "returnParameters": {
859
- "id": 55770,
859
+ "id": 55996,
860
860
  "nodeType": "ParameterList",
861
861
  "parameters": [
862
862
  {
863
863
  "constant": false,
864
- "id": 55769,
864
+ "id": 55995,
865
865
  "mutability": "mutable",
866
866
  "name": "",
867
867
  "nameLocation": "-1:-1:-1",
868
868
  "nodeType": "VariableDeclaration",
869
- "scope": 55792,
869
+ "scope": 56018,
870
870
  "src": "549:4:85",
871
871
  "stateVariable": false,
872
872
  "storageLocation": "default",
@@ -875,7 +875,7 @@
875
875
  "typeString": "bool"
876
876
  },
877
877
  "typeName": {
878
- "id": 55768,
878
+ "id": 55994,
879
879
  "name": "bool",
880
880
  "nodeType": "ElementaryTypeName",
881
881
  "src": "549:4:85",
@@ -889,35 +889,35 @@
889
889
  ],
890
890
  "src": "548:6:85"
891
891
  },
892
- "scope": 55868,
892
+ "scope": 56094,
893
893
  "stateMutability": "view",
894
894
  "virtual": false,
895
895
  "visibility": "internal"
896
896
  },
897
897
  {
898
- "id": 55830,
898
+ "id": 56056,
899
899
  "nodeType": "FunctionDefinition",
900
900
  "src": "1016:406:85",
901
901
  "nodes": [],
902
902
  "body": {
903
- "id": 55829,
903
+ "id": 56055,
904
904
  "nodeType": "Block",
905
905
  "src": "1153:269:85",
906
906
  "nodes": [],
907
907
  "statements": [
908
908
  {
909
909
  "expression": {
910
- "id": 55810,
910
+ "id": 56036,
911
911
  "isConstant": false,
912
912
  "isLValue": false,
913
913
  "isPure": false,
914
914
  "lValueRequested": false,
915
915
  "leftHandSide": {
916
- "id": 55804,
916
+ "id": 56030,
917
917
  "name": "resourceSelector",
918
918
  "nodeType": "Identifier",
919
919
  "overloadedDeclarations": [],
920
- "referencedDeclaration": 55802,
920
+ "referencedDeclaration": 56028,
921
921
  "src": "1159:16:85",
922
922
  "typeDescriptions": {
923
923
  "typeIdentifier": "t_bytes32",
@@ -929,11 +929,11 @@
929
929
  "rightHandSide": {
930
930
  "arguments": [
931
931
  {
932
- "id": 55807,
932
+ "id": 56033,
933
933
  "name": "namespace",
934
934
  "nodeType": "Identifier",
935
935
  "overloadedDeclarations": [],
936
- "referencedDeclaration": 55795,
936
+ "referencedDeclaration": 56021,
937
937
  "src": "1200:9:85",
938
938
  "typeDescriptions": {
939
939
  "typeIdentifier": "t_bytes16",
@@ -941,11 +941,11 @@
941
941
  }
942
942
  },
943
943
  {
944
- "id": 55808,
944
+ "id": 56034,
945
945
  "name": "file",
946
946
  "nodeType": "Identifier",
947
947
  "overloadedDeclarations": [],
948
- "referencedDeclaration": 55797,
948
+ "referencedDeclaration": 56023,
949
949
  "src": "1211:4:85",
950
950
  "typeDescriptions": {
951
951
  "typeIdentifier": "t_bytes16",
@@ -965,32 +965,32 @@
965
965
  }
966
966
  ],
967
967
  "expression": {
968
- "id": 55805,
968
+ "id": 56031,
969
969
  "name": "ResourceSelector",
970
970
  "nodeType": "Identifier",
971
971
  "overloadedDeclarations": [],
972
- "referencedDeclaration": 56121,
972
+ "referencedDeclaration": 56347,
973
973
  "src": "1178:16:85",
974
974
  "typeDescriptions": {
975
- "typeIdentifier": "t_type$_t_contract$_ResourceSelector_$56121_$",
975
+ "typeIdentifier": "t_type$_t_contract$_ResourceSelector_$56347_$",
976
976
  "typeString": "type(library ResourceSelector)"
977
977
  }
978
978
  },
979
- "id": 55806,
979
+ "id": 56032,
980
980
  "isConstant": false,
981
981
  "isLValue": false,
982
982
  "isPure": false,
983
983
  "lValueRequested": false,
984
984
  "memberName": "from",
985
985
  "nodeType": "MemberAccess",
986
- "referencedDeclaration": 55963,
986
+ "referencedDeclaration": 56189,
987
987
  "src": "1178:21:85",
988
988
  "typeDescriptions": {
989
989
  "typeIdentifier": "t_function_internal_pure$_t_bytes16_$_t_bytes16_$returns$_t_bytes32_$",
990
990
  "typeString": "function (bytes16,bytes16) pure returns (bytes32)"
991
991
  }
992
992
  },
993
- "id": 55809,
993
+ "id": 56035,
994
994
  "isConstant": false,
995
995
  "isLValue": false,
996
996
  "isPure": false,
@@ -1011,13 +1011,13 @@
1011
1011
  "typeString": "bytes32"
1012
1012
  }
1013
1013
  },
1014
- "id": 55811,
1014
+ "id": 56037,
1015
1015
  "nodeType": "ExpressionStatement",
1016
1016
  "src": "1159:57:85"
1017
1017
  },
1018
1018
  {
1019
1019
  "condition": {
1020
- "id": 55817,
1020
+ "id": 56043,
1021
1021
  "isConstant": false,
1022
1022
  "isLValue": false,
1023
1023
  "isPure": false,
@@ -1029,11 +1029,11 @@
1029
1029
  "subExpression": {
1030
1030
  "arguments": [
1031
1031
  {
1032
- "id": 55813,
1032
+ "id": 56039,
1033
1033
  "name": "namespace",
1034
1034
  "nodeType": "Identifier",
1035
1035
  "overloadedDeclarations": [],
1036
- "referencedDeclaration": 55795,
1036
+ "referencedDeclaration": 56021,
1037
1037
  "src": "1313:9:85",
1038
1038
  "typeDescriptions": {
1039
1039
  "typeIdentifier": "t_bytes16",
@@ -1041,11 +1041,11 @@
1041
1041
  }
1042
1042
  },
1043
1043
  {
1044
- "id": 55814,
1044
+ "id": 56040,
1045
1045
  "name": "file",
1046
1046
  "nodeType": "Identifier",
1047
1047
  "overloadedDeclarations": [],
1048
- "referencedDeclaration": 55797,
1048
+ "referencedDeclaration": 56023,
1049
1049
  "src": "1324:4:85",
1050
1050
  "typeDescriptions": {
1051
1051
  "typeIdentifier": "t_bytes16",
@@ -1053,11 +1053,11 @@
1053
1053
  }
1054
1054
  },
1055
1055
  {
1056
- "id": 55815,
1056
+ "id": 56041,
1057
1057
  "name": "caller",
1058
1058
  "nodeType": "Identifier",
1059
1059
  "overloadedDeclarations": [],
1060
- "referencedDeclaration": 55799,
1060
+ "referencedDeclaration": 56025,
1061
1061
  "src": "1330:6:85",
1062
1062
  "typeDescriptions": {
1063
1063
  "typeIdentifier": "t_address",
@@ -1080,18 +1080,18 @@
1080
1080
  "typeString": "address"
1081
1081
  }
1082
1082
  ],
1083
- "id": 55812,
1083
+ "id": 56038,
1084
1084
  "name": "hasAccess",
1085
1085
  "nodeType": "Identifier",
1086
1086
  "overloadedDeclarations": [],
1087
- "referencedDeclaration": 55792,
1087
+ "referencedDeclaration": 56018,
1088
1088
  "src": "1303:9:85",
1089
1089
  "typeDescriptions": {
1090
1090
  "typeIdentifier": "t_function_internal_view$_t_bytes16_$_t_bytes16_$_t_address_$returns$_t_bool_$",
1091
1091
  "typeString": "function (bytes16,bytes16,address) view returns (bool)"
1092
1092
  }
1093
1093
  },
1094
- "id": 55816,
1094
+ "id": 56042,
1095
1095
  "isConstant": false,
1096
1096
  "isLValue": false,
1097
1097
  "isPure": false,
@@ -1111,11 +1111,11 @@
1111
1111
  "typeString": "bool"
1112
1112
  }
1113
1113
  },
1114
- "id": 55828,
1114
+ "id": 56054,
1115
1115
  "nodeType": "IfStatement",
1116
1116
  "src": "1298:120:85",
1117
1117
  "trueBody": {
1118
- "id": 55827,
1118
+ "id": 56053,
1119
1119
  "nodeType": "Block",
1120
1120
  "src": "1339:79:85",
1121
1121
  "statements": [
@@ -1127,32 +1127,32 @@
1127
1127
  "expression": {
1128
1128
  "argumentTypes": [],
1129
1129
  "expression": {
1130
- "id": 55821,
1130
+ "id": 56047,
1131
1131
  "name": "resourceSelector",
1132
1132
  "nodeType": "Identifier",
1133
1133
  "overloadedDeclarations": [],
1134
- "referencedDeclaration": 55802,
1134
+ "referencedDeclaration": 56028,
1135
1135
  "src": "1375:16:85",
1136
1136
  "typeDescriptions": {
1137
1137
  "typeIdentifier": "t_bytes32",
1138
1138
  "typeString": "bytes32"
1139
1139
  }
1140
1140
  },
1141
- "id": 55822,
1141
+ "id": 56048,
1142
1142
  "isConstant": false,
1143
1143
  "isLValue": false,
1144
1144
  "isPure": false,
1145
1145
  "lValueRequested": false,
1146
1146
  "memberName": "toString",
1147
1147
  "nodeType": "MemberAccess",
1148
- "referencedDeclaration": 56062,
1148
+ "referencedDeclaration": 56288,
1149
1149
  "src": "1375:25:85",
1150
1150
  "typeDescriptions": {
1151
1151
  "typeIdentifier": "t_function_internal_pure$_t_bytes32_$returns$_t_string_memory_ptr_$bound_to$_t_bytes32_$",
1152
1152
  "typeString": "function (bytes32) pure returns (string memory)"
1153
1153
  }
1154
1154
  },
1155
- "id": 55823,
1155
+ "id": 56049,
1156
1156
  "isConstant": false,
1157
1157
  "isLValue": false,
1158
1158
  "isPure": false,
@@ -1168,11 +1168,11 @@
1168
1168
  }
1169
1169
  },
1170
1170
  {
1171
- "id": 55824,
1171
+ "id": 56050,
1172
1172
  "name": "caller",
1173
1173
  "nodeType": "Identifier",
1174
1174
  "overloadedDeclarations": [],
1175
- "referencedDeclaration": 55799,
1175
+ "referencedDeclaration": 56025,
1176
1176
  "src": "1404:6:85",
1177
1177
  "typeDescriptions": {
1178
1178
  "typeIdentifier": "t_address",
@@ -1192,32 +1192,32 @@
1192
1192
  }
1193
1193
  ],
1194
1194
  "expression": {
1195
- "id": 55818,
1195
+ "id": 56044,
1196
1196
  "name": "IErrors",
1197
1197
  "nodeType": "Identifier",
1198
1198
  "overloadedDeclarations": [],
1199
- "referencedDeclaration": 57044,
1199
+ "referencedDeclaration": 57270,
1200
1200
  "src": "1354:7:85",
1201
1201
  "typeDescriptions": {
1202
- "typeIdentifier": "t_type$_t_contract$_IErrors_$57044_$",
1202
+ "typeIdentifier": "t_type$_t_contract$_IErrors_$57270_$",
1203
1203
  "typeString": "type(contract IErrors)"
1204
1204
  }
1205
1205
  },
1206
- "id": 55820,
1206
+ "id": 56046,
1207
1207
  "isConstant": false,
1208
1208
  "isLValue": false,
1209
1209
  "isPure": false,
1210
1210
  "lValueRequested": false,
1211
1211
  "memberName": "AccessDenied",
1212
1212
  "nodeType": "MemberAccess",
1213
- "referencedDeclaration": 57023,
1213
+ "referencedDeclaration": 57249,
1214
1214
  "src": "1354:20:85",
1215
1215
  "typeDescriptions": {
1216
1216
  "typeIdentifier": "t_function_error_pure$_t_string_memory_ptr_$_t_address_$returns$__$",
1217
1217
  "typeString": "function (string memory,address) pure"
1218
1218
  }
1219
1219
  },
1220
- "id": 55825,
1220
+ "id": 56051,
1221
1221
  "isConstant": false,
1222
1222
  "isLValue": false,
1223
1223
  "isPure": false,
@@ -1232,7 +1232,7 @@
1232
1232
  "typeString": "tuple()"
1233
1233
  }
1234
1234
  },
1235
- "id": 55826,
1235
+ "id": 56052,
1236
1236
  "nodeType": "RevertStatement",
1237
1237
  "src": "1347:64:85"
1238
1238
  }
@@ -1242,7 +1242,7 @@
1242
1242
  ]
1243
1243
  },
1244
1244
  "documentation": {
1245
- "id": 55793,
1245
+ "id": 56019,
1246
1246
  "nodeType": "StructuredDocumentation",
1247
1247
  "src": "830:183:85",
1248
1248
  "text": " Check for access at the given namespace or file.\n Returns the resourceSelector if the caller has access.\n Reverts with AccessDenied if the caller has no access."
@@ -1253,17 +1253,17 @@
1253
1253
  "name": "requireAccess",
1254
1254
  "nameLocation": "1025:13:85",
1255
1255
  "parameters": {
1256
- "id": 55800,
1256
+ "id": 56026,
1257
1257
  "nodeType": "ParameterList",
1258
1258
  "parameters": [
1259
1259
  {
1260
1260
  "constant": false,
1261
- "id": 55795,
1261
+ "id": 56021,
1262
1262
  "mutability": "mutable",
1263
1263
  "name": "namespace",
1264
1264
  "nameLocation": "1052:9:85",
1265
1265
  "nodeType": "VariableDeclaration",
1266
- "scope": 55830,
1266
+ "scope": 56056,
1267
1267
  "src": "1044:17:85",
1268
1268
  "stateVariable": false,
1269
1269
  "storageLocation": "default",
@@ -1272,7 +1272,7 @@
1272
1272
  "typeString": "bytes16"
1273
1273
  },
1274
1274
  "typeName": {
1275
- "id": 55794,
1275
+ "id": 56020,
1276
1276
  "name": "bytes16",
1277
1277
  "nodeType": "ElementaryTypeName",
1278
1278
  "src": "1044:7:85",
@@ -1285,12 +1285,12 @@
1285
1285
  },
1286
1286
  {
1287
1287
  "constant": false,
1288
- "id": 55797,
1288
+ "id": 56023,
1289
1289
  "mutability": "mutable",
1290
1290
  "name": "file",
1291
1291
  "nameLocation": "1075:4:85",
1292
1292
  "nodeType": "VariableDeclaration",
1293
- "scope": 55830,
1293
+ "scope": 56056,
1294
1294
  "src": "1067:12:85",
1295
1295
  "stateVariable": false,
1296
1296
  "storageLocation": "default",
@@ -1299,7 +1299,7 @@
1299
1299
  "typeString": "bytes16"
1300
1300
  },
1301
1301
  "typeName": {
1302
- "id": 55796,
1302
+ "id": 56022,
1303
1303
  "name": "bytes16",
1304
1304
  "nodeType": "ElementaryTypeName",
1305
1305
  "src": "1067:7:85",
@@ -1312,12 +1312,12 @@
1312
1312
  },
1313
1313
  {
1314
1314
  "constant": false,
1315
- "id": 55799,
1315
+ "id": 56025,
1316
1316
  "mutability": "mutable",
1317
1317
  "name": "caller",
1318
1318
  "nameLocation": "1093:6:85",
1319
1319
  "nodeType": "VariableDeclaration",
1320
- "scope": 55830,
1320
+ "scope": 56056,
1321
1321
  "src": "1085:14:85",
1322
1322
  "stateVariable": false,
1323
1323
  "storageLocation": "default",
@@ -1326,7 +1326,7 @@
1326
1326
  "typeString": "address"
1327
1327
  },
1328
1328
  "typeName": {
1329
- "id": 55798,
1329
+ "id": 56024,
1330
1330
  "name": "address",
1331
1331
  "nodeType": "ElementaryTypeName",
1332
1332
  "src": "1085:7:85",
@@ -1342,17 +1342,17 @@
1342
1342
  "src": "1038:65:85"
1343
1343
  },
1344
1344
  "returnParameters": {
1345
- "id": 55803,
1345
+ "id": 56029,
1346
1346
  "nodeType": "ParameterList",
1347
1347
  "parameters": [
1348
1348
  {
1349
1349
  "constant": false,
1350
- "id": 55802,
1350
+ "id": 56028,
1351
1351
  "mutability": "mutable",
1352
1352
  "name": "resourceSelector",
1353
1353
  "nameLocation": "1135:16:85",
1354
1354
  "nodeType": "VariableDeclaration",
1355
- "scope": 55830,
1355
+ "scope": 56056,
1356
1356
  "src": "1127:24:85",
1357
1357
  "stateVariable": false,
1358
1358
  "storageLocation": "default",
@@ -1361,7 +1361,7 @@
1361
1361
  "typeString": "bytes32"
1362
1362
  },
1363
1363
  "typeName": {
1364
- "id": 55801,
1364
+ "id": 56027,
1365
1365
  "name": "bytes32",
1366
1366
  "nodeType": "ElementaryTypeName",
1367
1367
  "src": "1127:7:85",
@@ -1375,35 +1375,35 @@
1375
1375
  ],
1376
1376
  "src": "1126:26:85"
1377
1377
  },
1378
- "scope": 55868,
1378
+ "scope": 56094,
1379
1379
  "stateMutability": "view",
1380
1380
  "virtual": false,
1381
1381
  "visibility": "internal"
1382
1382
  },
1383
1383
  {
1384
- "id": 55867,
1384
+ "id": 56093,
1385
1385
  "nodeType": "FunctionDefinition",
1386
1386
  "src": "1426:334:85",
1387
1387
  "nodes": [],
1388
1388
  "body": {
1389
- "id": 55866,
1389
+ "id": 56092,
1390
1390
  "nodeType": "Block",
1391
1391
  "src": "1562:198:85",
1392
1392
  "nodes": [],
1393
1393
  "statements": [
1394
1394
  {
1395
1395
  "expression": {
1396
- "id": 55847,
1396
+ "id": 56073,
1397
1397
  "isConstant": false,
1398
1398
  "isLValue": false,
1399
1399
  "isPure": false,
1400
1400
  "lValueRequested": false,
1401
1401
  "leftHandSide": {
1402
- "id": 55841,
1402
+ "id": 56067,
1403
1403
  "name": "resourceSelector",
1404
1404
  "nodeType": "Identifier",
1405
1405
  "overloadedDeclarations": [],
1406
- "referencedDeclaration": 55839,
1406
+ "referencedDeclaration": 56065,
1407
1407
  "src": "1568:16:85",
1408
1408
  "typeDescriptions": {
1409
1409
  "typeIdentifier": "t_bytes32",
@@ -1415,11 +1415,11 @@
1415
1415
  "rightHandSide": {
1416
1416
  "arguments": [
1417
1417
  {
1418
- "id": 55844,
1418
+ "id": 56070,
1419
1419
  "name": "namespace",
1420
1420
  "nodeType": "Identifier",
1421
1421
  "overloadedDeclarations": [],
1422
- "referencedDeclaration": 55832,
1422
+ "referencedDeclaration": 56058,
1423
1423
  "src": "1609:9:85",
1424
1424
  "typeDescriptions": {
1425
1425
  "typeIdentifier": "t_bytes16",
@@ -1427,11 +1427,11 @@
1427
1427
  }
1428
1428
  },
1429
1429
  {
1430
- "id": 55845,
1430
+ "id": 56071,
1431
1431
  "name": "file",
1432
1432
  "nodeType": "Identifier",
1433
1433
  "overloadedDeclarations": [],
1434
- "referencedDeclaration": 55834,
1434
+ "referencedDeclaration": 56060,
1435
1435
  "src": "1620:4:85",
1436
1436
  "typeDescriptions": {
1437
1437
  "typeIdentifier": "t_bytes16",
@@ -1451,32 +1451,32 @@
1451
1451
  }
1452
1452
  ],
1453
1453
  "expression": {
1454
- "id": 55842,
1454
+ "id": 56068,
1455
1455
  "name": "ResourceSelector",
1456
1456
  "nodeType": "Identifier",
1457
1457
  "overloadedDeclarations": [],
1458
- "referencedDeclaration": 56121,
1458
+ "referencedDeclaration": 56347,
1459
1459
  "src": "1587:16:85",
1460
1460
  "typeDescriptions": {
1461
- "typeIdentifier": "t_type$_t_contract$_ResourceSelector_$56121_$",
1461
+ "typeIdentifier": "t_type$_t_contract$_ResourceSelector_$56347_$",
1462
1462
  "typeString": "type(library ResourceSelector)"
1463
1463
  }
1464
1464
  },
1465
- "id": 55843,
1465
+ "id": 56069,
1466
1466
  "isConstant": false,
1467
1467
  "isLValue": false,
1468
1468
  "isPure": false,
1469
1469
  "lValueRequested": false,
1470
1470
  "memberName": "from",
1471
1471
  "nodeType": "MemberAccess",
1472
- "referencedDeclaration": 55963,
1472
+ "referencedDeclaration": 56189,
1473
1473
  "src": "1587:21:85",
1474
1474
  "typeDescriptions": {
1475
1475
  "typeIdentifier": "t_function_internal_pure$_t_bytes16_$_t_bytes16_$returns$_t_bytes32_$",
1476
1476
  "typeString": "function (bytes16,bytes16) pure returns (bytes32)"
1477
1477
  }
1478
1478
  },
1479
- "id": 55846,
1479
+ "id": 56072,
1480
1480
  "isConstant": false,
1481
1481
  "isLValue": false,
1482
1482
  "isPure": false,
@@ -1497,7 +1497,7 @@
1497
1497
  "typeString": "bytes32"
1498
1498
  }
1499
1499
  },
1500
- "id": 55848,
1500
+ "id": 56074,
1501
1501
  "nodeType": "ExpressionStatement",
1502
1502
  "src": "1568:57:85"
1503
1503
  },
@@ -1507,7 +1507,7 @@
1507
1507
  "typeIdentifier": "t_address",
1508
1508
  "typeString": "address"
1509
1509
  },
1510
- "id": 55854,
1510
+ "id": 56080,
1511
1511
  "isConstant": false,
1512
1512
  "isLValue": false,
1513
1513
  "isPure": false,
@@ -1515,11 +1515,11 @@
1515
1515
  "leftExpression": {
1516
1516
  "arguments": [
1517
1517
  {
1518
- "id": 55851,
1518
+ "id": 56077,
1519
1519
  "name": "namespace",
1520
1520
  "nodeType": "Identifier",
1521
1521
  "overloadedDeclarations": [],
1522
- "referencedDeclaration": 55832,
1522
+ "referencedDeclaration": 56058,
1523
1523
  "src": "1655:9:85",
1524
1524
  "typeDescriptions": {
1525
1525
  "typeIdentifier": "t_bytes16",
@@ -1535,32 +1535,32 @@
1535
1535
  }
1536
1536
  ],
1537
1537
  "expression": {
1538
- "id": 55849,
1538
+ "id": 56075,
1539
1539
  "name": "NamespaceOwner",
1540
1540
  "nodeType": "Identifier",
1541
1541
  "overloadedDeclarations": [],
1542
- "referencedDeclaration": 62887,
1542
+ "referencedDeclaration": 64301,
1543
1543
  "src": "1636:14:85",
1544
1544
  "typeDescriptions": {
1545
- "typeIdentifier": "t_type$_t_contract$_NamespaceOwner_$62887_$",
1545
+ "typeIdentifier": "t_type$_t_contract$_NamespaceOwner_$64301_$",
1546
1546
  "typeString": "type(library NamespaceOwner)"
1547
1547
  }
1548
1548
  },
1549
- "id": 55850,
1549
+ "id": 56076,
1550
1550
  "isConstant": false,
1551
1551
  "isLValue": false,
1552
1552
  "isPure": false,
1553
1553
  "lValueRequested": false,
1554
1554
  "memberName": "get",
1555
1555
  "nodeType": "MemberAccess",
1556
- "referencedDeclaration": 62660,
1556
+ "referencedDeclaration": 64074,
1557
1557
  "src": "1636:18:85",
1558
1558
  "typeDescriptions": {
1559
1559
  "typeIdentifier": "t_function_internal_view$_t_bytes16_$returns$_t_address_$",
1560
1560
  "typeString": "function (bytes16) view returns (address)"
1561
1561
  }
1562
1562
  },
1563
- "id": 55852,
1563
+ "id": 56078,
1564
1564
  "isConstant": false,
1565
1565
  "isLValue": false,
1566
1566
  "isPure": false,
@@ -1578,11 +1578,11 @@
1578
1578
  "nodeType": "BinaryOperation",
1579
1579
  "operator": "!=",
1580
1580
  "rightExpression": {
1581
- "id": 55853,
1581
+ "id": 56079,
1582
1582
  "name": "caller",
1583
1583
  "nodeType": "Identifier",
1584
1584
  "overloadedDeclarations": [],
1585
- "referencedDeclaration": 55836,
1585
+ "referencedDeclaration": 56062,
1586
1586
  "src": "1669:6:85",
1587
1587
  "typeDescriptions": {
1588
1588
  "typeIdentifier": "t_address",
@@ -1595,11 +1595,11 @@
1595
1595
  "typeString": "bool"
1596
1596
  }
1597
1597
  },
1598
- "id": 55865,
1598
+ "id": 56091,
1599
1599
  "nodeType": "IfStatement",
1600
1600
  "src": "1632:124:85",
1601
1601
  "trueBody": {
1602
- "id": 55864,
1602
+ "id": 56090,
1603
1603
  "nodeType": "Block",
1604
1604
  "src": "1677:79:85",
1605
1605
  "statements": [
@@ -1611,32 +1611,32 @@
1611
1611
  "expression": {
1612
1612
  "argumentTypes": [],
1613
1613
  "expression": {
1614
- "id": 55858,
1614
+ "id": 56084,
1615
1615
  "name": "resourceSelector",
1616
1616
  "nodeType": "Identifier",
1617
1617
  "overloadedDeclarations": [],
1618
- "referencedDeclaration": 55839,
1618
+ "referencedDeclaration": 56065,
1619
1619
  "src": "1713:16:85",
1620
1620
  "typeDescriptions": {
1621
1621
  "typeIdentifier": "t_bytes32",
1622
1622
  "typeString": "bytes32"
1623
1623
  }
1624
1624
  },
1625
- "id": 55859,
1625
+ "id": 56085,
1626
1626
  "isConstant": false,
1627
1627
  "isLValue": false,
1628
1628
  "isPure": false,
1629
1629
  "lValueRequested": false,
1630
1630
  "memberName": "toString",
1631
1631
  "nodeType": "MemberAccess",
1632
- "referencedDeclaration": 56062,
1632
+ "referencedDeclaration": 56288,
1633
1633
  "src": "1713:25:85",
1634
1634
  "typeDescriptions": {
1635
1635
  "typeIdentifier": "t_function_internal_pure$_t_bytes32_$returns$_t_string_memory_ptr_$bound_to$_t_bytes32_$",
1636
1636
  "typeString": "function (bytes32) pure returns (string memory)"
1637
1637
  }
1638
1638
  },
1639
- "id": 55860,
1639
+ "id": 56086,
1640
1640
  "isConstant": false,
1641
1641
  "isLValue": false,
1642
1642
  "isPure": false,
@@ -1652,11 +1652,11 @@
1652
1652
  }
1653
1653
  },
1654
1654
  {
1655
- "id": 55861,
1655
+ "id": 56087,
1656
1656
  "name": "caller",
1657
1657
  "nodeType": "Identifier",
1658
1658
  "overloadedDeclarations": [],
1659
- "referencedDeclaration": 55836,
1659
+ "referencedDeclaration": 56062,
1660
1660
  "src": "1742:6:85",
1661
1661
  "typeDescriptions": {
1662
1662
  "typeIdentifier": "t_address",
@@ -1676,32 +1676,32 @@
1676
1676
  }
1677
1677
  ],
1678
1678
  "expression": {
1679
- "id": 55855,
1679
+ "id": 56081,
1680
1680
  "name": "IErrors",
1681
1681
  "nodeType": "Identifier",
1682
1682
  "overloadedDeclarations": [],
1683
- "referencedDeclaration": 57044,
1683
+ "referencedDeclaration": 57270,
1684
1684
  "src": "1692:7:85",
1685
1685
  "typeDescriptions": {
1686
- "typeIdentifier": "t_type$_t_contract$_IErrors_$57044_$",
1686
+ "typeIdentifier": "t_type$_t_contract$_IErrors_$57270_$",
1687
1687
  "typeString": "type(contract IErrors)"
1688
1688
  }
1689
1689
  },
1690
- "id": 55857,
1690
+ "id": 56083,
1691
1691
  "isConstant": false,
1692
1692
  "isLValue": false,
1693
1693
  "isPure": false,
1694
1694
  "lValueRequested": false,
1695
1695
  "memberName": "AccessDenied",
1696
1696
  "nodeType": "MemberAccess",
1697
- "referencedDeclaration": 57023,
1697
+ "referencedDeclaration": 57249,
1698
1698
  "src": "1692:20:85",
1699
1699
  "typeDescriptions": {
1700
1700
  "typeIdentifier": "t_function_error_pure$_t_string_memory_ptr_$_t_address_$returns$__$",
1701
1701
  "typeString": "function (string memory,address) pure"
1702
1702
  }
1703
1703
  },
1704
- "id": 55862,
1704
+ "id": 56088,
1705
1705
  "isConstant": false,
1706
1706
  "isLValue": false,
1707
1707
  "isPure": false,
@@ -1716,7 +1716,7 @@
1716
1716
  "typeString": "tuple()"
1717
1717
  }
1718
1718
  },
1719
- "id": 55863,
1719
+ "id": 56089,
1720
1720
  "nodeType": "RevertStatement",
1721
1721
  "src": "1685:64:85"
1722
1722
  }
@@ -1731,17 +1731,17 @@
1731
1731
  "name": "requireOwner",
1732
1732
  "nameLocation": "1435:12:85",
1733
1733
  "parameters": {
1734
- "id": 55837,
1734
+ "id": 56063,
1735
1735
  "nodeType": "ParameterList",
1736
1736
  "parameters": [
1737
1737
  {
1738
1738
  "constant": false,
1739
- "id": 55832,
1739
+ "id": 56058,
1740
1740
  "mutability": "mutable",
1741
1741
  "name": "namespace",
1742
1742
  "nameLocation": "1461:9:85",
1743
1743
  "nodeType": "VariableDeclaration",
1744
- "scope": 55867,
1744
+ "scope": 56093,
1745
1745
  "src": "1453:17:85",
1746
1746
  "stateVariable": false,
1747
1747
  "storageLocation": "default",
@@ -1750,7 +1750,7 @@
1750
1750
  "typeString": "bytes16"
1751
1751
  },
1752
1752
  "typeName": {
1753
- "id": 55831,
1753
+ "id": 56057,
1754
1754
  "name": "bytes16",
1755
1755
  "nodeType": "ElementaryTypeName",
1756
1756
  "src": "1453:7:85",
@@ -1763,12 +1763,12 @@
1763
1763
  },
1764
1764
  {
1765
1765
  "constant": false,
1766
- "id": 55834,
1766
+ "id": 56060,
1767
1767
  "mutability": "mutable",
1768
1768
  "name": "file",
1769
1769
  "nameLocation": "1484:4:85",
1770
1770
  "nodeType": "VariableDeclaration",
1771
- "scope": 55867,
1771
+ "scope": 56093,
1772
1772
  "src": "1476:12:85",
1773
1773
  "stateVariable": false,
1774
1774
  "storageLocation": "default",
@@ -1777,7 +1777,7 @@
1777
1777
  "typeString": "bytes16"
1778
1778
  },
1779
1779
  "typeName": {
1780
- "id": 55833,
1780
+ "id": 56059,
1781
1781
  "name": "bytes16",
1782
1782
  "nodeType": "ElementaryTypeName",
1783
1783
  "src": "1476:7:85",
@@ -1790,12 +1790,12 @@
1790
1790
  },
1791
1791
  {
1792
1792
  "constant": false,
1793
- "id": 55836,
1793
+ "id": 56062,
1794
1794
  "mutability": "mutable",
1795
1795
  "name": "caller",
1796
1796
  "nameLocation": "1502:6:85",
1797
1797
  "nodeType": "VariableDeclaration",
1798
- "scope": 55867,
1798
+ "scope": 56093,
1799
1799
  "src": "1494:14:85",
1800
1800
  "stateVariable": false,
1801
1801
  "storageLocation": "default",
@@ -1804,7 +1804,7 @@
1804
1804
  "typeString": "address"
1805
1805
  },
1806
1806
  "typeName": {
1807
- "id": 55835,
1807
+ "id": 56061,
1808
1808
  "name": "address",
1809
1809
  "nodeType": "ElementaryTypeName",
1810
1810
  "src": "1494:7:85",
@@ -1820,17 +1820,17 @@
1820
1820
  "src": "1447:65:85"
1821
1821
  },
1822
1822
  "returnParameters": {
1823
- "id": 55840,
1823
+ "id": 56066,
1824
1824
  "nodeType": "ParameterList",
1825
1825
  "parameters": [
1826
1826
  {
1827
1827
  "constant": false,
1828
- "id": 55839,
1828
+ "id": 56065,
1829
1829
  "mutability": "mutable",
1830
1830
  "name": "resourceSelector",
1831
1831
  "nameLocation": "1544:16:85",
1832
1832
  "nodeType": "VariableDeclaration",
1833
- "scope": 55867,
1833
+ "scope": 56093,
1834
1834
  "src": "1536:24:85",
1835
1835
  "stateVariable": false,
1836
1836
  "storageLocation": "default",
@@ -1839,7 +1839,7 @@
1839
1839
  "typeString": "bytes32"
1840
1840
  },
1841
1841
  "typeName": {
1842
- "id": 55838,
1842
+ "id": 56064,
1843
1843
  "name": "bytes32",
1844
1844
  "nodeType": "ElementaryTypeName",
1845
1845
  "src": "1536:7:85",
@@ -1853,7 +1853,7 @@
1853
1853
  ],
1854
1854
  "src": "1535:26:85"
1855
1855
  },
1856
- "scope": 55868,
1856
+ "scope": 56094,
1857
1857
  "stateMutability": "view",
1858
1858
  "virtual": false,
1859
1859
  "visibility": "internal"
@@ -1866,11 +1866,11 @@
1866
1866
  "contractKind": "library",
1867
1867
  "fullyImplemented": true,
1868
1868
  "linearizedBaseContracts": [
1869
- 55868
1869
+ 56094
1870
1870
  ],
1871
1871
  "name": "AccessControl",
1872
1872
  "nameLocation": "303:13:85",
1873
- "scope": 55869,
1873
+ "scope": 56095,
1874
1874
  "usedErrors": []
1875
1875
  }
1876
1876
  ],