yakmesh 2.8.2 → 3.0.0

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 (232) hide show
  1. package/CHANGELOG.md +637 -0
  2. package/CONTRIBUTING.md +42 -0
  3. package/Caddyfile +77 -0
  4. package/README.md +119 -29
  5. package/adapters/adapter-mlv-bible/README.md +124 -0
  6. package/adapters/adapter-mlv-bible/index.js +400 -0
  7. package/adapters/chat-mod-adapter.js +532 -0
  8. package/adapters/content-adapter.js +273 -0
  9. package/content/api.js +50 -41
  10. package/content/index.js +2 -2
  11. package/content/store.js +355 -173
  12. package/dashboard/index.html +19 -3
  13. package/database/replication.js +117 -37
  14. package/docs/CRYPTO-AGILITY.md +204 -0
  15. package/docs/MTLS-RESEARCH.md +367 -0
  16. package/docs/NAMCHE-SPEC.md +681 -0
  17. package/docs/PEERQUANTA-YAKMESH-INTEGRATION.md +407 -0
  18. package/docs/PRECISION-DISCLOSURE.md +96 -0
  19. package/docs/README.md +76 -0
  20. package/docs/ROADMAP-2.4.0.md +447 -0
  21. package/docs/ROADMAP-2.5.0.md +244 -0
  22. package/docs/SECURITY-AUDIT-REPORT.md +306 -0
  23. package/docs/SST-INTEGRATION.md +712 -0
  24. package/docs/STEADYWATCH-IMPLEMENTATION.md +303 -0
  25. package/docs/TERNARY-AUDIT-REPORT.md +247 -0
  26. package/docs/TME-FAQ.md +221 -0
  27. package/docs/WHITEPAPER.md +623 -0
  28. package/docs/adapters.html +1001 -0
  29. package/docs/advanced-systems.html +1045 -0
  30. package/docs/annex.html +1046 -0
  31. package/docs/api.html +970 -0
  32. package/docs/business/response-templates.md +160 -0
  33. package/docs/c2c.html +1225 -0
  34. package/docs/cli.html +1332 -0
  35. package/docs/configuration.html +1248 -0
  36. package/docs/darshan.html +1085 -0
  37. package/docs/dharma.html +966 -0
  38. package/docs/docs-bundle.html +1075 -0
  39. package/docs/docs.css +3120 -0
  40. package/docs/docs.js +556 -0
  41. package/docs/doko.html +969 -0
  42. package/docs/geo-proof.html +858 -0
  43. package/docs/getting-started.html +840 -0
  44. package/docs/gumba-tutorial.html +1144 -0
  45. package/docs/gumba.html +1098 -0
  46. package/docs/index.html +914 -0
  47. package/docs/jhilke.html +1312 -0
  48. package/docs/karma.html +1100 -0
  49. package/docs/katha.html +1037 -0
  50. package/docs/lama.html +978 -0
  51. package/docs/mandala.html +1067 -0
  52. package/docs/mani.html +964 -0
  53. package/docs/mantra.html +967 -0
  54. package/docs/mesh.html +1409 -0
  55. package/docs/nakpak.html +869 -0
  56. package/docs/namche.html +928 -0
  57. package/docs/nav-order.json +53 -0
  58. package/docs/prahari.html +1043 -0
  59. package/docs/prism-bash.min.js +1 -0
  60. package/docs/prism-javascript.min.js +1 -0
  61. package/docs/prism-json.min.js +1 -0
  62. package/docs/prism-tomorrow.min.css +1 -0
  63. package/docs/prism.min.js +1 -0
  64. package/docs/privacy.html +699 -0
  65. package/docs/quick-reference.html +1181 -0
  66. package/docs/sakshi.html +1402 -0
  67. package/docs/sandboxing.md +386 -0
  68. package/docs/seva.html +911 -0
  69. package/docs/sherpa.html +871 -0
  70. package/docs/studio.html +860 -0
  71. package/docs/stupa.html +995 -0
  72. package/docs/tailwind.min.css +2 -0
  73. package/docs/tattva.html +1332 -0
  74. package/docs/terms.html +686 -0
  75. package/docs/time-server-deployment.md +166 -0
  76. package/docs/time-sources.html +1392 -0
  77. package/docs/tivra.html +1127 -0
  78. package/docs/trademark-policy.html +686 -0
  79. package/docs/tribhuj.html +1183 -0
  80. package/docs/trust-security.html +1029 -0
  81. package/docs/tutorials/backup-recovery.html +654 -0
  82. package/docs/tutorials/dashboard.html +604 -0
  83. package/docs/tutorials/domain-setup.html +605 -0
  84. package/docs/tutorials/host-website.html +456 -0
  85. package/docs/tutorials/mesh-network.html +505 -0
  86. package/docs/tutorials/mobile-access.html +445 -0
  87. package/docs/tutorials/privacy.html +467 -0
  88. package/docs/tutorials/raspberry-pi.html +600 -0
  89. package/docs/tutorials/security-basics.html +539 -0
  90. package/docs/tutorials/share-files.html +431 -0
  91. package/docs/tutorials/troubleshooting.html +637 -0
  92. package/docs/tutorials/trust-karma.html +419 -0
  93. package/docs/tutorials/yak-protocol.html +456 -0
  94. package/docs/tutorials.html +1034 -0
  95. package/docs/vani.html +1270 -0
  96. package/docs/webserver.html +809 -0
  97. package/docs/yak-protocol.html +940 -0
  98. package/docs/yak-timeserver-design.md +475 -0
  99. package/docs/yakapp.html +1015 -0
  100. package/docs/ypc27.html +1069 -0
  101. package/docs/yurt.html +1344 -0
  102. package/embedded-docs/bundle.js +334 -74
  103. package/gossip/protocol.js +247 -27
  104. package/identity/key-resolver.js +262 -0
  105. package/identity/machine-seed.js +632 -0
  106. package/identity/node-key.js +669 -368
  107. package/identity/tribhuj-ratchet.js +506 -0
  108. package/knowledge-base.js +37 -8
  109. package/launcher/yakmesh.bat +62 -0
  110. package/launcher/yakmesh.sh +70 -0
  111. package/mesh/annex.js +462 -108
  112. package/mesh/beacon-broadcast.js +113 -1
  113. package/mesh/darshan.js +1718 -0
  114. package/mesh/gumba.js +1567 -0
  115. package/mesh/jhilke.js +651 -0
  116. package/mesh/katha.js +1012 -0
  117. package/mesh/nakpak-routing.js +8 -5
  118. package/mesh/network.js +724 -34
  119. package/mesh/pulse-sync.js +4 -1
  120. package/mesh/rate-limiter.js +127 -15
  121. package/mesh/seva.js +526 -0
  122. package/mesh/sherpa-discovery.js +89 -8
  123. package/mesh/sybil-defense.js +19 -5
  124. package/mesh/temporal-encoder.js +4 -3
  125. package/mesh/vani.js +1364 -0
  126. package/mesh/yurt.js +1340 -0
  127. package/models/entropy-sentinel.onnx +0 -0
  128. package/models/karma-trust.onnx +0 -0
  129. package/models/manifest.json +43 -0
  130. package/models/sakshi-anomaly.onnx +0 -0
  131. package/oracle/code-proof-protocol.js +7 -6
  132. package/oracle/codebase-lock.js +257 -28
  133. package/oracle/index.js +74 -15
  134. package/oracle/ma902-snmp.js +678 -0
  135. package/oracle/module-sealer.js +5 -3
  136. package/oracle/network-identity.js +16 -0
  137. package/oracle/packet-checksum.js +201 -0
  138. package/oracle/sst.js +579 -0
  139. package/oracle/ternary-144t.js +714 -0
  140. package/oracle/ternary-ml.js +481 -0
  141. package/oracle/time-api.js +239 -0
  142. package/oracle/time-source.js +137 -47
  143. package/oracle/validation-oracle-hardened.js +1111 -1071
  144. package/oracle/validation-oracle.js +4 -2
  145. package/oracle/ypc27.js +211 -0
  146. package/package.json +20 -3
  147. package/protocol/yak-handler.js +35 -9
  148. package/protocol/yak-protocol.js +28 -13
  149. package/reference/cpp/yakmesh_mceliece_shard.cpp +168 -0
  150. package/reference/cpp/yakmesh_ypc27.cpp +179 -0
  151. package/sbom.json +87 -0
  152. package/scripts/security-audit.mjs +264 -0
  153. package/scripts/update-docs-nav.js +194 -0
  154. package/scripts/update-docs-sidebar.cjs +164 -0
  155. package/security/crypto-config.js +4 -3
  156. package/security/dharma-moderation.js +517 -0
  157. package/security/doko-identity.js +193 -143
  158. package/security/domain-consensus.js +86 -85
  159. package/security/fs-hardening.js +620 -0
  160. package/security/hardware-attestation.js +5 -3
  161. package/security/hybrid-trust.js +227 -87
  162. package/security/karma-rate-limiter.js +692 -0
  163. package/security/khata-protocol.js +22 -21
  164. package/security/khata-trust-integration.js +277 -150
  165. package/security/memory-safety.js +635 -0
  166. package/security/mesh-auth.js +11 -10
  167. package/security/mesh-revocation.js +373 -5
  168. package/security/namche-gateway.js +298 -69
  169. package/security/sakshi.js +460 -3
  170. package/security/sangha.js +770 -0
  171. package/security/secure-config.js +473 -0
  172. package/security/silicon-parity.js +13 -10
  173. package/security/steadywatch.js +1142 -0
  174. package/security/strike-system.js +32 -3
  175. package/security/temporal-signing.js +488 -0
  176. package/security/trit-commitment.js +464 -0
  177. package/server/crypto/annex.js +247 -0
  178. package/server/darshan-api.js +343 -0
  179. package/server/index.js +3259 -362
  180. package/server/komm-api.js +668 -0
  181. package/utils/accel.js +2273 -0
  182. package/utils/ternary-id.js +79 -0
  183. package/utils/verify-worker.js +57 -0
  184. package/webserver/index.js +95 -5
  185. package/assets/yakmesh-logo.png +0 -0
  186. package/assets/yakmesh-logo.svg +0 -80
  187. package/assets/yakmesh-logo2.png +0 -0
  188. package/assets/yakmesh-logo2sm.png +0 -0
  189. package/assets/ymsm.png +0 -0
  190. package/website/assets/silhouettes/adapters.svg +0 -107
  191. package/website/assets/silhouettes/api-endpoints.svg +0 -115
  192. package/website/assets/silhouettes/atomic-clock.svg +0 -83
  193. package/website/assets/silhouettes/base-camp.svg +0 -81
  194. package/website/assets/silhouettes/bridge.svg +0 -69
  195. package/website/assets/silhouettes/docs-bundle.svg +0 -113
  196. package/website/assets/silhouettes/doko-basket.svg +0 -70
  197. package/website/assets/silhouettes/fortress.svg +0 -93
  198. package/website/assets/silhouettes/gateway.svg +0 -54
  199. package/website/assets/silhouettes/gears.svg +0 -93
  200. package/website/assets/silhouettes/globe-satellite.svg +0 -67
  201. package/website/assets/silhouettes/karma-wheel.svg +0 -137
  202. package/website/assets/silhouettes/lama-council.svg +0 -141
  203. package/website/assets/silhouettes/mandala-network.svg +0 -169
  204. package/website/assets/silhouettes/mani-stones.svg +0 -149
  205. package/website/assets/silhouettes/mantra-wheel.svg +0 -116
  206. package/website/assets/silhouettes/mesh-nodes.svg +0 -113
  207. package/website/assets/silhouettes/nakpak.svg +0 -56
  208. package/website/assets/silhouettes/peak-lightning.svg +0 -73
  209. package/website/assets/silhouettes/sherpa.svg +0 -69
  210. package/website/assets/silhouettes/stupa-tower.svg +0 -119
  211. package/website/assets/silhouettes/tattva-eye.svg +0 -78
  212. package/website/assets/silhouettes/terminal.svg +0 -74
  213. package/website/assets/silhouettes/webserver.svg +0 -145
  214. package/website/assets/silhouettes/yak.svg +0 -78
  215. package/website/assets/yakmesh-logo.png +0 -0
  216. package/website/assets/yakmesh-logo.webp +0 -0
  217. package/website/assets/yakmesh-logo128x140.webp +0 -0
  218. package/website/assets/yakmesh-logo2.png +0 -0
  219. package/website/assets/yakmesh-logo2.svg +0 -51
  220. package/website/assets/yakmesh-logo40x44.webp +0 -0
  221. package/website/assets/yakmesh.gif +0 -0
  222. package/website/assets/yakmesh.ico +0 -0
  223. package/website/assets/yakmesh.jpg +0 -0
  224. package/website/assets/yakmesh.pdf +0 -0
  225. package/website/assets/yakmesh.png +0 -0
  226. package/website/assets/yakmesh.svg +0 -70
  227. package/website/assets/yakmesh128.webp +0 -0
  228. package/website/assets/yakmesh32.png +0 -0
  229. package/website/assets/yakmesh32.svg +0 -65
  230. package/website/assets/yakmesh32o.ico +0 -2
  231. package/website/assets/yakmesh32o.svg +0 -65
  232. package/website/assets/yakmesh32o.svgz +0 -0
@@ -6,7 +6,7 @@
6
6
  * Regenerate with: npm run build:docs
7
7
  * Source: website/docs/
8
8
  *
9
- * @generated 2026-02-05T20:17:44.875Z
9
+ * @generated 2026-02-26T18:00:39.354Z
10
10
  * @module embedded-docs/bundle
11
11
  */
12
12
 
@@ -14,18 +14,18 @@
14
14
  * Master hash of the entire documentation bundle.
15
15
  * Computed as: SHA3-256(sorted individual file hashes joined)
16
16
  */
17
- export const BUNDLE_HASH = '540176ff425f9580d95c45ab67d371b1f926eef40065ee435877d10e1bf5de42';
17
+ export const BUNDLE_HASH = '09d510eb7fb535c3fbe48fe5d6f4b81608b32aff5456b3299d6f9399c34df680';
18
18
 
19
19
  /**
20
20
  * Version of the documentation bundle.
21
21
  * Matches the npm package version at build time.
22
22
  */
23
- export const BUNDLE_VERSION = '2.8.2';
23
+ export const BUNDLE_VERSION = '3.0.0';
24
24
 
25
25
  /**
26
26
  * Build timestamp (ISO 8601)
27
27
  */
28
- export const BUNDLE_BUILT_AT = '2026-02-05T20:17:44.875Z';
28
+ export const BUNDLE_BUILT_AT = '2026-02-26T18:00:39.354Z';
29
29
 
30
30
  /**
31
31
  * Index of all files in the documentation bundle.
@@ -39,23 +39,23 @@ export const BUNDLE_BUILT_AT = '2026-02-05T20:17:44.875Z';
39
39
  */
40
40
  export const FILE_INDEX = {
41
41
  "adapters.html": {
42
- "hash": "0c6b9947e5ff648ffc2635229eacbd1b5bca4d34ee1deb3a8eed783aa53480ec",
43
- "size": 10922,
42
+ "hash": "0ec55afa1eea2ad7086057db03148a35657f550f8f355ac599ff1fa1c1753d8c",
43
+ "size": 44560,
44
44
  "contentType": "text/html; charset=utf-8"
45
45
  },
46
46
  "advanced-systems.html": {
47
- "hash": "1e3142e3d46ee6549ba566a3deb7ac167ae0c2bb45c2c3eedada675fc4e8e384",
48
- "size": 22066,
47
+ "hash": "574f47582cf3136bcba49fae25ad8e8f44d93286cc0014010fafd896090b0605",
48
+ "size": 48383,
49
49
  "contentType": "text/html; charset=utf-8"
50
50
  },
51
51
  "annex.html": {
52
- "hash": "6c21c85daacdb2e02b6d27abfb1af695316698e435458927fd7f6a2d3f7f441d",
53
- "size": 26967,
52
+ "hash": "55bdfa85081c09775043d18784db6bdb78c5c272c68255fa5199658c2d5ef7fa",
53
+ "size": 52893,
54
54
  "contentType": "text/html; charset=utf-8"
55
55
  },
56
56
  "api.html": {
57
- "hash": "1cde360cf65d16b13d5b82af41a9fd808459a764d200f4c38971c7b557478527",
58
- "size": 17958,
57
+ "hash": "a44fd6d1d14d3904e4ef4368daa3ba33e3db4d66f0069969fab272334d3fb130",
58
+ "size": 43584,
59
59
  "contentType": "text/html; charset=utf-8"
60
60
  },
61
61
  "apple-touch-icon.png": {
@@ -63,6 +63,11 @@ export const FILE_INDEX = {
63
63
  "size": 248283,
64
64
  "contentType": "image/png"
65
65
  },
66
+ "assets/icons.svg": {
67
+ "hash": "5406a2d8d9e2401ed21206da28f5fbce01a332d391ee21e1bed2b4aa94699a7b",
68
+ "size": 19565,
69
+ "contentType": "image/svg+xml"
70
+ },
66
71
  "assets/silhouettes/adapters.svg": {
67
72
  "hash": "32866be4a0383dd4b0fa894d6fb167ea2af5858c591c3c654bb6a3070994d793",
68
73
  "size": 6708,
@@ -88,6 +93,21 @@ export const FILE_INDEX = {
88
93
  "size": 4171,
89
94
  "contentType": "image/svg+xml"
90
95
  },
96
+ "assets/silhouettes/c2c-cosmos.svg": {
97
+ "hash": "e05a3653b2481931fe89407c4209701fd3b879f055830703799d47060cf4172d",
98
+ "size": 4875,
99
+ "contentType": "image/svg+xml"
100
+ },
101
+ "assets/silhouettes/darshan-eye.svg": {
102
+ "hash": "35d629fd3ecfeb239b15cc8ea1f43abdfa9abb8423f7305fc1738de592321412",
103
+ "size": 5946,
104
+ "contentType": "image/svg+xml"
105
+ },
106
+ "assets/silhouettes/dharma-scales.svg": {
107
+ "hash": "8516a0b567c804182a9d7c50ce8b9c012dfec40593d028f4163c9a14e05e487a",
108
+ "size": 3613,
109
+ "contentType": "image/svg+xml"
110
+ },
91
111
  "assets/silhouettes/docs-bundle.svg": {
92
112
  "hash": "686a9f08e44de90a4727302f0e285e08eb46ce0934f4b39f6f2ebb191b75178b",
93
113
  "size": 5325,
@@ -118,11 +138,26 @@ export const FILE_INDEX = {
118
138
  "size": 3996,
119
139
  "contentType": "image/svg+xml"
120
140
  },
141
+ "assets/silhouettes/gumba-monastery.svg": {
142
+ "hash": "3149d8fd9423f0c132aa2c632d74a76e9184bb21f6ff2746ac8f722e3c84060e",
143
+ "size": 4158,
144
+ "contentType": "image/svg+xml"
145
+ },
146
+ "assets/silhouettes/jhilke-cricket.svg": {
147
+ "hash": "6a1164b5eace72a6d78fea701cc2f68ddaa5148e6547f4cc5e65a5782185ddd5",
148
+ "size": 24721,
149
+ "contentType": "image/svg+xml"
150
+ },
121
151
  "assets/silhouettes/karma-wheel.svg": {
122
152
  "hash": "4ac5ad4bd22cdb387458eceda1596b374a5fb0f7cb07edf4f503cd209ef7bb84",
123
153
  "size": 8844,
124
154
  "contentType": "image/svg+xml"
125
155
  },
156
+ "assets/silhouettes/katha-storytelling.svg": {
157
+ "hash": "96e67be401bbf89ea59540be52415b7dca7149a608526802254724ea9aeb6c00",
158
+ "size": 4159,
159
+ "contentType": "image/svg+xml"
160
+ },
126
161
  "assets/silhouettes/lama-council.svg": {
127
162
  "hash": "f53805c635fdf3c8a398eab7a35899a9b66bba81ff79742ef1ba9c0699793ced",
128
163
  "size": 8840,
@@ -163,11 +198,31 @@ export const FILE_INDEX = {
163
198
  "size": 3862,
164
199
  "contentType": "image/svg+xml"
165
200
  },
201
+ "assets/silhouettes/prahari-sentinel.svg": {
202
+ "hash": "51f4529cc7cfa954936059145c4e774ff88c9cfd7a05cd4ba77f928b1968329e",
203
+ "size": 3516,
204
+ "contentType": "image/svg+xml"
205
+ },
206
+ "assets/silhouettes/reference-clipboard.svg": {
207
+ "hash": "cedeecb90d83af8449ac8dc21b4faa54a92ac49bdad5f97c8279c116a80b6e73",
208
+ "size": 2439,
209
+ "contentType": "image/svg+xml"
210
+ },
211
+ "assets/silhouettes/seva-hands.svg": {
212
+ "hash": "7f3dc6ebd8beffa7fabdd04aebbdc256af7fe0f9129ca146c3a7121e534a4e57",
213
+ "size": 3937,
214
+ "contentType": "image/svg+xml"
215
+ },
166
216
  "assets/silhouettes/sherpa.svg": {
167
217
  "hash": "f529f52b0e71ee59f2668cbb75b099a094ee8de78780aaa45fdbf39f8052260a",
168
218
  "size": 3360,
169
219
  "contentType": "image/svg+xml"
170
220
  },
221
+ "assets/silhouettes/studio.svg": {
222
+ "hash": "4be6a7ff98169e49e05cd6c5dc24b58d001bef3b82f7707d86a6a1f097365df8",
223
+ "size": 4020,
224
+ "contentType": "image/svg+xml"
225
+ },
171
226
  "assets/silhouettes/stupa-tower.svg": {
172
227
  "hash": "6a47f026b7cd936cf0da977d13e0586c19227dac0b3563c80fb1b02067e4a19c",
173
228
  "size": 7242,
@@ -183,11 +238,31 @@ export const FILE_INDEX = {
183
238
  "size": 4428,
184
239
  "contentType": "image/svg+xml"
185
240
  },
241
+ "assets/silhouettes/thangka-scroll.svg": {
242
+ "hash": "2b62c814b3dee190e86c3bf9fff3f734694d8f27d86cbb1dfb29853e381ca124",
243
+ "size": 3282,
244
+ "contentType": "image/svg+xml"
245
+ },
186
246
  "assets/silhouettes/three-peaks.svg": {
187
247
  "hash": "809c539099e8685e42b54f1c8ea5080a36310076dc81d33544c071f7d4f8dc0c",
188
248
  "size": 1908,
189
249
  "contentType": "image/svg+xml"
190
250
  },
251
+ "assets/silhouettes/tivra-lightning.svg": {
252
+ "hash": "d15a1d236c8b5027f24ea32624af36749c5a83f392799844653992a93e513dd6",
253
+ "size": 3841,
254
+ "contentType": "image/svg+xml"
255
+ },
256
+ "assets/silhouettes/tutorials-book.svg": {
257
+ "hash": "833c5abfaed27e617fec6393d06f2bcc86fd52b9da8811d661a38d5f81706290",
258
+ "size": 2592,
259
+ "contentType": "image/svg+xml"
260
+ },
261
+ "assets/silhouettes/vani-voice.svg": {
262
+ "hash": "b62b98b80e3f41f1dba6aeb55453246800f460d6c4ece5ef706b5d03a12d6ee0",
263
+ "size": 5611,
264
+ "contentType": "image/svg+xml"
265
+ },
191
266
  "assets/silhouettes/webserver.svg": {
192
267
  "hash": "1cea58597a31a9fd7ed9374f024348b2eb1dd5e44d710582aa3b09a932319056",
193
268
  "size": 9166,
@@ -203,14 +278,34 @@ export const FILE_INDEX = {
203
278
  "size": 4005,
204
279
  "contentType": "image/svg+xml"
205
280
  },
281
+ "assets/silhouettes/yakapp-chat.svg": {
282
+ "hash": "bc388cf1aec09ea6bc00aec0940b8e802fdc58b451576713a01a8d36eaa548ed",
283
+ "size": 4669,
284
+ "contentType": "image/svg+xml"
285
+ },
286
+ "assets/silhouettes/yurt-tents.svg": {
287
+ "hash": "732ef6830962e148c5ae528865c8e9afb33904c77907d1eedc75428d50e8f588",
288
+ "size": 4557,
289
+ "contentType": "image/svg+xml"
290
+ },
291
+ "business/response-templates.md": {
292
+ "hash": "59a56e5f3141c90dba0350f8a5e291a5ffa0edf719a47306630a9b225a0e719c",
293
+ "size": 4009,
294
+ "contentType": "application/octet-stream"
295
+ },
296
+ "c2c.html": {
297
+ "hash": "ad5d49a008f21e0ea927ad1aebfb70ff13c0bbb13e83edd12e50cd94d4ec65b7",
298
+ "size": 58857,
299
+ "contentType": "text/html; charset=utf-8"
300
+ },
206
301
  "cli.html": {
207
- "hash": "0f0738cd2fcd18efc75d0551827025541ff79b3c6852b4e1b6b6e587110ca81a",
208
- "size": 37773,
302
+ "hash": "a34a5032dbaf610bf099d0b5a9e61cbe97af7b161cc0f78484fad8522a663065",
303
+ "size": 64495,
209
304
  "contentType": "text/html; charset=utf-8"
210
305
  },
211
306
  "configuration.html": {
212
- "hash": "98211c8c0a1fa0ecdd18addd11856b4b9f532fc956c65095024c8476ba348157",
213
- "size": 32160,
307
+ "hash": "491608a818ad4e4c8834859e9e8a836cf4587ee4280e325b8a1bf5b1bdae323f",
308
+ "size": 59095,
214
309
  "contentType": "text/html; charset=utf-8"
215
310
  },
216
311
  "CRYPTO-AGILITY.md": {
@@ -218,24 +313,34 @@ export const FILE_INDEX = {
218
313
  "size": 5943,
219
314
  "contentType": "application/octet-stream"
220
315
  },
316
+ "darshan.html": {
317
+ "hash": "f6e4fa10ed95d765b806a6fe5a9b7d909c1bc3bdb79bb7a14b63a9e7c33a8fb5",
318
+ "size": 52598,
319
+ "contentType": "text/html; charset=utf-8"
320
+ },
321
+ "dharma.html": {
322
+ "hash": "0d6d8b4b67538a94bde473dcf04614451efa6be45dc57c3b71711c7692afb17e",
323
+ "size": 45605,
324
+ "contentType": "text/html; charset=utf-8"
325
+ },
221
326
  "docs-bundle.html": {
222
- "hash": "06724aa07eb8c1740be751c84eb39025c3486e314186c77641b3492b7cbf5607",
223
- "size": 18745,
327
+ "hash": "ddda45905e5f2a7863767421d0996aa61a527bcfa7b5a96e86a9841c8a579474",
328
+ "size": 45666,
224
329
  "contentType": "text/html; charset=utf-8"
225
330
  },
226
331
  "docs.css": {
227
- "hash": "923b8fdf93c01894366d092a855b7bf077c5f52402975ba88145376bd484ec0c",
228
- "size": 40844,
332
+ "hash": "9e272ee1481b73a76ac4e6a22093682058703a4ebd3d8d86d13cb3383c62c8e8",
333
+ "size": 62078,
229
334
  "contentType": "text/css; charset=utf-8"
230
335
  },
231
336
  "docs.js": {
232
- "hash": "5b9ba796ff0ed9e1032f3927ce42364101729cec39f061c8c207b37baf6fceb8",
233
- "size": 4351,
337
+ "hash": "e6f22cd42684c9a1ef178d6b1eaa8b13f876f986fceb3d2f8b9041a4e5147760",
338
+ "size": 20477,
234
339
  "contentType": "application/javascript; charset=utf-8"
235
340
  },
236
341
  "doko.html": {
237
- "hash": "ab34d4db00626058f7449de2f78171892266c5ced6a1dba1bc7606fbe86001f5",
238
- "size": 20047,
342
+ "hash": "f577d73154a80eb9132c8fd4b84638c6d2cc8a96617f89a2439c39a589c8d30d",
343
+ "size": 46587,
239
344
  "contentType": "text/html; charset=utf-8"
240
345
  },
241
346
  "favicon.ico": {
@@ -249,13 +354,23 @@ export const FILE_INDEX = {
249
354
  "contentType": "image/svg+xml"
250
355
  },
251
356
  "geo-proof.html": {
252
- "hash": "b4a7530792df9384bd7d2e51a39e57d36519ebf6a1c1b940cf1cae15f0a9805b",
253
- "size": 14634,
357
+ "hash": "4051df837b3422c5beafbe3adf155c84f9b26398d9dfdf064fc70f8d6be96ddd",
358
+ "size": 40555,
254
359
  "contentType": "text/html; charset=utf-8"
255
360
  },
256
361
  "getting-started.html": {
257
- "hash": "c3312dbc01a6f8d6805e26e43b4bdcd3cd0872e7c52c8501a91e47aee6de3e30",
258
- "size": 12533,
362
+ "hash": "8494029ab3ea548296d818504e5bcb4eacc1a33a5fa4b3baff94c98b0b28f866",
363
+ "size": 39611,
364
+ "contentType": "text/html; charset=utf-8"
365
+ },
366
+ "gumba-tutorial.html": {
367
+ "hash": "21f1f93050500f9f98dfbfc9e434bb6b81684e5559568a1f0edf39103403aef4",
368
+ "size": 48756,
369
+ "contentType": "text/html; charset=utf-8"
370
+ },
371
+ "gumba.html": {
372
+ "hash": "6861e5868fbd3bf800e33f4d4f826fdbf804e79161b39e07e447c9ed5191431f",
373
+ "size": 52891,
259
374
  "contentType": "text/html; charset=utf-8"
260
375
  },
261
376
  "icon.svg": {
@@ -264,38 +379,48 @@ export const FILE_INDEX = {
264
379
  "contentType": "image/svg+xml"
265
380
  },
266
381
  "index.html": {
267
- "hash": "562ed0918e6dd7baa9e3b14f105d16e29d8c8edd3bd4007f013d7194b912a30f",
268
- "size": 13062,
382
+ "hash": "044bcd3581ae4021d91d7e8d2e8a8cbb94960323290fd7ddee0e673297cfb467",
383
+ "size": 57401,
384
+ "contentType": "text/html; charset=utf-8"
385
+ },
386
+ "jhilke.html": {
387
+ "hash": "fcef465c8b3f0e7f406437b75ad91387a4956b0fe8af67066008e1d7c1dd6098",
388
+ "size": 61167,
269
389
  "contentType": "text/html; charset=utf-8"
270
390
  },
271
391
  "karma.html": {
272
- "hash": "215c229fab90fe95d23409bd48110b47d366dbb9366eb41fa0007ba5e7459a1a",
273
- "size": 17287,
392
+ "hash": "994602c4eae1b1a2b5d44ad11075d4856ed0471270cf95de6bf2908e6e06492e",
393
+ "size": 50692,
394
+ "contentType": "text/html; charset=utf-8"
395
+ },
396
+ "katha.html": {
397
+ "hash": "88b0155de466f7b6b4595ef73aa359fd27f2f93e321dbe592ab132f10f15ce92",
398
+ "size": 44923,
274
399
  "contentType": "text/html; charset=utf-8"
275
400
  },
276
401
  "lama.html": {
277
- "hash": "7e53880380d0fea70a54e38f478cda88110e1712532a22b013d6b53cdd443641",
278
- "size": 15646,
402
+ "hash": "ae957e20d47059a36394c85f42693b216b6597c570db7d9f014d8f3093184f33",
403
+ "size": 43729,
279
404
  "contentType": "text/html; charset=utf-8"
280
405
  },
281
406
  "mandala.html": {
282
- "hash": "4ccbbf9cb174735ce35bb16ef5634d164dcfc91f4f97e101126e7bfa25fa5cf8",
283
- "size": 19174,
407
+ "hash": "c1d8b579560388361ee83da35e91ef13773fdf48a06feed9c1ba2f881082d11a",
408
+ "size": 48341,
284
409
  "contentType": "text/html; charset=utf-8"
285
410
  },
286
411
  "mani.html": {
287
- "hash": "cf009cc7ee2a687f66f32b2d27b3fe8cfc07ab47b50e828c0d24d71ffe70937e",
288
- "size": 15156,
412
+ "hash": "4315bb45e913592a518ae05a3e34cebc46d8a897c9fab3a89975833ebaf61d9c",
413
+ "size": 43232,
289
414
  "contentType": "text/html; charset=utf-8"
290
415
  },
291
416
  "mantra.html": {
292
- "hash": "ab0d71c9f8db43b5ea794890632a852561c28f283d127623d79e4c9f15b8e543",
293
- "size": 20313,
417
+ "hash": "6a95b876f7c3ffe5feb450642d17bd4f273aa2ab0823d249e347383bac370251",
418
+ "size": 46555,
294
419
  "contentType": "text/html; charset=utf-8"
295
420
  },
296
421
  "mesh.html": {
297
- "hash": "20a9d43d7bead1757e9e49fce40002690ca1b8b15d558e169ea8d38085627263",
298
- "size": 45285,
422
+ "hash": "2559f8d94e0a8713837eaafd653b4547dfcc06598c1a7c7cdabec191da7ec066",
423
+ "size": 72318,
299
424
  "contentType": "text/html; charset=utf-8"
300
425
  },
301
426
  "MTLS-RESEARCH.md": {
@@ -304,8 +429,8 @@ export const FILE_INDEX = {
304
429
  "contentType": "application/octet-stream"
305
430
  },
306
431
  "nakpak.html": {
307
- "hash": "6addd537bed74aeb9ea3810e6e5aa2abfc4f0487f361aab5b1d78928661fae85",
308
- "size": 15524,
432
+ "hash": "a8fb52b37ce19e4e1b2c1f03ff6d5c1eaf4d92c1e0aeb9169cbfb2284880d0e2",
433
+ "size": 41190,
309
434
  "contentType": "text/html; charset=utf-8"
310
435
  },
311
436
  "NAMCHE-SPEC.md": {
@@ -314,15 +439,25 @@ export const FILE_INDEX = {
314
439
  "contentType": "application/octet-stream"
315
440
  },
316
441
  "namche.html": {
317
- "hash": "be72ed5e1e9d7eae5f3c70ba79d29ef17c5cb17c81b57061ddf4f6d0181728a7",
318
- "size": 16388,
442
+ "hash": "e920bd905fcc1e416a8df754b77abf42b8171185f273b37fe16fecd6fa3af7a0",
443
+ "size": 42383,
319
444
  "contentType": "text/html; charset=utf-8"
320
445
  },
446
+ "nav-order.json": {
447
+ "hash": "ca61783d50384a50cb70cda6d1054555539e5abfab0cd5a245264a80a87412e6",
448
+ "size": 8096,
449
+ "contentType": "application/json"
450
+ },
321
451
  "PEERQUANTA-YAKMESH-INTEGRATION.md": {
322
452
  "hash": "5f50086107e1004c39a26af815772bc472143a0fb1b1072f043eb628a73951f4",
323
453
  "size": 19419,
324
454
  "contentType": "application/octet-stream"
325
455
  },
456
+ "prahari.html": {
457
+ "hash": "447e22d8fc91e9fdef6c9e7c538d4f62fdb9de512087061f77f585bf4faed86e",
458
+ "size": 50975,
459
+ "contentType": "text/html; charset=utf-8"
460
+ },
326
461
  "PRECISION-DISCLOSURE.md": {
327
462
  "hash": "b32891cf022f8948ae25f9c451ab9f581504a48783fa317b4ae40409e100a5d5",
328
463
  "size": 3410,
@@ -354,13 +489,13 @@ export const FILE_INDEX = {
354
489
  "contentType": "application/javascript; charset=utf-8"
355
490
  },
356
491
  "privacy.html": {
357
- "hash": "026ad6c318d238becce9f3011deac76409f6f063e7b9079a588ebec7c9cc16a0",
358
- "size": 7591,
492
+ "hash": "d0349957bd4d77bc97c2abbf56807eb9e73f3fafea4246b890f4509f80ea0621",
493
+ "size": 27755,
359
494
  "contentType": "text/html; charset=utf-8"
360
495
  },
361
496
  "quick-reference.html": {
362
- "hash": "484367f8993c8559366e4cc649b169e1e0417d60346c7d81bff2f72a4ea9069b",
363
- "size": 28281,
497
+ "hash": "5a0e9cebfbb3435b55a3af6268f68fa7c61bef1d71e9b75d61c534ffafc7d600",
498
+ "size": 54972,
364
499
  "contentType": "text/html; charset=utf-8"
365
500
  },
366
501
  "README.md": {
@@ -379,18 +514,48 @@ export const FILE_INDEX = {
379
514
  "contentType": "application/octet-stream"
380
515
  },
381
516
  "sakshi.html": {
382
- "hash": "3fab69ba6875d1fd09e6a917ea19f64fb13b9f37041f0f22f0a9d13dab91ea16",
383
- "size": 30743,
517
+ "hash": "0e77d64f0d4bc879f02221f56a1f53a87550e49384b9d54db3808559d466e3dd",
518
+ "size": 63959,
519
+ "contentType": "text/html; charset=utf-8"
520
+ },
521
+ "SECURITY-AUDIT-REPORT.md": {
522
+ "hash": "eff5b6673d60d6785eafedad078133ab564a3a68e806c242e7f7877484b44df5",
523
+ "size": 9583,
524
+ "contentType": "application/octet-stream"
525
+ },
526
+ "seva.html": {
527
+ "hash": "f6cdf926a5dd16cb84af979d34a89c81a1ba79413f13e924b47d260670b7f416",
528
+ "size": 43596,
384
529
  "contentType": "text/html; charset=utf-8"
385
530
  },
386
531
  "sherpa.html": {
387
- "hash": "36bf9d33662d538eb39f2b87dd7a322a1dc2765d5f97dd6c0f0741e27ac62eda",
388
- "size": 13893,
532
+ "hash": "4183ded23afb0530722a5fd101bbff243289db284806325f0c71d8214d0b7f2b",
533
+ "size": 39477,
534
+ "contentType": "text/html; charset=utf-8"
535
+ },
536
+ "sitemap.xml": {
537
+ "hash": "84e5f14e8d239bec0a6bbff6f104d96eb87224c88693a89c79746270f60fe2d9",
538
+ "size": 8283,
539
+ "contentType": "application/octet-stream"
540
+ },
541
+ "SST-INTEGRATION.md": {
542
+ "hash": "2c906a5d52538f948230496e5a8aab5c088a9bb8598c5bba41d46f7a3e23179c",
543
+ "size": 20824,
544
+ "contentType": "application/octet-stream"
545
+ },
546
+ "STEADYWATCH-IMPLEMENTATION.md": {
547
+ "hash": "6e2f6d0266607fe66104a577287e01a17420e81c8dd3539ca9055a6bc3fd547f",
548
+ "size": 14496,
549
+ "contentType": "application/octet-stream"
550
+ },
551
+ "studio.html": {
552
+ "hash": "5ccc81acd14331dca25d4c385f415dbdbcb69d411000c0747c0733be30fb57a0",
553
+ "size": 39761,
389
554
  "contentType": "text/html; charset=utf-8"
390
555
  },
391
556
  "stupa.html": {
392
- "hash": "d8ef4db507688016653fb633e6790d5b5f72d4fe6d41ca71db41bcd4c109a87b",
393
- "size": 16404,
557
+ "hash": "877e9953c7218b5fe4a78111e352a5791d2b2148cc64b59dd29a212f888907b3",
558
+ "size": 44619,
394
559
  "contentType": "text/html; charset=utf-8"
395
560
  },
396
561
  "tailwind.min.css": {
@@ -399,18 +564,28 @@ export const FILE_INDEX = {
399
564
  "contentType": "text/css; charset=utf-8"
400
565
  },
401
566
  "tattva.html": {
402
- "hash": "3edb06711f982dcbea40327e4ee345ac806e7f576ed446577c1fb3f450dfafbe",
403
- "size": 42488,
567
+ "hash": "fc18626c35d86f94733970ed55b9687c9f99ddb242928644cdd0a087e2aea5a6",
568
+ "size": 69569,
404
569
  "contentType": "text/html; charset=utf-8"
405
570
  },
406
571
  "terms.html": {
407
- "hash": "d783e24604254136f4cd43f76913ea39f042e7636e7a75f0c779db6086b31cbf",
408
- "size": 6644,
572
+ "hash": "01f39fb6c64b58011953e8d7c602324572a3f87e8a03f327badb46196d84db97",
573
+ "size": 26796,
409
574
  "contentType": "text/html; charset=utf-8"
410
575
  },
576
+ "TERNARY-AUDIT-REPORT.md": {
577
+ "hash": "9dc4c56fdd7922ef76235a9461a2de5dc82db4479449bfbb60277f471810d1cb",
578
+ "size": 7368,
579
+ "contentType": "application/octet-stream"
580
+ },
411
581
  "time-sources.html": {
412
- "hash": "92e16e46a7b378b7282d59b6be876d956a66716f9788db782ce3a2524416f034",
413
- "size": 42638,
582
+ "hash": "c33be3a7ff50040568fdf14a1e9f71c7e4ae5d800ddb0b1214a6ae4139ea35c9",
583
+ "size": 68956,
584
+ "contentType": "text/html; charset=utf-8"
585
+ },
586
+ "tivra.html": {
587
+ "hash": "33c243bcfcba77b0cdbdfbad198b3207a7b121011963fc01a3007e0803f55292",
588
+ "size": 55487,
414
589
  "contentType": "text/html; charset=utf-8"
415
590
  },
416
591
  "TME-FAQ.md": {
@@ -419,23 +594,98 @@ export const FILE_INDEX = {
419
594
  "contentType": "application/octet-stream"
420
595
  },
421
596
  "trademark-policy.html": {
422
- "hash": "6a3b77254ae4fedf60534cc10e0e258bdc485c042b6b8256c3978048f9586e0e",
423
- "size": 6272,
597
+ "hash": "e74edabf0466757e78e18f1204d336726c6c0c48b31317ceabdeb9f0a58cf84a",
598
+ "size": 26645,
424
599
  "contentType": "text/html; charset=utf-8"
425
600
  },
426
601
  "tribhuj.html": {
427
- "hash": "4dba18955edf3855fefdcb757fabc3e6166f690065125f7f682652c55d596dd0",
428
- "size": 24324,
602
+ "hash": "aaad92277cd910b76e79f43e7fa194fd27e80f00e97bd05bc477cb671181b4f7",
603
+ "size": 56801,
429
604
  "contentType": "text/html; charset=utf-8"
430
605
  },
431
606
  "trust-security.html": {
432
- "hash": "4e7662fe6ee44f9125e8e13cfe2526dd5b28add88f19f5e63cb466c86c705f6f",
433
- "size": 22107,
607
+ "hash": "bf91ad4bf9ec6818ecac38515c6da810b0f616b58ebea5cfe31ad85d0a206583",
608
+ "size": 51563,
609
+ "contentType": "text/html; charset=utf-8"
610
+ },
611
+ "tutorials/backup-recovery.html": {
612
+ "hash": "f3e9a606bb25b793a02f110accda60615747d60fdbdd6bedb15882a16e5d3eed",
613
+ "size": 31301,
614
+ "contentType": "text/html; charset=utf-8"
615
+ },
616
+ "tutorials/dashboard.html": {
617
+ "hash": "cf1126cc5b6afaa35719e99d80c9a8871447b1ea868c7ac133b8b20b175b07dc",
618
+ "size": 30436,
619
+ "contentType": "text/html; charset=utf-8"
620
+ },
621
+ "tutorials/domain-setup.html": {
622
+ "hash": "c73e36190bfe289396100e2d637d1b067bea29e840eef627f4bb0d12c168d0e1",
623
+ "size": 27176,
624
+ "contentType": "text/html; charset=utf-8"
625
+ },
626
+ "tutorials/host-website.html": {
627
+ "hash": "a1deaa557e12f28cc169205015075d9b252f34d326111f5ee4272fccf421cfb1",
628
+ "size": 21046,
629
+ "contentType": "text/html; charset=utf-8"
630
+ },
631
+ "tutorials/mesh-network.html": {
632
+ "hash": "69c921e2892386e5788e931184821e107779b2fb8021b785f75aff76da5154cc",
633
+ "size": 24184,
634
+ "contentType": "text/html; charset=utf-8"
635
+ },
636
+ "tutorials/mobile-access.html": {
637
+ "hash": "66b5e88c1aaff22448fca260505ade0e514e2c6a515fb2ee286a9c0778233d8d",
638
+ "size": 22545,
639
+ "contentType": "text/html; charset=utf-8"
640
+ },
641
+ "tutorials/privacy.html": {
642
+ "hash": "6c3ea55f432d6b92089ed6183cabd19905c42b4ff8ac25106f43b5b4d559d36c",
643
+ "size": 22185,
644
+ "contentType": "text/html; charset=utf-8"
645
+ },
646
+ "tutorials/raspberry-pi.html": {
647
+ "hash": "d6a4e64809da0b5efb696f55ea5ae0850bfe18625543bb522b066cbcfc61fd1d",
648
+ "size": 25198,
649
+ "contentType": "text/html; charset=utf-8"
650
+ },
651
+ "tutorials/security-basics.html": {
652
+ "hash": "c274403a41c6bdef837f0587ca4ba9e108e85c9c71e6db8c5f2a77a3d9242b46",
653
+ "size": 25631,
654
+ "contentType": "text/html; charset=utf-8"
655
+ },
656
+ "tutorials/share-files.html": {
657
+ "hash": "9235cf264382c18a86334aec82b5b8b31e0a8fcd29fec5da5b441568c8e8dfe2",
658
+ "size": 22542,
659
+ "contentType": "text/html; charset=utf-8"
660
+ },
661
+ "tutorials/troubleshooting.html": {
662
+ "hash": "56ac288f423bfee67995efea45b91cda6447d8cd737a425177c919122ef26166",
663
+ "size": 31370,
664
+ "contentType": "text/html; charset=utf-8"
665
+ },
666
+ "tutorials/trust-karma.html": {
667
+ "hash": "e718c9e5664f733262c43b5a1ec0ea38c0137c71ae6b280c37803fcff51334ad",
668
+ "size": 20955,
669
+ "contentType": "text/html; charset=utf-8"
670
+ },
671
+ "tutorials/yak-protocol.html": {
672
+ "hash": "53c147a8a1c3629573f95cdd4faf45aa5963baab8db04986b6f2ff53e5608c60",
673
+ "size": 21934,
674
+ "contentType": "text/html; charset=utf-8"
675
+ },
676
+ "tutorials.html": {
677
+ "hash": "df3d6dbc952f2f0cb7f8283afcb793642923e4eb48a33037a1b325eb4dc1a322",
678
+ "size": 47272,
679
+ "contentType": "text/html; charset=utf-8"
680
+ },
681
+ "vani.html": {
682
+ "hash": "30aad746474bf4f361541a919927229639b650e15492a7b43047243f888d7338",
683
+ "size": 54631,
434
684
  "contentType": "text/html; charset=utf-8"
435
685
  },
436
686
  "webserver.html": {
437
- "hash": "6a17e119c6eb1d06b1cc1a403d5556383a999b76dfdd2207a0c282597342b7dd",
438
- "size": 11430,
687
+ "hash": "78e67a066a328c58fdcb4de274c148590f122cb7b1a02fd27413f2e455cdd9dd",
688
+ "size": 37152,
439
689
  "contentType": "text/html; charset=utf-8"
440
690
  },
441
691
  "WHITEPAPER.md": {
@@ -454,13 +704,23 @@ export const FILE_INDEX = {
454
704
  "contentType": "image/svg+xml"
455
705
  },
456
706
  "yak-protocol.html": {
457
- "hash": "215b1115333c19032e3cd29aacb960c67a63a42833eabdf8524cce94aa90de09",
458
- "size": 17829,
707
+ "hash": "21ba9312a392f79f7a125daa0924453b16a1c3d49dc8c338a48f946a4fae8581",
708
+ "size": 43861,
709
+ "contentType": "text/html; charset=utf-8"
710
+ },
711
+ "yakapp.html": {
712
+ "hash": "276787b0451cdee0c4e2f25edcbb39513e0a6d0484738994064f86ea73f01414",
713
+ "size": 50738,
459
714
  "contentType": "text/html; charset=utf-8"
460
715
  },
461
716
  "ypc27.html": {
462
- "hash": "6dadf0be418eb3da257c4eb9a2c5b25c7ad11f06abfb575dc1ee807abf518ee3",
463
- "size": 21726,
717
+ "hash": "31f13f04b6f1a33fdcf0b01a1a3b0f2e9687f037a640388d7718cc9d2cdc69a2",
718
+ "size": 48696,
719
+ "contentType": "text/html; charset=utf-8"
720
+ },
721
+ "yurt.html": {
722
+ "hash": "48050998766cdc92765664824babd6ed39bcadb4c7257c7604c17c4608dfd0fc",
723
+ "size": 51862,
464
724
  "contentType": "text/html; charset=utf-8"
465
725
  }
466
726
  };