-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathwordList2.csv
More file actions
We can make this file beautiful and searchable if this error is corrected: It looks like row 2 should actually have 1 column, instead of 3 in line 1.
1002 lines (1002 loc) · 46.6 KB
/
Copy pathwordList2.csv
File metadata and controls
1002 lines (1002 loc) · 46.6 KB
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
word
word,desc,level
consider,deem to be,1
minute,infinitely or immeasurably small,1
accord,concurrence of opinion,1
evident,clearly revealed to the mind or the senses or judgment,1
practice,a customary way of operation or behavior,1
intend,have in mind as a purpose,1
concern,something that interests you because it is important,1
commit,perform an act usually with a negative connotation,1
issue,some situation or event that is thought about,1
approach,move towards,1
establish,set up or found,1
utter,without qualification,1
conduct,direct the course of manage or control,1
engage,consume all of ones attention or time,1
obtain,come into possession of,1
scarce,deficient in quantity or number compared with the demand,1
policy,a plan of action adopted by an individual or social group,1
straight,successive without a break,1
stock,capital raised by a corporation through the issue of shares,1
apparent,clearly revealed to the mind or the senses or judgment,1
property,a basic or essential attribute shared by members of a class,1
fancy,imagine conceive of see in ones mind,1
concept,an abstract or general idea inferred from specific instances,1
court,an assembly to conduct judicial business,1
appoint,assign a duty responsibility or obligation to,1
passage,a section of text particularly a section of medium length,1
vain,unproductive of success,1
instance,an occurrence of something,1
coast,the shore of a sea or ocean,1
project,a planned undertaking,1
commission,a special group delegated to consider some matter,1
constant,a quantity that does not vary,1
circumstances,ones overall condition in life,1
constitute,compose or represent,1
level,a relative position or degree of value in a graded group,1
affect,have an influence upon,1
institute,set up or lay the groundwork for,1
render,give an interpretation of,1
appeal,be attractive to,1
generate,bring into existence,1
theory,a wellsubstantiated explanation of some aspect of the world,1
range,a variety of different things or activities,1
campaign,a race between candidates for elective office,1
league,an association of sports teams that organizes matches,1
labor,any piece of work that is undertaken or attempted,1
confer,have a meeting in order to talk something over,1
grant,allow to have,1
dwell,think moodily or anxiously about something,1
entertain,provide amusement for,1
contract,a binding agreement that is enforceable by law,1
earnest,characterized by a firm sincere belief in ones opinions,1
yield,give or supply,1
wander,move or cause to move in a sinuous or circular course,1
insist,be emphatic or resolute and refuse to budge,1
knight,a person of noble birth trained to arms and chivalry,1
convince,make realize the truth or validity of something,1
inspire,serve as the inciting cause of,1
convention,a large formal assembly,1
skill,an ability that has been acquired by training,1
harry,annoy continually or chronically,1
financial,involving fiscal matters,1
reflect,show an image of,1
novel,an extended fictional work in prose,1
furnish,provide with objects or articles that make a room usable,1
compel,force somebody to do something,1
venture,proceed somewhere despite the risk of possible dangers,1
territory,the geographical area under the jurisdiction of a state,1
temper,a characteristic state of feeling,1
bent,fixed in your purpose,1
intimate,marked by close acquaintance association or familiarity,1
undertake,enter upon an activity or enterprise,1
majority,more than half of the votes in an election,1
assert,declare or affirm solemnly and formally as true,1
crew,the people who work on a vehicle,1
chamber,a natural or artificial enclosed space,1
humble,marked by meekness or modesty not arrogant or prideful,1
scheme,an elaborate and systematic plan of action,1
keen,demonstrating ability to recognize or draw fine distinctions,1
liberal,having political views favoring reform and progress,1
despair,a state in which all hope is lost or absent,1
tide,the periodic rise and fall of the sea level,1
attitude,a complex mental state involving beliefs and feelings,1
justify,show to be reasonable or provide adequate ground for,1
flag,a rectangular piece of cloth of distinctive design,1
merit,any admirable or beneficial attribute,1
manifest,reveal its presence or make an appearance,1
notion,a general inclusive concept,1
scale,relative magnitude,1
formal,characteristic of or befitting a person in authority,1
resource,a new or reserve supply that can be drawn upon when needed,1
persist,continue to exist,1
contempt,lack of respect accompanied by a feeling of intense dislike,1
tour,a route all the way around a particular place or area,1
plead,enter a defendants answer,1
weigh,be oppressive or burdensome,1
mode,how something is done or how it happens,1
distinction,a discrimination between things as different,1
inclined,at an angle to the horizontal or vertical position,1
attribute,a quality belonging to or characteristic of an entity,1
exert,make a great effort at a mental or physical task,1
oppress,come down on or keep down by unjust use of ones authority,1
contend,compete for something,1
stake,a strong wooden or metal post driven into the ground,1
toil,work hard,1
perish,pass from physical life,1
disposition,your usual mood,1
rail,complain bitterly,1
cardinal,one of a group of prominent bishops in the Sacred College,1
boast,talk about oneself with excessive pride or selfregard,1
advocate,a person who pleads for a person cause or idea,1
bestow,present,1
allege,report or maintain,1
notwithstanding,despite anything to the contrary,1
lofty,of imposing height especially standing out above others,1
multitude,a large indefinite number,1
steep,having a sharp inclination,1
heed,pay close attention to,1
modest,not large but sufficient in size or amount,1
partial,being or affecting only a segment,1
apt,naturally disposed toward,1
esteem,the condition of being honored,1
credible,appearing to merit belief or acceptance,1
provoke,provide the needed stimulus for,1
tread,a step in walking or running,1
ascertain,learn or discover with confidence,1
fare,proceed get along or succeed,1
cede,relinquish possession or control over,1
perpetual,continuing forever or indefinitely,1
decree,a legally binding command or decision,1
contrive,make or work out a plan for devise,1
derived,formed or developed from something else not original,1
elaborate,marked by complexity and richness of detail,1
substantial,real having a material or factual existence,1
frontier,a wilderness at the edge of a settled area of a country,1
facile,arrived at without due care or effort lacking depth,1
cite,make reference to,1
warrant,show to be reasonable or provide adequate ground for,1
sob,weep convulsively,1
rider,a traveler who actively sits and travels on an animal,1
dense,permitting little if any light to pass through,1
afflict,cause physical pain or suffering in,1
flourish,grow vigorously,1
ordain,invest with ministerial or priestly authority,1
pious,having or showing or expressing reverence for a deity,1
vex,disturb especially by minor irritations,1
gravity,the force of attraction between all masses in the universe,1
suspended,supported or kept from sinking or falling by buoyancy,1
conspicuous,obvious to the eye or mind,1
retort,a quick reply to a question or remark,1
jet,an airplane powered by gas turbines,1
bolt,run away,1
assent,agree or express agreement,1
purse,a sum spoken of as the contents of a money container,1
plus,the arithmetic operation of summing,1
sanction,give authority or permission to,1
proceeding,a sequence of steps by which legal judgments are invoked,1
exalt,praise glorify or honor,1
siege,an action of an armed force that surrounds a fortified place,1
malice,the desire to see others suffer,1
extravagant,recklessly wasteful,1
wax,increase in phase,1
throng,press tightly together or cram,1
venerate,regard with feelings of respect and reverence,1
assail,attack someone physically or emotionally,1
sublime,of high moral or intellectual value,1
exploit,draw from make good use of,1
exertion,use of physical or mental energy hard work,1
kindle,catch fire,1
endow,furnish with a capital fund,1
imposed,set forth authoritatively as obligatory,1
humiliate,cause to feel shame,1
suffrage,a legal right to vote,1
ensue,take place or happen afterward or as a result,1
brook,a natural stream of water smaller than a river,1
gale,a strong wind moving 3440 knots,1
muse,reflect deeply on a subject,1
satire,witty language used to convey insults or scorn,1
intrigue,cause to be interested or curious,1
indication,something that serves to suggest,1
dispatch,send away towards a designated goal,1
cower,crouch or curl up,1
wont,an established custom,1
tract,a system of body parts that serves some specialized purpose,1
canon,a collection of books accepted as holy scripture,1
impel,cause to move forward with force,1
latitude,freedom from normal restraints in conduct,1
vacate,leave behind empty move out of,1
undertaking,any piece of work that is attempted,1
slay,kill intentionally and with premeditation,1
predecessor,one who goes before you in time,1
delicacy,the quality of being exquisitely fine in appearance,1
forsake,leave someone who needs or counts on you leave in the lurch,1
beseech,ask for or request earnestly,1
philosophical,relating to the investigation of existence and knowledge,1
grove,a small growth of trees without underbrush,1
frustrate,hinder or prevent as an effort plan or desire,1
illustrious,widely known and esteemed,1
device,an instrumentality invented for a particular purpose,1
pomp,cheap or pretentious or vain display,1
entreat,ask for or request earnestly,1
impart,transmit as knowledge or a skill,1
propriety,correct behavior,1
consecrate,render holy by means of religious rites,1
proceeds,the income or profit arising from a transaction,1
fathom,come to understand,1
objective,the goal intended to be attained,1
clad,wearing or provided with clothing,1
partisan,devoted to a cause or political group,1
faction,a dissenting clique,1
contrived,artificially formal,1
venerable,impressive by reason of age,1
restrained,not showy or obtrusive,1
besiege,harass as with questions or requests,1
manifestation,a clear appearance,1
rebuke,an act or expression of criticism and censure,1
insurgent,in opposition to a civil authority or government,1
rhetoric,using language effectively to please or persuade,1
scrupulous,having ethical or moral principles,1
ratify,approve and express assent responsibility or obligation,1
stump,cause to be perplexed or confounded,1
discreet,marked by prudence or modesty and wise selfrestraint,1
imposing,impressive in appearance,1
wistful,showing pensive sadness,1
mortify,cause to feel shame,1
ripple,stir up so as to form small waves,1
premise,a statement that is held to be true,1
subside,wear off or die down,1
adverse,contrary to your interests or welfare,1
caprice,a sudden desire,1
muster,summon up call forth or bring together,1
comprehensive,broad in scope,1
accede,yield to anothers wish or opinion,1
fervent,characterized by intense emotion,1
cohere,cause to form a united orderly and consistent whole,1
tribunal,an assembly to conduct judicial business,1
austere,severely simple,1
recovering,returning to health after illness or debility,1
stratum,a group of people sharing similar wealth and status,1
conscientious,characterized by extreme care and great effort,1
arbitrary,based on or subject to individual discretion or preference,1
exasperate,irritate,1
conjure,summon into action or bring into existence,1
ominous,threatening or foreshadowing evil or tragic developments,1
edifice,a structure that has a roof and walls,1
elude,escape either physically or mentally,1
pervade,spread or diffuse through,1
foster,promote the growth of,1
admonish,scold or reprimand take to task,1
repeal,cancel officially,1
retiring,not arrogant or presuming,1
incidental,not of prime or central importance,1
acquiesce,agree or express agreement,1
slew,a large number or amount or extent,1
usurp,seize and take control without authority,1
sentinel,a person employed to keep watch for some anticipated event,1
precision,the quality of being exact,1
depose,force to leave an office,1
wanton,unprovoked or without motive or justification,1
odium,state of disgrace resulting from detestable behavior,1
precept,a rule of personal conduct,1
deference,a courteous expression of esteem or regard,1
fray,a noisy fight,1
candid,openly straightforward and direct without secretiveness,1
enduring,unceasing,1
impertinent,improperly forward or bold,1
bland,lacking stimulating characteristics uninteresting,1
insinuate,suggest in an indirect or covert way give to understand,1
nominal,insignificantly small a matter of form only,1
suppliant,humbly entreating,1
languid,lacking spirit or liveliness,1
rave,praise enthusiastically,1
monetary,relating to or involving money,1
headlong,in a hasty and foolhardy manner,1
infallible,incapable of failure or error,1
coax,influence or persuade by gentle and persistent urging,1
explicate,elaborate as of theories and hypotheses,1
gaunt,very thin especially from disease or hunger or cold,1
morbid,suggesting the horror of death and decay,1
ranging,wandering freely,1
pacify,ease the anger agitation or strong emotion of,1
pastoral,idyllically rustic,1
dogged,stubbornly unyielding,1
ebb,fall away or decline,1
aide,someone who acts as an assistant,1
appease,cause to be more favorably inclined gain the good will of,1
stipulate,make an express demand or provision in an agreement,1
recourse,something or someone turned to for assistance or security,1
constrained,lacking spontaneity not natural,1
bate,moderate or restrain lessen the force of,1
aversion,a feeling of intense dislike,1
conceit,an artistic device or effect,1
loath,strongly opposed,1
rampart,an embankment built around a space for defensive purposes,1
extort,obtain by coercion or intimidation,1
tarry,leave slowly and hesitantly,1
perpetrate,perform an act usually with a negative connotation,1
decorum,propriety in manners and conduct,1
luxuriant,produced or growing in extreme abundance,1
cant,insincere talk about religion or morals,1
enjoin,give instructions to or direct somebody to do something,1
avarice,extreme greed for material wealth,2
edict,a formal or authoritative proclamation,2
disconcert,cause to lose ones composure,2
symmetry,balance among the parts of something,2
capitulate,surrender under agreed conditions,2
arbitrate,act between parties with a view to reconciling differences,2
cleave,separate or cut with a tool such as a sharp instrument,2
append,add to the very end,2
visage,the human face,2
horde,a moving crowd,2
parable,a short moral story,2
chastise,scold or criticize severely,2
foil,hinder or prevent as an effort plan or desire,2
veritable,being truly so called real or genuine,2
grapple,work hard to come to terms with or deal with something,2
gentry,the most powerful members of a society,2
pall,a sudden feeling of dread or gloominess,2
maxim,a saying that is widely accepted on its own merits,2
projection,a prediction made by extrapolating from past observations,2
prowess,a superior skill learned by study and practice,2
dingy,thickly covered with ingrained dirt or soot,2
semblance,the outward or apparent appearance or form of something,2
tout,advertise in strongly positive terms,2
fortitude,strength of mind that enables one to endure adversity,2
asunder,into parts or pieces,2
rout,an overwhelming defeat,2
staid,characterized by dignity and propriety,2
beguile,influence by slyness,2
purport,have the often misleading appearance of being or intending,2
deprave,corrupt morally or by intemperance or sensuality,2
bequeath,leave or give especially by will after ones death,2
enigma,something that baffles understanding and cannot be explained,2
assiduous,marked by care and persistent effort,2
vassal,a person who owes allegiance and service to a feudal lord,2
quail,draw back as with fear or pain,2
outskirts,area relatively far from the center as of a city or town,2
bulwark,a protective structure of stone or concrete,2
swerve,an erratic turn from an intended course,2
gird,prepare oneself for action or a confrontation,2
betrothed,pledged to be married,2
prospective,of or concerned with or related to the future,2
advert,make reference to,2
peremptory,not allowing contradiction or refusal,2
rudiment,the elementary stage of any subject,2
deduce,reason from the general to the particular,2
halting,proceeding in a fragmentary hesitant or ineffective way,2
ignominy,a state of dishonor,2
ideology,an orientation that characterizes the thinking of a group,2
pallid,lacking in vitality or interest or effectiveness,2
chagrin,strong feelings of embarrassment,2
obtrude,thrust oneself in as if by force,2
audacious,disposed to venture or take risks,2
construe,make sense of assign a meaning to,2
ford,cross a river where its shallow,2
repast,the food served and eaten at one time,2
stint,an unbroken period of time during which you do something,2
fresco,a mural done with watercolors on wet plaster,2
dutiful,willingly obedient out of a sense of respect,2
hew,make or shape as with an axe,2
parity,functional equality,2
affable,diffusing warmth and friendliness,2
interminable,tiresomely long seemingly without end,2
pillage,steal goods take as spoils,2
foreboding,a feeling of evil to come,2
rend,tear or be torn violently,2
livelihood,the financial means whereby one supports oneself,2
deign,do something that one considers to be below ones dignity,2
capricious,determined by chance or impulse rather than by necessity,2
stupendous,so great in size force or extent as to elicit awe,2
chaff,material consisting of seed coverings and pieces of stem,2
innate,not established by conditioning or learning,2
reverie,an abstracted state of absorption,2
wrangle,quarrel noisily angrily or disruptively,2
crevice,a long narrow opening,2
ostensible,appearing as such but not necessarily so,2
craven,lacking even the rudiments of courage abjectly fearful,2
vestige,an indication that something has been present,2
plumb,examine thoroughly and in great depth,2
reticent,not inclined to talk or provide information,2
propensity,an inclination to do something,2
chide,scold or reprimand severely or angrily,2
espouse,choose and follow a theory idea policy etc,2
raiment,especially fine or decorative clothing,2
intrepid,invulnerable to fear or intimidation,2
seemly,according with custom or propriety,2
allay,lessen the intensity of or calm,2
fitful,occurring in spells and often abruptly,2
erode,become ground down or deteriorate,2
unaffected,free of artificiality sincere and genuine,2
canto,a major division of a long poem,2
docile,easily handled or managed,2
patronize,treat condescendingly,2
teem,be full of or abuzz with,2
estrange,arouse hostility or indifference in,2
spat,a quarrel about petty points,2
warble,sing or play with trills,2
mien,a persons appearance manner or demeanor,2
sate,fill to contentment,2
constituency,the body of voters who elect a representative for their area,2
patrician,characteristic of the nobility or aristocracy,2
parry,avoid or try to avoid fulfilling answering or performing,2
practitioner,someone who carries out a learned profession,2
ravel,disentangle or separate out,2
infest,occupy in large numbers or live on a host,2
actuate,give an incentive for doing something,2
surly,unfriendly and inclined toward anger or irritation,2
convalesce,get over an illness or shock,2
demoralize,lower someones spirits make downhearted,2
devolve,grow worse,2
alacrity,liveliness and eagerness,2
waive,do without or cease to hold or adhere to,2
unwonted,out of the ordinary,2
seethe,be in an agitated emotional state,2
scrutinize,look at critically or searchingly or in minute detail,2
diffident,lacking selfconfidence,2
execrate,curse or declare to be evil or anathema,2
implacable,incapable of being appeased or pacified,2
pique,a sudden outburst of anger,2
mite,a slight but appreciable amount,2
encumber,hold back impede or weigh down,2
uncouth,lacking refinement or cultivation or taste,2
petulant,easily irritated or annoyed,2
expiate,make amends for,2
cavalier,showing a lack of concern or seriousness,2
banter,light teasing repartee,2
bluster,act in an arrogant overly selfassured or conceited manner,2
debase,corrupt morally or by intemperance or sensuality,2
retainer,a person working in the service of another,2
subjugate,make subservient force to submit or subdue,2
extol,praise glorify or honor,2
fraught,filled with or attended with,2
august,profoundly honored,2
fissure,a long narrow depression in a surface,2
knoll,a small natural mound,2
callous,emotionally hardened,2
inculcate,teach and impress by frequent repetitions or admonitions,2
nettle,disturb especially by minor irritations,2
blanch,turn pale as if in fear,2
inscrutable,difficult or impossible to understand,2
tenacious,stubbornly unyielding,2
thrall,the state of being under the control of another person,2
exigency,a pressing or urgent situation,2
disconsolate,sad beyond comforting incapable of being soothed,2
impetus,a force that makes something happen,2
imposition,an uncalledfor burden,2
auspices,kindly endorsement and guidance,2
sonorous,full and loud and deep,2
exploitation,an act that victimizes someone,2
bane,something causing misery or death,2
dint,force or effort,2
ignominious,deserving or bringing disgrace or shame,2
amicable,characterized by friendship and good will,2
onset,the beginning or early stages,2
conservatory,a schoolhouse with special facilities for fine arts,2
zenith,the highest point of something,2
voluble,marked by a ready flow of speech,2
yeoman,a free man who cultivates his own land,2
levity,a manner lacking seriousness,2
rapt,feeling great delight and interest,2
sultry,characterized by oppressive heat and humidity,2
pinion,restrain or bind,2
axiom,a proposition that is not susceptible of proof or disproof,2
descry,catch sight of,2
retinue,the group following and attending to some important person,2
functionary,a worker who holds or is invested with an office,2
imbibe,take in liquids,2
diversified,having variety of character or form or components,2
maraud,raid and rove in search of plunder,2
grudging,petty or reluctant in giving or spending,2
partiality,a predisposition to like something,2
philology,the humanistic study of language and literature,2
wry,humorously sarcastic or mocking,2
caucus,meet to select a candidate or promote a policy,2
permeate,spread or diffuse through,2
propitious,presenting favorable circumstances,2
salient,conspicuous prominent or important,2
propitiate,make peace with,2
excise,remove by cutting,2
betoken,be a signal for or a symptom of,2
palatable,acceptable to the taste or mind,2
upbraid,express criticism towards,2
renegade,someone who rebels and becomes an outlaw,2
hoary,ancient,2
pedantic,marked by a narrow focus on or display of learning,2
coy,showing marked and often playful evasiveness or reluctance,2
troth,a solemn pledge of fidelity,2
encroachment,entry to anothers property without right or permission,2
belie,be in contradiction with,2
armada,a large fleet,2
succor,assistance in time of difficulty,2
imperturbable,marked by extreme calm and composure,2
irresolute,uncertain how to act or proceed,2
knack,a special way of doing something,2
unseemly,not in keeping with accepted standards of what is proper,2
accentuate,stress or single out as important,2
divulge,make known to the public information previously kept secret,2
brawn,the trait of possessing muscular strength,2
burnish,polish and make shiny,2
palpitate,beat rapidly,2
promiscuous,not selective of a single class or person,2
dissemble,make believe with the intent to deceive,2
flotilla,a fleet of small craft,2
invective,abusive language used to express blame or censure,2
hermitage,the abode of a recluse,2
despoil,destroy and strip of its possession,2
sully,make dirty or spotty,2
malevolent,having or exerting a malignant influence,2
irksome,tedious or irritating,2
prattle,speak about unimportant matters rapidly and incessantly,2
subaltern,inferior in rank or status,2
welt,a raised mark on the skin,2
wreak,cause to happen or to occur as a consequence,2
tenable,based on sound reasoning or evidence,2
inimitable,matchless,2
depredation,a destructive action,2
amalgamate,bring or combine together or with something else,2
immutable,not subject or susceptible to change or variation,2
proxy,a person authorized to act for another,2
dote,shower with love show excessive affection for,2
reactionary,extremely conservative or resistant to change,2
rationalism,the doctrine that reason is the basis for regulating conduct,2
endue,give qualities or abilities to,2
discriminating,showing or indicating careful judgment and discernment,2
brooch,a decorative pin,2
pert,characterized by a lightly saucy or impudent quality,2
disembark,exit from a ship vehicle or aircraft,2
aria,an elaborate song for solo voice,2
trappings,ornaments embellishments to or characteristic signs of,2
abet,assist or encourage usually in some wrongdoing,2
clandestine,conducted with or marked by hidden aims or methods,2
distend,swell from or as if from internal pressure,2
glib,having only superficial plausibility,2
pucker,gather something into small wrinkles or folds,2
rejoinder,a quick reply to a question or remark,2
spangle,adornment consisting of a small piece of shiny material,2
blighted,affected by something that prevents growth or prosperity,2
nicety,conformity with some standard of correctness or propriety,2
aggrieve,infringe on the rights of,2
vestment,a gown worn by the clergy,2
urbane,showing a high degree of refinement,2
defray,bear the expenses of,2
spectral,resembling or characteristic of a phantom,2
munificent,very generous,2
dictum,an authoritative declaration,2
fad,an interest followed with exaggerated zeal,2
scabbard,a sheath for a sword or dagger or bayonet,2
adulterate,make impure by adding a foreign or inferior substance,2
beleaguer,annoy persistently,2
gripe,complain,2
remission,an abatement in intensity or degree,2
exorbitant,greatly exceeding bounds of reason or moderation,2
invocation,the act of appealing for help,2
cajole,influence or urge by gentle urging caressing or flattering,2
inclusive,encompassing much or everything,2
interdict,command against,2
abase,cause to feel shame,2
obviate,do away with,2
hurtle,move with or as if with a rushing sound,2
unanimity,everyone being of one mind,2
mettle,the courage to carry on,2
interpolate,insert words into texts often falsifying it thereby,2
surreptitious,marked by quiet and caution and secrecy,2
dissimulate,hide feelings from other people,2
ruse,a deceptive maneuver especially to avoid capture,2
specious,plausible but false,2
revulsion,intense aversion,2
hale,exhibiting or restored to vigorous good health,2
palliate,lessen or to try to lessen the seriousness or extent of,2
obtuse,lacking in insight or discernment,2
querulous,habitually complaining,2
vagary,an unexpected and inexplicable change in something,2
incipient,only partly in existence imperfectly formed,2
obdurate,stubbornly persistent in wrongdoing,2
grovel,show submission or fear,2
refractory,stubbornly resistant to authority or control,2
dregs,sediment that has settled at the bottom of a liquid,2
ascendancy,the state when one person or group has power over another,2
supercilious,having or showing arrogant superiority,2
pundit,someone who has been admitted to membership in a field,2
commiserate,feel or express sympathy or compassion,2
alcove,a small recess opening off a large room or garden,2
assay,make an effort or attempt,2
parochial,narrowly restricted in outlook or scope,2
conjugal,relating to the relationship between a wife and husband,2
abjure,formally reject or disavow a formerly held belief,2
frieze,an ornament consisting of a horizontal sculptured band,2
ornate,marked by complexity and richness of detail,2
inflammatory,arousing to action or rebellion,2
machination,a crafty and involved plot to achieve your ends,2
mendicant,a pauper who lives by begging,2
meander,move or cause to move in a winding or curving course,2
bullion,gold or silver in bars or ingots,2
diffidence,lack of selfassurance,2
makeshift,done or made using whatever is available,2
husbandry,the practice of cultivating the land or raising stock,2
podium,a platform raised above the surrounding level,2
dearth,an insufficient quantity or number,2
granary,a storehouse for threshed grain or animal feed,2
whet,make keen or more acute,2
imposture,pretending to be another person,2
diadem,an ornamental jeweled headdress signifying sovereignty,3
fallow,undeveloped but potentially useful,3
hubbub,loud confused noise from many sources,3
dispassionate,unaffected by strong emotion or prejudice,3
harrowing,causing extreme distress,3
askance,with suspicion or disapproval,3
lancet,a surgical knife with a pointed doubleedged blade,3
rankle,make resentful or angry,3
ramify,have or develop complicating consequences,3
gainsay,take exception to,3
polity,a governmentally organized unit,3
credence,the mental attitude that something is believable,3
indemnify,make amends for pay compensation for,3
ingratiate,gain favor with somebody by deliberate efforts,3
declivity,a downward slope or bend,3
importunate,making persistent or urgent requests,3
passe,out of fashion,3
whittle,cut small bits or pare shavings from,3
repine,express discontent,3
flay,strip the skin off,3
larder,a small storeroom for storing foods or wines,3
threadbare,thin and tattered with age,3
grisly,shockingly repellent inspiring horror,3
untoward,not in keeping with accepted standards of what is proper,3
idiosyncrasy,a behavioral attribute peculiar to an individual,3
quip,make jokes or witty remarks,3
blatant,without any attempt at concealment completely obvious,3
stanch,stop the flow of a liquid,3
incongruity,the quality of disagreeing,3
perfidious,tending to betray,3
platitude,a trite or obvious remark,3
revelry,unrestrained merrymaking,3
delve,turn up loosen or remove earth,3
extenuate,lessen or to try to lessen the seriousness or degree of,3
polemic,a verbal or written attack especially of a belief or dogma,3
enrapture,hold spellbound,3
virtuoso,someone who is dazzlingly skilled in any field,3
glower,look angry or sullen as if to signal disapproval,3
mundane,found in the ordinary course of events,3
fatuous,devoid of intelligence,3
incorrigible,impervious to correction by punishment,3
postulate,maintain or assert,3
gist,the central meaning or theme of a speech or literary work,3
vociferous,conspicuously and offensively loud,3
purvey,supply with provisions,3
baleful,deadly or sinister,3
gibe,laugh at with contempt and derision,3
dyspeptic,irritable as if suffering from indigestion,3
prude,a person excessively concerned about propriety and decorum,3
luminary,a celebrity who is an inspiration to others,3
amenable,disposed or willing to comply,3
willful,habitually disposed to disobedience and opposition,3
overbearing,having or showing arrogant superiority,3
dais,a platform raised above the surrounding level,3
automate,operate or make run by machines rather than human action,3
enervate,weaken physically mentally or morally,3
wheedle,influence or urge by gentle urging caressing or flattering,3
gusto,vigorous and enthusiastic enjoyment,3
bouillon,a clear seasoned broth,3
omniscient,knowing seeing or understanding everything,3
apostate,not faithful to religion or party or cause,3
carrion,the dead and rotting body of an animal unfit for human food,3
emolument,compensation received by virtue of holding an office,3
ungainly,lacking grace in movement or posture,3
impiety,unrighteousness by virtue of lacking respect for a god,3
decadence,the state of being degenerate in mental or moral qualities,3
homily,a sermon on a moral or religious topic,3
avocation,an auxiliary activity,3
circumvent,avoid or try to avoid fulfilling answering or performing,3
syllogism,reasoning in which a conclusion is derived from two premises,3
collation,assembling in proper numerical or logical sequence,3
haggle,wrangle as over a price or terms of an agreement,3
waylay,wait in hiding to attack,3
savant,a learned person,3
cohort,a group of people having approximately the same age,3
unction,excessive but superficial compliments with affected charm,3
adjure,command solemnly,3
acrimony,a rough and bitter manner,3
clarion,loud and clear,3
turbid,clouded as with sediment,3
cupidity,extreme greed for material wealth,3
disaffected,discontented as toward authority,3
preternatural,surpassing the ordinary or normal,3
eschew,avoid and stay away from deliberately,3
expatiate,add details to clarify an idea,3
didactic,instructive especially excessively,3
sinuous,curved or curving in and out,3
rancor,a feeling of deep and bitter anger and illwill,3
puissant,powerful,3
homespun,characteristic of country life,3
embroil,force into some kind of situation or course of action,3
pathological,caused by or evidencing a mentally disturbed condition,3
resonant,characterized by a loud deep sound,3
libretto,the words of an opera or musical play,3
flail,thrash about,3
bandy,discuss lightly,3
gratis,costing nothing,3
upshot,a phenomenon that is caused by some previous phenomenon,3
aphorism,a short pithy instructive saying,3
redoubtable,worthy of respect or honor,3
corpulent,excessively large,3
benighted,lacking enlightenment or knowledge or culture,3
sententious,abounding in or given to pompous or aphoristic moralizing,3
cabal,a clique that seeks power usually through intrigue,3
paraphernalia,equipment consisting of miscellaneous articles,3
vitiate,make imperfect,3
adulation,exaggerated flattery or praise,3
quaff,swallow hurriedly or greedily or in one draught,3
unassuming,not arrogant,3
libertine,a dissolute person,3
maul,injure badly,3
adage,a condensed but memorable saying embodying an important fact,3
expostulation,the act of expressing earnest opposition or protest,3
tawdry,tastelessly showy,3
trite,repeated too often overfamiliar through overuse,3
hireling,a person who works only for money,3
ensconce,fix firmly,3
egregious,conspicuously and outrageously bad or reprehensible,3
cogent,powerfully persuasive,3
incisive,demonstrating ability to recognize or draw fine distinctions,3
errant,straying from the right course or from accepted standards,3
sedulous,marked by care and persistent effort,3
incandescent,characterized by ardent emotion intensity or brilliance,3
derelict,in deplorable condition,3
entomology,the branch of zoology that studies insects,3
execrable,unequivocally detestable,3
sluice,pour as if from a conduit that carries a rapid flow of water,3
moot,of no legal significance as having been previously decided,3
evanescent,shortlived tending to vanish or disappear,3
vat,a large open vessel for holding or storing liquids,3
dapper,marked by uptodateness in dress and manners,3
asperity,harshness of manner,3
flair,a natural talent,3
mote,a tiny piece of anything,3
circumspect,careful to consider potential consequences and avoid risk,3
inimical,tending to obstruct or cause harm,3
apropos,of a suitable fitting or pertinent nature,3
gruel,a thin porridge,3
gentility,elegance by virtue of fineness of manner and expression,3
disapprobation,an expression of strong disapproval,3
cameo,engraving or carving in low relief on a stone,3
gouge,swindle obtain by coercion,3
oratorio,a musical composition for voices and orchestra,3
inclement,severe of weather,3
scintilla,a tiny or scarcely detectable amount,3
confluence,a flowing together,3
squalor,sordid dirtiness,3
stricture,severe criticism,3
emblazon,decorate with heraldic arms,3
augury,an event indicating important things to come,3
abut,lie adjacent to another or share a boundary,3
banal,repeated too often overfamiliar through overuse,3
congeal,solidify thicken or come together,3
pilfer,make off with belongings of others,3
malcontent,a person who is unsatisfied or disgusted,3
sublimate,direct energy or urges into useful activities,3
eugenic,causing improvement in the offspring produced,3
lineament,the characteristic parts of a persons face,3
firebrand,someone who deliberately foments trouble,3
fiasco,a complete failure or collapse,3
foolhardy,marked by defiant disregard for danger or consequences,3
retrench,tighten ones belt use resources carefully,3
ulterior,lying beyond what is openly revealed or avowed,3
equable,not varying,3
inured,made tough by habitual exposure,3
invidious,containing or implying a slight or showing prejudice,3
unmitigated,not diminished or moderated in intensity or severity,3
concomitant,an event or situation that happens at the same time,3
cozen,cheat or trick,3
phlegmatic,showing little emotion,3
dormer,a gabled extension built out from a sloping roof,3
pontifical,denoting or governed by or relating to a bishop or bishops,3
disport,occupy in an agreeable entertaining or pleasant fashion,3
apologist,a person who argues to defend some policy or institution,3
abeyance,temporary cessation or suspension,3
enclave,an enclosed territory that is culturally distinct,3
improvident,not supplying something useful for the future,3
disquisition,an elaborate analytical or explanatory essay or discussion,3
categorical,not modified or restricted by reservations,3
placate,cause to be more favorably inclined,3
redolent,serving to bring to mind,3
felicitous,exhibiting an agreeably appropriate manner or style,3
gusty,blowing in puffs or short intermittent blasts,3
natty,marked by uptodateness in dress and manners,3
pacifist,opposed to war,3
buxom,healthily plump and vigorous,3
heyday,the period of greatest prosperity or productivity,3
herculean,displaying superhuman strength or power,3
burgeon,grow and flourish,3
crone,an ugly evillooking old woman,3
prognosticate,make a prediction about tell in advance,3
lout,an awkward foolish person,3
simper,smile in an insincere unnatural or coy way,3
iniquitous,characterized by injustice or wickedness,3
rile,disturb especially by minor irritations,3
sentient,endowed with feeling and unstructured consciousness,3
garish,tastelessly showy,3
readjustment,the act of correcting again,3
erstwhile,belonging to some prior time,3
aquiline,curved down like an eagles beak,3
bilious,irritable as if suffering from indigestion,3
vilify,spread negative information about,3
nuance,a subtle difference in meaning or opinion or attitude,3
gawk,look with amazement,3
refectory,a communal dininghall usually in a monastery,3
palatial,suitable for or like a large and stately residence,3
mincing,affectedly dainty or refined,3
trenchant,having keenness and forcefulness and penetration in thought,3
emboss,raise in a relief,3
proletarian,a member of the working class,3
careen,pitching dangerously to one side,3
debacle,a sound defeat,3
sycophant,a person who tries to please someone to gain an advantage,3
crabbed,annoyed and irritable,3
archetype,something that serves as a model,3
cryptic,of an obscure nature,3
penchant,a strong liking or preference,3
bauble,cheap showy jewelry or ornament,3
mountebank,a flamboyant deceiver,3
fawning,attempting to win favor by flattery,3
hummock,a small natural mound,3
apotheosis,model of excellence or perfection of a kind,3
discretionary,not earmarked available for use as needed,3
pithy,concise and full of meaning,3
comport,behave in a certain manner,3
checkered,marked by changeable fortune,3
ambrosia,the food and drink of the gods,3
factious,dissenting with the majority opinion,3
disgorge,cause or allow to flow or run out or over,3
filch,make off with belongings of others,3
wraith,a ghostly figure especially one seen shortly before death,3
demonstrable,capable of being proved,3
pertinacious,stubbornly unyielding,3
emend,make corrections to,3
laggard,someone who takes more time than necessary,3
waffle,pause or hold back in uncertainty or unwillingness,3
loquacious,full of trivial conversation,3
venial,easily excused or forgiven,3
peon,a laborer who is obliged to do menial work,3
effulgence,the quality of being bright and sending out rays of light,3
lode,a deposit of valuable ore,3
fanfare,a gaudy outward display,3
dilettante,showing frivolous or superficial interest amateurish,3
pusillanimous,lacking in courage strength and resolution,3
ingrained,deeply rooted firmly fixed or held,3
quagmire,a soft wet area of lowlying land that sinks underfoot,3
reprobation,severe disapproval,3
mannered,having unnatural behavioral attributes,3
squeamish,easily disturbed or disgusted by unpleasant things,3
proclivity,a natural inclination,3
miserly,characterized by or indicative of lack of generosity,3
vapid,lacking significance or liveliness or spirit or zest,3
mercurial,liable to sudden unpredictable change,3
perspicuous,transparently clear easily understandable,3
nonplus,be a mystery or bewildering to,3
enamor,attract,3
hackneyed,repeated too often overfamiliar through overuse,3
spate,a large number or amount or extent,3
pedagogue,someone who educates young people,3
acme,the highest level or degree attainable,3
masticate,bite and grind with the teeth,3
sinecure,a job that involves minimal duties,3
indite,produce a literary work,3
emetic,a medicine that induces nausea and vomiting,3
temporize,draw out a discussion or process in order to gain time,3
unimpeachable,beyond doubt or reproach,3
genesis,a coming into being,3
mordant,harshly ironic or sinister,3
smattering,a small number or amount,3
suavity,the quality of being charming and gracious in manner,3
stentorian,very loud or booming,3
junket,a trip taken by an official at public expense,3
appurtenance,a supplementary component that improves capability,3
nostrum,patent medicine whose efficacy is questionable,3
immure,lock up or confine in or as in a jail,3
astringent,acidic or bitter in taste or smell,3
unfaltering,marked by firm determination or resolution not shakable,3
tutelage,attention and management implying responsibility for safety,3
testator,a person who makes a will,3
elysian,of such excellence as to suggest inspiration by the gods,3
fulminate,criticize severely,3
fractious,easily irritated or annoyed,3
pummel,strike usually with the fist,3
manumit,free from slavery or servitude,3
unexceptionable,completely acceptable not open to reproach,3
triumvirate,a group of three people responsible for civil authority,3
sybarite,a person addicted to luxury and pleasures of the senses,3
jibe,be compatible similar or consistent,3
magisterial,offensively selfassured or exercising unwarranted power,3
roseate,of something having a dusty purplish pink color,3
obloquy,abusive malicious and condemnatory language,3
hoodwink,influence by slyness,3
striate,mark with stripes of contrasting color,3
arrogate,seize and take control without authority,3
rarefied,of high moral or intellectual value,3
chary,characterized by great caution,3
credo,any system of principles or beliefs,3
superannuated,too old to be useful,3
impolitic,lacking tact shrewdness or prudence,3
aspersion,a disparaging remark,3
abysmal,exceptionally bad or displeasing,4
poignancy,a quality that arouses emotions especially pity or sorrow,4
stilted,artificially formal or stiff,4
effete,excessively selfindulgent affected or decadent,4
provender,food for domestic livestock,4
endemic,of a disease constantly present in a particular locality,4
jocund,full of or showing highspirited merriment,4
procedural,of or relating to processes,4
rakish,marked by a carefree unconventionality or disreputableness,4
skittish,unpredictably excitable especially of horses,4
peroration,a flowery and highly rhetorical address,4
nonentity,a person of no influence,4
abstemious,marked by temperance in indulgence,4
viscid,having the sticky properties of an adhesive,4
doggerel,a comic verse of irregular measure,4
sleight,adroitness in using the hands,4
rubric,category name,4
plenitude,a full supply,4
rebus,a puzzle consisting of pictures representing words,4
wizened,lean and wrinkled by shrinkage as from age or illness,4
whorl,a round shape formed by a series of concentric circles,4
fracas,a noisy quarrel,4
iconoclast,someone who attacks cherished ideas or institutions,4
saturnine,bitter or scornful,4
madrigal,an unaccompanied partsong for several voices,4
discursive,tending to cover a wide range of subjects,4
zealot,a fervent and even militant proponent of something,4
moribund,not growing or changing without force or vitality,4
modicum,a small or moderate or token amount,4
connotation,an idea that is implied or suggested,4
adventitious,associated by chance and not an integral part,4
recondite,difficult to understand,4
zephyr,a slight wind,4
countermand,cancel officially,4
captious,tending to find and call attention to faults,4
cognate,having the same ancestral language,4
forebear,a person from whom you are descended,4
cadaverous,very thin especially from disease or hunger or cold,4
foist,force onto another,4
dotage,mental infirmity as a consequence of old age,4
nexus,a connected series or group,4
choleric,characterized by anger,4
garble,distort or make false by mutilation or addition,4
bucolic,idyllically rustic,4
denouement,the outcome of a complex sequence of events,4
animus,a feeling of ill will arousing active hostility,4
overweening,unrestrained especially with regard to feelings,4
tyro,someone new to a field or activity,4
preen,dress or groom with elaborate care,4
largesse,liberality in bestowing gifts,4
retentive,good at remembering,4
unconscionable,greatly exceeding bounds of reason or moderation,4
badinage,frivolous banter,4
insensate,devoid of feeling and consciousness and animation,4
sherbet,a frozen dessert made primarily of fruit juice and sugar,4
beatific,resembling or befitting an angel or saint,4
bemuse,cause to be confused emotionally,4
microcosm,a miniature model of something,4
factitious,not produced by natural forces artificial or fake,4
gestate,develop in the mind have the idea for,4
traduce,speak unfavorably about,4
sextant,an instrument for measuring angular distance,4
coiffure,the arrangement of the hair,4
malleable,easily influenced,4
rococo,having excessive asymmetrical ornamentation,4
fructify,become productive or fruitful,4
nihilist,someone who rejects all theories of morality,4
ellipsis,a mark indicating that words have been omitted,4
accolade,a tangible symbol signifying approval or distinction,4
codicil,a supplement to a will,4
roil,be agitated,4
grandiloquent,lofty in style,4
inconsequential,lacking worth or importance,4
effervescence,the property of giving off bubbles,4
stultify,deprive of strength or efficiency make useless or worthless,4
tureen,large deep serving dish with a cover,4
pellucid,transparently clear easily understandable,4
euphony,any pleasing and harmonious sounds,4
apocryphal,being of questionable authenticity,4
veracious,precisely accurate,4
pendulous,hanging loosely or bending downward,4
exegesis,an explanation or critical interpretation,4
effluvium,a foulsmelling outflow or vapor,4
apposite,being of striking appropriateness and pertinence,4
viscous,having the sticky properties of an adhesive,4
misanthrope,someone who dislikes people in general,4
vintner,someone who makes wine,4
halcyon,idyllically calm and peaceful suggesting happy tranquility,4
anthropomorphic,suggesting human features for animals or inanimate things,4
turgid,ostentatiously lofty in style,4
malaise,a feeling of mild sickness or depression,4
polemical,of or involving dispute or controversy,4
gadfly,a persistently annoying person,4
atavism,a reappearance of an earlier characteristic,4
contusion,an injury in which the skin is not broken,4
parsimonious,excessively unwilling to spend,4
dulcet,pleasing to the ear,4
reprise,a repetition of a short musical passage,4