@fdm-monster/client-next 0.0.1

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 (205) hide show
  1. package/.all-contributorsrc +57 -0
  2. package/.browserslistrc +4 -0
  3. package/.editorconfig +5 -0
  4. package/.env +1 -0
  5. package/.eslintrc-auto-import.json +73 -0
  6. package/.eslintrc.js +126 -0
  7. package/.github/FUNDING.yml +3 -0
  8. package/.github/workflows/release-client.yml +94 -0
  9. package/.github/workflows/vue-publish.yml +26 -0
  10. package/.prettierignore +15 -0
  11. package/.prettierrc.cjs +7 -0
  12. package/.whitesource +12 -0
  13. package/.yarn/releases/yarn-4.5.1.cjs +934 -0
  14. package/.yarnrc.yml +3 -0
  15. package/CODE_OF_CONDUCT.md +46 -0
  16. package/README.md +93 -0
  17. package/RELEASE_NOTES.MD +11 -0
  18. package/index.html +16 -0
  19. package/package.default.json +42 -0
  20. package/package.json +26 -0
  21. package/public/favicon.ico +0 -0
  22. package/public/img/DavidZwart.jpg +0 -0
  23. package/public/img/OIG.JYDC2RaWdz7g9.jpg +0 -0
  24. package/public/img/OIG.jpg +0 -0
  25. package/public/img/icons/android-chrome-192x192.png +0 -0
  26. package/public/img/icons/android-chrome-256x256.png +0 -0
  27. package/public/img/icons/android-chrome-384x384.png +0 -0
  28. package/public/img/icons/android-chrome-512x512.png +0 -0
  29. package/public/img/icons/favicon.svg +1 -0
  30. package/public/img/logo.png +0 -0
  31. package/public/img/logo.svg +1 -0
  32. package/public/img/manifest.webmanifest +33 -0
  33. package/public/img/octoprint-tentacle.svg +144 -0
  34. package/public/img/thumbail_unknown.jpg +0 -0
  35. package/public/img/vbanner.jpg +0 -0
  36. package/public/index.html +17 -0
  37. package/public/robots.txt +2 -0
  38. package/renovate.json +30 -0
  39. package/src/App.vue +60 -0
  40. package/src/AppLoader.vue +383 -0
  41. package/src/assets/adjectives.json +1468 -0
  42. package/src/assets/android-chrome-192x192.png +0 -0
  43. package/src/assets/logo.png +0 -0
  44. package/src/assets/logo.svg +6 -0
  45. package/src/assets/nouns.json +4309 -0
  46. package/src/auto-imports.d.ts +139 -0
  47. package/src/backend/app.service.ts +39 -0
  48. package/src/backend/auth.service.ts +56 -0
  49. package/src/backend/base.service.ts +57 -0
  50. package/src/backend/batch.service.ts +37 -0
  51. package/src/backend/camera-stream.service.ts +33 -0
  52. package/src/backend/custom-gcode.service.ts +11 -0
  53. package/src/backend/dto/octoprint-settings.dto.ts +168 -0
  54. package/src/backend/first-time-setup.service.ts +17 -0
  55. package/src/backend/floor.service.ts +84 -0
  56. package/src/backend/index.ts +4 -0
  57. package/src/backend/print-completions.service.ts +11 -0
  58. package/src/backend/printer-file.service.ts +91 -0
  59. package/src/backend/printer-group.service.ts +62 -0
  60. package/src/backend/printer-job.service.ts +20 -0
  61. package/src/backend/printer-settings.service.ts +28 -0
  62. package/src/backend/printers.service.ts +136 -0
  63. package/src/backend/server-private.service.ts +55 -0
  64. package/src/backend/server.api.ts +132 -0
  65. package/src/backend/settings.service.ts +85 -0
  66. package/src/backend/user.service.ts +51 -0
  67. package/src/components/AboutHelp/AboutView.vue +164 -0
  68. package/src/components/CameraGrid/CameraGridView.vue +111 -0
  69. package/src/components/FirstTimeSetup/FirstTimeSetupView.vue +354 -0
  70. package/src/components/Generic/Actions/PrinterConnectionAction.vue +56 -0
  71. package/src/components/Generic/Actions/PrinterCreateAction.vue +22 -0
  72. package/src/components/Generic/Actions/PrinterDeleteAction.vue +29 -0
  73. package/src/components/Generic/Actions/PrinterQuickStopAction.vue +35 -0
  74. package/src/components/Generic/Actions/PrinterSettingsAction.vue +35 -0
  75. package/src/components/Generic/Actions/PrinterUrlAction.vue +24 -0
  76. package/src/components/Generic/Actions/RefreshFilesAction.vue +50 -0
  77. package/src/components/Generic/Actions/SyncPrinterNameAction.vue +36 -0
  78. package/src/components/Generic/Dialogs/AddOrUpdateCameraStreamDialog.vue +131 -0
  79. package/src/components/Generic/Dialogs/AddOrUpdateFloorDialog.vue +141 -0
  80. package/src/components/Generic/Dialogs/AddOrUpdatePrinterDialog.vue +303 -0
  81. package/src/components/Generic/Dialogs/BaseDialog.vue +81 -0
  82. package/src/components/Generic/Dialogs/BatchJsonCreateDialog.vue +109 -0
  83. package/src/components/Generic/Dialogs/BatchReprintDialog.vue +190 -0
  84. package/src/components/Generic/Dialogs/PrinterChecksPanel.vue +37 -0
  85. package/src/components/Generic/Dialogs/PrinterControlDialog.vue +202 -0
  86. package/src/components/Generic/Dialogs/PrinterMaintenanceDialog.vue +130 -0
  87. package/src/components/Generic/Dialogs/YamlImportExportDialog.vue +186 -0
  88. package/src/components/Generic/Dialogs/dialog.constants.ts +19 -0
  89. package/src/components/Generic/FileExplorerSideNav.vue +734 -0
  90. package/src/components/Generic/Loaders/GridLoader.vue +68 -0
  91. package/src/components/Generic/NavigationDrawer.vue +69 -0
  92. package/src/components/Generic/PrintJobsMenu.vue +148 -0
  93. package/src/components/Generic/Snackbars/AppErrorSnackbar.vue +64 -0
  94. package/src/components/Generic/Snackbars/AppInfoSnackbar.vue +63 -0
  95. package/src/components/Generic/Snackbars/AppProgressSnackbar.vue +158 -0
  96. package/src/components/Generic/Vuetify/TooltipButton.vue +47 -0
  97. package/src/components/HelpOverlay/HelpOverlay.vue +57 -0
  98. package/src/components/Login/LoginForm.vue +206 -0
  99. package/src/components/Login/LoginView.spec.ts +64 -0
  100. package/src/components/Login/LoginView.vue +65 -0
  101. package/src/components/Login/Logo.vue +13 -0
  102. package/src/components/Login/PermissionDenied.vue +109 -0
  103. package/src/components/Login/RegistrationForm.vue +207 -0
  104. package/src/components/Login/RegistrationView.vue +17 -0
  105. package/src/components/Login/__snapshots__/LoginView.spec.ts.snap +1051 -0
  106. package/src/components/NotFound/NotFoundView.vue +39 -0
  107. package/src/components/PrintStatistics/PrintStatistics.vue +168 -0
  108. package/src/components/PrintStatistics/PrintStatisticsView.vue +15 -0
  109. package/src/components/PrinterGrid/HomeToolbar.vue +90 -0
  110. package/src/components/PrinterGrid/PrinterGrid.vue +164 -0
  111. package/src/components/PrinterGrid/PrinterGridTile.vue +438 -0
  112. package/src/components/PrinterGrid/PrinterGridView.vue +210 -0
  113. package/src/components/PrinterList/FileControlList.vue +40 -0
  114. package/src/components/PrinterList/PrinterDetails.vue +91 -0
  115. package/src/components/PrinterList/PrintersView.vue +492 -0
  116. package/src/components/Settings/AccountSettings.vue +163 -0
  117. package/src/components/Settings/DiagnosticsSettings.vue +137 -0
  118. package/src/components/Settings/EmergencyCommands.vue +265 -0
  119. package/src/components/Settings/FloorSettings.vue +276 -0
  120. package/src/components/Settings/GridSettings.vue +127 -0
  121. package/src/components/Settings/OctoPrintSettings.vue +188 -0
  122. package/src/components/Settings/ServerProtectionSettings.vue +370 -0
  123. package/src/components/Settings/SettingsView.vue +73 -0
  124. package/src/components/Settings/SoftwareUpgradeSettings.vue +297 -0
  125. package/src/components/Settings/UserManagementSettings.vue +257 -0
  126. package/src/components/TopBar.vue +147 -0
  127. package/src/components.d.ts +70 -0
  128. package/src/directives/file-upload.directive.ts +117 -0
  129. package/src/directives/printer-drop-position.directive.ts +92 -0
  130. package/src/env.d.ts +6 -0
  131. package/src/main.ts +76 -0
  132. package/src/models/batch/reprint.dto.ts +79 -0
  133. package/src/models/batch.model.ts +11 -0
  134. package/src/models/camera-streams/camera-stream.ts +19 -0
  135. package/src/models/floors/floor.model.ts +30 -0
  136. package/src/models/octoprint/connection-options.model.ts +8 -0
  137. package/src/models/plugins/firmware-updates/prusa-firmware-release.model.ts +57 -0
  138. package/src/models/print-completions/print-completions.model.ts +49 -0
  139. package/src/models/printers/crud/create-printer.model.ts +26 -0
  140. package/src/models/printers/file-upload-commands.model.ts +4 -0
  141. package/src/models/printers/gcode/gcode-analysis.model.ts +30 -0
  142. package/src/models/printers/printer-current-job.model.ts +90 -0
  143. package/src/models/printers/printer-file.model.ts +48 -0
  144. package/src/models/printers/printer.model.ts +18 -0
  145. package/src/models/server/client-releases.model.ts +27 -0
  146. package/src/models/server/export-yaml.model.ts +11 -0
  147. package/src/models/server/features.model.ts +37 -0
  148. package/src/models/server/github-rate-limit.model.ts +21 -0
  149. package/src/models/server/version.model.ts +14 -0
  150. package/src/models/settings/printer-file-clean-settings.model.ts +5 -0
  151. package/src/models/settings/server-settings.dto.ts +19 -0
  152. package/src/models/settings/settings.model.ts +57 -0
  153. package/src/models/socketio-messages/socketio-message.model.ts +53 -0
  154. package/src/models/uploads/queued-upload.model.ts +12 -0
  155. package/src/models/user.model.ts +15 -0
  156. package/src/plugins/README.md +3 -0
  157. package/src/plugins/index.ts +17 -0
  158. package/src/plugins/vuetify.ts +53 -0
  159. package/src/router/index.ts +192 -0
  160. package/src/router/route-names.ts +14 -0
  161. package/src/router/utils.ts +23 -0
  162. package/src/shared/alert.events.ts +14 -0
  163. package/src/shared/app.constants.ts +23 -0
  164. package/src/shared/auth.constants.ts +34 -0
  165. package/src/shared/dialog.composable.ts +41 -0
  166. package/src/shared/drag.constants.ts +19 -0
  167. package/src/shared/experimental.constants.ts +1 -0
  168. package/src/shared/http-client.ts +162 -0
  169. package/src/shared/noun-adjectives.data.ts +24 -0
  170. package/src/shared/printer-grid.constants.ts +5 -0
  171. package/src/shared/printer-state.constants.ts +194 -0
  172. package/src/shared/snackbar.composable.ts +66 -0
  173. package/src/shared/socketio.service.ts +104 -0
  174. package/src/store/auth.store.ts +255 -0
  175. package/src/store/connection.store.ts +66 -0
  176. package/src/store/dialog.store.ts +114 -0
  177. package/src/store/features.store.ts +57 -0
  178. package/src/store/floor.store.ts +173 -0
  179. package/src/store/grid.store.ts +10 -0
  180. package/src/store/index.ts +4 -0
  181. package/src/store/printer-state.store.ts +246 -0
  182. package/src/store/printer.store.ts +236 -0
  183. package/src/store/profile.store.ts +25 -0
  184. package/src/store/settings.store.ts +64 -0
  185. package/src/store/test-printer.store.ts +70 -0
  186. package/src/store/uploads.store.ts +75 -0
  187. package/src/styles/README.md +3 -0
  188. package/src/styles/settings.scss +10 -0
  189. package/src/types/global.d.ts +15 -0
  190. package/src/utils/array.utils.ts +15 -0
  191. package/src/utils/date.utils.ts +5 -0
  192. package/src/utils/download-file.util.ts +25 -0
  193. package/src/utils/error.utils.ts +3 -0
  194. package/src/utils/file-size.util.ts +11 -0
  195. package/src/utils/id.type.ts +1 -0
  196. package/src/utils/sentry.util.ts +8 -0
  197. package/src/utils/test.util.ts +30 -0
  198. package/src/utils/time.utils.ts +2 -0
  199. package/src/utils/uploads-state.utils.ts +58 -0
  200. package/src/utils/validation.utils.ts +14 -0
  201. package/src/vite-env.d.ts +7 -0
  202. package/test/setup-axios-mock.ts +15 -0
  203. package/tsconfig.json +47 -0
  204. package/tsconfig.node.json +9 -0
  205. package/vite.config.mts +106 -0
@@ -0,0 +1,1468 @@
1
+ [
2
+ "able",
3
+ "above",
4
+ "absent",
5
+ "absolute",
6
+ "abstract",
7
+ "abundant",
8
+ "academic",
9
+ "acceptable",
10
+ "accepted",
11
+ "accessible",
12
+ "accurate",
13
+ "accused",
14
+ "active",
15
+ "actual",
16
+ "acute",
17
+ "added",
18
+ "additional",
19
+ "adequate",
20
+ "adjacent",
21
+ "administrative",
22
+ "adorable",
23
+ "advanced",
24
+ "adverse",
25
+ "advisory",
26
+ "aesthetic",
27
+ "afraid",
28
+ "afraid",
29
+ "african",
30
+ "aggregate",
31
+ "aggressive",
32
+ "agreeable",
33
+ "agreed",
34
+ "agricultural",
35
+ "alert",
36
+ "alive",
37
+ "alive",
38
+ "alleged",
39
+ "allied",
40
+ "alone",
41
+ "alright",
42
+ "alternative",
43
+ "amateur",
44
+ "amazing",
45
+ "ambitious",
46
+ "american",
47
+ "amused",
48
+ "ancient",
49
+ "ancient",
50
+ "angry",
51
+ "angry",
52
+ "annoyed",
53
+ "annual",
54
+ "anonymous",
55
+ "anxious",
56
+ "anxious",
57
+ "appalling",
58
+ "apparent",
59
+ "applicable",
60
+ "appropriate",
61
+ "arab",
62
+ "arbitrary",
63
+ "architectural",
64
+ "armed",
65
+ "arrogant",
66
+ "artificial",
67
+ "artistic",
68
+ "ashamed",
69
+ "ashamed",
70
+ "asian",
71
+ "asleep",
72
+ "assistant",
73
+ "associated",
74
+ "atomic",
75
+ "attractive",
76
+ "australian",
77
+ "automatic",
78
+ "autonomous",
79
+ "available",
80
+ "average",
81
+ "average",
82
+ "average",
83
+ "awake",
84
+ "aware",
85
+ "awful",
86
+ "awful",
87
+ "awkward",
88
+ "back",
89
+ "bad",
90
+ "bad",
91
+ "bad",
92
+ "balanced",
93
+ "bare",
94
+ "basic",
95
+ "beautiful",
96
+ "beautiful",
97
+ "beautiful",
98
+ "beneficial",
99
+ "better",
100
+ "bewildered",
101
+ "big",
102
+ "big",
103
+ "big",
104
+ "binding",
105
+ "biological",
106
+ "bitter",
107
+ "bitter",
108
+ "bizarre",
109
+ "black",
110
+ "black",
111
+ "blank",
112
+ "blind",
113
+ "blonde",
114
+ "bloody",
115
+ "bloody",
116
+ "blue",
117
+ "blue",
118
+ "blushing",
119
+ "boiling",
120
+ "bold",
121
+ "bored",
122
+ "bored",
123
+ "boring",
124
+ "bottom",
125
+ "brainy",
126
+ "brave",
127
+ "brave",
128
+ "breakable",
129
+ "breezy",
130
+ "brief",
131
+ "brief",
132
+ "bright",
133
+ "bright",
134
+ "bright",
135
+ "brilliant",
136
+ "british",
137
+ "broad",
138
+ "broad",
139
+ "broken",
140
+ "broken",
141
+ "brown",
142
+ "bumpy",
143
+ "burning",
144
+ "busy",
145
+ "busy",
146
+ "calm",
147
+ "calm",
148
+ "canadian",
149
+ "capable",
150
+ "capitalist",
151
+ "careful",
152
+ "careful",
153
+ "casual",
154
+ "catholic",
155
+ "causal",
156
+ "cautious",
157
+ "cautious",
158
+ "central",
159
+ "certain",
160
+ "changing",
161
+ "characteristic",
162
+ "charming",
163
+ "charming",
164
+ "cheap",
165
+ "cheerful",
166
+ "cheerful",
167
+ "chemical",
168
+ "chief",
169
+ "chilly",
170
+ "chinese",
171
+ "chosen",
172
+ "christian",
173
+ "chronic",
174
+ "chubby",
175
+ "circular",
176
+ "civic",
177
+ "civil",
178
+ "civilian",
179
+ "classic",
180
+ "classical",
181
+ "clean",
182
+ "clean",
183
+ "clear",
184
+ "clear",
185
+ "clever",
186
+ "clever",
187
+ "clinical",
188
+ "close",
189
+ "closed",
190
+ "cloudy",
191
+ "clumsy",
192
+ "coastal",
193
+ "cognitive",
194
+ "coherent",
195
+ "cold",
196
+ "cold",
197
+ "collective",
198
+ "colonial",
199
+ "colorful",
200
+ "colossal",
201
+ "coloured",
202
+ "colourful",
203
+ "combative",
204
+ "combined",
205
+ "comfortable",
206
+ "comfortable",
207
+ "coming",
208
+ "commercial",
209
+ "common",
210
+ "communist",
211
+ "compact",
212
+ "comparable",
213
+ "comparative",
214
+ "compatible",
215
+ "competent",
216
+ "competitive",
217
+ "complete",
218
+ "complex",
219
+ "complicated",
220
+ "comprehensive",
221
+ "compulsory",
222
+ "conceptual",
223
+ "concerned",
224
+ "concerned",
225
+ "concrete",
226
+ "condemned",
227
+ "confident",
228
+ "confidential",
229
+ "confused",
230
+ "confused",
231
+ "conscious",
232
+ "conservation",
233
+ "conservative",
234
+ "considerable",
235
+ "consistent",
236
+ "constant",
237
+ "constitutional",
238
+ "contemporary",
239
+ "content",
240
+ "continental",
241
+ "continued",
242
+ "continuing",
243
+ "continuous",
244
+ "controlled",
245
+ "controversial",
246
+ "convenient",
247
+ "conventional",
248
+ "convinced",
249
+ "convincing",
250
+ "cooing",
251
+ "cool",
252
+ "cool",
253
+ "cooperative",
254
+ "corporate",
255
+ "correct",
256
+ "corresponding",
257
+ "costly",
258
+ "courageous",
259
+ "crazy",
260
+ "crazy",
261
+ "crazy",
262
+ "creative",
263
+ "creepy",
264
+ "creepy",
265
+ "criminal",
266
+ "critical",
267
+ "crooked",
268
+ "crooked",
269
+ "crowded",
270
+ "crucial",
271
+ "crude",
272
+ "cruel",
273
+ "cruel",
274
+ "cuddly",
275
+ "cultural",
276
+ "curious",
277
+ "curious",
278
+ "curly",
279
+ "current",
280
+ "curved",
281
+ "cute",
282
+ "daily",
283
+ "damaged",
284
+ "damp",
285
+ "damp",
286
+ "dangerous",
287
+ "dangerous",
288
+ "dark",
289
+ "dark",
290
+ "dead",
291
+ "dead",
292
+ "deaf",
293
+ "deafening",
294
+ "dear",
295
+ "decent",
296
+ "decisive",
297
+ "deep",
298
+ "deep",
299
+ "defeated",
300
+ "defensive",
301
+ "defiant",
302
+ "definite",
303
+ "deliberate",
304
+ "delicate",
305
+ "delicious",
306
+ "delicious",
307
+ "delighted",
308
+ "delightful",
309
+ "delightful",
310
+ "democratic",
311
+ "dependent",
312
+ "depressed",
313
+ "depressed",
314
+ "desirable",
315
+ "desperate",
316
+ "detailed",
317
+ "determined",
318
+ "determined",
319
+ "developed",
320
+ "developing",
321
+ "devoted",
322
+ "different",
323
+ "different",
324
+ "difficult",
325
+ "difficult",
326
+ "digital",
327
+ "diplomatic",
328
+ "direct",
329
+ "dirty",
330
+ "dirty",
331
+ "disabled",
332
+ "disappointed",
333
+ "disastrous",
334
+ "disciplinary",
335
+ "disgusted",
336
+ "distant",
337
+ "distinct",
338
+ "distinct",
339
+ "distinctive",
340
+ "distinguished",
341
+ "disturbed",
342
+ "disturbing",
343
+ "diverse",
344
+ "divine",
345
+ "dizzy",
346
+ "domestic",
347
+ "dominant",
348
+ "double",
349
+ "doubtful",
350
+ "doubtful",
351
+ "drab",
352
+ "dramatic",
353
+ "dreadful",
354
+ "driving",
355
+ "drunk",
356
+ "dry",
357
+ "dry",
358
+ "dual",
359
+ "due",
360
+ "dull",
361
+ "dull",
362
+ "dull",
363
+ "dusty",
364
+ "dutch",
365
+ "dying",
366
+ "dynamic",
367
+ "eager",
368
+ "eager",
369
+ "early",
370
+ "early",
371
+ "eastern",
372
+ "easy",
373
+ "easy",
374
+ "economic",
375
+ "educational",
376
+ "eerie",
377
+ "effective",
378
+ "efficient",
379
+ "elaborate",
380
+ "elated",
381
+ "elderly",
382
+ "eldest",
383
+ "electoral",
384
+ "electric",
385
+ "electrical",
386
+ "electronic",
387
+ "elegant",
388
+ "elegant",
389
+ "eligible",
390
+ "embarrassed",
391
+ "embarrassed",
392
+ "embarrassing",
393
+ "emotional",
394
+ "empirical",
395
+ "empty",
396
+ "empty",
397
+ "enchanting",
398
+ "encouraging",
399
+ "encouraging",
400
+ "endless",
401
+ "energetic",
402
+ "english",
403
+ "enormous",
404
+ "enthusiastic",
405
+ "enthusiastic",
406
+ "entire",
407
+ "entitled",
408
+ "envious",
409
+ "environmental",
410
+ "equal",
411
+ "equivalent",
412
+ "essential",
413
+ "established",
414
+ "estimated",
415
+ "ethical",
416
+ "ethnic",
417
+ "european",
418
+ "eventual",
419
+ "everyday",
420
+ "evident",
421
+ "evil",
422
+ "evil",
423
+ "evolutionary",
424
+ "exact",
425
+ "excellent",
426
+ "exceptional",
427
+ "excess",
428
+ "excessive",
429
+ "excited",
430
+ "excited",
431
+ "exciting",
432
+ "exclusive",
433
+ "existing",
434
+ "exotic",
435
+ "expected",
436
+ "expensive",
437
+ "experienced",
438
+ "experimental",
439
+ "explicit",
440
+ "extended",
441
+ "extensive",
442
+ "external",
443
+ "extra",
444
+ "extraordinary",
445
+ "extreme",
446
+ "exuberant",
447
+ "faint",
448
+ "faint",
449
+ "fair",
450
+ "fair",
451
+ "faithful",
452
+ "faithful",
453
+ "familiar",
454
+ "famous",
455
+ "famous",
456
+ "fancy",
457
+ "fantastic",
458
+ "fantastic",
459
+ "far",
460
+ "fascinating",
461
+ "fashionable",
462
+ "fast",
463
+ "fast",
464
+ "fat",
465
+ "fat",
466
+ "fat",
467
+ "fatal",
468
+ "favourable",
469
+ "favourite",
470
+ "federal",
471
+ "fellow",
472
+ "female",
473
+ "feminist",
474
+ "few",
475
+ "fierce",
476
+ "fierce",
477
+ "filthy",
478
+ "filthy",
479
+ "final",
480
+ "financial",
481
+ "fine",
482
+ "fine",
483
+ "firm",
484
+ "fiscal",
485
+ "fit",
486
+ "fixed",
487
+ "flaky",
488
+ "flat",
489
+ "flat",
490
+ "flexible",
491
+ "fluffy",
492
+ "fluttering",
493
+ "flying",
494
+ "following",
495
+ "fond",
496
+ "foolish",
497
+ "foolish",
498
+ "foreign",
499
+ "formal",
500
+ "formidable",
501
+ "forthcoming",
502
+ "fortunate",
503
+ "forward",
504
+ "fragile",
505
+ "frail",
506
+ "frantic",
507
+ "free",
508
+ "french",
509
+ "frequent",
510
+ "fresh",
511
+ "fresh",
512
+ "friendly",
513
+ "friendly",
514
+ "friendly",
515
+ "frightened",
516
+ "frightened",
517
+ "front",
518
+ "frozen",
519
+ "fucking",
520
+ "full",
521
+ "full-time",
522
+ "fun",
523
+ "functional",
524
+ "fundamental",
525
+ "funny",
526
+ "funny",
527
+ "funny",
528
+ "furious",
529
+ "future",
530
+ "fuzzy",
531
+ "gastric",
532
+ "gay",
533
+ "general",
534
+ "generous",
535
+ "genetic",
536
+ "gentle",
537
+ "gentle",
538
+ "genuine",
539
+ "geographical",
540
+ "german",
541
+ "giant",
542
+ "giant",
543
+ "gigantic",
544
+ "gigantic",
545
+ "given",
546
+ "glad",
547
+ "glamorous",
548
+ "gleaming",
549
+ "global",
550
+ "glorious",
551
+ "glorious",
552
+ "golden",
553
+ "good",
554
+ "good",
555
+ "gorgeous",
556
+ "gothic",
557
+ "governing",
558
+ "graceful",
559
+ "gradual",
560
+ "grand",
561
+ "grateful",
562
+ "greasy",
563
+ "great",
564
+ "great",
565
+ "great",
566
+ "greek",
567
+ "green",
568
+ "green",
569
+ "grey",
570
+ "grieving",
571
+ "grim",
572
+ "gross",
573
+ "grotesque",
574
+ "growing",
575
+ "grubby",
576
+ "grumpy",
577
+ "guilty",
578
+ "handicapped",
579
+ "handsome",
580
+ "handsome",
581
+ "happy",
582
+ "happy",
583
+ "happy",
584
+ "hard",
585
+ "hard",
586
+ "harsh",
587
+ "harsh",
588
+ "head",
589
+ "healthy",
590
+ "healthy",
591
+ "heavy",
592
+ "heavy",
593
+ "helpful",
594
+ "helpful",
595
+ "helpful",
596
+ "helpless",
597
+ "helpless",
598
+ "hidden",
599
+ "high",
600
+ "high",
601
+ "high-pitched",
602
+ "hilarious",
603
+ "hissing",
604
+ "historic",
605
+ "historical",
606
+ "hollow",
607
+ "holy",
608
+ "homeless",
609
+ "homeless",
610
+ "homely",
611
+ "hon",
612
+ "honest",
613
+ "horizontal",
614
+ "horrible",
615
+ "horrible",
616
+ "hostile",
617
+ "hot",
618
+ "hot",
619
+ "huge",
620
+ "huge",
621
+ "human",
622
+ "hungry",
623
+ "hungry",
624
+ "hurt",
625
+ "hushed",
626
+ "husky",
627
+ "icy",
628
+ "ideal",
629
+ "identical",
630
+ "ideological",
631
+ "ill",
632
+ "ill",
633
+ "illegal",
634
+ "imaginative",
635
+ "immediate",
636
+ "immense",
637
+ "immense",
638
+ "imperial",
639
+ "implicit",
640
+ "important",
641
+ "important",
642
+ "impossible",
643
+ "impossible",
644
+ "impressed",
645
+ "impressive",
646
+ "improved",
647
+ "inadequate",
648
+ "inappropriate",
649
+ "inc",
650
+ "inclined",
651
+ "increased",
652
+ "increasing",
653
+ "incredible",
654
+ "independent",
655
+ "indian",
656
+ "indirect",
657
+ "individual",
658
+ "industrial",
659
+ "inevitable",
660
+ "influential",
661
+ "informal",
662
+ "inherent",
663
+ "initial",
664
+ "injured",
665
+ "inland",
666
+ "inner",
667
+ "innocent",
668
+ "innocent",
669
+ "innovative",
670
+ "inquisitive",
671
+ "instant",
672
+ "institutional",
673
+ "insufficient",
674
+ "intact",
675
+ "integral",
676
+ "integrated",
677
+ "intellectual",
678
+ "intelligent",
679
+ "intense",
680
+ "intensive",
681
+ "interested",
682
+ "interesting",
683
+ "interim",
684
+ "interior",
685
+ "intermediate",
686
+ "internal",
687
+ "international",
688
+ "intimate",
689
+ "invisible",
690
+ "involved",
691
+ "iraqi",
692
+ "irish",
693
+ "irrelevant",
694
+ "islamic",
695
+ "isolated",
696
+ "israeli",
697
+ "italian",
698
+ "itchy",
699
+ "japanese",
700
+ "jealous",
701
+ "jewish",
702
+ "jittery",
703
+ "joint",
704
+ "jolly",
705
+ "jolly",
706
+ "joyous",
707
+ "judicial",
708
+ "juicy",
709
+ "junior",
710
+ "just",
711
+ "keen",
712
+ "key",
713
+ "kind",
714
+ "kind",
715
+ "kind",
716
+ "known",
717
+ "korean",
718
+ "labour",
719
+ "large",
720
+ "large",
721
+ "large-scale",
722
+ "late",
723
+ "late",
724
+ "latin",
725
+ "lazy",
726
+ "leading",
727
+ "left",
728
+ "legal",
729
+ "legislative",
730
+ "legitimate",
731
+ "lengthy",
732
+ "lesser",
733
+ "level",
734
+ "lexical",
735
+ "liable",
736
+ "liberal",
737
+ "light",
738
+ "light",
739
+ "light",
740
+ "like",
741
+ "likely",
742
+ "limited",
743
+ "linear",
744
+ "linguistic",
745
+ "liquid",
746
+ "literary",
747
+ "little",
748
+ "little",
749
+ "live",
750
+ "lively",
751
+ "lively",
752
+ "living",
753
+ "local",
754
+ "logical",
755
+ "lonely",
756
+ "lonely",
757
+ "long",
758
+ "long",
759
+ "long",
760
+ "long",
761
+ "long-term",
762
+ "loose",
763
+ "loose",
764
+ "lost",
765
+ "loud",
766
+ "loud",
767
+ "lovely",
768
+ "lovely",
769
+ "low",
770
+ "low",
771
+ "loyal",
772
+ "ltd",
773
+ "lucky",
774
+ "lucky",
775
+ "mad",
776
+ "magenta",
777
+ "magic",
778
+ "magnetic",
779
+ "magnificent",
780
+ "magnificent",
781
+ "main",
782
+ "major",
783
+ "male",
784
+ "mammoth",
785
+ "managerial",
786
+ "managing",
787
+ "manual",
788
+ "many",
789
+ "many",
790
+ "marginal",
791
+ "marine",
792
+ "marked",
793
+ "married",
794
+ "marvellous",
795
+ "marxist",
796
+ "mass",
797
+ "massive",
798
+ "massive",
799
+ "mathematical",
800
+ "mature",
801
+ "maximum",
802
+ "mean",
803
+ "meaningful",
804
+ "mechanical",
805
+ "medical",
806
+ "medieval",
807
+ "melodic",
808
+ "melted",
809
+ "mental",
810
+ "mere",
811
+ "metropolitan",
812
+ "mid",
813
+ "middle",
814
+ "middle-class",
815
+ "mighty",
816
+ "mighty",
817
+ "mild",
818
+ "military",
819
+ "miniature",
820
+ "minimal",
821
+ "minimum",
822
+ "ministerial",
823
+ "minor",
824
+ "miserable",
825
+ "misleading",
826
+ "missing",
827
+ "misty",
828
+ "mixed",
829
+ "moaning",
830
+ "mobile",
831
+ "moderate",
832
+ "modern",
833
+ "modern",
834
+ "modern",
835
+ "modest",
836
+ "molecular",
837
+ "monetary",
838
+ "monthly",
839
+ "moral",
840
+ "motionless",
841
+ "muddy",
842
+ "multiple",
843
+ "mushy",
844
+ "musical",
845
+ "mute",
846
+ "mutual",
847
+ "mysterious",
848
+ "mysterious",
849
+ "naked",
850
+ "narrow",
851
+ "narrow",
852
+ "nasty",
853
+ "nasty",
854
+ "national",
855
+ "native",
856
+ "natural",
857
+ "naughty",
858
+ "naval",
859
+ "near",
860
+ "nearby",
861
+ "neat",
862
+ "necessary",
863
+ "negative",
864
+ "neighbouring",
865
+ "nervous",
866
+ "nervous",
867
+ "net",
868
+ "neutral",
869
+ "new",
870
+ "new",
871
+ "nice",
872
+ "nice",
873
+ "nineteenth-century",
874
+ "noble",
875
+ "noisy",
876
+ "noisy",
877
+ "normal",
878
+ "northern",
879
+ "nosy",
880
+ "notable",
881
+ "novel",
882
+ "nuclear",
883
+ "numerous",
884
+ "numerous",
885
+ "nursing",
886
+ "nutritious",
887
+ "nutty",
888
+ "obedient",
889
+ "objective",
890
+ "obliged",
891
+ "obnoxious",
892
+ "obvious",
893
+ "occasional",
894
+ "occupational",
895
+ "odd",
896
+ "odd",
897
+ "official",
898
+ "ok",
899
+ "okay",
900
+ "old",
901
+ "old",
902
+ "old-fashioned",
903
+ "old-fashioned",
904
+ "olympic",
905
+ "only",
906
+ "open",
907
+ "open",
908
+ "operational",
909
+ "opposite",
910
+ "optimistic",
911
+ "oral",
912
+ "orange",
913
+ "orange",
914
+ "ordinary",
915
+ "ordinary",
916
+ "organic",
917
+ "organisational",
918
+ "original",
919
+ "orthodox",
920
+ "other",
921
+ "outdoor",
922
+ "outer",
923
+ "outrageous",
924
+ "outside",
925
+ "outstanding",
926
+ "outstanding",
927
+ "overall",
928
+ "overseas",
929
+ "overwhelming",
930
+ "painful",
931
+ "pale",
932
+ "palestinian",
933
+ "panicky",
934
+ "parallel",
935
+ "parental",
936
+ "parliamentary",
937
+ "part-time",
938
+ "partial",
939
+ "particular",
940
+ "passing",
941
+ "passive",
942
+ "past",
943
+ "patient",
944
+ "payable",
945
+ "peaceful",
946
+ "peculiar",
947
+ "perfect",
948
+ "perfect",
949
+ "permanent",
950
+ "persistent",
951
+ "personal",
952
+ "petite",
953
+ "philosophical",
954
+ "physical",
955
+ "pink",
956
+ "plain",
957
+ "plain",
958
+ "planned",
959
+ "plastic",
960
+ "pleasant",
961
+ "pleasant",
962
+ "pleased",
963
+ "poised",
964
+ "polish",
965
+ "polite",
966
+ "political",
967
+ "poor",
968
+ "poor",
969
+ "popular",
970
+ "positive",
971
+ "possible",
972
+ "post-war",
973
+ "potential",
974
+ "powerful",
975
+ "powerful",
976
+ "practical",
977
+ "precious",
978
+ "precious",
979
+ "precise",
980
+ "preferred",
981
+ "pregnant",
982
+ "preliminary",
983
+ "premier",
984
+ "prepared",
985
+ "present",
986
+ "presidential",
987
+ "pretty",
988
+ "pretty",
989
+ "previous",
990
+ "prickly",
991
+ "prickly",
992
+ "primary",
993
+ "prime",
994
+ "primitive",
995
+ "principal",
996
+ "printed",
997
+ "prior",
998
+ "private",
999
+ "probable",
1000
+ "productive",
1001
+ "professional",
1002
+ "profitable",
1003
+ "profound",
1004
+ "progressive",
1005
+ "prominent",
1006
+ "promising",
1007
+ "proper",
1008
+ "proposed",
1009
+ "prospective",
1010
+ "protective",
1011
+ "protestant",
1012
+ "proud",
1013
+ "proud",
1014
+ "provincial",
1015
+ "psychiatric",
1016
+ "psychological",
1017
+ "public",
1018
+ "puny",
1019
+ "pure",
1020
+ "purple",
1021
+ "purple",
1022
+ "purring",
1023
+ "puzzled",
1024
+ "puzzled",
1025
+ "quaint",
1026
+ "quaint",
1027
+ "qualified",
1028
+ "quick",
1029
+ "quick",
1030
+ "quick",
1031
+ "quickest",
1032
+ "quiet",
1033
+ "quiet",
1034
+ "quiet",
1035
+ "racial",
1036
+ "radical",
1037
+ "rainy",
1038
+ "rainy",
1039
+ "random",
1040
+ "rapid",
1041
+ "rapid",
1042
+ "rare",
1043
+ "rare",
1044
+ "raspy",
1045
+ "rational",
1046
+ "ratty",
1047
+ "raw",
1048
+ "ready",
1049
+ "real",
1050
+ "real",
1051
+ "realistic",
1052
+ "rear",
1053
+ "reasonable",
1054
+ "recent",
1055
+ "red",
1056
+ "red",
1057
+ "reduced",
1058
+ "redundant",
1059
+ "regional",
1060
+ "registered",
1061
+ "regular",
1062
+ "regulatory",
1063
+ "related",
1064
+ "relative",
1065
+ "relaxed",
1066
+ "relevant",
1067
+ "reliable",
1068
+ "relieved",
1069
+ "relieved",
1070
+ "religious",
1071
+ "reluctant",
1072
+ "remaining",
1073
+ "remarkable",
1074
+ "remote",
1075
+ "renewed",
1076
+ "representative",
1077
+ "repulsive",
1078
+ "required",
1079
+ "resident",
1080
+ "residential",
1081
+ "resonant",
1082
+ "respectable",
1083
+ "respective",
1084
+ "responsible",
1085
+ "resulting",
1086
+ "retail",
1087
+ "retired",
1088
+ "revolutionary",
1089
+ "rich",
1090
+ "rich",
1091
+ "ridiculous",
1092
+ "right",
1093
+ "rigid",
1094
+ "ripe",
1095
+ "rising",
1096
+ "rival",
1097
+ "roasted",
1098
+ "robust",
1099
+ "rolling",
1100
+ "roman",
1101
+ "romantic",
1102
+ "rotten",
1103
+ "rough",
1104
+ "rough",
1105
+ "round",
1106
+ "round",
1107
+ "round",
1108
+ "royal",
1109
+ "rubber",
1110
+ "rude",
1111
+ "ruling",
1112
+ "running",
1113
+ "rural",
1114
+ "russian",
1115
+ "sacred",
1116
+ "sad",
1117
+ "sad",
1118
+ "safe",
1119
+ "salty",
1120
+ "satisfactory",
1121
+ "satisfied",
1122
+ "scared",
1123
+ "scary",
1124
+ "scary",
1125
+ "scattered",
1126
+ "scientific",
1127
+ "scornful",
1128
+ "scottish",
1129
+ "scrawny",
1130
+ "screeching",
1131
+ "secondary",
1132
+ "secret",
1133
+ "secure",
1134
+ "select",
1135
+ "selected",
1136
+ "selective",
1137
+ "selfish",
1138
+ "semantic",
1139
+ "senior",
1140
+ "sensible",
1141
+ "sensitive",
1142
+ "separate",
1143
+ "serious",
1144
+ "severe",
1145
+ "sexual",
1146
+ "shaggy",
1147
+ "shaky",
1148
+ "shallow",
1149
+ "shallow",
1150
+ "shared",
1151
+ "sharp",
1152
+ "sharp",
1153
+ "sheer",
1154
+ "shiny",
1155
+ "shivering",
1156
+ "shocked",
1157
+ "short",
1158
+ "short",
1159
+ "short",
1160
+ "short",
1161
+ "short-term",
1162
+ "shrill",
1163
+ "shy",
1164
+ "shy",
1165
+ "sick",
1166
+ "significant",
1167
+ "silent",
1168
+ "silent",
1169
+ "silky",
1170
+ "silly",
1171
+ "silly",
1172
+ "silly",
1173
+ "similar",
1174
+ "simple",
1175
+ "single",
1176
+ "skilled",
1177
+ "skinny",
1178
+ "sleepy",
1179
+ "slight",
1180
+ "slim",
1181
+ "slimy",
1182
+ "slippery",
1183
+ "slow",
1184
+ "slow",
1185
+ "small",
1186
+ "small",
1187
+ "smart",
1188
+ "smiling",
1189
+ "smoggy",
1190
+ "smooth",
1191
+ "smooth",
1192
+ "so-called",
1193
+ "social",
1194
+ "socialist",
1195
+ "soft",
1196
+ "soft",
1197
+ "soft",
1198
+ "solar",
1199
+ "sole",
1200
+ "solid",
1201
+ "solid",
1202
+ "sophisticated",
1203
+ "sore",
1204
+ "sorry",
1205
+ "sound",
1206
+ "sound",
1207
+ "sour",
1208
+ "southern",
1209
+ "soviet",
1210
+ "spanish",
1211
+ "spare",
1212
+ "sparkling",
1213
+ "spatial",
1214
+ "special",
1215
+ "specific",
1216
+ "specified",
1217
+ "spectacular",
1218
+ "spicy",
1219
+ "spiritual",
1220
+ "splendid",
1221
+ "splendid",
1222
+ "spontaneous",
1223
+ "sporting",
1224
+ "spotless",
1225
+ "spotty",
1226
+ "square",
1227
+ "square",
1228
+ "squealing",
1229
+ "stable",
1230
+ "stale",
1231
+ "standard",
1232
+ "static",
1233
+ "statistical",
1234
+ "statutory",
1235
+ "steady",
1236
+ "steady",
1237
+ "steep",
1238
+ "steep",
1239
+ "sticky",
1240
+ "sticky",
1241
+ "stiff",
1242
+ "still",
1243
+ "stingy",
1244
+ "stormy",
1245
+ "straight",
1246
+ "straight",
1247
+ "straightforward",
1248
+ "strange",
1249
+ "strange",
1250
+ "strange",
1251
+ "strategic",
1252
+ "strict",
1253
+ "striking",
1254
+ "striped",
1255
+ "strong",
1256
+ "strong",
1257
+ "structural",
1258
+ "stuck",
1259
+ "stupid",
1260
+ "stupid",
1261
+ "subjective",
1262
+ "subsequent",
1263
+ "substantial",
1264
+ "subtle",
1265
+ "successful",
1266
+ "successful",
1267
+ "successive",
1268
+ "sudden",
1269
+ "sufficient",
1270
+ "suitable",
1271
+ "sunny",
1272
+ "super",
1273
+ "super",
1274
+ "superb",
1275
+ "superior",
1276
+ "supporting",
1277
+ "supposed",
1278
+ "supreme",
1279
+ "sure",
1280
+ "surprised",
1281
+ "surprising",
1282
+ "surrounding",
1283
+ "surviving",
1284
+ "suspicious",
1285
+ "sweet",
1286
+ "sweet",
1287
+ "swift",
1288
+ "swiss",
1289
+ "symbolic",
1290
+ "sympathetic",
1291
+ "systematic",
1292
+ "tall",
1293
+ "tall",
1294
+ "tall",
1295
+ "tame",
1296
+ "tame",
1297
+ "tan",
1298
+ "tart",
1299
+ "tasteless",
1300
+ "tasty",
1301
+ "technical",
1302
+ "technological",
1303
+ "teenage",
1304
+ "temporary",
1305
+ "tender",
1306
+ "tender",
1307
+ "tender",
1308
+ "tense",
1309
+ "terrible",
1310
+ "terrible",
1311
+ "territorial",
1312
+ "testy",
1313
+ "then",
1314
+ "theoretical",
1315
+ "thick",
1316
+ "thin",
1317
+ "thirsty",
1318
+ "thorough",
1319
+ "thoughtful",
1320
+ "thoughtless",
1321
+ "thundering",
1322
+ "tight",
1323
+ "tight",
1324
+ "tiny",
1325
+ "tiny",
1326
+ "tired",
1327
+ "tired",
1328
+ "top",
1329
+ "tory",
1330
+ "total",
1331
+ "tough",
1332
+ "tough",
1333
+ "toxic",
1334
+ "traditional",
1335
+ "tragic",
1336
+ "tremendous",
1337
+ "tricky",
1338
+ "tropical",
1339
+ "troubled",
1340
+ "turkish",
1341
+ "typical",
1342
+ "ugliest",
1343
+ "ugly",
1344
+ "ugly",
1345
+ "ugly",
1346
+ "ultimate",
1347
+ "unable",
1348
+ "unacceptable",
1349
+ "unaware",
1350
+ "uncertain",
1351
+ "unchanged",
1352
+ "uncomfortable",
1353
+ "unconscious",
1354
+ "underground",
1355
+ "underlying",
1356
+ "unemployed",
1357
+ "uneven",
1358
+ "unexpected",
1359
+ "unfair",
1360
+ "unfortunate",
1361
+ "unhappy",
1362
+ "uniform",
1363
+ "uninterested",
1364
+ "unique",
1365
+ "united",
1366
+ "universal",
1367
+ "unknown",
1368
+ "unlikely",
1369
+ "unnecessary",
1370
+ "unpleasant",
1371
+ "unsightly",
1372
+ "unusual",
1373
+ "unusual",
1374
+ "unwilling",
1375
+ "upper",
1376
+ "upset",
1377
+ "upset",
1378
+ "uptight",
1379
+ "urban",
1380
+ "urgent",
1381
+ "used",
1382
+ "useful",
1383
+ "useless",
1384
+ "usual",
1385
+ "vague",
1386
+ "valid",
1387
+ "valuable",
1388
+ "variable",
1389
+ "varied",
1390
+ "various",
1391
+ "varying",
1392
+ "vast",
1393
+ "vast",
1394
+ "verbal",
1395
+ "vertical",
1396
+ "very",
1397
+ "victorian",
1398
+ "victorious",
1399
+ "video-taped",
1400
+ "violent",
1401
+ "visible",
1402
+ "visiting",
1403
+ "visual",
1404
+ "vital",
1405
+ "vivacious",
1406
+ "vivid",
1407
+ "vocational",
1408
+ "voiceless",
1409
+ "voluntary",
1410
+ "vulnerable",
1411
+ "wandering",
1412
+ "warm",
1413
+ "wasteful",
1414
+ "watery",
1415
+ "weak",
1416
+ "weak",
1417
+ "wealthy",
1418
+ "weary",
1419
+ "wee",
1420
+ "weekly",
1421
+ "weird",
1422
+ "welcome",
1423
+ "well",
1424
+ "well-known",
1425
+ "welsh",
1426
+ "western",
1427
+ "wet",
1428
+ "wet",
1429
+ "wet",
1430
+ "whispering",
1431
+ "white",
1432
+ "whole",
1433
+ "wicked",
1434
+ "wicked",
1435
+ "wide",
1436
+ "wide",
1437
+ "wide-eyed",
1438
+ "widespread",
1439
+ "wild",
1440
+ "wild",
1441
+ "willing",
1442
+ "wise",
1443
+ "witty",
1444
+ "wonderful",
1445
+ "wonderful",
1446
+ "wonderful",
1447
+ "wooden",
1448
+ "wooden",
1449
+ "working",
1450
+ "working-class",
1451
+ "worldwide",
1452
+ "worried",
1453
+ "worried",
1454
+ "worrying",
1455
+ "worthwhile",
1456
+ "worthy",
1457
+ "written",
1458
+ "wrong",
1459
+ "wrong",
1460
+ "yellow",
1461
+ "yellow",
1462
+ "young",
1463
+ "young",
1464
+ "yummy",
1465
+ "zany",
1466
+ "zany",
1467
+ "zealous"
1468
+ ]