-
Notifications
You must be signed in to change notification settings - Fork 7
/
Copy pathirregular.verbs.build.json
3021 lines (3021 loc) · 85.7 KB
/
irregular.verbs.build.json
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
{
"abide" : [ {
"2" : [ "abode", "abided" ],
"3" : [ "abode", "abided" ],
"description" : [ "To continue", "To reside", "To live" ]
} ],
"aby" : [ {
"2" : [ "abought" ],
"3" : [ "abought" ],
"description" : [ "To make amends for something wrong" ]
} ],
"alight" : [ {
"2" : [ "alit", "alighted" ],
"3" : [ "alit", "alighted" ],
"description" : [ "To get off a bus, train, etc." ]
} ],
"arise" : [ {
"2" : [ "arose" ],
"3" : [ "arisen" ],
"description" : [ "To originate", "To get up from horizontal position, out of bed", "To come into existence" ]
} ],
"awake" : [ {
"2" : [ "awoke" ],
"3" : [ "awoken" ],
"description" : [ "To stop sleeping and become conscious" ]
} ],
"backbite" : [ {
"2" : [ "backbit" ],
"3" : [ "backbitten" ],
"description" : [ "To speak badly about someone" ]
} ],
"backfit" : [ {
"2" : [ "backfit" ],
"3" : [ "backfit" ],
"description" : [ "To fit new parts into an older machine that weren't available when the machine was made" ]
} ],
"backlight" : [ {
"2" : [ "backlit" ],
"3" : [ "backlit" ],
"description" : [ "To illuminate from behind (photography)" ]
} ],
"backslide" : [ {
"2" : [ "backslid" ],
"3" : [ "backslid", "backslidden" ],
"description" : [ "To stop making progress and start regressing" ]
} ],
"be" : [ {
"2" : [ "was", "were" ],
"3" : [ "been" ],
"description" : [ "To exist, live or occur.", "To have as a quality or a state", "An auxiliary verb" ]
} ],
"bear" : [ {
"2" : [ "bore" ],
"3" : [ "born", "borne" ],
"description" : [ "To carry", "To tolerate", "To give birth to" ]
} ],
"beat" : [ {
"2" : [ "beat" ],
"3" : [ "beaten" ],
"description" : [ "To hit repeatedly" ]
} ],
"become" : [ {
"2" : [ "became" ],
"3" : [ "become" ],
"description" : [ "To come into existence" ]
} ],
"bedight" : [ {
"2" : [ "bedight", "bedighted" ],
"3" : [ "bedight", "bedighted" ],
"description" : [ "To adorn, decorate" ]
} ],
"befall" : [ {
"2" : [ "befell" ],
"3" : [ "befallen" ],
"description" : [ "To happen", "To happen to somebody or something" ]
} ],
"beget" : [ {
"2" : [ "begot", "begat" ],
"3" : [ "begotten" ],
"description" : [ "To cause something to happen", "To procreate" ]
} ],
"begin" : [ {
"2" : [ "began" ],
"3" : [ "begun" ],
"description" : [ "To start something" ]
} ],
"begird" : [ {
"2" : [ "begirt", "begirded" ],
"3" : [ "begirt" ],
"description" : [ "To encircle" ]
} ],
"behight" : [ {
"2" : [ "behight" ],
"3" : [ "behight" ],
"description" : [ "To promise or vow", "To order" ]
} ],
"behold" : [ {
"2" : [ "beheld" ],
"3" : [ "beheld" ],
"description" : [ "To become conscious of by seeing" ]
} ],
"belay" : [ {
"2" : [ "belayed" ],
"3" : [ "belayed" ],
"description" : [ "To secure a boat with a rope", "To tie up" ]
} ],
"bend" : [ {
"2" : [ "bent" ],
"3" : [ "bent" ],
"description" : [ "To curve something by distorting its shape" ]
} ],
"bereave" : [ {
"2" : [ "bereft" ],
"3" : [ "bereft", "bereaved" ],
"description" : [ "To lose a relative through their death", "To deprive" ]
} ],
"beseech" : [ {
"2" : [ "besought", "beseeched" ],
"3" : [ "besought", "beseeched" ],
"description" : [ "To ask someone very insistently to do something" ]
} ],
"beset" : [ {
"2" : [ "beset" ],
"3" : [ "beset" ],
"description" : [ "To be restricted and occupied by difficulties" ]
} ],
"bespeak" : [ {
"2" : [ "bespoke" ],
"3" : [ "bespoken" ],
"description" : [ "To be a signal or symbol of something", "To set aside or reserve something", "To ask for" ]
} ],
"bestrew" : [ {
"2" : [ "bestrewed" ],
"3" : [ "bestrewed", "bestrewn" ],
"description" : [ "To cover a surface by throwing things about randomly" ]
} ],
"bestride" : [ {
"2" : [ "bestrode" ],
"3" : [ "bestridden" ],
"description" : [ "To sit or stand with one leg on either side of something" ]
} ],
"bet" : [ {
"2" : [ "bet" ],
"3" : [ "bet" ],
"description" : [ "To risk money against the result of a future event" ]
} ],
"betake" : [ {
"2" : [ "betook" ],
"3" : [ "betaken" ],
"description" : [ "To go to a place" ]
} ],
"bethink" : [ {
"2" : [ "bethought" ],
"3" : [ "bethought" ],
"description" : [ "To think about something", "To remind yourself" ]
} ],
"beweep" : [ {
"2" : [ "bewept" ],
"3" : [ "bewept" ],
"description" : [ "To cry for or over someone or something" ]
} ],
"bid" : [ {
"2" : [ "bade" ],
"3" : [ "bidden" ],
"description" : [ "To command or urge someone to do something" ]
}, {
"2" : [ "bid" ],
"3" : [ "bid" ],
"description" : [ "To make an offer of money or services" ]
} ],
"bide" : [ {
"2" : [ "bided", "bode" ],
"3" : [ "bided" ],
"description" : [ "To wait for", "To tolerate", "To withstand" ]
} ],
"bind" : [ {
"2" : [ "bound" ],
"3" : [ "bound" ],
"description" : [ "To tie something with string, or similar, to hold it" ]
} ],
"bite" : [ {
"2" : [ "bit" ],
"3" : [ "bitten" ],
"description" : [ "To cut or hold with teeth" ]
} ],
"blaw" : [ {
"2" : [ "blawed" ],
"3" : [ "blawn" ],
"description" : [ "To blow" ]
} ],
"bleed" : [ {
"2" : [ "bled" ],
"3" : [ "bled" ],
"description" : [ "To lose blood through a cut in the skin" ]
} ],
"blend" : [ {
"2" : [ "blended", "blent" ],
"3" : [ "blended", "blent" ],
"description" : [ "To mix together" ]
} ],
"bless" : [ {
"2" : [ "blessed", "blest" ],
"3" : [ "blessed", "blest" ],
"description" : [ "To wish or confer happiness", "To make holy" ]
} ],
"blow" : [ {
"2" : [ "blew" ],
"3" : [ "blown" ],
"description" : [ "To move air, wind and gases" ]
} ],
"bottle-feed" : [ {
"2" : [ "bottle-fed" ],
"3" : [ "bottle-fed" ],
"description" : [ "To feed a baby with a bottle" ]
} ],
"bowstring" : [ {
"2" : [ "bowstrung", "bowstringed" ],
"3" : [ "bowstrung" ],
"description" : [ "To strangle with the string from a bow" ]
} ],
"break" : [ {
"2" : [ "broke" ],
"3" : [ "broken" ],
"description" : [ "To cause something to separate into at least two pieces" ]
} ],
"breast-feed" : [ {
"2" : [ "breast-fed" ],
"3" : [ "breast-fed" ],
"description" : [ "To feed a baby with breast milk" ]
} ],
"breed" : [ {
"2" : [ "bred" ],
"3" : [ "bred" ],
"description" : [ "To produce animals or plants by controlling their reproduction" ]
} ],
"bring" : [ {
"2" : [ "brought" ],
"3" : [ "brought" ],
"description" : [ "To carry or convey something to the place where you are going" ]
} ],
"broadcast" : [ {
"2" : [ "broadcast", "broadcasted" ],
"3" : [ "broadcast", "broadcasted" ],
"description" : [ "To transmit radio or TV signals" ]
} ],
"browbeat" : [ {
"2" : [ "browbeat" ],
"3" : [ "browbeat", "browbeaten" ],
"description" : [ "To put pressure on someone or bully them to do something" ]
} ],
"build" : [ {
"2" : [ "built" ],
"3" : [ "built" ],
"description" : [ "To construct" ]
} ],
"burn" : [ {
"2" : [ "burnt", "burned" ],
"3" : [ "burnt", "burned" ],
"description" : [ "To consume or be consumed by fire" ]
} ],
"burst" : [ {
"2" : [ "burst" ],
"3" : [ "burst" ],
"description" : [ "To break something open, usually by internal pressure, such as a balloon with too much air in it" ]
} ],
"bust" : [ {
"2" : [ "bust" ],
"3" : [ "bust" ],
"description" : [ "To break" ]
} ],
"buy" : [ {
"2" : [ "bought" ],
"3" : [ "bought" ],
"description" : [ "To acquire something in exchange for money" ]
} ],
"cast" : [ {
"2" : [ "cast" ],
"3" : [ "cast" ],
"description" : [ "To throw or project something" ]
} ],
"catch" : [ {
"2" : [ "caught" ],
"3" : [ "caught" ],
"description" : [ "To receive", "To stop and hold a moving object, usually with your hands", "To make something unable to escape" ]
} ],
"cheerlead" : [ {
"2" : [ "cheerled" ],
"3" : [ "cheerled" ],
"description" : [ "To cheer and support a team in an organised group" ]
} ],
"chide" : [ {
"2" : [ "chid" ],
"3" : [ "chid", "chidden" ],
"description" : [ "To tell somebody off when they have done something wrong" ]
} ],
"choose" : [ {
"2" : [ "chose" ],
"3" : [ "chosen" ],
"description" : [ "To select" ]
} ],
"clap" : [ {
"2" : [ "clapped", "clapt" ],
"3" : [ "clapped", "clapt" ],
"description" : [ "To hit your hands together to make a sound to show approval", "To make a loud noise, like thunder" ]
} ],
"clear-cut" : [ {
"2" : [ "clear-cut" ],
"3" : [ "clear-cut" ],
"description" : [ "To cut down all trees in an area" ]
} ],
"cleave" : [ {
"2" : [ "cleft", "cleaved", "clove" ],
"3" : [ "cleft", "cleaved", "cloven" ],
"description" : [ "To separate or divide something, often with force", "To stick or hold together" ]
} ],
"cleek" : [ {
"2" : [ "claught", "claucht", "cleeked" ],
"3" : [ "cleeked" ],
"description" : [ "To grasp or take hold of" ]
} ],
"clepe" : [ {
"2" : [ "cleped" ],
"3" : [ "cleped", "ycleped", "yclept" ],
"description" : [ "To call or name" ]
} ],
"cling" : [ {
"2" : [ "clung" ],
"3" : [ "clung" ],
"description" : [ "To hold on to or to stick to" ]
} ],
"clothe" : [ {
"2" : [ "clad", "clothed" ],
"3" : [ "clad", "clothed" ],
"description" : [ "To dress someone or provide them with clothes" ]
} ],
"colorbreed" : [ {
"2" : [ "colorbred" ],
"3" : [ "colorbred" ],
"description" : [ "To breed an animal to be of a particular color" ]
} ],
"colorcast" : [ {
"2" : [ "colorcast" ],
"3" : [ "colorcast" ],
"description" : [ "To broadcast in color" ]
} ],
"come" : [ {
"2" : [ "came" ],
"3" : [ "come" ],
"description" : [ "To move towards or to arrive at a specified place, time or situation" ]
} ],
"cost" : [ {
"2" : [ "cost" ],
"3" : [ "cost" ],
"description" : [ "The amount of money required to buy something; it costs five dollars." ]
} ],
"cost-cut" : [ {
"2" : [ "cost-cut" ],
"3" : [ "cost-cut" ],
"description" : [ "To reduce costs or expenditure" ]
} ],
"counterdraw" : [ {
"2" : [ "counterdrew" ],
"3" : [ "counterdrawn" ],
"description" : [ "To copy by tracing" ]
} ],
"counterlight" : [ {
"2" : [ "counterlit" ],
"3" : [ "counterlit" ],
"description" : [ "To light something directly from opposite sides" ]
} ],
"crash-dive" : [ {
"2" : [ "crash-dived" ],
"3" : [ "crash-dived" ],
"description" : [ "To go down very quickly" ]
} ],
"creep" : [ {
"2" : [ "crept" ],
"3" : [ "crept" ],
"description" : [ "To move along the ground lying down" ]
} ],
"creep-feed" : [ {
"2" : [ "creep-fed" ],
"3" : [ "creep-fed" ],
"description" : [ "To feed young animals in a special area that adult animals can't get in" ]
} ],
"crib-bite" : [ {
"2" : [ "crib-bit" ],
"3" : [ "crib-bitten" ],
"description" : [ "To bite its manger and swallow air (of a horse)" ]
} ],
"cross-bite" : [ {
"2" : [ "cross-bit" ],
"3" : [ "cross-bitten" ],
"description" : [ "To thwart or stop something happening by deception" ]
} ],
"cross-string" : [ {
"2" : [ "cross-strung" ],
"3" : [ "cross-strung" ],
"description" : [ "To place bass strings on a piano across the treble strings" ]
} ],
"crossbreed" : [ {
"2" : [ "crossbred" ],
"3" : [ "crossbred" ],
"description" : [ "To breed animals or plants of different species, like a mule, which is a crossbreed of a donkey and a horse" ]
} ],
"crosscut" : [ {
"2" : [ "crosscut" ],
"3" : [ "crosscut" ],
"description" : [ "To move between scenes or stories in a film or narrative" ]
} ],
"crosslight" : [ {
"2" : [ "crosslit" ],
"3" : [ "crosslit" ],
"description" : [ "To illuminate from different sides, but not directly opposite" ]
} ],
"crow" : [ {
"2" : [ "crowed", "crew" ],
"3" : [ "crowed" ],
"description" : [ "To boast To utter a sound indicating pleasure" ]
} ],
"cut" : [ {
"2" : [ "cut" ],
"3" : [ "cut" ],
"description" : [ "To break the surface of something with a knife or similar tool" ]
} ],
"dare" : [ {
"2" : [ "dared", "durst" ],
"3" : [ "dared" ],
"description" : [ "To have sufficient courage" ]
} ],
"daydream" : [ {
"2" : [ "daydreamt", "daydreamt" ],
"3" : [ "daydreamt", "daydreamt" ],
"description" : [ "To have dream-like thoughts when a wake", "To have a fantasy" ]
} ],
"deal" : [ {
"2" : [ "dealt" ],
"3" : [ "dealt" ],
"description" : [ "To distribute, especially playing cards in games" ]
} ],
"deep-freeze" : [ {
"2" : [ "deep-froze" ],
"3" : [ "deep-frozen" ],
"description" : [ "To freeze or store frozen", "To suspend progress or activity" ]
} ],
"dig" : [ {
"2" : [ "dug" ],
"3" : [ "dug" ],
"description" : [ "To make a hole in the ground" ]
} ],
"dight" : [ {
"2" : [ "dight", "dighted" ],
"3" : [ "dight", "dighted" ],
"description" : [ "To dictate orders" ]
} ],
"dispread" : [ {
"2" : [ "dispread" ],
"3" : [ "dispread" ],
"description" : [ "To spread out" ]
} ],
"disprove" : [ {
"2" : [ "disproved" ],
"3" : [ "disproven", "disproved" ],
"description" : [ "To prove that something is fake or wrong" ]
} ],
"dive" : [ {
"2" : [ "dived", "dove" ],
"3" : [ "dived" ],
"description" : [ "To jump head first into water", "To fall quickly" ]
} ],
"do" : [ {
"2" : [ "did" ],
"3" : [ "done" ],
"description" : [ "To perform or carry out" ]
} ],
"dogfight" : [ {
"2" : [ "dogfought" ],
"3" : [ "dogfought" ],
"description" : [ "To fight in aeroplanes", "To arrange a fight between dogs for sport" ]
} ],
"dow" : [ {
"2" : [ "dought", "dowed" ],
"3" : [ "dought", "dowed" ],
"description" : [ "To have the ability to do something", "To do well" ]
} ],
"draw" : [ {
"2" : [ "drew" ],
"3" : [ "drawn" ],
"description" : [ "To make a picture using a pen or pencil" ]
} ],
"dream" : [ {
"2" : [ "dreamt", "dreamed" ],
"3" : [ "dreamt", "dreamed" ],
"description" : [ "To see visual images while sleeping" ]
} ],
"drink" : [ {
"2" : [ "drank" ],
"3" : [ "drunk" ],
"description" : [ "To consume liquids" ]
} ],
"drip-feed" : [ {
"2" : [ "drip-fed" ],
"3" : [ "drip-fed" ],
"description" : [ "To feed someone with fluids going into the vein", "To release information very slowly, bit by bit" ]
} ],
"drive" : [ {
"2" : [ "drove" ],
"3" : [ "driven" ],
"description" : [ "To operate and control a car or other vehicle" ]
} ],
"dwell" : [ {
"2" : [ "dwelt" ],
"3" : [ "dwelt" ],
"description" : [ "To reside or live somewhere" ]
} ],
"eat" : [ {
"2" : [ "ate" ],
"3" : [ "eaten" ],
"description" : [ "To consume solid food" ]
} ],
"end-run" : [ {
"2" : [ "end-ran" ],
"3" : [ "end-run" ],
"description" : [ "To avoid doing something by cheating or deceit" ]
} ],
"engird" : [ {
"2" : [ "engirt" ],
"3" : [ "engirt" ],
"description" : [ "To encircle, encompass" ]
} ],
"engrave" : [ {
"2" : [ "engraved" ],
"3" : [ "engraved", "engraven" ],
"description" : [ "To carve letters or a pattern into the surface of something" ]
} ],
"enwind" : [ {
"2" : [ "enwound" ],
"3" : [ "enwound" ],
"description" : [ "To make into a coil", "To wrap around something" ]
} ],
"fall" : [ {
"2" : [ "fell" ],
"3" : [ "fallen" ],
"description" : [ "To move downwards or to the ground" ]
} ],
"fast-cut" : [ {
"2" : [ "fast-cut" ],
"3" : [ "fast-cut" ],
"description" : [ "To cut quickly from one scene to another in a film" ]
} ],
"feed" : [ {
"2" : [ "fed" ],
"3" : [ "fed" ],
"description" : [ "To give or supply food" ]
} ],
"feel" : [ {
"2" : [ "felt" ],
"3" : [ "felt" ],
"description" : [ "To sense by touch", "To experience an emotion, or sensation" ]
} ],
"fight" : [ {
"2" : [ "fought" ],
"3" : [ "fought" ],
"description" : [ "To try to hurt or kill someone in combat or war" ]
} ],
"find" : [ {
"2" : [ "found" ],
"3" : [ "found" ],
"description" : [ "To discover something either by chance or when looking for it" ]
} ],
"fit" : [ {
"2" : [ "fit", "fitted" ],
"3" : [ "fit", "fitted" ],
"description" : [ "To be the correct size, for clothes, etc. (fit/fit/fit)", "To measure someone for size (fit fit/fitted/ fit/fitted)" ]
} ],
"flash-freeze" : [ {
"2" : [ "flash-froze" ],
"3" : [ "flash-frozen" ],
"description" : [ "To freeze food very rapidly to preserve taste and nutrients" ]
} ],
"flee" : [ {
"2" : [ "fled" ],
"3" : [ "fled" ],
"description" : [ "To run away in order to find safety" ]
} ],
"fling" : [ {
"2" : [ "flung" ],
"3" : [ "flung" ],
"description" : [ "To throw or move something suddenly" ]
} ],
"floodlight" : [ {
"2" : [ "floodlit" ],
"3" : [ "floodlit" ],
"description" : [ "To use powerful lights to illuminate something outside at night" ]
} ],
"fly" : [ {
"2" : [ "flew" ],
"3" : [ "flown" ],
"description" : [ "To move through the air", "To travel by aeroplane" ]
} ],
"flyblow" : [ {
"2" : [ "flyblew" ],
"3" : [ "flyblown" ],
"description" : [ "To contaminate by laying eggs, the way a fly does" ]
} ],
"forbear" : [ {
"2" : [ "forbore" ],
"3" : [ "forborne" ],
"description" : [ "Not to use or talk about something" ]
} ],
"forbid" : [ {
"2" : [ "forbade", "forbad" ],
"3" : [ "forbidden" ],
"description" : [ "To prohibit" ]
} ],
"force-feed" : [ {
"2" : [ "force-fed" ],
"3" : [ "force-fed" ],
"description" : [ "To feed someone who refuses or doesn't want to eat" ]
} ],
"fordo" : [ {
"2" : [ "fordid" ],
"3" : [ "fordone" ],
"description" : [ "To ruin or destroy" ]
} ],
"forecast" : [ {
"2" : [ "forecast", "forecasted" ],
"3" : [ "forecast", "forecasted" ],
"description" : [ "To predict the future" ]
} ],
"forefeel" : [ {
"2" : [ "forefelt" ],
"3" : [ "forefelt" ],
"description" : [ "To have a feeling before something happens", "To have a premonition" ]
} ],
"forego" : [ {
"2" : [ "forewent" ],
"3" : [ "foregone" ],
"description" : [ "To proceed something", "To go without something" ]
} ],
"foreknow" : [ {
"2" : [ "foreknew" ],
"3" : [ "foreknown" ],
"description" : [ "To know something beforehand" ]
} ],
"forerun" : [ {
"2" : [ "foreran" ],
"3" : [ "forerun" ],
"description" : [ "To go before something", "To show that something is going to happen" ]
} ],
"foresee" : [ {
"2" : [ "foresaw" ],
"3" : [ "foreseen" ],
"description" : [ "To predict or see the future" ]
} ],
"foreshow" : [ {
"2" : [ "foreshowed" ],
"3" : [ "foreshown" ],
"description" : [ "To show something or make it known beforehand", "To foretell" ]
} ],
"forespeak" : [ {
"2" : [ "forespoke" ],
"3" : [ "forespoken" ],
"description" : [ "To predict", "To speak of something beforehand" ]
} ],
"foretell" : [ {
"2" : [ "foretold" ],
"3" : [ "foretold" ],
"description" : [ "To predict the future" ]
} ],
"forget" : [ {
"2" : [ "forgot" ],
"3" : [ "forgotten" ],
"description" : [ "To be unable to remember something" ]
} ],
"forgive" : [ {
"2" : [ "forgave" ],
"3" : [ "forgiven" ],
"description" : [ "To pardon or stop being angry with someone who has offended you" ]
} ],
"forlese" : [ {
"2" : [ "forlore" ],
"3" : [ "forlorn" ],
"description" : [ "To lose completely" ]
} ],
"forsake" : [ {
"2" : [ "forsook" ],
"3" : [ "forsaken" ],
"description" : [ "To give something up", "To abandon" ]
} ],
"forswear" : [ {
"2" : [ "forswore" ],
"3" : [ "forsworn" ],
"description" : [ "To make a false promise or oath" ]
} ],
"fraught" : [ {
"2" : [ "fraught", "fraughted" ],
"3" : [ "fraught", "fraughted" ],
"description" : [ "To stock To load a ship, etc", "To hire a ship, etc" ]
} ],
"free-fall" : [ {
"2" : [ "free-fell" ],
"3" : [ "free-fallen" ],
"description" : [ "To drop or fall suddenly", "To fall through the air without opening a parachute" ]
} ],
"freeze" : [ {
"2" : [ "froze" ],
"3" : [ "frozen" ],
"description" : [ "To make liquids into solids by cold temperatures", "To store food below zero degrees centigrade" ]
} ],
"frostbite" : [ {
"2" : [ "frostbit" ],
"3" : [ "frostbitten" ],
"description" : [ "To injure or damage part of the body through extreme cold" ]
} ],
"gainsay" : [ {
"2" : [ "gainsaid" ],
"3" : [ "gainsaid" ],
"description" : [ "To contradict or deny" ]
} ],
"geld" : [ {
"2" : [ "gelded", "gelt" ],
"3" : [ "gelded", "gelt" ],
"description" : [ "To castrate an animal" ]
} ],
"get" : [ {
"2" : [ "got" ],
"3" : [ "got", "gotten" ],
"description" : [ "To obtain, catch or receive" ]
} ],
"ghostwrite" : [ {
"2" : [ "ghostwrote" ],
"3" : [ "ghostwritten" ],
"description" : [ "To write for someone else, who will put their name as the author" ]
} ],
"gild" : [ {
"2" : [ "gilt", "gilded" ],
"3" : [ "gilt", "gilded" ],
"description" : [ "To cover something with a thin layer of gold" ]
} ],
"gin" : [ {
"2" : [ "gan" ],
"3" : [ "gan" ],
"description" : [ "To begin something" ]
} ],
"gird" : [ {
"2" : [ "girded", "girt" ],
"3" : [ "girded", "girt" ],
"description" : [ "To secure or encircle something with a belt or bend" ]
} ],
"give" : [ {
"2" : [ "gave" ],
"3" : [ "given" ],
"description" : [ "To offer something as a present" ]
} ],
"gnaw" : [ {
"2" : [ "gnawed" ],
"3" : [ "gnawed", "gnawn" ],
"description" : [ "To bite or chew", "To cause worry" ]
} ],
"go" : [ {
"2" : [ "went" ],
"3" : [ "gone", "been" ],
"description" : [ "To travel to a place" ]
} ],
"grave" : [ {
"2" : [ "graved" ],
"3" : [ "graven", "graved" ],
"description" : [ "To dig", "To carve", "To fix in the memory" ]
} ],
"grind" : [ {
"2" : [ "ground" ],
"3" : [ "ground" ],
"description" : [ "To break something into a powder" ]
} ],
"grow" : [ {
"2" : [ "grew" ],
"3" : [ "grown" ],
"description" : [ "To increase in size" ]
} ],
"hagride" : [ {
"2" : [ "hagrode" ],
"3" : [ "hagridden" ],
"description" : [ "To torment or cause nightmares" ]
} ],
"halterbreak" : [ {
"2" : [ "halterbroke" ],
"3" : [ "halterbroken" ],
"description" : [ "To break a horse in, to get it used to wearing a halter" ]
} ],
"hamstring" : [ {
"2" : [ "hamstrung", "hamstringed" ],
"3" : [ "hamstrung", "hamstringed" ],
"description" : [ "To make things difficult for someone doing something" ]
} ],
"hand-feed" : [ {
"2" : [ "hand-fed" ],
"3" : [ "hand-fed" ],
"description" : [ "To give food by hand" ]
} ],
"hand-ride" : [ {
"2" : [ "hand-rode" ],
"3" : [ "hand-ridden" ],
"description" : [ "To control an animal by hand" ]
} ],
"handsew" : [ {
"2" : [ "handsewed" ],
"3" : [ "handsewn", "handsewed" ],
"description" : [ "To sew by hand" ]
} ],
"handwrite" : [ {
"2" : [ "handwrote" ],
"3" : [ "handwritten" ],
"description" : [ "To write with a pen or pencil rather than a word processor" ]
} ],
"hang" : [ {
"2" : [ "hung", "hanged" ],
"3" : [ "hung", "hanged" ],
"description" : [ "To suspend from a support" ]
} ],
"have" : [ {
"2" : [ "had" ],
"3" : [ "had" ],
"description" : [ "To possess", "To do", "An auxiliary verb" ]
} ],
"hear" : [ {
"2" : [ "heard" ],
"3" : [ "heard" ],
"description" : [ "To detect or perceive sound" ]
} ],
"heave" : [ {
"2" : [ "heaved", "hove" ],
"3" : [ "heaved", "hove" ],
"description" : [ "To lift something heavy", "To throw something heavy" ]
} ],
"hew" : [ {
"2" : [ "hewed" ],
"3" : [ "hewn" ],
"description" : [ "To cut things into pieces" ]
} ],
"hide" : [ {
"2" : [ "hid" ],
"3" : [ "hidden" ],
"description" : [ "To conceal or put something where it cannot be seen" ]
} ],
"hight" : [ {
"2" : [ "hote", "hight" ],
"3" : [ "hoten" ],
"description" : [ "To name", "To promise", "To command" ]
} ],
"hit" : [ {
"2" : [ "hit" ],
"3" : [ "hit" ],
"description" : [ "To touch somebody or something with force" ]
} ],
"hoise" : [ {
"2" : [ "hoised", "hoist" ],
"3" : [ "hoised", "hoist" ],
"description" : [ "To hoist or lift" ]
} ],
"hoist" : [ {
"2" : [ "hoist", "hoisted" ],
"3" : [ "hoist", "hoisted" ],
"description" : [ "To raise or lift using ropes, etc" ]
} ],
"hold" : [ {
"2" : [ "held" ],
"3" : [ "held" ],
"description" : [ "To secure something in your hand", "To contain" ]
} ],
"house-sit" : [ {
"2" : [ "house-sat" ],
"3" : [ "house-sat" ],
"description" : [ "To stay in someone's house to look after it while they are away" ]
} ],
"housebreak" : [ {
"2" : [ "housebroke" ],
"3" : [ "housebroken" ],
"description" : [ "To train an animal to live in a house" ]
} ],
"hurt" : [ {
"2" : [ "hurt" ],
"3" : [ "hurt" ],
"description" : [ "To cause pain, injury or stress", "To experience pain, injury or stress" ]
} ],
"inbreed" : [ {
"2" : [ "inbred" ],
"3" : [ "inbred" ],
"description" : [ "To produce babies with health problems by sexual relations between close relatives" ]
} ],
"indwell" : [ {
"2" : [ "indwelt" ],
"3" : [ "indwelt" ],
"description" : [ "To inhabit", "To exist as a guiding principle" ]
} ],
"inhold" : [ {
"2" : [ "inheld" ],
"3" : [ "inheld" ],
"description" : [ "To have as an inherent characteristic" ]
} ],
"inlay" : [ {
"2" : [ "inlaid" ],
"3" : [ "inlaid" ],
"description" : [ "To put a different material inside another for decoration, with a flat surface" ]
} ],
"input" : [ {
"2" : [ "input", "inputted" ],
"3" : [ "input", "inputted" ],
"description" : [ "To enter data into a computer" ]
} ],
"inset" : [ {
"2" : [ "inset" ],
"3" : [ "inset" ],
"description" : [ "To put a picture or graphic inside a larger one" ]
} ],
"interblend" : [ {
"2" : [ "interblended", "interblent" ],
"3" : [ "interblended", "interblent" ],
"description" : [ "To blend things together" ]
} ],
"interbreed" : [ {
"2" : [ "interbred" ],
"3" : [ "interbred" ],
"description" : [ "To mix species or groups sexually" ]
} ],
"intercut" : [ {
"2" : [ "intercut" ],
"3" : [ "intercut" ],
"description" : [ "To move between different scenes or stories in a film or narrative" ]
} ],
"intergrave" : [ {
"2" : [ "intergraved" ],
"3" : [ "intergraved" ],
"description" : [ "To carve or engrave in alternate sections" ]
} ],
"interlay" : [ {
"2" : [ "interlaid" ],
"3" : [ "interlaid" ],
"description" : [ "To place among or between things" ]
} ],
"interset" : [ {
"2" : [ "interset" ],
"3" : [ "interset" ],
"description" : [ "To set among or between things" ]
} ],
"interweave" : [ {
"2" : [ "interwove" ],
"3" : [ "interwoven" ],
"description" : [ "To join or mix together" ]
} ],
"interwind" : [ {
"2" : [ "interwound" ],
"3" : [ "interwound" ],
"description" : [ "To wind together or intertwine" ]
} ],
"inweave" : [ {
"2" : [ "inwove", "inweaved" ],
"3" : [ "inwoven", "inweaved" ],
"description" : [ "To weave things together" ]
} ],
"inwind" : [ {
"2" : [ "inwound" ],
"3" : [ "inwound" ],
"description" : [ "To wrap or coil around" ]
} ],
"jerry-build" : [ {
"2" : [ "jerry-built" ],
"3" : [ "jerry-built" ],
"description" : [ "To build something cheaply and badly" ]
} ],
"keep" : [ {
"2" : [ "kept" ],
"3" : [ "kept" ],
"description" : [ "To have possession", "To make somebody or something stay in a particular place" ]
} ],
"ken" : [ {
"2" : [ "kent", "kenned" ],
"3" : [ "kent", "kenned" ],
"description" : [ "To know" ]
} ],
"kneel" : [ {
"2" : [ "knelt", "kneeled" ],
"3" : [ "knelt", "kneeled" ],
"description" : [ "To support yourself on your knees" ]
} ],
"knit" : [ {
"2" : [ "knit", "knitted" ],
"3" : [ "knit", "knitted" ],
"description" : [ "To make clothes such as pullovers out of wool" ]
} ],
"know" : [ {
"2" : [ "knew" ],
"3" : [ "known" ],
"description" : [ "To be acquainted with", "To have correctly in your memory" ]
} ],
"lade" : [ {
"2" : [ "laded" ],
"3" : [ "laden", "laded" ],
"description" : [ "To load (put goods onto) a ship" ]
} ],