-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathsat-words.xml
25073 lines (25073 loc) · 671 KB
/
sat-words.xml
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
<!-- Great thanks to Steve Baba at http://www.freevocabulary.com. -->
<dictionary>
<definition>
<word>abase</word>
<type>v.</type>
<meaning>To lower in position, estimation, or the like; degrade.</meaning>
</definition>
<definition>
<word>abbess</word>
<type>n.</type>
<meaning>The lady superior of a nunnery.</meaning>
</definition>
<definition>
<word>abbey</word>
<type>n.</type>
<meaning>The group of buildings which collectively form the dwelling-place of a society of monks or nuns.</meaning>
</definition>
<definition>
<word>abbot</word>
<type>n.</type>
<meaning>The superior of a community of monks.</meaning>
</definition>
<definition>
<word>abdicate</word>
<type>v.</type>
<meaning>To give up (royal power or the like).</meaning>
</definition>
<definition>
<word>abdomen</word>
<type>n.</type>
<meaning>In mammals, the visceral cavity between the diaphragm and the pelvic floor; the belly.</meaning>
</definition>
<definition>
<word>abdominal</word>
<type>n.</type>
<meaning>Of, pertaining to, or situated on the abdomen.</meaning>
</definition>
<definition>
<word>abduction</word>
<type>n.</type>
<meaning>A carrying away of a person against his will, or illegally.</meaning>
</definition>
<definition>
<word>abed</word>
<type>adv.</type>
<meaning>In bed; on a bed.</meaning>
</definition>
<definition>
<word>aberration</word>
<type>n.</type>
<meaning>Deviation from a right, customary, or prescribed course.</meaning>
</definition>
<definition>
<word>abet</word>
<type>v.</type>
<meaning>To aid, promote, or encourage the commission of (an offense).</meaning>
</definition>
<definition>
<word>abeyance</word>
<type>n.</type>
<meaning>A state of suspension or temporary inaction.</meaning>
</definition>
<definition>
<word>abhorrence</word>
<type>n.</type>
<meaning>The act of detesting extremely.</meaning>
</definition>
<definition>
<word>abhorrent</word>
<type>adj.</type>
<meaning>Very repugnant; hateful.</meaning>
</definition>
<definition>
<word>abidance</word>
<type>n.</type>
<meaning>An abiding.</meaning>
</definition>
<definition>
<word>abject</word>
<type>adj.</type>
<meaning>Sunk to a low condition.</meaning>
</definition>
<definition>
<word>abjure</word>
<type>v.</type>
<meaning>To recant, renounce, repudiate under oath.</meaning>
</definition>
<definition>
<word>able-bodied</word>
<type>adj.</type>
<meaning>Competent for physical service.</meaning>
</definition>
<definition>
<word>ablution</word>
<type>n.</type>
<meaning>A washing or cleansing, especially of the body.</meaning>
</definition>
<definition>
<word>abnegate</word>
<type>v.</type>
<meaning>To renounce (a right or privilege).</meaning>
</definition>
<definition>
<word>abnormal</word>
<type>adj.</type>
<meaning>Not conformed to the ordinary rule or standard.</meaning>
</definition>
<definition>
<word>abominable</word>
<type>adj.</type>
<meaning>Very hateful.</meaning>
</definition>
<definition>
<word>abominate</word>
<type>v.</type>
<meaning>To hate violently.</meaning>
</definition>
<definition>
<word>abomination</word>
<type>n.</type>
<meaning>A very detestable act or practice.</meaning>
</definition>
<definition>
<word>aboriginal</word>
<type>adj.</type>
<meaning>Primitive; unsophisticated.</meaning>
</definition>
<definition>
<word>aborigines</word>
<type>n.</type>
<meaning>The original of earliest known inhabitants of a country.</meaning>
</definition>
<definition>
<word>aboveboard</word>
<type>adv. adj.</type>
<meaning>Without concealment, fraud, or trickery.</meaning>
</definition>
<definition>
<word>abrade</word>
<type>v.</type>
<meaning>To wear away the surface or some part of by friction.</meaning>
</definition>
<definition>
<word>abrasion</word>
<type>n.</type>
<meaning>That which is rubbed off.</meaning>
</definition>
<definition>
<word>abridge</word>
<type>v.</type>
<meaning>To make shorter in words, keeping the essential features, leaning out minor particles.</meaning>
</definition>
<definition>
<word>abridgment</word>
<type>n.</type>
<meaning>A condensed form as of a book or play.</meaning>
</definition>
<definition>
<word>abrogate</word>
<type>v.</type>
<meaning>To abolish, repeal.</meaning>
</definition>
<definition>
<word>abrupt</word>
<type>adj.</type>
<meaning>Beginning, ending, or changing suddenly or with a break.</meaning>
</definition>
<definition>
<word>abscess</word>
<type>n.</type>
<meaning>A Collection of pus in a cavity formed within some tissue of the body.</meaning>
</definition>
<definition>
<word>abscission</word>
<type>n.</type>
<meaning>The act of cutting off, as in a surgical operation.</meaning>
</definition>
<definition>
<word>abscond</word>
<type>v.</type>
<meaning>To depart suddenly and secretly, as for the purpose of escaping arrest.</meaning>
</definition>
<definition>
<word>absence</word>
<type>n.</type>
<meaning>The fact of not being present or available.</meaning>
</definition>
<definition>
<word>absent-minded</word>
<type>adj.</type>
<meaning>Lacking in attention to immediate surroundings or business.</meaning>
</definition>
<definition>
<word>absolution</word>
<type>n.</type>
<meaning>Forgiveness, or passing over of offenses.</meaning>
</definition>
<definition>
<word>absolve</word>
<type>v.</type>
<meaning>To free from sin or its penalties.</meaning>
</definition>
<definition>
<word>absorb</word>
<type>v.</type>
<meaning>To drink in or suck up, as a sponge absorbs water.</meaning>
</definition>
<definition>
<word>absorption</word>
<type>n.</type>
<meaning>The act or process of absorbing.</meaning>
</definition>
<definition>
<word>abstain</word>
<type>v.</type>
<meaning>To keep oneself back (from doing or using something).</meaning>
</definition>
<definition>
<word>abstemious</word>
<type>adj.</type>
<meaning>Characterized by self denial or abstinence, as in the use of drink, food.</meaning>
</definition>
<definition>
<word>abstinence</word>
<type>n.</type>
<meaning>Self denial.</meaning>
</definition>
<definition>
<word>abstruse</word>
<type>adj.</type>
<meaning>Dealing with matters difficult to be understood.</meaning>
</definition>
<definition>
<word>absurd</word>
<type>adj.</type>
<meaning>Inconsistent with reason or common sense.</meaning>
</definition>
<definition>
<word>abundant</word>
<type>adj.</type>
<meaning>Plentiful.</meaning>
</definition>
<definition>
<word>abusive</word>
<type>adj.</type>
<meaning>Employing harsh words or ill treatment.</meaning>
</definition>
<definition>
<word>abut</word>
<type>v.</type>
<meaning>To touch at the end or boundary line.</meaning>
</definition>
<definition>
<word>abyss</word>
<type>n.</type>
<meaning>Bottomless gulf.</meaning>
</definition>
<definition>
<word>academic</word>
<type>adj.</type>
<meaning>Of or pertaining to an academy, college, or university.</meaning>
</definition>
<definition>
<word>academician</word>
<type>n.</type>
<meaning>A member of an academy of literature, art, or science.</meaning>
</definition>
<definition>
<word>academy</word>
<type>n.</type>
<meaning>Any institution where the higher branches of learning are taught.</meaning>
</definition>
<definition>
<word>accede</word>
<type>v.</type>
<meaning>To agree.</meaning>
</definition>
<definition>
<word>accelerate</word>
<type>v.</type>
<meaning>To move faster.</meaning>
</definition>
<definition>
<word>accept</word>
<type>v.</type>
<meaning>To take when offered.</meaning>
</definition>
<definition>
<word>access</word>
<type>n.</type>
<meaning>A way of approach or entrance; passage.</meaning>
</definition>
<definition>
<word>accessible</word>
<type>adj.</type>
<meaning>Approachable.</meaning>
</definition>
<definition>
<word>accession</word>
<type>n.</type>
<meaning>Induction or elevation, as to dignity, office, or government.</meaning>
</definition>
<definition>
<word>accessory</word>
<type>n.</type>
<meaning>A person or thing that aids the principal agent.</meaning>
</definition>
<definition>
<word>acclaim</word>
<type>v.</type>
<meaning>To utter with a shout.</meaning>
</definition>
<definition>
<word>accommodate</word>
<type>v.</type>
<meaning>To furnish something as a kindness or favor.</meaning>
</definition>
<definition>
<word>accompaniment</word>
<type>n.</type>
<meaning>A subordinate part or parts, enriching or supporting the leading part.</meaning>
</definition>
<definition>
<word>accompanist</word>
<type>n.</type>
<meaning>One who or that which accompanies.</meaning>
</definition>
<definition>
<word>accompany</word>
<type>v.</type>
<meaning>To go with, or be associated with, as a companion.</meaning>
</definition>
<definition>
<word>accomplice</word>
<type>n.</type>
<meaning>An associate in wrong-doing.</meaning>
</definition>
<definition>
<word>accomplish</word>
<type>v.</type>
<meaning>To bring to pass.</meaning>
</definition>
<definition>
<word>accordion</word>
<type>n.</type>
<meaning>A portable free-reed musical instrument.</meaning>
</definition>
<definition>
<word>accost</word>
<type>v.</type>
<meaning>To speak to.</meaning>
</definition>
<definition>
<word>account</word>
<type>n.</type>
<meaning>A record or statement of receipts and expenditures, or of business transactions.</meaning>
</definition>
<definition>
<word>accouter</word>
<type>v.</type>
<meaning>To dress.</meaning>
</definition>
<definition>
<word>accredit</word>
<type>v.</type>
<meaning>To give credit or authority to.</meaning>
</definition>
<definition>
<word>accumulate</word>
<type>v.</type>
<meaning>To become greater in quantity or number.</meaning>
</definition>
<definition>
<word>accuracy</word>
<type>n.</type>
<meaning>Exactness.</meaning>
</definition>
<definition>
<word>accurate</word>
<type>adj.</type>
<meaning>Conforming exactly to truth or to a standard.</meaning>
</definition>
<definition>
<word>accursed</word>
<type>adj.</type>
<meaning>Doomed to evil, misery, or misfortune.</meaning>
</definition>
<definition>
<word>accusation</word>
<type>n.</type>
<meaning>A charge of crime, misdemeanor, or error.</meaning>
</definition>
<definition>
<word>accusatory</word>
<type>adj.</type>
<meaning>Of, pertaining to, or involving an accusation.</meaning>
</definition>
<definition>
<word>accuse</word>
<type>v.</type>
<meaning>To charge with wrong doing, misconduct, or error.</meaning>
</definition>
<definition>
<word>accustom</word>
<type>v.</type>
<meaning>To make familiar by use.</meaning>
</definition>
<definition>
<word>acerbity</word>
<type>n.</type>
<meaning>Sourness, with bitterness and astringency.</meaning>
</definition>
<definition>
<word>acetate</word>
<type>n.</type>
<meaning>A salt of acetic acid.</meaning>
</definition>
<definition>
<word>acetic</word>
<type>adj.</type>
<meaning>Of, pertaining to, or of the nature of vinegar.</meaning>
</definition>
<definition>
<word>ache</word>
<type>v.</type>
<meaning>To be in pain or distress.</meaning>
</definition>
<definition>
<word>Achillean</word>
<type>adj.</type>
<meaning>Invulnerable.</meaning>
</definition>
<definition>
<word>achromatic</word>
<type>adj.</type>
<meaning>Colorless,</meaning>
</definition>
<definition>
<word>acid</word>
<type>n.</type>
<meaning>A sour substance.</meaning>
</definition>
<definition>
<word>acidify</word>
<type>v.</type>
<meaning>To change into acid.</meaning>
</definition>
<definition>
<word>acknowledge</word>
<type>v.</type>
<meaning>To recognize; to admit the genuineness or validity of.</meaning>
</definition>
<definition>
<word>acknowledgment</word>
<type>n.</type>
<meaning>Recognition.</meaning>
</definition>
<definition>
<word>acme</word>
<type>n.</type>
<meaning>The highest point, or summit.</meaning>
</definition>
<definition>
<word>acoustic</word>
<type>adj.</type>
<meaning>Pertaining to the act or sense of hearing.</meaning>
</definition>
<definition>
<word>acquaint</word>
<type>v.</type>
<meaning>To make familiar or conversant.</meaning>
</definition>
<definition>
<word>acquiesce</word>
<type>v.</type>
<meaning>To comply; submit.</meaning>
</definition>
<definition>
<word>acquiescence</word>
<type>n.</type>
<meaning>Passive consent.</meaning>
</definition>
<definition>
<word>acquire</word>
<type>v.</type>
<meaning>To get as one's own.</meaning>
</definition>
<definition>
<word>acquisition</word>
<type>n.</type>
<meaning>Anything gained, or made one's own, usually by effort or labor.</meaning>
</definition>
<definition>
<word>acquit</word>
<type>v.</type>
<meaning>To free or clear, as from accusation.</meaning>
</definition>
<definition>
<word>acquittal</word>
<type>n.</type>
<meaning>A discharge from accusation by judicial action.</meaning>
</definition>
<definition>
<word>acquittance</word>
<type>n.</type>
<meaning>Release or discharge from indebtedness, obligation, or responsibility.</meaning>
</definition>
<definition>
<word>acreage</word>
<type>n.</type>
<meaning>Quantity or extent of land, especially of cultivated land.</meaning>
</definition>
<definition>
<word>acrid</word>
<type>adj.</type>
<meaning>Harshly pungent or bitter.</meaning>
</definition>
<definition>
<word>acrimonious</word>
<type>adj.</type>
<meaning>Full of bitterness.</meaning>
</definition>
<definition>
<word>acrimony</word>
<type>n.</type>
<meaning>Sharpness or bitterness of speech or temper.</meaning>
</definition>
<definition>
<word>actionable</word>
<type>adj.</type>
<meaning>Affording cause for instituting an action, as trespass, slanderous words.</meaning>
</definition>
<definition>
<word>actuality</word>
<type>n.</type>
<meaning>Any reality.</meaning>
</definition>
<definition>
<word>actuary</word>
<type>n.</type>
<meaning>An officer, as of an insurance company, who calculates and states the risks and premiums.</meaning>
</definition>
<definition>
<word>actuate</word>
<type>v.</type>
<meaning>To move or incite to action.</meaning>
</definition>
<definition>
<word>acumen</word>
<type>n.</type>
<meaning>Quickness of intellectual insight, or discernment; keenness of discrimination.</meaning>
</definition>
<definition>
<word>acute</word>
<type>adj.</type>
<meaning>Having fine and penetrating discernment.</meaning>
</definition>
<definition>
<word>adamant</word>
<type>n.</type>
<meaning>Any substance of exceeding hardness or impenetrability.</meaning>
</definition>
<definition>
<word>addendum</word>
<type>n.</type>
<meaning>Something added, or to be added.</meaning>
</definition>
<definition>
<word>addle</word>
<type>v.</type>
<meaning>To make inefficient or worthless; muddle.</meaning>
</definition>
<definition>
<word>adduce</word>
<type>v.</type>
<meaning>To bring forward or name for consideration.</meaning>
</definition>
<definition>
<word>adhere</word>
<type>v.</type>
<meaning>To stick fast or together.</meaning>
</definition>
<definition>
<word>adherence</word>
<type>n.</type>
<meaning>Attachment.</meaning>
</definition>
<definition>
<word>adherent</word>
<type>adj.</type>
<meaning>Clinging or sticking fast.</meaning>
</definition>
<definition>
<word>adhesion</word>
<type>n.</type>
<meaning>The state of being attached or joined.</meaning>
</definition>
<definition>
<word>adieu</word>
<type>inter.</type>
<meaning>Good-by; farewell.</meaning>
</definition>
<definition>
<word>adjacency</word>
<type>n.</type>
<meaning>The state of being adjacent.</meaning>
</definition>
<definition>
<word>adjacent</word>
<type>n.</type>
<meaning>That which is near or bordering upon.</meaning>
</definition>
<definition>
<word>adjudge</word>
<type>v.</type>
<meaning>To award or bestow by formal decision.</meaning>
</definition>
<definition>
<word>adjunct</word>
<type>n.</type>
<meaning>Something joined to or connected with another thing, but holding a subordinate place.</meaning>
</definition>
<definition>
<word>adjuration</word>
<type>n.</type>
<meaning>A vehement appeal.</meaning>
</definition>
<definition>
<word>adjutant</word>
<type>adj.</type>
<meaning>Auxiliary.</meaning>
</definition>
<definition>
<word>administrator</word>
<type>n.</type>
<meaning>One who manages affairs of any kind.</meaning>
</definition>
<definition>
<word>admissible</word>
<type>adj.</type>
<meaning>Having the right or privilege of entry.</meaning>
</definition>
<definition>
<word>admittance</word>
<type>n.</type>
<meaning>Entrance, or the right or permission to enter.</meaning>
</definition>
<definition>
<word>admonish</word>
<type>v.</type>
<meaning>To warn of a fault.</meaning>
</definition>
<definition>
<word>admonition</word>
<type>n.</type>
<meaning>Gentle reproof.</meaning>
</definition>
<definition>
<word>ado</word>
<type>n.</type>
<meaning>unnecessary activity or ceremony.</meaning>
</definition>
<definition>
<word>adoration</word>
<type>n.</type>
<meaning>Profound devotion.</meaning>
</definition>
<definition>
<word>adroit</word>
<type>adj.</type>
<meaning>Having skill in the use of the bodily or mental powers.</meaning>
</definition>
<definition>
<word>adulterant</word>
<type>n.</type>
<meaning>An adulterating substance.</meaning>
</definition>
<definition>
<word>adulterate</word>
<type>v.</type>
<meaning>To make impure by the admixture of other or baser ingredients.</meaning>
</definition>
<definition>
<word>adumbrate</word>
<type>v.</type>
<meaning>To represent beforehand in outline or by emblem.</meaning>
</definition>
<definition>
<word>advent</word>
<type>n.</type>
<meaning>The coming or arrival, as of any important change, event, state, or personage.</meaning>
</definition>
<definition>
<word>adverse</word>
<type>adj.</type>
<meaning>Opposing or opposed.</meaning>
</definition>
<definition>
<word>adversity</word>
<type>n.</type>
<meaning>Misfortune.</meaning>
</definition>
<definition>
<word>advert</word>
<type>v.</type>
<meaning>To refer incidentally.</meaning>
</definition>
<definition>
<word>advertiser</word>
<type>n.</type>
<meaning>One who advertises, especially in newspapers.</meaning>
</definition>
<definition>
<word>advisory</word>
<type>adj.</type>
<meaning>Not mandatory.</meaning>
</definition>
<definition>
<word>advocacy</word>
<type>n.</type>
<meaning>The act of pleading a cause.</meaning>
</definition>
<definition>
<word>advocate</word>
<type>n.</type>
<meaning>One who pleads the cause of another, as in a legal or ecclesiastical court.</meaning>
</definition>
<definition>
<word>aerial</word>
<type>adj.</type>
<meaning>Of, pertaining to, or like the air.</meaning>
</definition>
<definition>
<word>aeronaut</word>
<type>n.</type>
<meaning>One who navigates the air, a balloonist.</meaning>
</definition>
<definition>
<word>aeronautics</word>
<type>n.</type>
<meaning>the art or practice of flying aircraft</meaning>
</definition>
<definition>
<word>aerostat</word>
<type>n.</type>
<meaning>A balloon or other apparatus floating in or sustained by the air.</meaning>
</definition>
<definition>
<word>aerostatics</word>
<type>n.</type>
<meaning>The branch of pneumatics that treats of the equilibrium, pressure, and mechanical properties.</meaning>
</definition>
<definition>
<word>affable</word>
<type>adj.</type>
<meaning>Easy to approach.</meaning>
</definition>
<definition>
<word>affect</word>
<type>v.</type>
<meaning>To act upon</meaning>
</definition>
<definition>
<word>affectation</word>
<type>n.</type>
<meaning>A studied or ostentatious pretense or attempt.</meaning>
</definition>
<definition>
<word>affiliate</word>
<type>n.</type>
<meaning>Some auxiliary person or thing.</meaning>
</definition>
<definition>
<word>affirmative</word>
<type>adj.</type>
<meaning>Answering yes; to a question at issue.</meaning>
</definition>
<definition>
<word>affix</word>
<type>v.</type>
<meaning>To fasten.</meaning>
</definition>
<definition>
<word>affluence</word>
<type>n.</type>
<meaning>A profuse or abundant supply of riches.</meaning>
</definition>
<definition>
<word>affront</word>
<type>n.</type>
<meaning>An open insult or indignity.</meaning>
</definition>
<definition>
<word>afire</word>
<type>adv. adj.</type>
<meaning>On fire, literally or figuratively.</meaning>
</definition>
<definition>
<word>afoot</word>
<type>adv.</type>
<meaning>In progress.</meaning>
</definition>
<definition>
<word>aforesaid</word>
<type>adj.</type>
<meaning>Said in a preceding part or before.</meaning>
</definition>
<definition>
<word>afresh</word>
<type>adv.</type>
<meaning>Once more, after rest or interval.</meaning>
</definition>
<definition>
<word>afterthought</word>
<type>n.</type>
<meaning>A thought that comes later than its appropriate or expected time.</meaning>
</definition>
<definition>
<word>agglomerate</word>
<type>v.</type>
<meaning>To pile or heap together.</meaning>
</definition>
<definition>
<word>aggrandize</word>
<type>v.</type>
<meaning>To cause to appear greatly.</meaning>
</definition>
<definition>
<word>aggravate</word>
<type>v.</type>
<meaning>To make heavier, worse, or more burdensome.</meaning>
</definition>
<definition>
<word>aggravation</word>
<type>n.</type>
<meaning>The fact of being made heavier or more heinous, as a crime , offense, misfortune, etc.</meaning>
</definition>
<definition>
<word>aggregate</word>
<type>n.</type>
<meaning>The entire number, sum, mass, or quantity of something.</meaning>
</definition>
<definition>
<word>aggress</word>
<type>v.</type>
<meaning>To make the first attack.</meaning>
</definition>
<definition>
<word>aggression</word>
<type>n.</type>
<meaning>An unprovoked attack.</meaning>
</definition>
<definition>
<word>aggrieve</word>
<type>v.</type>
<meaning>To give grief or sorrow to.</meaning>
</definition>
<definition>
<word>aghast</word>
<type>adj.</type>
<meaning>Struck with terror and amazement.</meaning>
</definition>
<definition>
<word>agile</word>
<type>adj.</type>
<meaning>Able to move or act quickly, physically, or mentally.</meaning>
</definition>
<definition>
<word>agitate</word>
<type>v.</type>
<meaning>To move or excite (the feelings or thoughts).</meaning>
</definition>
<definition>
<word>agrarian</word>
<type>adj.</type>
<meaning>Pertaining to land, especially agricultural land.</meaning>
</definition>
<definition>
<word>aide-de-camp</word>
<type>n.</type>
<meaning>An officer who receives and transmits the orders of the general.</meaning>
</definition>
<definition>
<word>ailment</word>
<type>n.</type>
<meaning>Slight sickness.</meaning>
</definition>
<definition>
<word>airy</word>
<type>adj.</type>
<meaning>Delicate, ethereal.</meaning>
</definition>
<definition>
<word>akin</word>
<type>adj.</type>
<meaning>Of similar nature or qualities.</meaning>
</definition>
<definition>
<word>alabaster</word>
<type>n.</type>
<meaning>A white or delicately tinted fine-grained gypsum.</meaning>
</definition>
<definition>
<word>alacrity</word>
<type>n.</type>
<meaning>Cheerful willingness.</meaning>
</definition>
<definition>
<word>albeit</word>
<type>conj.</type>
<meaning>Even though.</meaning>
</definition>
<definition>
<word>albino</word>
<type>n.</type>
<meaning>A person with milky white skin and hair, and eyes with bright red pupil and usually pink iris.</meaning>
</definition>
<definition>
<word>album</word>
<type>n.</type>
<meaning>A book whose leaves are so made to form paper frames for holding photographs or the like.</meaning>
</definition>
<definition>
<word>alchemy</word>
<type>n.</type>
<meaning>Chemistry of the middle ages, characterized by the pursuit of changing base metals to gold.</meaning>
</definition>
<definition>
<word>alcohol</word>
<type>n.</type>
<meaning>A volatile, inflammable, colorless liquid of a penetrating odor and burning taste.</meaning>
</definition>
<definition>
<word>alcoholism</word>
<type>n.</type>
<meaning>A condition resulting from the inordinate or persistent use of alcoholic beverages.</meaning>
</definition>
<definition>
<word>alcove</word>
<type>n.</type>
<meaning>A covered recess connected with or at the side of a larger room.</meaning>
</definition>
<definition>
<word>alder</word>
<type>n.</type>
<meaning>Any shrub or small tree of the genus Alumnus, of the oak family.</meaning>
</definition>
<definition>
<word>alderman</word>
<type>n.</type>
<meaning>A member of a municipal legislative body, who usually exercises also certain judicial functions.</meaning>
</definition>
<definition>
<word>aldermanship</word>
<type>n.</type>
<meaning>The dignity, condition, office, or term of office of an alderman.</meaning>
</definition>
<definition>
<word>alias</word>
<type>n.</type>
<meaning>An assumed name.</meaning>
</definition>
<definition>
<word>alien</word>
<type>n.</type>
<meaning>One who owes allegiance to a foreign government.</meaning>
</definition>
<definition>
<word>alienable</word>
<type>adj.</type>
<meaning>Capable of being aliened or alienated, as lands.</meaning>
</definition>
<definition>
<word>alienate</word>
<type>v.</type>
<meaning>To cause to turn away.</meaning>
</definition>
<definition>
<word>alienation</word>
<type>n.</type>
<meaning>Estrangement.</meaning>
</definition>
<definition>
<word>aliment</word>
<type>n.</type>
<meaning>That which nourishes.</meaning>
</definition>
<definition>
<word>alkali</word>
<type>n.</type>
<meaning>Anything that will neutralize an acid, as lime, magnesia, etc.</meaning>
</definition>
<definition>
<word>allay</word>
<type>v.</type>
<meaning>To calm the violence or reduce the intensity of; mitigate.</meaning>
</definition>
<definition>
<word>allege</word>
<type>v.</type>