-
Notifications
You must be signed in to change notification settings - Fork 2
/
j.json
6687 lines (6687 loc) · 204 KB
/
j.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": "Jjinn",
"type": "pl. ",
"definition": "of Djinnee"
},
{
"word": "Jaal goat",
"type": "",
"definition": "A species of wild goat (Capra Nubiana) found in the\n mountains of Abyssinia, Upper Egypt, and Arabia; -- called also beden,\n and jaela."
},
{
"word": "Jab",
"type": "v. t.",
"definition": "To thrust; to stab; to punch. See Job, v. t."
},
{
"word": "Jab",
"type": "n.",
"definition": "A thrust or stab."
},
{
"word": "Jabbered",
"type": "imp. & p. p.",
"definition": "of Jabber"
},
{
"word": "Jabbering",
"type": "p. pr. & vb. n.",
"definition": "of Jabber"
},
{
"word": "Jabber",
"type": "v. i.",
"definition": "To talk rapidly, indistinctly, or unintelligibly; to\n utter gibberish or nonsense; to chatter."
},
{
"word": "Jabber",
"type": "v. t.",
"definition": "To utter rapidly or indistinctly; to gabble; as, to\n jabber French."
},
{
"word": "Jabber",
"type": "n.",
"definition": "Rapid or incoherent talk, with indistinct utterance;\n gibberish."
},
{
"word": "Jabber",
"type": "n.",
"definition": "One who jabbers."
},
{
"word": "Jabberingly",
"type": "adv.",
"definition": "In a jabbering manner."
},
{
"word": "Jabberment",
"type": "n.",
"definition": "Jabber."
},
{
"word": "Jabbernowl",
"type": "n.",
"definition": "Same as Jobbernowl."
},
{
"word": "Jabiru",
"type": "n.",
"definition": "One of several large wading birds of the genera Mycteria\n and Xenorhynchus, allied to the storks in form and habits."
},
{
"word": "Jaborandi",
"type": "n.",
"definition": "The native name of a South American rutaceous shrub\n (Pilocarpus pennatifolius). The leaves are used in medicine as an\n diaphoretic and sialogogue."
},
{
"word": "Jaborine",
"type": "n.",
"definition": "An alkaloid found in jaborandi leaves, from which it is\n extracted as a white amorphous substance. In its action it resembles\n atropine."
},
{
"word": "Jabot",
"type": "n.",
"definition": "Originally, a kind of ruffle worn by men on the bosom of the\n shirt."
},
{
"word": "Jabot",
"type": "n.",
"definition": "An arrangement of lace or tulle, looped ornamentally, and\n worn by women on the front of the dress."
},
{
"word": "Jacamar",
"type": "n.",
"definition": "Any one of numerous species of tropical American birds of\n the genus Galbula and allied genera. They are allied to the\n kingfishers, but climb on tree trunks like nuthatches, and feed upon\n insects. Their colors are often brilliant."
},
{
"word": "Jacana",
"type": "n.",
"definition": "Any of several wading birds belonging to the genus Jacana\n and several allied genera, all of which have spurs on the wings. They\n are able to run about over floating water weeds by means of their very\n long, spreading toes. Called also surgeon bird."
},
{
"word": "Jacaranda",
"type": "n.",
"definition": "The native Brazilian name for certain leguminous trees,\n which produce the beautiful woods called king wood, tiger wood, and\n violet wood."
},
{
"word": "Jacaranda",
"type": "n.",
"definition": "A genus of bignoniaceous Brazilian trees with showy\n trumpet-shaped flowers."
},
{
"word": "Jacare",
"type": "n.",
"definition": "A cayman. See Yacare."
},
{
"word": "Jacchus",
"type": "n.",
"definition": "The common marmoset (Hapale vulgaris). Formerly, the name\n was also applied to other species of the same genus."
},
{
"word": "Jacconet",
"type": "n.",
"definition": "See Jaconet."
},
{
"word": "Jacent",
"type": "a.",
"definition": "Lying at length; as, the jacent posture."
},
{
"word": "Jacinth",
"type": "n.",
"definition": "See Hyacinth."
},
{
"word": "Jack",
"type": "n.",
"definition": "A large tree, the Artocarpus integrifolia, common in the East\n Indies, closely allied to the breadfruit, from which it differs in\n having its leaves entire. The fruit is of great size, weighing from\n thirty to forty pounds, and through its soft fibrous matter are\n scattered the seeds, which are roasted and eaten. The wood is of a\n yellow color, fine grain, and rather heavy, and is much used in\n cabinetwork. It is also used for dyeing a brilliant yellow."
},
{
"word": "Jack",
"type": "n.",
"definition": "A familiar nickname of, or substitute for, John."
},
{
"word": "Jack",
"type": "n.",
"definition": "An impertinent or silly fellow; a simpleton; a boor; a clown;\n also, a servant; a rustic."
},
{
"word": "Jack",
"type": "n.",
"definition": "A popular colloquial name for a sailor; -- called also Jack\n tar, and Jack afloat."
},
{
"word": "Jack",
"type": "n.",
"definition": "A mechanical contrivance, an auxiliary machine, or a\n subordinate part of a machine, rendering convenient service, and often\n supplying the place of a boy or attendant who was commonly called Jack"
},
{
"word": "Jack",
"type": "n.",
"definition": "A device to pull off boots."
},
{
"word": "Jack",
"type": "n.",
"definition": "A sawhorse or sawbuck."
},
{
"word": "Jack",
"type": "n.",
"definition": "A machine or contrivance for turning a spit; a smoke jack, or\n kitchen jack."
},
{
"word": "Jack",
"type": "n.",
"definition": "A wooden wedge for separating rocks rent by blasting."
},
{
"word": "Jack",
"type": "n.",
"definition": "A lever for depressing the sinkers which push the loops down\n on the needles."
},
{
"word": "Jack",
"type": "n.",
"definition": "A grating to separate and guide the threads; a heck box."
},
{
"word": "Jack",
"type": "n.",
"definition": "A machine for twisting the sliver as it leaves the carding\n machine."
},
{
"word": "Jack",
"type": "n.",
"definition": "A compact, portable machine for planing metal."
},
{
"word": "Jack",
"type": "n.",
"definition": "A machine for slicking or pebbling leather."
},
{
"word": "Jack",
"type": "n.",
"definition": "A system of gearing driven by a horse power, for multiplying\n speed."
},
{
"word": "Jack",
"type": "n.",
"definition": "A hood or other device placed over a chimney or vent pipe, to\n prevent a back draught."
},
{
"word": "Jack",
"type": "n.",
"definition": "In the harpsichord, an intermediate piece communicating the\n action of the key to the quill; -- called also hopper."
},
{
"word": "Jack",
"type": "n.",
"definition": "In hunting, the pan or frame holding the fuel of the torch\n used to attract game at night; also, the light itself."
},
{
"word": "Jack",
"type": "n.",
"definition": "A portable machine variously constructed, for exerting great\n pressure, or lifting or moving a heavy body through a small distance.\n It consists of a lever, screw, rack and pinion, hydraulic press, or any\n simple combination of mechanical powers, working in a compact pedestal\n or support and operated by a lever, crank, capstan bar, etc. The name\n is often given to a jackscrew, which is a kind of jack."
},
{
"word": "Jack",
"type": "n.",
"definition": "The small bowl used as a mark in the game of bowls."
},
{
"word": "Jack",
"type": "n.",
"definition": "The male of certain animals, as of the ass."
},
{
"word": "Jack",
"type": "n.",
"definition": "A young pike; a pickerel."
},
{
"word": "Jack",
"type": "n.",
"definition": "The jurel."
},
{
"word": "Jack",
"type": "n.",
"definition": "A large, California rock fish (Sebastodes paucispinus); --\n called also boccaccio, and merou."
},
{
"word": "Jack",
"type": "n.",
"definition": "The wall-eyed pike."
},
{
"word": "Jack",
"type": "n.",
"definition": "A drinking measure holding half a pint; also, one holding a\n quarter of a pint."
},
{
"word": "Jack",
"type": "n.",
"definition": "A flag, containing only the union, without the fly, usually\n hoisted on a jack staff at the bowsprit cap; -- called also union jack.\n The American jack is a small blue flag, with a star for each State."
},
{
"word": "Jack",
"type": "n.",
"definition": "A bar of iron athwart ships at a topgallant masthead, to\n support a royal mast, and give spread to the royal shrouds; -- called\n also jack crosstree."
},
{
"word": "Jack",
"type": "n.",
"definition": "The knave of a suit of playing cards."
},
{
"word": "Jack",
"type": "n.",
"definition": "A coarse and cheap mediaeval coat of defense, esp. one made\n of leather."
},
{
"word": "Jack",
"type": "n.",
"definition": "A pitcher or can of waxed leather; -- called also black jack."
},
{
"word": "Jack",
"type": "v. i.",
"definition": "To hunt game at night by means of a jack. See 2d Jack, n.,\n 4, n."
},
{
"word": "Jack",
"type": "v. t.",
"definition": "To move or lift, as a house, by means of a jack or jacks.\n See 2d Jack, n., 5."
},
{
"word": "Jack-a-dandy",
"type": "n.",
"definition": "A little dandy; a little, foppish, impertinent\n fellow."
},
{
"word": "Jackal",
"type": "n.",
"definition": "Any one of several species of carnivorous animals\n inhabiting Africa and Asia, related to the dog and wolf. They are\n cowardly, nocturnal, and gregarious. They feed largely on carrion, and\n are noted for their piercing and dismal howling."
},
{
"word": "Jackal",
"type": "n.",
"definition": "One who does mean work for another's advantage, as jackals\n were once thought to kill game which lions appropriated."
},
{
"word": "Jack-a-lent",
"type": "n.",
"definition": "A small stuffed puppet to be pelted in Lent; hence, a\n simple fellow."
},
{
"word": "Jackanapes",
"type": "n.",
"definition": "A monkey; an ape."
},
{
"word": "Jackanapes",
"type": "n.",
"definition": "A coxcomb; an impertinent or conceited fellow."
},
{
"word": "Jackass",
"type": "n.",
"definition": "The male ass; a donkey."
},
{
"word": "Jackass",
"type": "n.",
"definition": "A conceited dolt; a perverse blockhead."
},
{
"word": "Jackdaw",
"type": "n.",
"definition": "See Daw, n."
},
{
"word": "Jackeen",
"type": "n.",
"definition": "A drunken, dissolute fellow."
},
{
"word": "Jacket",
"type": "n.",
"definition": "A short upper garment, extending downward to the hips; a\n short coat without skirts."
},
{
"word": "Jacket",
"type": "n.",
"definition": "An outer covering for anything, esp. a covering of some\n nonconducting material such as wood or felt, used to prevent radiation\n of heat, as from a steam boiler, cylinder, pipe, etc."
},
{
"word": "Jacket",
"type": "n.",
"definition": "In ordnance, a strengthening band surrounding and\n reenforcing the tube in which the charge is fired."
},
{
"word": "Jacket",
"type": "n.",
"definition": "A garment resembling a waistcoat lined with cork, to serve\n as a life preserver; -- called also cork jacket."
},
{
"word": "Jacket",
"type": "v. t.",
"definition": "To put a jacket on; to furnish, as a boiler, with a\n jacket."
},
{
"word": "Jacket",
"type": "v. t.",
"definition": "To thrash; to beat."
},
{
"word": "Jacketed",
"type": "a.",
"definition": "Wearing, or furnished with, a jacket."
},
{
"word": "Jacketing",
"type": "n.",
"definition": "The material of a jacket; as, nonconducting jacketing."
},
{
"word": "Jack Ketch",
"type": "",
"definition": "A public executioner, or hangman."
},
{
"word": "Jackknife",
"type": "n.",
"definition": "A large, strong clasp knife for the pocket; a pocket\n knife."
},
{
"word": "Jackmen",
"type": "pl. ",
"definition": "of Jackman"
},
{
"word": "Jackman",
"type": "n.",
"definition": "One wearing a jack; a horse soldier; a retainer. See 3d\n Jack, n."
},
{
"word": "Jackman",
"type": "n.",
"definition": "A cream cheese."
},
{
"word": "Jack-o'-lantern",
"type": "n.",
"definition": "See Jack-with-a-lantern, under 2d Jack."
},
{
"word": "Jackpudding",
"type": "n.",
"definition": "A merry-andrew; a buffoon."
},
{
"word": "Jacksaw",
"type": "n.",
"definition": "The merganser."
},
{
"word": "Jackscrew",
"type": "n.",
"definition": "A jack in which a screw is used for lifting, or exerting\n pressure. See Illust. of 2d Jack, n., 5."
},
{
"word": "Jackslave",
"type": "n.",
"definition": "A low servant; a mean fellow."
},
{
"word": "Jacksmith",
"type": "n.",
"definition": "A smith who makes jacks. See 2d Jack, 4, c."
},
{
"word": "Jacksnipe",
"type": "n.",
"definition": "A small European snipe (Limnocryptes gallinula); --\n called also judcock, jedcock, juddock, jed, and half snipe."
},
{
"word": "Jacksnipe",
"type": "n.",
"definition": "A small American sandpiper (Tringa maculata); -- called\n also pectoral sandpiper, and grass snipe."
},
{
"word": "Jackstay",
"type": "n.",
"definition": "A rail of wood or iron stretching along a yard of a\n vessel, to which the sails are fastened."
},
{
"word": "Jackstone",
"type": "n.",
"definition": "One of the pebbles or pieces used in the game of\n jackstones."
},
{
"word": "Jackstone",
"type": "n.",
"definition": "A game played with five small stones or pieces of metal.\n See 6th Chuck."
},
{
"word": "Jackstraw",
"type": "n.",
"definition": "An effigy stuffed with straw; a scarecrow; hence, a man\n without property or influence."
},
{
"word": "Jackstraw",
"type": "n.",
"definition": "One of a set of straws of strips of ivory, bone, wood,\n etc., for playing a child's game, the jackstraws being thrown\n confusedly together on a table, to be gathered up singly by a hooked\n instrument, without touching or disturbing the rest of the pile. See\n Spilikin."
},
{
"word": "Jackwood",
"type": "n.",
"definition": "Wood of the jack (Artocarpus integrifolia), used in\n cabinetwork."
},
{
"word": "Jacob",
"type": "n.",
"definition": "A Hebrew patriarch (son of Isaac, and ancestor of the Jews),\n who in a vision saw a ladder reaching up to heaven (Gen. xxviii. 12);\n -- also called Israel."
},
{
"word": "Jacobaean lily",
"type": "",
"definition": "A bulbous plant (Amaryllis, \/ Sprekelia,\n formosissima) from Mexico. It bears a single, large, deep, red,\n lilylike flower."
},
{
"word": "Jacobean",
"type": "a.",
"definition": "Alt. of Jacobian"
},
{
"word": "Jacobian",
"type": "a.",
"definition": "Of or pertaining to a style of architecture and\n decoration in the time of James the First, of England."
},
{
"word": "Jacobin",
"type": "n.",
"definition": "A Dominican friar; -- so named because, before the French\n Revolution, that order had a convent in the Rue St. Jacques, Paris."
},
{
"word": "Jacobin",
"type": "n.",
"definition": "One of a society of violent agitators in France, during\n the revolution of 1789, who held secret meetings in the Jacobin convent\n in the Rue St. Jacques, Paris, and concerted measures to control the\n proceedings of the National Assembly. Hence: A plotter against an\n existing government; a turbulent demagogue."
},
{
"word": "Jacobin",
"type": "n.",
"definition": "A fancy pigeon, in which the feathers of the neck form a\n hood, -- whence the name. The wings and tail are long, and the beak\n moderately short."
},
{
"word": "Jacobin",
"type": "a.",
"definition": "Same as Jacobinic."
},
{
"word": "Jacobine",
"type": "n.",
"definition": "A Jacobin."
},
{
"word": "Jacobinic",
"type": "a.",
"definition": "Alt. of Jacobinical"
},
{
"word": "Jacobinical",
"type": "a.",
"definition": "Of or pertaining to the Jacobins of France;\n revolutionary; of the nature of, or characterized by, Jacobinism."
},
{
"word": "Jacobinism",
"type": "n.",
"definition": "The principles of the Jacobins; violent and factious\n opposition to legitimate government."
},
{
"word": "Jacobinized",
"type": "imp. & p. p.",
"definition": "of Jacobinize"
},
{
"word": "Jacobinizing",
"type": "p. pr. & vb. n.",
"definition": "of Jacobinize"
},
{
"word": "Jacobinize",
"type": "v. t.",
"definition": "To taint with, or convert to, Jacobinism."
},
{
"word": "Jacobite",
"type": "n.",
"definition": "A partisan or adherent of James the Second, after his\n abdication, or of his descendants, an opposer of the revolution in 1688\n in favor of William and Mary."
},
{
"word": "Jacobite",
"type": "n.",
"definition": "One of the sect of Syrian Monophysites. The sect is named\n after Jacob Baradaeus, its leader in the sixth century."
},
{
"word": "Jacobite",
"type": "a.",
"definition": "Of or pertaining to the Jacobites."
},
{
"word": "Jacobitic",
"type": "a.",
"definition": "Alt. of Jacobitical"
},
{
"word": "Jacobitical",
"type": "a.",
"definition": "Of or pertaining to the Jacobites; characterized by\n Jacobitism."
},
{
"word": "Jacobitism",
"type": "n.",
"definition": "The principles of the Jacobites."
},
{
"word": "Jacobuses",
"type": "pl. ",
"definition": "of Jacobus"
},
{
"word": "Jacobus",
"type": "n.",
"definition": "An English gold coin, of the value of twenty-five\n shillings sterling, struck in the reign of James I."
},
{
"word": "Jaconet",
"type": "n.",
"definition": "A thin cotton fabric, between and muslin, used for\n dresses, neckcloths, etc."
},
{
"word": "Jacquard",
"type": "a.",
"definition": "Pertaining to, or invented by, Jacquard, a French\n mechanician, who died in 1834."
},
{
"word": "Jacqueminot",
"type": "n.",
"definition": "A half-hardy, deep crimson rose of the remontant\n class; -- so named after General Jacqueminot, of France."
},
{
"word": "Jacquerie",
"type": "n.",
"definition": "The name given to a revolt of French peasants against\n the nobles in 1358, the leader assuming the contemptuous title, Jacques\n Bonhomme, given by the nobles to the peasantry. Hence, any revolt of\n peasants."
},
{
"word": "Jactancy",
"type": "n.",
"definition": "A boasting; a bragging."
},
{
"word": "Jactation",
"type": "n.",
"definition": "A throwing or tossing of the body; a shaking or\n agitation."
},
{
"word": "Jactitation",
"type": "n.",
"definition": "Vain boasting or assertions repeated to the prejudice\n of another's right; false claim."
},
{
"word": "Jactitation",
"type": "n.",
"definition": "A frequent tossing or moving of the body;\n restlessness, as in delirium."
},
{
"word": "Jaculable",
"type": "a.",
"definition": "Fit for throwing."
},
{
"word": "Jaculated",
"type": "imp. & p. p.",
"definition": "of Jaculate"
},
{
"word": "Jaculating",
"type": "p. pr. & vb. n.",
"definition": "of Jaculate"
},
{
"word": "Jaculate",
"type": "v. t.",
"definition": "To throw or cast, as a dart; to throw out; to emit."
},
{
"word": "Jaculation",
"type": "n.",
"definition": "The act of tossing, throwing, or hurling, as spears."
},
{
"word": "Jaculator",
"type": "",
"definition": "One who throws or casts."
},
{
"word": "Jaculator",
"type": "",
"definition": "The archer fish (Toxotes jaculator)."
},
{
"word": "Jaculatory",
"type": "a.",
"definition": "Darting or throwing out suddenly; also, suddenly thrown\n out; uttered in short sentences; ejaculatory; as, jaculatory prayers."
},
{
"word": "Jadding",
"type": "n.",
"definition": "See Holing."
},
{
"word": "Jade",
"type": "n.",
"definition": "A stone, commonly of a pale to dark green color but sometimes\n whitish. It is very hard and compact, capable of fine polish, and is\n used for ornamental purposes and for implements, esp. in Eastern\n countries and among many early peoples."
},
{
"word": "Jade",
"type": "n.",
"definition": "A mean or tired horse; a worthless nag."
},
{
"word": "Jade",
"type": "n.",
"definition": "A disreputable or vicious woman; a wench; a quean; also,\n sometimes, a worthless man."
},
{
"word": "Jade",
"type": "n.",
"definition": "A young woman; -- generally so called in irony or slight\n contempt."
},
{
"word": "Jaded",
"type": "imp. & p. p.",
"definition": "of Jade"
},
{
"word": "Jading",
"type": "p. pr. & vb. n.",
"definition": "of Jade"
},
{
"word": "Jade",
"type": "v. t.",
"definition": "To treat like a jade; to spurn."
},
{
"word": "Jade",
"type": "v. t.",
"definition": "To make ridiculous and contemptible."
},
{
"word": "Jade",
"type": "v. t.",
"definition": "To exhaust by overdriving or long-continued labor of any\n kind; to tire or wear out by severe or tedious tasks; to harass."
},
{
"word": "Jade",
"type": "v. i.",
"definition": "To become weary; to lose spirit."
},
{
"word": "Jadeite",
"type": "n.",
"definition": "See Jade, the stone."
},
{
"word": "Jadery",
"type": "n.",
"definition": "The tricks of a jade."
},
{
"word": "Jadish",
"type": "a.",
"definition": "Vicious; ill-tempered; resembling a jade; -- applied to a\n horse."
},
{
"word": "Jadish",
"type": "a.",
"definition": "Unchaste; -- applied to a woman."
},
{
"word": "Jaeger",
"type": "n.",
"definition": "See Jager."
},
{
"word": "Jag",
"type": "n.",
"definition": "A notch; a cleft; a barb; a ragged or sharp protuberance; a\n denticulation."
},
{
"word": "Jag",
"type": "n.",
"definition": "A part broken off; a fragment."
},
{
"word": "Jag",
"type": "n.",
"definition": "A cleft or division."
},
{
"word": "Jagged",
"type": "imp. & p. p.",
"definition": "of Jag"
},
{
"word": "Jagging",
"type": "p. pr. & vb. n.",
"definition": "of Jag"
},
{
"word": "Jag",
"type": "v. t.",
"definition": "To cut into notches or teeth like those of a saw; to notch."
},
{
"word": "Jag",
"type": "n.",
"definition": "A small load, as of hay or grain in the straw, or of ore."
},
{
"word": "Jag",
"type": "v. t.",
"definition": "To carry, as a load; as, to jag hay, etc."
},
{
"word": "Jaganatha",
"type": "n.",
"definition": "Alt. of Jaganatha"
},
{
"word": "Jaganatha",
"type": "n.",
"definition": "See Juggernaut."
},
{
"word": "Jager",
"type": "n.",
"definition": "A sharpshooter. See Yager."
},
{
"word": "Jager",
"type": "n.",
"definition": "Any species of gull of the genus Stercorarius. Three species\n occur on the Atlantic coast. The jagers pursue other species of gulls\n and force them to disgorge their prey. The two middle tail feathers are\n usually decidedly longer than the rest. Called also boatswain, and\n marline-spike bird. The name is also applied to the skua, or Arctic\n gull (Megalestris skua)."
},
{
"word": "Jagg",
"type": "v. t. & n.",
"definition": "See Jag."
},
{
"word": "Jagged",
"type": "a.",
"definition": "Having jags; having rough, sharp notches, protuberances, or\n teeth; cleft; laciniate; divided; as, jagged rocks."
},
{
"word": "Jagger",
"type": "n.",
"definition": "One who carries about a small load; a peddler. See 2d Jag."
},
{
"word": "Jagger",
"type": "n.",
"definition": "One who, or that which, jags; specifically: (a) jagging\n iron used for crimping pies, cakes, etc. (b) A toothed chisel. See Jag,\n v. t."
},
{
"word": "Jaggery",
"type": "n.",
"definition": "Raw palm sugar, made in the East Indies by evaporating the\n fresh juice of several kinds of palm trees, but specifically that of\n the palmyra (Borassus flabelliformis)."
},
{
"word": "Jaggy",
"type": "a.",
"definition": "Having jags; set with teeth; notched; uneven; as, jaggy\n teeth."
},
{
"word": "Jaghir",
"type": "n.",
"definition": "A village or district the government and revenues of which\n are assigned to some person, usually in consideration of some service\n to be rendered, esp. the maintenance of troops."
},
{
"word": "Jaghirdar",
"type": "n.",
"definition": "The holder of a jaghir."
},
{
"word": "Jagua palm",
"type": "",
"definition": "A great Brazilian palm (Maximiliana regia), having\n immense spathes which are used for baskets and tubs."
},
{
"word": "Jaguar",
"type": "n.",
"definition": "A large and powerful feline animal (Felis onca), ranging\n from Texas and Mexico to Patagonia. It is usually brownish yellow, with\n large, dark, somewhat angular rings, each generally inclosing one or\n two dark spots. It is chiefly arboreal in its habits. Called also the\n American tiger."
},
{
"word": "Jaguarondi",
"type": "n.",
"definition": "A South American wild cat (Felis jaguarondi), having a\n long, slim body and very short legs. Its color is grayish brown, varied\n with a blackish hue. It is arboreal in its habits and feeds mostly on\n birds."
},
{
"word": "Jah",
"type": "n.",
"definition": "Jehovah."
},
{
"word": "Jail",
"type": "n.",
"definition": "A kind of prison; a building for the confinement of persons\n held in lawful custody, especially for minor offenses or with reference\n to some future judicial proceeding."
},
{
"word": "Jail",
"type": "v. t.",
"definition": "To imprison."
},
{
"word": "Jailer",
"type": "n.",
"definition": "The keeper of a jail or prison."
},
{
"word": "Jain",
"type": "n.",
"definition": "Alt. of Jaina"
},
{
"word": "Jaina",
"type": "n.",
"definition": "One of a numerous sect in British India, holding the tenets\n of Jainism."
},
{
"word": "Jainism",
"type": "n.",
"definition": "The heterodox Hindoo religion, of which the most striking\n features are the exaltation of saints or holy mortals, called jins,\n above the ordinary Hindoo gods, and the denial of the divine origin and\n infallibility of the Vedas. It is intermediate between Brahmanism and\n Buddhism, having some things in common with each."
},
{
"word": "Jairou",
"type": "n.",
"definition": "The ahu or Asiatic gazelle."
},
{
"word": "Jak",
"type": "n.",
"definition": "see Ils Jack."
},
{
"word": "Jakes",
"type": "n.",
"definition": "A privy."
},
{
"word": "Jakie",
"type": "n.",
"definition": "A South American striped frog (Pseudis paradoxa), remarkable\n for having a tadpole larger than the adult, and hence called also\n paradoxical frog."
},
{
"word": "Jako",
"type": "n.",
"definition": "An African parrot (Psittacus erithacus), very commonly kept\n as a cage bird; -- called also gray parrot."
},
{
"word": "Jakwood",
"type": "n.",
"definition": "See Jackwood."
},
{
"word": "Jalap",
"type": "n.",
"definition": "The tubers of the Mexican plant Ipomoea purga (or Exogonium\n purga), a climber much like the morning-glory. The abstract, extract,\n and powder, prepared from the tubers, are well known purgative\n medicines. Other species of Ipomoea yield several inferior kinds of\n jalap, as the I. Orizabensis, and I. tuberosa."
},
{
"word": "Jalapic",
"type": "a.",
"definition": "Of or pertaining to jalap."
},
{
"word": "Jalapin",
"type": "n.",
"definition": "A glucoside found in the stems of the jalap plant and\n scammony. It is a strong purgative."
},
{
"word": "Jalons",
"type": "n. pl.",
"definition": "Long poles, topped with wisps of straw, used as\n landmarks and signals."
},
{
"word": "Jalousie",
"type": "n.",
"definition": "A Venetian or slatted inside window blind."
},
{
"word": "Jalousied",
"type": "a.",
"definition": "Furnished with jalousies; as, jalousied porches."
},
{
"word": "Jam",
"type": "n.",
"definition": "A kind of frock for children."
},
{
"word": "Jam",
"type": "n.",
"definition": "See Jamb."
},
{
"word": "Jammed",
"type": "imp. & p. p.",
"definition": "of Jam"
},
{
"word": "Jamming",
"type": "p. pr. & vb. n.",
"definition": "of Jam"
},
{
"word": "Jam",
"type": "v. t.",
"definition": "To press into a close or tight position; to crowd; to\n squeeze; to wedge in."
},
{
"word": "Jam",
"type": "v. t.",
"definition": "To crush or bruise; as, to jam a finger in the crack of a\n door."