-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathEN_syn_verb.txt
1002 lines (1002 loc) · 20.1 KB
/
EN_syn_verb.txt
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
https://powcoder.com
代写代考加微信 powcoder
Assignment Project Exam Help
Add WeChat powcoder
Input.word Answer.suggestion
to_interpret to_clarify
to_interpret to_explain
to_interpret to_explain
to_interpret to_understand
to_interpret to_clarify
to_interpret to_make_sense_of
to_interpret to_decipher
to_interpret to_decipher
to_interpret to_understand
to_interpret to_translate
to_emasculate to_weaken
to_emasculate to_weaken
to_emasculate to_weaken
to_emasculate to_weaken
to_emasculate to_make_feminine
to_emasculate to_castrate
to_emasculate to_castrate
to_emasculate to_weaken
to_emasculate to_criticize
to_emasculate to_be_strong
to_battle to_fight
to_battle to_fight
to_battle to_fight
to_battle to_wage_war
to_battle to_fight
to_battle to_fight
to_battle to_fight
to_battle 0
to_battle to_fight
to_battle to_fight
to_streamline to_make_easier
to_streamline to_simplify
to_streamline to_organize
to_streamline to_clean_up
to_streamline to_smooth
to_streamline to_concentrate
to_streamline to_simplify
to_streamline to_make_efficient
to_streamline to_make_efficient
to_streamline to_centralize
to_boom 0
to_boom to_bang
to_boom to_grow
to_boom to_bang
to_boom to_blast
to_boom 0
to_boom to_bang
to_boom to_grow
to_boom to_make_noise
to_boom to_explode
to_journey to_travel
to_journey to_travel
to_journey to_travel
to_journey to_travel
to_journey to_travel
to_journey to_travel
to_journey 0
to_journey to_go_on_vacation
to_journey to_travel
to_journey to_travel
to_inscribe to_engrave
to_inscribe to_engrave
to_inscribe to_write
to_inscribe to_write
to_inscribe to_write
to_inscribe to_dedicate
to_inscribe to_imprint
to_inscribe to_cut
to_inscribe to_write
to_inscribe to_carve
to_invade to_conquer
to_invade to_attack
to_invade to_overtake
to_invade to_break_in
to_invade to_enter
to_invade to_conquer
to_invade to_conquer
to_invade to_encroach
to_invade to_intrude
to_invade to_attack
to_toil to_pain
to_toil to_work
to_toil to_work
to_toil to_work
to_toil 0
to_toil to_struggle
to_toil to_struggle
to_toil to_labor
to_toil to_work_hard
to_toil to_work
to_confine to_restrict
to_confine to_imprison
to_confine to_hold
to_confine to_restrict
to_confine to_enclose
to_confine to_bind
to_confine to_keep
to_confine to_limit
to_confine to_restrict
to_confine to_restrict
to_lump to_amass
to_lump to_group
to_lump to_group
to_lump to_bump
to_lump to_group
to_lump to_bump
to_lump to_accumulate
to_lump to_accumulate
to_lump to_heap
to_lump to_ball
to_organise to_group
to_organise 0
to_organise to_group
to_organise to_adapt
to_organise to_arrange
to_organise to_clean
to_organise to_arrange
to_organise to_arrange
to_organise to_arrange
to_organise to_arrange
to_edit to_alter
to_edit to_change
to_edit to_change
to_edit to_correct
to_edit to_correct
to_edit to_refine
to_edit to_correct
to_edit to_modify
to_edit to_rewrite
to_edit to_change
to_aggregate to_assemble
to_aggregate to_total
to_aggregate to_open
to_aggregate to_mix
to_aggregate to_add_up
to_aggregate to_gather
to_aggregate to_compile
to_aggregate to_gather
to_aggregate to_group
to_aggregate to_accumulate
to_critique to_review
to_critique to_comment
to_critique to_evaluate
to_critique to_assess
to_critique to_comment
to_critique to_study
to_critique to_review
to_critique to_judge
to_critique to_evaluate
to_critique to_review
to_disjoint to_disarrange
to_disjoint to_dislocate
to_disjoint to_separate
to_disjoint to_take_apart
to_disjoint to_dislocate
to_disjoint to_dismember
to_disjoint to_disturb
to_disjoint to_separate
to_disjoint to_take_apart
to_disjoint to_separate
to_court 0
to_court to_flirt
to_court to_woo
to_court to_date
to_court to_woo
to_court to_date
to_court to_flatter
to_court to_date
to_court to_woo
to_court to_date
to_intoxicate to_elate
to_intoxicate to_addle
to_intoxicate to_excite
to_intoxicate to_poison
to_intoxicate to_excite
to_intoxicate to_inebriate
to_intoxicate 0
to_intoxicate to_mix_up
to_intoxicate to_stimulate
to_intoxicate to_exhilarate
to_contrast to_adverse
to_contrast to_oppose
to_contrast to_compare
to_contrast to_show_differences
to_contrast to_compare
to_contrast to_oppose
to_contrast to_distinguish
to_contrast to_disparity
to_contrast to_disparity
to_contrast to_differentiate
to_swat to_flat
to_swat to_hit
to_swat to_hit
to_swat 0
to_swat to_hit
to_swat to_hit
to_swat to_squash
to_swat to_whack
to_swat to_paste
to_swat to_slap
to_whisper to_report
to_whisper to_breathe
to_whisper to_murmur
to_whisper to_murmur
to_whisper to_rustle
to_whisper to_speak_softly
to_whisper to_murmur
to_whisper to_talk_softly
to_whisper to_murmur
to_whisper to_speak_secretly
to_appall to_disgust
to_appall to_frighten
to_appall 0
to_appall to_discourage_with_fear
to_appall to_shock
to_appall to_dishonour
to_appall to_shock
to_appall to_shock
to_appall to_upset
to_appall to_offend
to_hone to_polish
to_hone to_sharpen
to_hone to_sharpen
to_hone to_sharpen
to_hone to_sharpen
to_hone to_sharpen
to_hone to_acquire
to_hone to_sharpen
to_hone to_whet
to_hone to_shape
to_consist to_include
to_consist to_include
to_consist to_enclose
to_consist to_comprise
to_consist to_be_formed
to_consist to_be
to_consist to_correspond
to_consist to_be_made_up_of
to_consist to_makeup
to_consist to_include
to_polish to_shine
to_polish to_smooth
to_polish to_rub
to_polish to_buff
to_polish to_make_smooth
to_polish to_shine
to_polish to_refine
to_polish to_shine
to_polish to_smooth
to_polish to_smooth
to_arrive to_reach
to_arrive to_reach
to_arrive to_arrive
to_arrive to_get_to
to_arrive to_show_up
to_arrive to_land
to_arrive to_enter
to_arrive to_reach
to_arrive to_come
to_arrive to_reach
to_arrive to_reach
to_pontificate to_conceit
to_pontificate to_think
to_pontificate to_rule
to_pontificate to_expound
to_pontificate to_lecture
to_pontificate to_evangelize
to_pontificate to_address
to_pontificate to_lecture
to_pontificate to_orate
to_pontificate to_preach
to_foist to_deceive
to_foist to_uproot
to_foist to_force
to_foist to_pass_off
to_foist to_deceive
to_foist to_impose
to_foist to_lift
to_foist 0
to_foist to_force_upon
to_foist 0
to_slam to_shut_forcefully
to_slam to_throw
to_slam to_hit
to_slam to_criticize
to_slam to_hit
to_slam to_put_down
to_slam to_bang
to_slam to_slap
to_slam to_bang
to_slam to_bang
to_diagnose to_identify
to_diagnose to_ascertain
to_diagnose to_identify
to_diagnose to_discern
to_diagnose to_solve
to_diagnose to_determine
to_diagnose to_identify
to_diagnose to_conclude
to_diagnose to_explain
to_diagnose to_determine
to_alert to_warn
to_alert to_alarm
to_alert to_warn
to_alert to_warn
to_alert to_notify
to_alert to_warn
to_alert to_warn
to_alert to_warn
to_alert to_warn
to_alert to_heads_up
to_accustom to_become_familiar
to_accustom to_get_used_to
to_accustom 0
to_accustom to_familiarize
to_accustom to_familiarize
to_accustom to_familiarize
to_accustom to_get
to_accustom to_know
to_accustom to_adapt
to_accustom to_orient
to_accustom to_familiarize
to_deduce to_reason
to_deduce to_reason
to_deduce to_determine
to_deduce to_conclude
to_deduce to_conclude
to_deduce to_figure_out
to_deduce to_reason
to_deduce to_conclude
to_deduce to_discover
to_deduce to_conclude
to_screech to_scream
to_screech to_scream
to_screech to_scream
to_screech to_shriek
to_screech to_shriek
to_screech to_shriek
to_screech to_scream
to_screech to_whine
to_screech to_shriek
to_screech to_scream
to_replicate to_reproduce
to_replicate to_copy
to_replicate to_duplicate
to_replicate to_duplicate
to_replicate to_copy
to_replicate to_copy
to_replicate to_duplicate
to_replicate to_duplicate
to_replicate to_copy
to_replicate to_copy
to_park to_insert
to_park to_bring_to_a_stop
to_park to_stop
to_park to_place
to_park to_cuddle
to_park to_place
to_park to_leave
to_park to_store
to_park to_place
to_park to_settle
to_whisk to_whip
to_whisk to_rush
to_whisk to_stir
to_whisk to_sweep
to_whisk to_stir
to_whisk to_whip
to_whisk to_stir
to_whisk to_stir
to_whisk to_stir_briskly
to_whisk to_stir
to_term 0
to_term to_name
to_term to_finish
to_term to_designate
to_term to_phrase
to_term 0
to_term to_time
to_term to_define
to_term to_name
to_term to_name
to_pardon to_forgive
to_pardon to_forgive
to_pardon to_forgive
to_pardon to_excuse
to_pardon to_exonerate
to_pardon to_excuse
to_pardon to_forgive
to_pardon to_absolve
to_pardon to_exonerate
to_pardon to_forgive
to_try to_attempt
to_try to_attempt
to_try to_attempt
to_try to_attempt
to_try to_attempt
to_try to_attempt
to_try to_attempt
to_try to_attempt
to_try to_attempt
to_try to_attempt
to_bulge to_distend
to_bulge to_expand
to_bulge to_protrude
to_bulge to_expand
to_bulge to_swell
to_bulge to_swell
to_bulge to_protrude
to_bulge to_swell
to_bulge to_expand
to_deteriorate to_fall_apart
to_deteriorate to_decay
to_deteriorate to_depreciate
to_deteriorate to_fall_apart
to_deteriorate to_crumble
to_deteriorate to_decay
to_deteriorate to_fade
to_deteriorate to_worsen
to_deteriorate to_depreciate
to_deteriorate to_corrode
to_power to_turn_on
to_power to_energize
to_power to_charge
to_power to_overwhelm
to_power to_charge
to_power to_electrify
to_power to_energize
to_power to_energize
to_power to_fuel
to_power to_function
to_spring to_jump
to_spring to_jump
to_spring to_lunge
to_spring to_jump
to_spring to_jump
to_spring to_hop
to_spring to_leap
to_spring to_jump
to_spring to_bound
to_spring to_bounce
to_redirect to_divert
to_redirect to_reroute
to_redirect to_deflect
to_redirect to_reset
to_redirect to_reinstruct
to_redirect to_change_course
to_redirect to_resend
to_redirect to_divert
to_redirect to_refocus
to_redirect to_switch
to_bop to_hit
to_bop to_dance
to_bop to_hit
to_bop to_dance
to_bop to_punch
to_bop to_hit
to_bop 0
to_bop to_bounce
to_bop to_hit
to_bop to_smack
to_catalogue to_file
to_catalogue to_inventory
to_catalogue to_organize
to_catalogue to_sort
to_catalogue to_record
to_catalogue to_sort
to_catalogue to_list
to_catalogue to_classify
to_catalogue to_collect
to_catalogue to_classify
to_invalidate to_undermine
to_invalidate 0
to_invalidate to_disallow
to_invalidate to_reject
to_invalidate to_void
to_invalidate to_disprove
to_invalidate to_discredit
to_invalidate to_abolish
to_invalidate to_discredit
to_invalidate to_disprove
to_strum to_play
to_strum to_stroke
to_strum to_finger
to_strum to_pluck
to_strum to_pluck
to_strum to_play_an_instrument
to_strum to_play
to_strum to_play
to_strum to_stroke
to_strum to_pick
to_corrupt to_spoil
to_corrupt to_pollute
to_corrupt to_exploit
to_corrupt to_dirty
to_corrupt to_despoil
to_corrupt to_pollute
to_corrupt to_twist
to_corrupt to_make_evil
to_corrupt to_damage
to_corrupt to_demoralize
to_confer to_discuss
to_confer to_ask
to_confer to_discuss
to_confer to_give
to_confer to_talk_together
to_confer to_discuss
to_confer to_consult
to_confer to_consult
to_confer to_discuss
to_confer to_discuss
to_pine to_love_deeply
to_pine to_long_for
to_pine to_yearn
to_pine to_long
to_pine to_desire
to_pine to_want
to_pine to_long_for
to_pine to_want
to_pine to_want
to_pine to_yearn
to_arm to_carry
to_arm to_hold_a_gun
to_arm to_prime
to_arm to_weaponize
to_arm to_activate
to_arm to_secure
to_arm to_carry
to_arm to_give_weapons
to_arm to_protect
to_arm to_fortify
to_zone to_separate
to_zone to_mark_off
to_zone to_focus
to_zone to_categorize
to_zone to_limit
to_zone to_disconnect
to_zone to_focus
to_zone to_cordon
to_zone to_tune_out
to_zone to_restrict
to_fan to_air
to_fan to_blow_on
to_fan to_aerate
to_fan to_circulate_air
to_fan to_wind
to_fan to_blow_air
to_fan to_wave
to_fan to_flap
to_fan to_blow
to_fan to_spread
to_rub to_massage
to_rub to_buff
to_rub to_pressure
to_rub to_massage
to_rub to_abrade
to_rub to_massage
to_rub to_caress
to_rub to_massage
to_rub to_stroke
to_rub to_massage
to_trim to_cut
to_trim to_pare
to_trim to_cut
to_trim to_cut
to_trim to_cut
to_trim to_cut
to_trim to_reduce
to_trim to_shorten
to_trim to_cut
to_trim to_cut
to_zigzag to_weave
to_zigzag to_avoid
to_zigzag to_swerve
to_zigzag to_weave
to_zigzag to_weave
to_zigzag to_weave
to_zigzag to_move
to_zigzag to_undulate
to_zigzag to_evade
to_zigzag to_cross
to_construe to_assume
to_construe to_imply
to_construe to_interpret
to_construe to_figure_out
to_construe to_interpret
to_construe to_infer
to_construe to_infer
to_construe to_interpret
to_construe to_translate
to_construe to_understand
to_contaminate to_dirty
to_contaminate to_get_dirty
to_contaminate to_ruin
to_contaminate to_infect
to_contaminate to_infect
to_contaminate to_taint
to_contaminate to_despoil
to_contaminate to_pollute
to_contaminate to_poison
to_contaminate to_spoil
to_kill to_murder
to_kill to_obliterate
to_kill to_murder
to_kill to_murder
to_kill to_slay
to_kill to_murder
to_kill to_end
to_kill to_terminate
to_kill to_murder
to_kill to_terminate
to_spiral to_twist
to_spiral to_wind
to_spiral to_cascade
to_spiral to_twist
to_spiral to_wind
to_spiral to_spin_in_circles
to_spiral to_spin
to_spiral to_spin
to_spiral to_spin
to_spiral to_spin
to_export to_ship
to_export to_send
to_export to_offshore
to_export to_ship
to_export to_ship
to_export to_send
to_export to_trade
to_export to_ship
to_export to_ship
to_export to_send_away
to_lop to_chop
to_lop to_trim
to_lop to_cut
to_lop to_chop
to_lop to_cut
to_lop to_cut
to_lop to_cut
to_lop to_glob
to_lop to_chop
to_lop to_cut
to_scribe to_write
to_scribe to_write
to_scribe to_write
to_scribe to_write
to_scribe to_write
to_scribe to_write
to_scribe to_write
to_scribe to_write
to_scribe to_write
to_scribe to_write
to_inhabit to_dwell
to_inhabit to_dwell
to_inhabit to_live
to_inhabit to_live
to_inhabit to_live
to_inhabit to_live
to_inhabit to_live
to_inhabit to_reside
to_inhabit to_occupy
to_inhabit to_occupy
to_nose to_sniff
to_nose to_neb
to_nose to_edge_out
to_nose to_poke
to_nose to_sniff
to_nose to_inquire
to_nose to_sidle
to_nose to_investigate
to_nose to_snoop
to_nose to_dig
to_abdicate to_renounce
to_abdicate to_give_up
to_abdicate 0
to_abdicate to_renounce
to_abdicate to_forgo
to_abdicate to_forgo
to_abdicate to_cede
to_abdicate to_disengage
to_abdicate to_give_up
to_abdicate to_relinquish
to_uplift to_raise
to_uplift to_support
to_uplift to_inspire
to_uplift to_rise
to_uplift to_elevate
to_uplift to_raise
to_uplift to_encourage
to_uplift to_encourage
to_uplift to_inspire
to_uplift to_encourage
to_uplift to_raise
to_sum to_add
to_sum to_total
to_sum to_add
to_sum to_add
to_sum to_total
to_sum to_add
to_sum to_add
to_sum to_add
to_sum to_add
to_sum to_conclude
to_sum to_total
to_constrict to_compress
to_constrict to_close
to_constrict to_tighten
to_constrict to_squeeze
to_constrict to_compress
to_constrict to_squeeze
to_constrict to_obstruct
to_constrict to_tighten
to_constrict to_restrain
to_constrict to_tighten
to_implicate to_imply
to_implicate to_suggest
to_implicate to_imply
to_implicate to_assume
to_implicate to_involve
to_implicate to_accuse
to_implicate to_accuse
to_implicate to_associate
to_implicate to_associate
to_implicate to_imply
to_document to_record
to_document to_record
to_document to_record
to_document to_declare
to_document to_record
to_document to_scribe
to_document to_certificate
to_document to_write_down
to_document to_record
to_document to_write_down
to_fancy to_like
to_fancy to_like
to_fancy to_desire
to_fancy to_admire
to_fancy to_imagine
to_fancy to_want
to_fancy to_like
to_fancy to_believe
to_fancy to_like
to_fancy to_desire
to_wink 0
to_wink to_gesture
to_wink to_blink
to_wink to_blink_one_eye
to_wink to_blink
to_wink to_blink_one_eye
to_wink to_squint
to_wink to_bat
to_wink to_close_one_eye
to_wink to_flash
to_split to_break_up
to_split to_break
to_split to_separate
to_split to_divide
to_split to_separate
to_split to_separate
to_split to_separate
to_split to_divide
to_split to_divide
to_split to_divide
to_ink to_sign
to_ink to_write
to_ink to_mark
to_ink to_write
to_ink to_tattoo
to_ink to_sign
to_ink to_color
to_ink to_write
to_ink to_dye
to_ink to_print
to_tour to_travel
to_tour to_travel
to_tour to_take_a_journey
to_tour to_visit
to_tour to_visit
to_tour to_travel
to_tour to_inspect
to_tour to_travel
to_tour to_travel
to_tour to_visit
to_resonate to_echo
to_resonate to_have_meaning
to_resonate to_echo
to_resonate to_resound
to_resonate to_reverberate
to_resonate to_reproduce
to_resonate to_echo
to_resonate to_reverberate
to_resonate to_strike_a_chord
to_resonate to_sound
to_tabulate to_create_columns
to_tabulate to_record
to_tabulate to_total
to_tabulate 0
to_tabulate to_calculate
to_tabulate to_organize
to_tabulate to_compile
to_tabulate to_tally
to_tabulate to_add
to_tabulate 0
to_picture to_imagine
to_picture to_imagine
to_picture to_imagine
to_picture to_illustrate
to_picture to_imagine
to_picture to_visualize
to_picture to_visualize
to_picture to_visualize
to_picture to_imagine
to_picture to_imagine
to_bill to_charge
to_bill to_account
to_bill to_charge
to_bill to_charge
to_bill to_invoice
to_bill to_charge
to_bill to_charge
to_bill to_charge
to_bill to_charge
to_bill to_invoice
to_devolve to_pass_on
to_devolve to_come_apart
to_devolve to_transfer
to_devolve to_fragment
to_devolve to_come_apart
to_devolve to_regress
to_devolve to_regress
to_devolve to_deteriorate
to_devolve to_transfer
to_devolve to_pass
to_devolve to_pass_on
to_misconstrue to_misunderstand
to_misconstrue to_misinterpret
to_misconstrue to_mistake
to_misconstrue to_understand_wrongly
to_misconstrue to_misinterpret
to_misconstrue to_misinterpret
to_misconstrue to_misunderstand
to_misconstrue to_misunderstand
to_misconstrue to_twist
to_misconstrue to_misunderstand
to_disclose to_inform
to_disclose to_share
to_disclose to_let_escape
to_disclose to_reveal
to_disclose to_show
to_disclose to_inform
to_disclose to_reveal
to_disclose to_tell
to_disclose to_reveal
to_disclose to_reveal
to_immobilize to_stun
to_immobilize to_stop
to_immobilize to_stop
to_immobilize to_come_together
to_immobilize to_sit_still
to_immobilize to_stagnate
to_immobilize to_stop
to_immobilize to_stop
to_immobilize to_stop
to_immobilize to_hold_still
to_evidence to_prove
to_evidence to_collect
to_evidence to_see
to_evidence to_prove
to_evidence to_prove
to_evidence 0
to_evidence to_create_proof
to_evidence to_provide_proof
to_evidence to_proof
to_evidence to_show
to_evidence to_show
to_make to_create
to_make to_create
to_make to_create
to_make to_create
to_make to_produce
to_make to_create
to_make to_prepare
to_make to_create
to_make to_create
to_make to_create
to_iron to_press
to_iron to_flatten
to_iron to_press
to_iron to_press
to_iron to_press
to_iron to_press
to_iron to_press
to_iron to_press
to_iron to_smooth_out
to_iron to_flatten
to_twinkle to_sparkle
to_twinkle to_shine
to_twinkle to_sparkle
to_twinkle to_sparkle
to_twinkle to_sparkle
to_twinkle to_sparkle
to_twinkle to_sparkle
to_twinkle to_sparkle
to_twinkle to_sparkle
to_twinkle to_shine
to_twinkle to_sparkle
to_structure to_build
to_structure to_form
to_structure to_arrange
to_structure to_plan
to_structure to_plan
to_structure to_build
to_structure to_form
to_structure to_formulate
to_structure to_create
to_structure to_put_together
to_structure to_frame
to_abuse to_beat
to_abuse to_hurt
to_abuse to_misuse
to_abuse to_hurt
to_abuse to_misuse
to_abuse to_mistreat
to_abuse to_hurt
to_abuse to_mistreat
to_abuse to_beat
to_abuse to_hurt
to_achieve to_accomplish
to_achieve to_obtain
to_achieve to_accomplish
to_achieve to_succeed
to_achieve to_succeed
to_achieve to_accomplish
to_achieve to_accomplish
to_achieve to_accomplish
to_achieve to_succeed
to_achieve to_get
to_allude to_evade
to_allude to_touch
to_allude to_reference
to_allude to_evade
to_allude to_refer
to_allude to_insinuate
to_allude to_imply
to_allude to_imply
to_allude to_suggest
to_allude to_imply
to_amalgamate to_equal
to_amalgamate to_mingle
to_amalgamate to_combine
to_amalgamate to_join
to_amalgamate to_consolidate
to_amalgamate to_aggregate
to_amalgamate to_combine
to_amalgamate to_unite
to_amalgamate to_blend
to_amalgamate to_blend
to_furl 0
to_furl to_roll
to_furl to_wrap
to_furl to_roll_up
to_furl to_frown
to_furl to_wrap
to_furl to_curl
to_furl to_spread
to_furl to_roll_up
to_furl to_roll_up
to_awaken to_rise
to_awaken to_arouse
to_awaken to_arise
to_awaken to_wake
to_awaken to_arise
to_awaken to_wake_up
to_awaken to_wake_up
to_awaken to_wake_up
to_awaken to_rise
to_awaken to_wake_up
to_simper to_grin
to_simper 0
to_simper to_smirk
to_simper to_smirk
to_simper to_be_coy
to_simper to_smirk
to_simper 0
to_simper to_whine
to_simper to_smile
to_simper to_smile
to_fight to_battle
to_fight to_battle
to_fight to_grapple
to_fight to_quarrel
to_fight to_brawl
to_fight to_contend
to_fight to_battle
to_fight to_attack