-
Notifications
You must be signed in to change notification settings - Fork 2
/
v.json
13972 lines (13972 loc) · 449 KB
/
v.json
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
[
{
"word": "V",
"type": "",
"definition": "As a numeral, V stands for five, in English and Latin."
},
{
"word": "Vaagmer",
"type": "n.",
"definition": "The dealfish."
},
{
"word": "Vacancies",
"type": "pl. ",
"definition": "of Vacancy"
},
{
"word": "Vacancy",
"type": "n.",
"definition": "The quality or state of being vacant; emptiness; hence,\n freedom from employment; intermission; leisure; idleness; listlessness."
},
{
"word": "Vacancy",
"type": "n.",
"definition": "That which is vacant."
},
{
"word": "Vacancy",
"type": "n.",
"definition": "Empty space; vacuity; vacuum."
},
{
"word": "Vacancy",
"type": "n.",
"definition": "An open or unoccupied space between bodies or things; an\n interruption of continuity; chasm; gap; as, a vacancy between\n buildings; a vacancy between sentences or thoughts."
},
{
"word": "Vacancy",
"type": "n.",
"definition": "Unemployed time; interval of leisure; time of\n intermission; vacation."
},
{
"word": "Vacancy",
"type": "n.",
"definition": "A place or post unfilled; an unoccupied office; as, a\n vacancy in the senate, in a school, etc."
},
{
"word": "Vacant",
"type": "a.",
"definition": "Deprived of contents; not filled; empty; as, a vacant room."
},
{
"word": "Vacant",
"type": "a.",
"definition": "Unengaged with business or care; unemployed; unoccupied;\n disengaged; free; as, vacant hours."
},
{
"word": "Vacant",
"type": "a.",
"definition": "Not filled or occupied by an incumbent, possessor, or\n officer; as, a vacant throne; a vacant parish."
},
{
"word": "Vacant",
"type": "a.",
"definition": "Empty of thought; thoughtless; not occupied with study or\n reflection; as, a vacant mind."
},
{
"word": "Vacant",
"type": "a.",
"definition": "Abandoned; having no heir, possessor, claimant, or\n occupier; as, a vacant estate."
},
{
"word": "Vacantly",
"type": "adv.",
"definition": "In a vacant manner; inanely."
},
{
"word": "Vacated",
"type": "imp. & p. p.",
"definition": "of Vacate"
},
{
"word": "Vacating",
"type": "p. pr. & vb. n.",
"definition": "of Vacate"
},
{
"word": "Vacate",
"type": "v. t.",
"definition": "To make vacant; to leave empty; to cease from filling or\n occupying; as, it was resolved by Parliament that James had vacated the\n throne of England; the tenant vacated the house."
},
{
"word": "Vacate",
"type": "v. t.",
"definition": "To annul; to make void; to deprive of force; to make of\n no authority or validity; as, to vacate a commission or a charter; to\n vacate proceedings in a cause."
},
{
"word": "Vacate",
"type": "v. t.",
"definition": "To defeat; to put an end to."
},
{
"word": "Vacation",
"type": "n.",
"definition": "The act of vacating; a making void or of no force; as,\n the vacation of an office or a charter."
},
{
"word": "Vacation",
"type": "n.",
"definition": "Intermission of a stated employment, procedure, or\n office; a period of intermission; rest; leisure."
},
{
"word": "Vacation",
"type": "n.",
"definition": "Intermission of judicial proceedings; the space of time\n between the end of one term and the beginning of the next; nonterm;\n recess."
},
{
"word": "Vacation",
"type": "n.",
"definition": "The intermission of the regular studies and exercises of\n an educational institution between terms; holidays; as, the spring\n vacation."
},
{
"word": "Vacation",
"type": "n.",
"definition": "The time when an office is vacant; esp. (Eccl.), the time\n when a see, or other spiritual dignity, is vacant."
},
{
"word": "Vaccary",
"type": "n.",
"definition": "A cow house, dairy house, or cow pasture."
},
{
"word": "Vaccina",
"type": "n.",
"definition": "Vaccinia."
},
{
"word": "Vaccinal",
"type": "a.",
"definition": "Of or pertaining to vaccinia or vaccination."
},
{
"word": "Vaccinated",
"type": "imp. & p. p.",
"definition": "of Vaccinate"
},
{
"word": "Vaccinating",
"type": "p. pr. & vb. n.",
"definition": "of Vaccinate"
},
{
"word": "Vaccinate",
"type": "v. t.",
"definition": "To inoculate with the cowpox by means of a virus,\n called vaccine, taken either directly or indirectly from cows."
},
{
"word": "Vaccination",
"type": "n.",
"definition": "The act, art, or practice of vaccinating, or\n inoculating with the cowpox, in order to prevent or mitigate an attack\n of smallpox. Cf. Inoculation."
},
{
"word": "Vaccinator",
"type": "n.",
"definition": "One who, or that which, vaccinates."
},
{
"word": "Vaccine",
"type": "a.",
"definition": "Of or pertaining to cows; pertaining to, derived from, or\n caused by, vaccinia; as, vaccine virus; the vaccine disease."
},
{
"word": "Vaccine",
"type": "n.",
"definition": "The virus of vaccinia used in vaccination."
},
{
"word": "Vaccine",
"type": "n.",
"definition": "any preparation used to render an organism immune to some\n disease, by inducing or increasing the natural immunity mechanisms.\n Prior to 1995, such preparations usually contained killed organisms of\n the type for which immunity was desired, and sometimes used live\n organisms having attenuated virulence. since that date, preparations\n containing only specific antigenic portions of the pathogenic organism\n are also used, some of which are prepared by genetic engineering\n techniques."
},
{
"word": "Vaccinia",
"type": "n.",
"definition": "Cowpox; vaccina. See Cowpox."
},
{
"word": "Vaccinist",
"type": "n.",
"definition": "A vaccinator."
},
{
"word": "Vaccinium",
"type": "n.",
"definition": "A genus of ericaceous shrubs including the various kinds\n of blueberries and the true cranberries."
},
{
"word": "Vacher",
"type": "n.",
"definition": "A keeper of stock or cattle; a herdsman."
},
{
"word": "Vachery",
"type": "n.",
"definition": "An inclosure for cows."
},
{
"word": "Vachery",
"type": "n.",
"definition": "A dairy."
},
{
"word": "Vacillancy",
"type": "n.",
"definition": "The quality or state of being vacillant, or wavering."
},
{
"word": "Vacillant",
"type": "a.",
"definition": "Vacillating; wavering; fluctuating; irresolute."
},
{
"word": "Vacillated",
"type": "imp. & p. p.",
"definition": "of Vacillate"
},
{
"word": "Vacillating",
"type": "p. pr. & vb. n.",
"definition": "of Vacillate"
},
{
"word": "Vacillate",
"type": "v. t.",
"definition": "To move one way and the other; to reel or stagger; to\n waver."
},
{
"word": "Vacillate",
"type": "v. t.",
"definition": "To fluctuate in mind or opinion; to be unsteady or\n inconstant; to waver."
},
{
"word": "Vacillating",
"type": "a.",
"definition": "Inclined to fluctuate; wavering."
},
{
"word": "Vacillation",
"type": "n.",
"definition": "The act of vacillating; a moving one way and the\n other; a wavering."
},
{
"word": "Vacillatory",
"type": "a.",
"definition": "Inclined to vacillate; wavering; irresolute."
},
{
"word": "Vacuate",
"type": "v. t.",
"definition": "To make void, or empty."
},
{
"word": "Vacuation",
"type": "n.",
"definition": "The act of emptying; evacuation."
},
{
"word": "Vacuist",
"type": "n.",
"definition": "One who holds the doctrine that the space between the\n bodies of the universe, or the molecules and atoms of matter., is a\n vacuum; -- opposed to plenist."
},
{
"word": "Vacuity",
"type": "n.",
"definition": "The quality or state of being vacuous, or not filled;\n emptiness; vacancy; as, vacuity of mind; vacuity of countenance."
},
{
"word": "Vacuity",
"type": "n.",
"definition": "Space unfilled or unoccupied, or occupied with an\n invisible fluid only; emptiness; void; vacuum."
},
{
"word": "Vacuity",
"type": "n.",
"definition": "Want of reality; inanity; nihility."
},
{
"word": "Vacuna",
"type": "n.",
"definition": "The goddess of rural leisure, to whom the husbandmen\n sacrificed at the close of the harvest. She was especially honored by\n the Sabines."
},
{
"word": "Vacuolated",
"type": "a.",
"definition": "Full of vacuoles, or small air cavities; as, vacuolated\n cells."
},
{
"word": "Vacuolation",
"type": "n.",
"definition": "Formation into, or multiplication of, vacuoles."
},
{
"word": "Vacuole",
"type": "n.",
"definition": "A small air cell, or globular space, in the interior of\n organic cells, either containing air, or a pellucid watery liquid, or\n some special chemical secretions of the cell protoplasm."
},
{
"word": "Vacuous",
"type": "a.",
"definition": "Empty; unfilled; void; vacant."
},
{
"word": "Vacuousness",
"type": "n.",
"definition": "The quality or state of being vacuous; emptiness;\n vacuity."
},
{
"word": "Vacuums",
"type": "pl. ",
"definition": "of Vacuum"
},
{
"word": "Vacua",
"type": "pl. ",
"definition": "of Vacuum"
},
{
"word": "Vacuum",
"type": "n.",
"definition": "A space entirely devoid of matter (called also, by way of\n distinction, absolute vacuum); hence, in a more general sense, a space,\n as the interior of a closed vessel, which has been exhausted to a high\n or the highest degree by an air pump or other artificial means; as,\n water boils at a reduced temperature in a vacuum."
},
{
"word": "Vacuum",
"type": "n.",
"definition": "The condition of rarefaction, or reduction of pressure\n below that of the atmosphere, in a vessel, as the condenser of a steam\n engine, which is nearly exhausted of air or steam, etc.; as, a vacuum\n of 26 inches of mercury, or 13 pounds per square inch."
},
{
"word": "Vadantes",
"type": "n. pl.",
"definition": "An extensive artificial group of birds including the\n wading, swimming, and cursorial birds."
},
{
"word": "Vade",
"type": "v. i.",
"definition": "To fade; hence, to vanish."
},
{
"word": "Vade mecum",
"type": "",
"definition": "A book or other thing that a person carries with him as a\n constant companion; a manual; a handbook."
},
{
"word": "Vadimony",
"type": "n.",
"definition": "A bond or pledge for appearance before a judge on a\n certain day."
},
{
"word": "Vadium",
"type": "n.",
"definition": "Pledge; security; bail. See Mortgage."
},
{
"word": "Vae",
"type": "n.",
"definition": "See Voe."
},
{
"word": "Vafrous",
"type": "a.",
"definition": "Crafty; cunning; sly; as, vafrous tricks."
},
{
"word": "Vagabond",
"type": "a.",
"definition": "Moving from place to place without a settled habitation;\n wandering."
},
{
"word": "Vagabond",
"type": "a.",
"definition": "Floating about without any certain direction; driven to\n and fro."
},
{
"word": "Vagabond",
"type": "a.",
"definition": "Being a vagabond; strolling and idle or vicious."
},
{
"word": "Vagabond",
"type": "n.",
"definition": "One who wanders from place to place, having no fixed\n dwelling, or not abiding in it, and usually without the means of honest\n livelihood; a vagrant; a tramp; hence, a worthless person; a rascal."
},
{
"word": "Vagabond",
"type": "v. i.",
"definition": "To play the vagabond; to wander like a vagabond; to\n stroll."
},
{
"word": "Vagabondage",
"type": "n.",
"definition": "The condition of a vagabond; a state or habit of\n wandering about in idleness; vagrancy."
},
{
"word": "Vagabondism",
"type": "n.",
"definition": "Vagabondage."
},
{
"word": "Vagabondize",
"type": "v. i.",
"definition": "To play the vagabond; to wander about in idleness."
},
{
"word": "Vagabondry",
"type": "n.",
"definition": "Vagabondage."
},
{
"word": "Vagal",
"type": "a.",
"definition": "Of or pertaining to the vagus, or pneumogastric nerves;\n pneumogastric."
},
{
"word": "Vagancy",
"type": "n.",
"definition": "A wandering; vagrancy."
},
{
"word": "Vagantes",
"type": "p. pl.",
"definition": "A tribe of spiders, comprising some of those which\n take their prey in a web, but which also frequently run with agility,\n and chase and seize their prey."
},
{
"word": "Vagarious",
"type": "a.",
"definition": "Given to, or characterized by, vagaries; capricious;\n whimsical; crochety."
},
{
"word": "Vagaries",
"type": "pl. ",
"definition": "of Vagary"
},
{
"word": "Vagary",
"type": "n.",
"definition": "A wandering or strolling."
},
{
"word": "Vagary",
"type": "n.",
"definition": "Hence, a wandering of the thoughts; a wild or fanciful\n freak; a whim; a whimsical purpose."
},
{
"word": "Vagient",
"type": "a.",
"definition": "Crying like a child."
},
{
"word": "Vaginae",
"type": "pl. ",
"definition": "of Vagina"
},
{
"word": "Vagina",
"type": "n.",
"definition": "A sheath; a theca; as, the vagina of the portal vein."
},
{
"word": "Vagina",
"type": "n.",
"definition": "Specifically, the canal which leads from the uterus to the\n external orifice if the genital canal, or to the cloaca."
},
{
"word": "Vagina",
"type": "n.",
"definition": "The terminal part of the oviduct in insects and various\n other invertebrates. See Illust., of Spermatheca."
},
{
"word": "Vagina",
"type": "n.",
"definition": "The basal expansion of certain leaves, which inwraps the\n stem; a sheath."
},
{
"word": "Vagina",
"type": "n.",
"definition": "The shaft of a terminus, from which the bust of figure\n seems to issue or arise."
},
{
"word": "Vaginal",
"type": "a.",
"definition": "Of or pertaining to a vagina; resembling a vagina, or\n sheath; thecal; as, a vaginal synovial membrane; the vaginal process of\n the temporal bone."
},
{
"word": "Vaginal",
"type": "a.",
"definition": "Of or pertaining to the vagina of the genital canal; as,\n the vaginal artery."
},
{
"word": "Vaginant",
"type": "a.",
"definition": "Serving to in invest, or sheathe; sheathing."
},
{
"word": "Vaginate",
"type": "a.",
"definition": "Alt. of Vaginated"
},
{
"word": "Vaginated",
"type": "a.",
"definition": "Invested with, or as if with, a sheath; as, a vaginate\n stem, or one invested by the tubular base of a leaf."
},
{
"word": "Vaginati",
"type": "n. pl.",
"definition": "A tribe of birds comprising the sheathbills."
},
{
"word": "Vaginervose",
"type": "a.",
"definition": "Having the nerves, or veins, placed in apparent\n disorder."
},
{
"word": "Vaginicola",
"type": "n.",
"definition": "A genus of Infusoria which form minute vaselike or\n tubular cases in which they dwell."
},
{
"word": "Vaginismus",
"type": "n.",
"definition": "A painful spasmodic contraction of the vagina, often\n rendering copulation impossible."
},
{
"word": "Vaginitis",
"type": "n.",
"definition": "Inflammation of the vagina, or the genital canal,\n usually of its mucous living membrane."
},
{
"word": "Vaginopennous",
"type": "a.",
"definition": "Having elytra; sheath-winged."
},
{
"word": "Vaginula",
"type": "n.",
"definition": "A little sheath, as that about the base of the pedicel of\n most mosses."
},
{
"word": "Vaginula",
"type": "n.",
"definition": "One of the tubular florets in composite flowers."
},
{
"word": "Vaginule",
"type": "n.",
"definition": "A vaginula."
},
{
"word": "Vagissate",
"type": "v. i.",
"definition": "To caper or frolic."
},
{
"word": "Vagous",
"type": "a.",
"definition": "Wandering; unsettled."
},
{
"word": "Vagrancy",
"type": "n.",
"definition": "The quality or state of being a vagrant; a wandering\n without a settled home; an unsettled condition; vagabondism."
},
{
"word": "Vagrant",
"type": "a.",
"definition": "Moving without certain direction; wandering; erratic;\n unsettled."
},
{
"word": "Vagrant",
"type": "a.",
"definition": "Wandering from place to place without any settled\n habitation; as, a vagrant beggar."
},
{
"word": "Vagrant",
"type": "n.",
"definition": "One who strolls from place to place; one who has no\n settled habitation; an idle wanderer; a sturdy beggar; an incorrigible\n rogue; a vagabond."
},
{
"word": "Vagrantly",
"type": "adv.",
"definition": "In a vagrant manner."
},
{
"word": "Vagrantness",
"type": "n.",
"definition": "State of being vagrant; vagrancy."
},
{
"word": "Vague",
"type": "v. i.",
"definition": "Wandering; vagrant; vagabond."
},
{
"word": "Vague",
"type": "v. i.",
"definition": "Unsettled; unfixed; undetermined; indefinite; ambiguous;\n as, a vague idea; a vague proposition."
},
{
"word": "Vague",
"type": "v. i.",
"definition": "Proceeding from no known authority; unauthenticated;\n uncertain; flying; as, a vague report."
},
{
"word": "Vague",
"type": "n.",
"definition": "An indefinite expanse."
},
{
"word": "Vague",
"type": "v. i.",
"definition": "To wander; to roam; to stray."
},
{
"word": "Vague",
"type": "n.",
"definition": "A wandering; a vagary."
},
{
"word": "Vaguely",
"type": "adv.",
"definition": "In a vague manner."
},
{
"word": "Vagueness",
"type": "n.",
"definition": "The quality or state of being vague."
},
{
"word": "Vagus",
"type": "a.",
"definition": "Wandering; -- applied especially to the pneumogastric nerve."
},
{
"word": "Vagus",
"type": "n.",
"definition": "The vagus, ore pneumogastric, nerve."
},
{
"word": "Vail",
"type": "n. & v. t.",
"definition": "Same as Veil."
},
{
"word": "Vail",
"type": "n.",
"definition": "Avails; profit; return; proceeds."
},
{
"word": "Vail",
"type": "n.",
"definition": "An unexpected gain or acquisition; a casual advantage or\n benefit; a windfall."
},
{
"word": "Vail",
"type": "n.",
"definition": "Money given to servants by visitors; a gratuity; -- usually\n in the plural."
},
{
"word": "Vail",
"type": "v. t.",
"definition": "To let fail; to allow or cause to sink."
},
{
"word": "Vail",
"type": "v. t.",
"definition": "To lower, or take off, in token of inferiority, reverence,\n submission, or the like."
},
{
"word": "Vail",
"type": "v. i.",
"definition": "To yield or recede; to give place; to show respect by\n yielding, uncovering, or the like."
},
{
"word": "Vail",
"type": "n.",
"definition": "Submission; decline; descent."
},
{
"word": "Vailer",
"type": "n.",
"definition": "One who vails."
},
{
"word": "Vaimure",
"type": "n.",
"definition": "An outer, or exterior. wall. See Vauntmure."
},
{
"word": "Vain",
"type": "superl.",
"definition": "Having no real substance, value, or importance; empty;\n void; worthless; unsatisfying."
},
{
"word": "Vain",
"type": "superl.",
"definition": "Destitute of forge or efficacy; effecting no purpose;\n fruitless; ineffectual; as, vain toil; a vain attempt."
},
{
"word": "Vain",
"type": "superl.",
"definition": "Proud of petty things, or of trifling attainments;\n having a high opinion of one's own accomplishments with slight reason;\n conceited; puffed up; inflated."
},
{
"word": "Vain",
"type": "superl.",
"definition": "Showy; ostentatious."
},
{
"word": "Vain",
"type": "n.",
"definition": "Vanity; emptiness; -- now used only in the phrase in vain."
},
{
"word": "Vainglorious",
"type": "a.",
"definition": "Feeling or indicating vainglory; elated by vanity;\n boastful."
},
{
"word": "Vainglory",
"type": "n.",
"definition": "Excessive vanity excited by one's own performances;\n empty pride; undue elation of mind; vain show; boastfulness."
},
{
"word": "Vainly",
"type": "adv.",
"definition": "In a vain manner; in vain."
},
{
"word": "Vainness",
"type": "n.",
"definition": "The quality or state of being vain."
},
{
"word": "Vair",
"type": "n.",
"definition": "The skin of the squirrel, much used in the fourteenth century\n as fur for garments, and frequently mentioned by writers of that period\n in describing the costly dresses of kings, nobles, and prelates. It is\n represented in heraldry by a series of small shields placed close\n together, and alternately white and blue."
},
{
"word": "Vairy",
"type": "n.",
"definition": "Charged with vair; variegated with shield-shaped figures.\n See Vair."
},
{
"word": "Vaishnava",
"type": "n.",
"definition": "A worshiper of the god Vishnu in any of his\n incarnations."
},
{
"word": "Vaishnavism",
"type": "n.",
"definition": "The worship of Vishnu."
},
{
"word": "Vaisya",
"type": "n.",
"definition": "The third of the four great original castes among the\n Hindus, now either extinct or partially represented by the mercantile\n class of Banyas. See the Note under Caste, 1."
},
{
"word": "Vaivode",
"type": "n.",
"definition": "See Waywode."
},
{
"word": "Vakeel",
"type": "n.",
"definition": "A native attorney or agent; also, an ambassador."
},
{
"word": "Valance",
"type": "n.",
"definition": "Hanging drapery for a bed, couch, window, or the like,\n especially that which hangs around a bedstead, from the bed to the\n floor."
},
{
"word": "Valance",
"type": "n.",
"definition": "The drooping edging of the lid of a trunk. which covers\n the joint when the lid is closed."
},
{
"word": "Valanced",
"type": "imp. & p. p.",
"definition": "of Valance"
},
{
"word": "Valancing",
"type": "p. pr. & vb. n.",
"definition": "of Valance"
},
{
"word": "Valance",
"type": "v. t.",
"definition": "To furnish with a valance; to decorate with hangings or\n drapery."
},
{
"word": "Vale",
"type": "n.",
"definition": "A tract of low ground, or of land between hills; a valley."
},
{
"word": "Vale",
"type": "n.",
"definition": "See 2d Vail, 3."
},
{
"word": "Valediction",
"type": "n.",
"definition": "A farewell; a bidding farewell."
},
{
"word": "Valedictorian",
"type": "n.",
"definition": "One who pronounces a valedictory address;\n especially, in American colleges, the student who pronounces the\n valedictory of the graduating class at the annual commencement, usually\n the student who ranks first in scholarship."
},
{
"word": "Valedictory",
"type": "a.",
"definition": "Bidding farewell; suitable or designed for an occasion\n of leave-taking; as, a valedictory oration."
},
{
"word": "Valedictories",
"type": "pl. ",
"definition": "of Valedictory"
},
{
"word": "Valedictory",
"type": "n.",
"definition": "A valedictory oration or address spoken at\n commencement in American colleges or seminaries by one of the\n graduating class, usually by the leading scholar."
},
{
"word": "Valence",
"type": "n.",
"definition": "The degree of combining power of an atom (or radical) as\n shown by the number of atoms of hydrogen (or of other monads, as\n chlorine, sodium, etc.) with which it will combine, or for which it can\n be substituted, or with which it can be compared; thus, an atom of\n hydrogen is a monad, and has a valence of one; the atoms of oxygen,\n nitrogen, and carbon are respectively dyads, triads, and tetrads, and\n have a valence respectively of two, three, and four."
},
{
"word": "Valencia",
"type": "n.",
"definition": "A kind of woven fabric for waistcoats, having the weft of\n wool and the warp of silk or cotton."
},
{
"word": "Valenciennes lace",
"type": "",
"definition": "A rich kind of lace made at Valenciennes, in\n France. Each piece is made throughout, ground and pattern, by the same\n person and with the same thread, the pattern being worked in the net."
},
{
"word": "Valencies",
"type": "pl. ",
"definition": "of Valency"
},
{
"word": "Valency",
"type": "n.",
"definition": "See Valence."
},
{
"word": "Valency",
"type": "n.",
"definition": "A unit of combining power; a so-called bond of affinity."
},
{
"word": "Valentia",
"type": "n.",
"definition": "See Valencia."
},
{
"word": "Valentine",
"type": "n.",
"definition": "A sweetheart chosen on St. Valentine's Day."
},
{
"word": "Valentine",
"type": "n.",
"definition": "A letter containing professions of love, or a missive of\n a sentimental, comic, or burlesque character, sent on St. Valentine's\n Day."
},
{
"word": "Valentinian",
"type": "n.",
"definition": "One of a school of Judaizing Gnostics in the second\n century; -- so called from Valentinus, the founder."
},
{
"word": "Valeramide",
"type": "n.",
"definition": "The acid amide derivative of valeric acid, obtained as\n a white crystalline substance."
},
{
"word": "Valerate",
"type": "n.",
"definition": "A salt of valeric acid."
},
{
"word": "Valerian",
"type": "n.",
"definition": "Any plant of the genus Valeriana. The root of the\n officinal valerian (V. officinalis) has a strong smell, and is much\n used in medicine as an antispasmodic."
},
{
"word": "Valerianaceous",
"type": "a.",
"definition": "Of, pertaining to, or resembling, plants of a\n natural order (Valerianaccae) of which the valerian is the type. The\n order includes also the corn salads and the oriental spikenard."
},
{
"word": "Valerianate",
"type": "n.",
"definition": "A valerate."
},
{
"word": "Valerianic",
"type": "a.",
"definition": "Performance to, or obtained from, valerian root;\n specifically, designating an acid which is usually called valeric acid."
},
{
"word": "Valeric",
"type": "a.",
"definition": "Valerianic; specifically, designating any one of three\n metameric acids, of which the typical one (called also inactive valeric\n acid), C4H9CO2H, is obtained from valerian root and other sources, as a\n corrosive, mobile, oily liquid, having a strong acid taste, and an odor\n of old cheese."
},
{
"word": "Valeridine",
"type": "n.",
"definition": "A base, C10H19N, produced by heating valeric aldehyde\n with ammonia. It is probably related to the conine alkaloids."
},
{
"word": "Valerin",
"type": "n.",
"definition": "A salt of valeric acid with glycerin, occurring in butter,\n dolphin oil., and forming an forming an oily liquid with a slightly\n unpleasant odor."
},
{
"word": "Valeritrine",
"type": "n.",
"definition": "A base, C15H27N, produced together with valeridine,\n which it resembles."
},
{
"word": "Valero-",
"type": "",
"definition": "A combining form (also used adjectively) indicating\n derivation from, or relation to, valerian or some of its products, as\n valeric acid; as in valerolactone, a colorless oily liquid produced as\n the anhydride of an hydroxy valeric acid."
},
{
"word": "Valerone",
"type": "n.",
"definition": "A ketone of valeric acid obtained as an oily liquid."
},
{
"word": "Valeryl",
"type": "n.",
"definition": "The hypothetical radical C5H9O, regarded as the essential\n nucleus of certain valeric acid derivatives."
},
{
"word": "Valerylene",
"type": "n.",
"definition": "A liquid hydrocarbon, C5H8; -- called also pentine."
},
{
"word": "Valet",
"type": "n.",
"definition": "A male waiting servant; a servant who attends on gentleman's\n person; a body servant."
},
{
"word": "Valet",
"type": "n.",
"definition": "A kind of goad or stick with a point of iron."
},
{
"word": "Valetudinarian",
"type": "a.",
"definition": "Of infirm health; seeking to recover health;\n sickly; weakly; infirm."
},
{
"word": "Valetudinarian",
"type": "n.",
"definition": "A person of a weak or sickly constitution; one who\n is seeking to recover health."
},
{
"word": "Valetudinarianism",
"type": "n.",
"definition": "The condition of a valetudinarian; a state of\n feeble health; infirmity."
},
{
"word": "Valetudinary",
"type": "a.",
"definition": "Infirm; sickly; valetudinarian."
},
{
"word": "Valetudinary",
"type": "n.",
"definition": "A valetudinarian."
},
{
"word": "Valetudinous",
"type": "a.",
"definition": "Valetudinarian."
},
{
"word": "Valhalla",
"type": "n.",
"definition": "The palace of immortality, inhabited by the souls of\n heroes slain in battle."