random-words 1.0.4 → 1.0.6

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 (173) hide show
  1. checksums.yaml +4 -4
  2. data/.rspec_status +148 -39
  3. data/.rubocop.yml +1 -0
  4. data/CHANGELOG.md +42 -0
  5. data/Gemfile.lock +4 -1
  6. data/README.md +153 -4
  7. data/bin/randw +195 -49
  8. data/lib/random-words/array.rb +51 -0
  9. data/lib/random-words/config.rb +248 -0
  10. data/lib/random-words/generator.rb +239 -93
  11. data/lib/random-words/hash.rb +16 -0
  12. data/lib/random-words/html2markdown.rb +205 -0
  13. data/lib/random-words/lorem-markdown.rb +398 -0
  14. data/lib/random-words/number-to-word.rb +137 -0
  15. data/lib/random-words/source.rb +105 -0
  16. data/lib/random-words/string.rb +221 -47
  17. data/lib/random-words/table-cleanup.rb +210 -0
  18. data/lib/random-words/version.rb +1 -1
  19. data/lib/random-words/words/1984/adjectives.txt +103 -0
  20. data/lib/random-words/words/1984/adverbs.txt +92 -0
  21. data/lib/random-words/words/1984/articles-plural.txt +10 -0
  22. data/lib/random-words/words/1984/articles-singular.txt +10 -0
  23. data/lib/random-words/words/1984/clauses.txt +79 -0
  24. data/lib/random-words/words/1984/config.yml +4 -0
  25. data/lib/random-words/words/1984/conjunctions-coordinating.txt +20 -0
  26. data/lib/random-words/words/1984/conjunctions-subordinate.txt +29 -0
  27. data/lib/random-words/words/1984/names.txt +74 -0
  28. data/lib/random-words/words/1984/nouns-plural.txt +89 -0
  29. data/lib/random-words/words/1984/nouns-singular.txt +74 -0
  30. data/lib/random-words/words/1984/numbers.yml +5 -0
  31. data/lib/random-words/words/1984/prepositions.txt +89 -0
  32. data/lib/random-words/words/1984/terminators.txt +16 -0
  33. data/lib/random-words/words/1984/verbs-passive.txt +83 -0
  34. data/lib/random-words/words/1984/verbs-plural.txt +91 -0
  35. data/lib/random-words/words/1984/verbs-singular.txt +110 -0
  36. data/lib/random-words/words/alice/adjectives.txt +80 -0
  37. data/lib/random-words/words/alice/adverbs.txt +87 -0
  38. data/lib/random-words/words/alice/articles-plural.txt +10 -0
  39. data/lib/random-words/words/alice/articles-singular.txt +10 -0
  40. data/lib/random-words/words/alice/clauses.txt +81 -0
  41. data/lib/random-words/words/alice/config.yml +4 -0
  42. data/lib/random-words/words/alice/conjunctions-coordinating.txt +20 -0
  43. data/lib/random-words/words/alice/conjunctions-subordinate.txt +29 -0
  44. data/lib/random-words/words/alice/names.txt +74 -0
  45. data/lib/random-words/words/alice/nouns-plural.txt +95 -0
  46. data/lib/random-words/words/alice/nouns-singular.txt +82 -0
  47. data/lib/random-words/words/alice/numbers.yml +5 -0
  48. data/lib/random-words/words/alice/prepositions.txt +45 -0
  49. data/lib/random-words/words/alice/terminators.txt +16 -0
  50. data/lib/random-words/words/alice/verbs-passive.txt +495 -0
  51. data/lib/random-words/words/alice/verbs-plural.txt +115 -0
  52. data/lib/random-words/words/alice/verbs-singular.txt +97 -0
  53. data/lib/random-words/words/bacon/clauses.txt +592 -592
  54. data/lib/random-words/words/bacon/config.yml +4 -0
  55. data/lib/random-words/words/bacon/conjunctions-coordinating.txt +20 -0
  56. data/lib/random-words/words/bacon/names.txt +74 -0
  57. data/lib/random-words/words/bacon/numbers.yml +5 -0
  58. data/lib/random-words/words/bacon/prepositions.txt +45 -0
  59. data/lib/random-words/words/bacon/terminators.txt +16 -0
  60. data/lib/random-words/words/corporate/config.yml +4 -0
  61. data/lib/random-words/words/corporate/conjunctions-coordinating.txt +20 -0
  62. data/lib/random-words/words/corporate/names.txt +74 -0
  63. data/lib/random-words/words/corporate/numbers.yml +5 -0
  64. data/lib/random-words/words/corporate/prepositions.txt +45 -0
  65. data/lib/random-words/words/corporate/terminators.txt +16 -0
  66. data/lib/random-words/words/doctor/adjectives.txt +92 -0
  67. data/lib/random-words/words/doctor/adverbs.txt +92 -0
  68. data/lib/random-words/words/doctor/articles-plural.txt +10 -0
  69. data/lib/random-words/words/doctor/articles-singular.txt +10 -0
  70. data/lib/random-words/words/doctor/clauses.txt +83 -0
  71. data/lib/random-words/words/doctor/config.yml +10 -0
  72. data/lib/random-words/words/doctor/conjunctions-coordinating.txt +20 -0
  73. data/lib/random-words/words/doctor/conjunctions-subordinate.txt +29 -0
  74. data/lib/random-words/words/doctor/names.txt +74 -0
  75. data/lib/random-words/words/doctor/nouns-plural.txt +84 -0
  76. data/lib/random-words/words/doctor/nouns-singular.txt +84 -0
  77. data/lib/random-words/words/doctor/numbers.yml +5 -0
  78. data/lib/random-words/words/doctor/prepositions.txt +45 -0
  79. data/lib/random-words/words/doctor/terminators.txt +16 -0
  80. data/lib/random-words/words/doctor/verbs-passive.txt +83 -0
  81. data/lib/random-words/words/doctor/verbs-plural.txt +88 -0
  82. data/lib/random-words/words/doctor/verbs-singular.txt +83 -0
  83. data/lib/random-words/words/english/clauses.txt +592 -592
  84. data/lib/random-words/words/english/config.yml +4 -0
  85. data/lib/random-words/words/english/conjunctions-coordinating.txt +20 -0
  86. data/lib/random-words/words/english/names.txt +74 -0
  87. data/lib/random-words/words/english/numbers.yml +5 -0
  88. data/lib/random-words/words/english/prepositions.txt +45 -0
  89. data/lib/random-words/words/english/terminators.txt +16 -0
  90. data/lib/random-words/words/english/verbs-plural.txt +1 -0
  91. data/lib/random-words/words/english/verbs-singular.txt +1 -0
  92. data/lib/random-words/words/foulmouth/adjectives.txt +89 -0
  93. data/lib/random-words/words/foulmouth/adverbs.txt +97 -0
  94. data/lib/random-words/words/foulmouth/articles-plural.txt +10 -0
  95. data/lib/random-words/words/foulmouth/articles-singular.txt +10 -0
  96. data/lib/random-words/words/foulmouth/clauses.txt +74 -0
  97. data/lib/random-words/words/foulmouth/config.yml +4 -0
  98. data/lib/random-words/words/foulmouth/conjunctions-coordinating.txt +20 -0
  99. data/lib/random-words/words/foulmouth/conjunctions-subordinate.txt +29 -0
  100. data/lib/random-words/words/foulmouth/names.txt +74 -0
  101. data/lib/random-words/words/foulmouth/nouns-plural.txt +96 -0
  102. data/lib/random-words/words/foulmouth/nouns-singular.txt +99 -0
  103. data/lib/random-words/words/foulmouth/numbers.yml +5 -0
  104. data/lib/random-words/words/foulmouth/prepositions.txt +35 -0
  105. data/lib/random-words/words/foulmouth/terminators.txt +16 -0
  106. data/lib/random-words/words/foulmouth/verbs-passive.txt +143 -0
  107. data/lib/random-words/words/foulmouth/verbs-plural.txt +91 -0
  108. data/lib/random-words/words/foulmouth/verbs-singular.txt +104 -0
  109. data/lib/random-words/words/hipster/adjectives.txt +100 -0
  110. data/lib/random-words/words/hipster/adverbs.txt +89 -0
  111. data/lib/random-words/words/hipster/articles-plural.txt +10 -0
  112. data/lib/random-words/words/hipster/articles-singular.txt +10 -0
  113. data/lib/random-words/words/hipster/clauses.txt +180 -0
  114. data/lib/random-words/words/hipster/config.yml +4 -0
  115. data/lib/random-words/words/hipster/conjunctions-coordinating.txt +20 -0
  116. data/lib/random-words/words/hipster/conjunctions-subordinate.txt +29 -0
  117. data/lib/random-words/words/hipster/names.txt +74 -0
  118. data/lib/random-words/words/hipster/nouns-plural.txt +96 -0
  119. data/lib/random-words/words/hipster/nouns-singular.txt +100 -0
  120. data/lib/random-words/words/hipster/numbers.yml +5 -0
  121. data/lib/random-words/words/hipster/prepositions.txt +45 -0
  122. data/lib/random-words/words/hipster/terminators.txt +16 -0
  123. data/lib/random-words/words/hipster/verbs-passive.txt +88 -0
  124. data/lib/random-words/words/hipster/verbs-plural.txt +106 -0
  125. data/lib/random-words/words/hipster/verbs-singular.txt +114 -0
  126. data/lib/random-words/words/latin/config.yml +4 -0
  127. data/lib/random-words/words/latin/conjunctions-coordinating.txt +15 -0
  128. data/lib/random-words/words/latin/names.txt +74 -0
  129. data/lib/random-words/words/latin/numbers.yml +5 -0
  130. data/lib/random-words/words/latin/prepositions.txt +18 -0
  131. data/lib/random-words/words/latin/terminators.txt +16 -0
  132. data/lib/random-words/words/spanish/adjectives.txt +81 -0
  133. data/lib/random-words/words/spanish/adverbs.txt +87 -0
  134. data/lib/random-words/words/spanish/articles-plural.txt +4 -0
  135. data/lib/random-words/words/spanish/articles-singular.txt +4 -0
  136. data/lib/random-words/words/spanish/clauses.txt +74 -0
  137. data/lib/random-words/words/spanish/config.yml +4 -0
  138. data/lib/random-words/words/spanish/conjunctions-coordinating.txt +8 -0
  139. data/lib/random-words/words/spanish/conjunctions-subordinate.txt +16 -0
  140. data/lib/random-words/words/spanish/names.txt +74 -0
  141. data/lib/random-words/words/spanish/nouns-plural.txt +92 -0
  142. data/lib/random-words/words/spanish/nouns-singular.txt +125 -0
  143. data/lib/random-words/words/spanish/numbers.yml +5 -0
  144. data/lib/random-words/words/spanish/prepositions.txt +31 -0
  145. data/lib/random-words/words/spanish/terminators.txt +17 -0
  146. data/lib/random-words/words/spanish/verbs-passive.txt +495 -0
  147. data/lib/random-words/words/spanish/verbs-plural.txt +326 -0
  148. data/lib/random-words/words/spanish/verbs-singular.txt +351 -0
  149. data/lib/random-words/words/veggie/adjectives.txt +111 -0
  150. data/lib/random-words/words/veggie/adverbs.txt +81 -0
  151. data/lib/random-words/words/veggie/articles-plural.txt +10 -0
  152. data/lib/random-words/words/veggie/articles-singular.txt +10 -0
  153. data/lib/random-words/words/veggie/clauses.txt +57 -0
  154. data/lib/random-words/words/veggie/config.yml +4 -0
  155. data/lib/random-words/words/veggie/conjunctions-coordinating.txt +20 -0
  156. data/lib/random-words/words/veggie/conjunctions-subordinate.txt +29 -0
  157. data/lib/random-words/words/veggie/names.txt +74 -0
  158. data/lib/random-words/words/veggie/nouns-plural.txt +78 -0
  159. data/lib/random-words/words/veggie/nouns-singular.txt +105 -0
  160. data/lib/random-words/words/veggie/numbers.yml +5 -0
  161. data/lib/random-words/words/veggie/prepositions.txt +45 -0
  162. data/lib/random-words/words/veggie/terminators.txt +16 -0
  163. data/lib/random-words/words/veggie/verbs-passive.txt +56 -0
  164. data/lib/random-words/words/veggie/verbs-plural.txt +79 -0
  165. data/lib/random-words/words/veggie/verbs-singular.txt +79 -0
  166. data/lib/random-words.rb +28 -0
  167. data/random-words.gemspec +3 -1
  168. data/src/_README.md +153 -4
  169. metadata +168 -7
  170. data/lib/random-words/words/bacon/numbers.txt +0 -21
  171. data/lib/random-words/words/corporate/numbers.txt +0 -21
  172. data/lib/random-words/words/english/numbers.txt +0 -21
  173. data/lib/random-words/words/latin/numbers.txt +0 -21
@@ -0,0 +1,495 @@
1
+ was abandoned by
2
+ was abetted by
3
+ was accentuated by
4
+ was accompanied by
5
+ was achieved by
6
+ was acknowledged by
7
+ was activated by
8
+ was adapted by
9
+ was adjusted by
10
+ was adjusted with
11
+ was admonished by
12
+ was advocated by
13
+ was affected by
14
+ was affected with
15
+ was affirmed by
16
+ was aided by
17
+ was alerted by
18
+ was aligned by
19
+ was allotted by
20
+ was allowed by
21
+ was altered by
22
+ was amazed by
23
+ was amazed with
24
+ was amended by
25
+ was amused by
26
+ was analyzed by
27
+ was analyzed with
28
+ was animated by
29
+ was answered by
30
+ was anticipated by
31
+ was appointed by
32
+ was appreciated by
33
+ was appropriated by
34
+ was approximated by
35
+ was arranged by
36
+ was arranged with
37
+ was articulated by
38
+ was assembled by
39
+ was assigned by
40
+ was assisted by
41
+ was assisted with
42
+ was assured by
43
+ was attended by
44
+ was attributed by
45
+ was attributed to
46
+ was audible by
47
+ was augmented by
48
+ was avoided by
49
+ was awarded by
50
+ was balanced by
51
+ was beaten by
52
+ was blessed by
53
+ was bolstered by
54
+ was bored by
55
+ was branded by
56
+ was breached by
57
+ was broken by
58
+ was brought by
59
+ was built by
60
+ was bypassed by
61
+ was calculated by
62
+ was captured by
63
+ was categorized by
64
+ was caught by
65
+ was celebrated by
66
+ was celebrated with
67
+ was centered by
68
+ was challenged by
69
+ was changed by
70
+ was charged with
71
+ was charted by
72
+ was cheered by
73
+ was chosen by
74
+ was claimed by
75
+ was classified by
76
+ was closed by
77
+ was collaborated by
78
+ was colored by
79
+ was comforted by
80
+ was committed by
81
+ was compared to
82
+ was compelled by
83
+ was compiled by
84
+ was complemented by
85
+ was completed by
86
+ was composed by
87
+ was concluded by
88
+ was conducted by
89
+ was conferred by
90
+ was confined by
91
+ was confirmed by
92
+ was confirmed with
93
+ was confiscated by
94
+ was confounded by
95
+ was confused by
96
+ was connected by
97
+ was considered by
98
+ was consolidated by
99
+ was constituted by
100
+ was constructed by
101
+ was consulted by
102
+ was contacted by
103
+ was contrasted with
104
+ was contributed to by
105
+ was controlled by
106
+ was convened by
107
+ was converted by
108
+ was conveyed by
109
+ was cooked by
110
+ was coordinated by
111
+ was corrected by
112
+ was correlated by
113
+ was courted by
114
+ was covered by
115
+ was created by
116
+ was credited by
117
+ was criticized by
118
+ was critiqued by
119
+ was crossed by
120
+ was crystallized by
121
+ was cultivated by
122
+ was cured by
123
+ was customized by
124
+ was damaged by
125
+ was decorated by
126
+ was defeated by
127
+ was deliberated by
128
+ was delighted by
129
+ was delivered by
130
+ was departed by
131
+ was depicted by
132
+ was designed by
133
+ was detailed by
134
+ was detected by
135
+ was diagnosed by
136
+ was differentiated by
137
+ was diminished by
138
+ was directed by
139
+ was disclosed by
140
+ was discovered by
141
+ was discriminated against by
142
+ was discussed by
143
+ was dismissed by
144
+ was dispatched by
145
+ was displayed by
146
+ was distinguished by
147
+ was distracted by
148
+ was distributed by
149
+ was documented by
150
+ was dominated by
151
+ was done by
152
+ was doubted by
153
+ was drained by
154
+ was draped by
155
+ was drawn by
156
+ was dressed by
157
+ was driven by
158
+ was eaten by
159
+ was echoed by
160
+ was edited by
161
+ was educated by
162
+ was elaborated by
163
+ was eliminated by
164
+ was embraced by
165
+ was empowered by
166
+ was encouraged by
167
+ was encouraged with
168
+ was ended by
169
+ was enforced by
170
+ was engaged by
171
+ was enhanced by
172
+ was enjoyed by
173
+ was enrolled by
174
+ was entranced by
175
+ was equipped by
176
+ was erased by
177
+ was established by
178
+ was evaluated by
179
+ was evicted by
180
+ was examined by
181
+ was excavated by
182
+ was executed by
183
+ was exhibited by
184
+ was expanded by
185
+ was expected by
186
+ was experimented by
187
+ was explained by
188
+ was exploited by
189
+ was expressed by
190
+ was extracted by
191
+ was factored by
192
+ was familiarized by
193
+ was feared by
194
+ was featured by
195
+ was fed by
196
+ was filled by
197
+ was finalized by
198
+ was financed by
199
+ was finished by
200
+ was flooded by
201
+ was flourished by
202
+ was forgotten by
203
+ was formatted by
204
+ was formed by
205
+ was formulated by
206
+ was fortified by
207
+ was fostered by
208
+ was found by
209
+ was framed by
210
+ was fueled by
211
+ was fulfilled by
212
+ was gathered by
213
+ was gathered with
214
+ was gifted by
215
+ was given by
216
+ was grasped by
217
+ was greeted by
218
+ was guided by
219
+ was handed by
220
+ was handed over by
221
+ was heightened by
222
+ was helped by
223
+ was heralded by
224
+ was highlighted by
225
+ was hinted by
226
+ was honored by
227
+ was hosted by
228
+ was identified by
229
+ was ignited by
230
+ was ignored by
231
+ was illuminated by
232
+ was illustrated by
233
+ was imbibed by
234
+ was imposed by
235
+ was improved by
236
+ was incorporated by
237
+ was inflamed by
238
+ was inflated by
239
+ was influenced by
240
+ was influenced with
241
+ was initiated by
242
+ was inspected by
243
+ was inspired by
244
+ was instituted by
245
+ was integrated by
246
+ was intensified by
247
+ was interpreted by
248
+ was introduced by
249
+ was invited by
250
+ was invited with
251
+ was involved in
252
+ was jeered by
253
+ was jerked by
254
+ was joined by
255
+ was joined with
256
+ was judged by
257
+ was juxtaposed by
258
+ was kept by
259
+ was known by
260
+ was laden by
261
+ was landed by
262
+ was led by
263
+ was left by
264
+ was liked by
265
+ was limited by
266
+ was listened to by
267
+ was loaded by
268
+ was looked after by
269
+ was lost by
270
+ was made by
271
+ was maintained by
272
+ was managed by
273
+ was mangled by
274
+ was manipulated by
275
+ was marinated by
276
+ was marveled by
277
+ was matched by
278
+ was measured by
279
+ was measured with
280
+ was mediated by
281
+ was met by
282
+ was mingled with
283
+ was mobilized by
284
+ was modified by
285
+ was molded by
286
+ was monitored by
287
+ was motivated by
288
+ was moved by
289
+ was narrated by
290
+ was navigated by
291
+ was neglected by
292
+ was nurtured by
293
+ was observed by
294
+ was occupied by
295
+ was offered by
296
+ was opened by
297
+ was orchestrated by
298
+ was organized by
299
+ was oriented by
300
+ was outlined by
301
+ was overcome by
302
+ was overloaded by
303
+ was overlooked by
304
+ was overridden by
305
+ was paced by
306
+ was paid by
307
+ was painted by
308
+ was pardoned by
309
+ was parted by
310
+ was participated by
311
+ was patented by
312
+ was peered by
313
+ was penetrated by
314
+ was perceived by
315
+ was placed by
316
+ was planned by
317
+ was played by
318
+ was pocketed by
319
+ was portrayed by
320
+ was positioned by
321
+ was postponed by
322
+ was praised by
323
+ was preferred by
324
+ was prepared by
325
+ was prescribed by
326
+ was presented by
327
+ was preserved by
328
+ was pressed by
329
+ was pressed with
330
+ was prevented by
331
+ was processed by
332
+ was processed with
333
+ was proclaimed by
334
+ was produced by
335
+ was professed by
336
+ was projected by
337
+ was promised by
338
+ was promoted by
339
+ was prompted by
340
+ was propagated by
341
+ was proposed by
342
+ was protected by
343
+ was protected with
344
+ was protested by
345
+ was proved by
346
+ was published by
347
+ was pursued by
348
+ was pushed by
349
+ was questioned by
350
+ was raised by
351
+ was rallied by
352
+ was rattled by
353
+ was reacted to by
354
+ was realized by
355
+ was rebounded by
356
+ was recognized by
357
+ was recollected by
358
+ was recommended by
359
+ was recorded by
360
+ was recovered by
361
+ was recruited by
362
+ was redesigned by
363
+ was referred to by
364
+ was refined by
365
+ was reflected by
366
+ was refrained by
367
+ was regulated by
368
+ was rehearsed by
369
+ was reinforced by
370
+ was relayed by
371
+ was released by
372
+ was relocated by
373
+ was remembered by
374
+ was removed by
375
+ was repaired by
376
+ was repeated by
377
+ was reported by
378
+ was represented by
379
+ was requested by
380
+ was rescued by
381
+ was rescued with
382
+ was resonated by
383
+ was respected by
384
+ was responded to by
385
+ was rested by
386
+ was restrained by
387
+ was restricted by
388
+ was returned by
389
+ was revealed by
390
+ was rewarded by
391
+ was ridiculed by
392
+ was rounded by
393
+ was ruined by
394
+ was sacrificed by
395
+ was safeguarded by
396
+ was salvaged by
397
+ was sanctioned by
398
+ was saved by
399
+ was scavenged by
400
+ was scheduled by
401
+ was scraped by
402
+ was screamed by
403
+ was scrubbed by
404
+ was scrutinized by
405
+ was sealed by
406
+ was searched by
407
+ was secured by
408
+ was seen by
409
+ was seized by
410
+ was selected by
411
+ was separated by
412
+ was separated from
413
+ was served by
414
+ was served with
415
+ was settled by
416
+ was shaped by
417
+ was shaped with
418
+ was shared by
419
+ was shown by
420
+ was signaled by
421
+ was signed by
422
+ was sold by
423
+ was solved by
424
+ was sorted by
425
+ was sorted with
426
+ was sought by
427
+ was sparked by
428
+ was speculated by
429
+ was spoken by
430
+ was spoken with
431
+ was sponsored by
432
+ was stabilized by
433
+ was stated by
434
+ was stewarded by
435
+ was stimulated by
436
+ was stirred by
437
+ was strategized by
438
+ was structured by
439
+ was suggested by
440
+ was summarized by
441
+ was sung by
442
+ was supervised by
443
+ was supported by
444
+ was surveyed by
445
+ was survived by
446
+ was sustained by
447
+ was swayed by
448
+ was synchronized by
449
+ was synthesized by
450
+ was taken by
451
+ was taken care of by
452
+ was talked about by
453
+ was talked to by
454
+ was targeted by
455
+ was taught by
456
+ was televised by
457
+ was tested by
458
+ was thanked by
459
+ was thought of by
460
+ was tied by
461
+ was tied with
462
+ was told by
463
+ was traced by
464
+ was transferred by
465
+ was transformed by
466
+ was translated by
467
+ was transmitted by
468
+ was transpired by
469
+ was transported by
470
+ was treated by
471
+ was treated with
472
+ was triggered by
473
+ was trusted by
474
+ was undergone by
475
+ was underlined by
476
+ was understood by
477
+ was unearthed by
478
+ was unveiled by
479
+ was uplifted by
480
+ was urged by
481
+ was utilized by
482
+ was validated by
483
+ was valued by
484
+ was verified by
485
+ was voted for by
486
+ was waited for by
487
+ was waited on by
488
+ was warned by
489
+ was warranted by
490
+ was washed by
491
+ was welcomed by
492
+ was willful by
493
+ was wrapped by
494
+ was written by
495
+ was yearned by
@@ -0,0 +1,115 @@
1
+ abide
2
+ admire
3
+ advise
4
+ agree
5
+ allow
6
+ appear
7
+ approach
8
+ arrive
9
+ ask
10
+ attempt
11
+ avoid
12
+ bake
13
+ begin
14
+ believe
15
+ bring
16
+ call
17
+ can
18
+ carry
19
+ change
20
+ cheer
21
+ choose
22
+ come
23
+ consider
24
+ continue
25
+ crawl
26
+ dance
27
+ decide
28
+ declare
29
+ delight
30
+ discover
31
+ discuss
32
+ dive
33
+ do
34
+ doubt
35
+ draw
36
+ drink
37
+ eat
38
+ encounter
39
+ enjoy
40
+ examine
41
+ expect
42
+ explain
43
+ fall
44
+ feel
45
+ find
46
+ flee
47
+ fly
48
+ follow
49
+ forget
50
+ gather
51
+ give
52
+ go
53
+ grow
54
+ guess
55
+ hear
56
+ help
57
+ hold
58
+ hop
59
+ hurry
60
+ imagine
61
+ inquire
62
+ introduce
63
+ jump
64
+ keep
65
+ know
66
+ laugh
67
+ learn
68
+ listen
69
+ look
70
+ manage
71
+ meet
72
+ move
73
+ observe
74
+ open
75
+ order
76
+ pass
77
+ play
78
+ ponder
79
+ prepare
80
+ present
81
+ question
82
+ quit
83
+ read
84
+ remember
85
+ repeat
86
+ respond
87
+ run
88
+ say
89
+ see
90
+ set
91
+ share
92
+ shout
93
+ sing
94
+ sit
95
+ speak
96
+ squeeze
97
+ stand
98
+ stay
99
+ succeed
100
+ swim
101
+ take
102
+ talk
103
+ taste
104
+ tell
105
+ think
106
+ tremble
107
+ try
108
+ turn
109
+ understand
110
+ wait
111
+ walk
112
+ want
113
+ wish
114
+ wonder
115
+ write
@@ -0,0 +1,97 @@
1
+ adopts
2
+ advocates
3
+ appears
4
+ attends
5
+ bakes
6
+ begins
7
+ bends
8
+ bids
9
+ carries
10
+ catches
11
+ changes
12
+ chases
13
+ cheers
14
+ climbs
15
+ closes
16
+ comes
17
+ considers
18
+ counters
19
+ cries
20
+ dances
21
+ decides
22
+ desires
23
+ dines
24
+ distracts
25
+ doubts
26
+ draws
27
+ eats
28
+ enjoys
29
+ escapes
30
+ fancies
31
+ finishes
32
+ floats
33
+ follows
34
+ forgets
35
+ frowns
36
+ gathers
37
+ gazes
38
+ gives
39
+ grows
40
+ hurries
41
+ imagines
42
+ informs
43
+ interrogates
44
+ judges
45
+ keeps
46
+ laughs
47
+ leans
48
+ listens
49
+ measures
50
+ misses
51
+ mocks
52
+ moves
53
+ murmurs
54
+ notices
55
+ offers
56
+ orders
57
+ paints
58
+ peers
59
+ picks
60
+ plays
61
+ ponders
62
+ prepares
63
+ promises
64
+ questions
65
+ reads
66
+ remembers
67
+ represents
68
+ runs
69
+ says
70
+ sees
71
+ sighs
72
+ sings
73
+ sits
74
+ sneezes
75
+ speaks
76
+ spreads
77
+ stands
78
+ stares
79
+ stops
80
+ succeeds
81
+ takes
82
+ tells
83
+ thinks
84
+ transforms
85
+ tries
86
+ turns
87
+ understands
88
+ uses
89
+ values
90
+ waits
91
+ walks
92
+ watches
93
+ welcomes
94
+ whispers
95
+ wishes
96
+ writes
97
+ yells