-
Notifications
You must be signed in to change notification settings - Fork 2
/
k.json
6412 lines (6412 loc) · 195 KB
/
k.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": "Kine",
"type": "pl. ",
"definition": "of Cow"
},
{
"word": "Kaama",
"type": "n.",
"definition": "The hartbeest."
},
{
"word": "Kabala",
"type": "n.",
"definition": "See Cabala."
},
{
"word": "Kabassou",
"type": "n.",
"definition": "See Cabassou."
},
{
"word": "Kabob",
"type": "n. & v. t.",
"definition": "See Cabob, n. & v. t."
},
{
"word": "Kabook",
"type": "n.",
"definition": "A clay ironstone found in Ceylon."
},
{
"word": "Kabyle",
"type": "n.",
"definition": "A Berber, as in Algiers or Tunis. See Berber."
},
{
"word": "Kadder",
"type": "n.",
"definition": "The jackdaw."
},
{
"word": "Kadi",
"type": "n.",
"definition": "Alt. of Kadiaster"
},
{
"word": "Kadiaster",
"type": "n.",
"definition": "A Turkish judge. See Cadi."
},
{
"word": "Kafal",
"type": "n.",
"definition": "The Arabian name of two trees of the genus Balsamodendron,\n which yield a gum resin and a red aromatic wood."
},
{
"word": "Kaffir",
"type": "n.",
"definition": "Alt. of Kafir"
},
{
"word": "Kafir",
"type": "n.",
"definition": "One of a race which, with the Hottentots and Bushmen,\n inhabit South Africa. They inhabit the country north of Cape Colony,\n the name being now specifically applied to the tribes living between\n Cape Colony and Natal; but the Zulus of Natal are true Kaffirs."
},
{
"word": "Kafir",
"type": "n.",
"definition": "One of a race inhabiting Kafiristan in Central Asia."
},
{
"word": "Kaffle",
"type": "n.",
"definition": "See Coffle."
},
{
"word": "Kafilah",
"type": "n.",
"definition": "See Cafila."
},
{
"word": "Kaftan",
"type": "n & v.",
"definition": "See Caftan."
},
{
"word": "Kage",
"type": "n.",
"definition": "A chantry chapel inclosed with lattice or screen work."
},
{
"word": "Kagu",
"type": "n.",
"definition": "A singular, crested, grallatorial bird (Rhinochetos jubatus),\n native of New Caledonia. It is gray above, paler beneath, and the\n feathers of the wings and tail are handsomely barred with brown, black,\n and gray. It is allied to the sun bittern."
},
{
"word": "Kaguan",
"type": "n.",
"definition": "The colugo."
},
{
"word": "Kahani",
"type": "n.",
"definition": "A kind of notary public, or attorney, in the Levant."
},
{
"word": "Kahau",
"type": "n.",
"definition": "A long-nosed monkey (Semnopithecus nasalis), native of\n Borneo. The general color of the body is bright chestnut, with the\n under parts, shoulders, and sides of the head, golden yellow, and the\n top of the head and upper part of the back brown. Called also proboscis\n monkey."
},
{
"word": "Kail",
"type": "n.",
"definition": "A kind of headless cabbage. Same as Kale, 1."
},
{
"word": "Kail",
"type": "n.",
"definition": "Any cabbage, greens, or vegetables."
},
{
"word": "Kail",
"type": "n.",
"definition": "A broth made with kail or other vegetables; hence, any broth;\n also, a dinner."
},
{
"word": "Kaimacam",
"type": "n.",
"definition": "Same as Caimacam."
},
{
"word": "Kain",
"type": "n.",
"definition": "Poultry, etc., required by the lease to be paid in kind by a\n tenant to his landlord."
},
{
"word": "Kainit",
"type": "n.",
"definition": "Salts of potassium used in the manufacture of fertilizers."
},
{
"word": "Kainite",
"type": "n.",
"definition": "A compound salt consisting chiefly of potassium chloride\n and magnesium sulphate, occurring at the Stassfurt salt mines in\n Prussian Saxony."
},
{
"word": "Kainozoic",
"type": "a.",
"definition": "See Cenozoic."
},
{
"word": "Kaique",
"type": "n.",
"definition": "See Caique."
},
{
"word": "Kairine",
"type": "n.",
"definition": "A pale buff or white crystalline alkaloid derived from\n quinoline, and used as an antipyretic in medicine."
},
{
"word": "Kairoline",
"type": "n.",
"definition": "An organic base obtained from quinoline. It is used as a\n febrifuge, and resembles kairine."
},
{
"word": "Kaiser",
"type": "n.",
"definition": "The ancient title of emperors of Germany assumed by King\n William of Prussia when crowned sovereign of the new German empire in\n 1871."
},
{
"word": "Kaka",
"type": "n.",
"definition": "A New Zealand parrot of the genus Nestor, especially the\n brown parrot (Nestor meridionalis)."
},
{
"word": "Kakapo",
"type": "n.",
"definition": "A singular nocturnal parrot (Strigops habroptilus), native\n of New Zealand. It lives in holes during the day, but is active at\n night. It resembles an owl in its colors and general appearance. It has\n large wings, but can fly only a short distance. Called also owl parrot,\n night parrot, and night kaka."
},
{
"word": "Kakaralli",
"type": "n.",
"definition": "A kind of wood common in Demerara, durable in salt\n water, because not subject to the depredations of the sea worm and\n barnacle."
},
{
"word": "Kakistocracy",
"type": "n.",
"definition": "Government by the worst men."
},
{
"word": "Kakoxene",
"type": "n.",
"definition": "See Cacoxene."
},
{
"word": "Kalan",
"type": "n.",
"definition": "The sea otter."
},
{
"word": "Kalasie",
"type": "n.",
"definition": "A long-tailed monkey of Borneo (Semnopithecus rubicundus).\n It has a tuft of long hair on the head."
},
{
"word": "Kale",
"type": "n.",
"definition": "A variety of cabbage in which the leaves do not form a head,\n being nearly the original or wild form of the species."
},
{
"word": "Kale",
"type": "n.",
"definition": "See Kail, 2."
},
{
"word": "Kaleege",
"type": "n.",
"definition": "One of several species of large, crested, Asiatic\n pheasants, belonging to the genus Euplocamus, and allied to the\n firebacks."
},
{
"word": "Kaleidophon",
"type": "",
"definition": "Alt. of Kaleidophone"
},
{
"word": "Kaleidophone",
"type": "",
"definition": "An instrument invented by Professor Wheatstone,\n consisting of a reflecting knob at the end of a vibrating rod or thin\n plate, for making visible, in the motion of a point of light reflected\n from the knob, the paths or curves corresponding with the musical notes\n produced by the vibrations."
},
{
"word": "Kaleidoscope",
"type": "n.",
"definition": "An instrument invented by Sir David Brewster, which\n contains loose fragments of colored glass, etc., and reflecting\n surfaces so arranged that changes of position exhibit its contents in\n an endless variety of beautiful colors and symmetrical forms. It has\n been much employed in arts of design."
},
{
"word": "Kaleidoscopic",
"type": "a.",
"definition": "Alt. of Kaleidoscopical"
},
{
"word": "Kaleidoscopical",
"type": "a.",
"definition": "Of, pertaining to, or formed by, a kaleidoscope;\n variegated."
},
{
"word": "Kalendar",
"type": "n.",
"definition": "See Calendar."
},
{
"word": "Kalendarial",
"type": "a.",
"definition": "See Calendarial."
},
{
"word": "Kalender",
"type": "n.",
"definition": "See 3d Calender."
},
{
"word": "Kalends",
"type": "n.",
"definition": "Same as Calends."
},
{
"word": "Kali",
"type": "n.",
"definition": "The last and worst of the four ages of the world; --\n considered to have begun B. C. 3102, and to last 432,000 years."
},
{
"word": "Kali",
"type": "n.",
"definition": "The black, destroying goddess; -- called also Doorga, Anna\n Purna."
},
{
"word": "Kali",
"type": "n.",
"definition": "The glasswort (Salsola Kali)."
},
{
"word": "Kalif",
"type": "n.",
"definition": "See Caliph."
},
{
"word": "Kaliform",
"type": "a.",
"definition": "Formed like kali, or glasswort."
},
{
"word": "Kaligenous",
"type": "a.",
"definition": "Forming alkalies with oxygen, as some metals."
},
{
"word": "Kalium",
"type": "n.",
"definition": "Potassium; -- so called by the German chemists."
},
{
"word": "Kalki",
"type": "n.",
"definition": "The name of Vishnu in his tenth and last avatar."
},
{
"word": "Kalmia",
"type": "n.",
"definition": "A genus of North American shrubs with poisonous evergreen\n foliage and corymbs of showy flowers. Called also mountain laurel, ivy\n bush, lamb kill, calico bush, etc."
},
{
"word": "Kalmuck",
"type": "n.",
"definition": "See Calmucks."
},
{
"word": "Kalmuck",
"type": "n.",
"definition": "A kind of shaggy cloth, resembling bearskin."
},
{
"word": "Kalmuck",
"type": "n.",
"definition": "A coarse, dyed, cotton cloth, made in Prussia."
},
{
"word": "Kalong",
"type": "n.",
"definition": "A fruit bat, esp. the Indian edible fruit bat (Pteropus\n edulis)."
},
{
"word": "Kaloyer",
"type": "n.",
"definition": "See Caloyer."
},
{
"word": "Kalpa",
"type": "n.",
"definition": "One of the Brahmanic eons, a period of 4,320,000,000 years.\n At the end of each Kalpa the world is annihilated."
},
{
"word": "Kalsomine",
"type": "n. & v. t.",
"definition": "Same as Calcimine."
},
{
"word": "Kam",
"type": "n.",
"definition": "Crooked; awry."
},
{
"word": "Kama",
"type": "n.",
"definition": "The Hindoo Cupid. He is represented as a beautiful youth,\n with a bow of sugar cane or flowers."
},
{
"word": "Kamala",
"type": "n.",
"definition": "The red dusty hairs of the capsules of an East Indian tree\n (Mallotus Philippinensis) used for dyeing silk. It is violently emetic,\n and is used in the treatment of tapeworm."
},
{
"word": "Kame",
"type": "n.",
"definition": "A low ridge."
},
{
"word": "Kami",
"type": "n. pl.",
"definition": "A title given to the celestial gods of the first mythical\n dynasty of Japan and extended to the demigods of the second dynasty,\n and then to the long line of spiritual princes still represented by the\n mikado."
},
{
"word": "Kamichi",
"type": "n.",
"definition": "A curious South American bird (Anhima, \/ Palamedea,\n cornuta), often domesticated by the natives and kept with poultry,\n which it defends against birds of prey. It has a long, slender,\n hornlike ornament on its head, and two sharp spurs on each wing.\n Although its beak, feet, and legs resemble those of gallinaceous birds,\n it is related in anatomical characters to the ducks and geese\n (Anseres). Called also horned screamer. The name is sometimes applied\n also to the chaja. See Chaja, and Screamer."
},
{
"word": "Kamptulicon",
"type": "n.",
"definition": "A kind of elastic floor cloth, made of India rubber,\n gutta-percha, linseed oil, and powdered cork."
},
{
"word": "Kampylite",
"type": "n.",
"definition": "A variety of mimetite or arseniate of lead in hexagonal\n prisms of a fine orange yellow."
},
{
"word": "Kamsin",
"type": "n.",
"definition": "Alt. of Khamsin"
},
{
"word": "Khamsin",
"type": "n.",
"definition": "A hot southwesterly wind in Egypt, coming from the Sahara."
},
{
"word": "Kamtschadales",
"type": "n. pl.",
"definition": "An aboriginal tribe inhabiting the southern part\n of Kamtschatka."
},
{
"word": "Kan",
"type": "v. t.",
"definition": "To know; to ken."
},
{
"word": "Kan",
"type": "n.",
"definition": "See Khan."
},
{
"word": "Kanacka",
"type": "n.",
"definition": "Alt. of Kanaka"
},
{
"word": "Kanaka",
"type": "n.",
"definition": "A native of the Sandwich Islands."
},
{
"word": "Kanchil",
"type": "n.",
"definition": "A small chevrotain of the genus Tragulus, esp. T.\n pygmaeus, or T. kanchil, inhabiting Java, Sumatra, and adjacent\n islands; a deerlet. It is noted for its agility and cunning."
},
{
"word": "Kand",
"type": "n.",
"definition": "Fluor spar; -- so called by Cornish miners."
},
{
"word": "Kangaroo",
"type": "n.",
"definition": "Any one of numerous species of jumping marsupials of the\n family Macropodidae. They inhabit Australia, New Guinea, and adjacent\n islands, They have long and strong hind legs and a large tail, while\n the fore legs are comparatively short and feeble. The giant kangaroo\n (Macropus major) is the largest species, sometimes becoming twelve or\n fourteen feet in total length. The tree kangaroos, belonging to the\n genus Dendrolagus, live in trees; the rock kangaroos, of the genus\n Petrogale, inhabit rocky situations; and the brush kangaroos, of the\n genus Halmaturus, inhabit wooded districts. See Wallaby."
},
{
"word": "Kansas",
"type": "n. pl.",
"definition": "A tribe of Indians allied to the Winnebagoes and\n Osages. They formerly inhabited the region which is now the State of\n Kansas, but were removed to the Indian Territory."
},
{
"word": "Kantian",
"type": "a.",
"definition": "Of or pertaining to Immanuel Kant, the German philosopher;\n conformed or relating to any or all of the philosophical doctrines of\n Immanuel Kant."
},
{
"word": "Kantian",
"type": "n.",
"definition": "A follower of Kant; a Kantist."
},
{
"word": "Kantianism",
"type": "n.",
"definition": "Alt. of Kantism"
},
{
"word": "Kantism",
"type": "n.",
"definition": "The doctrine or theory of Kant; the Kantian philosophy."
},
{
"word": "Kantist",
"type": "n.",
"definition": "A disciple or follower of Kant."
},
{
"word": "Kanttry",
"type": "n.",
"definition": "Same as Cantred."
},
{
"word": "Kaolin",
"type": "n.",
"definition": "Alt. of Kaoline"
},
{
"word": "Kaoline",
"type": "n.",
"definition": "A very pure white clay, ordinarily in the form of an\n impalpable powder, and used to form the paste of porcelain; China clay;\n porcelain clay. It is chiefly derived from the decomposition of common\n feldspar."
},
{
"word": "Kaolinization",
"type": "n.",
"definition": "The process by which feldspar is changed into\n kaolin."
},
{
"word": "Kaolinize",
"type": "v. t.",
"definition": "To convert into kaolin."
},
{
"word": "Kapelle",
"type": "n.",
"definition": "A chapel; hence, the choir or orchestra of a prince's\n chapel; now, a musical establishment, usually orchestral."
},
{
"word": "Kapellmeister",
"type": "n.",
"definition": "See Capellmeister."
},
{
"word": "Kapia",
"type": "n.",
"definition": "The fossil resin of the kauri tree of New Zealand."
},
{
"word": "Kapnomar",
"type": "n. Chem.",
"definition": ") See Capnomor."
},
{
"word": "Karagane",
"type": "n.",
"definition": "A species of gray fox found in Russia."
},
{
"word": "Karaism",
"type": "n.",
"definition": "Doctrines of the Karaites."
},
{
"word": "Karaite",
"type": "n.",
"definition": "A sect of Jews who adhere closely to the letter of the\n Scriptures, rejecting the oral law, and allowing the Talmud no binding\n authority; -- opposed to the Rabbinists."
},
{
"word": "Karatas",
"type": "n.",
"definition": "A West Indian plant of the Pineapple family (Nidularium\n Karatas)."
},
{
"word": "Karma",
"type": "n.",
"definition": "One's acts considered as fixing one's lot in the future\n existence. (Theos.) The doctrine of fate as the inflexible result of\n cause and effect; the theory of inevitable consequence."
},
{
"word": "Karmathian",
"type": "n.",
"definition": "One of a Mohammedan sect founded in the ninth century\n by Karmat."
},
{
"word": "Karn",
"type": "n.",
"definition": "A pile of rocks; sometimes, the solid rock. See Cairn."
},
{
"word": "Karob",
"type": "n.",
"definition": "The twenty-fourth part of a grain; -- a weight used by\n goldsmiths."
},
{
"word": "Karpholite",
"type": "n.",
"definition": "A fibrous mineral occurring in tufts of a straw-yellow\n color. It is a hydrous silicate of alumina and manganese."
},
{
"word": "Karroos",
"type": "pl. ",
"definition": "of Karreo"
},
{
"word": "Karreo",
"type": "n.",
"definition": "One of the dry table-lands of South Africa, which often\n rise terracelike to considerable elevations."
},
{
"word": "Karstenite",
"type": "n.",
"definition": "Same as Anhydrite."
},
{
"word": "Karvel",
"type": "n.",
"definition": "See Carvel, and Caravel."
},
{
"word": "Karyokinesis",
"type": "n.",
"definition": "The indirect division of cells in which, prior to\n division of the cell protoplasm, complicated changes take place in the\n nucleus, attended with movement of the nuclear fibrils; -- opposed to\n karyostenosis. The nucleus becomes enlarged and convoluted, and finally\n the threads are separated into two groups which ultimately become\n disconnected and constitute the daughter nuclei. Called also mitosis.\n See Cell development, under Cell."
},
{
"word": "Karyokinetic",
"type": "a.",
"definition": "Of or pertaining to karyokinesis; as, karyokinetic\n changes of cell division."
},
{
"word": "Karyomiton",
"type": "n.",
"definition": "The reticular network of fine fibers, of which the\n nucleus of a cell is in part composed; -- in opposition to kytomiton,\n or the network in the body of the cell."
},
{
"word": "Karyoplasma",
"type": "n.",
"definition": "The protoplasmic substance of the nucleus of a cell:\n nucleoplasm; -- in opposition to kytoplasma, the protoplasm of the\n cell."
},
{
"word": "Karyostenosis",
"type": "n.",
"definition": "Direct cell division (in which there is first a\n simple division of the nucleus, without any changes in its structure,\n followed by division of the protoplasm of the karyostenotic mode of\n nuclear division."
},
{
"word": "Kasack",
"type": "n.",
"definition": "Same as Cossack."
},
{
"word": "Kat",
"type": "n.",
"definition": "An Arabian shrub Catha edulis) the leaves of which are used as\n tea by the Arabs."
},
{
"word": "Katabolic",
"type": "a.",
"definition": "Of or pertaining to katabolism; as, katabolic processes,\n which give rise to substances (katastates) of decreasing complexity and\n increasing stability."
},
{
"word": "Katabolism",
"type": "n.",
"definition": "Destructive or downward metabolism; regressive\n metamorphism; -- opposed to anabolism. See Disassimilation."
},
{
"word": "Katastate",
"type": "n.",
"definition": "(Physiol.) A substance formed by a katabolic process; --\n opposed to anastate. See Katabolic."
},
{
"word": "Kate",
"type": "n.",
"definition": "The brambling finch."
},
{
"word": "Kathetal",
"type": "a.",
"definition": "Making a right angle; perpendicular, as two lines or two\n sides of a triangle, which include a right angle."
},
{
"word": "Kathetometer",
"type": "n.",
"definition": "Same as Cathetometer."
},
{
"word": "Kattinumdoo",
"type": "n.",
"definition": "A caoutchouc like substance obtained from the milky\n juice of the East Indian Euphorbia Kattimundoo. It is used as a cement."
},
{
"word": "Katydid",
"type": "n.",
"definition": "A large, green, arboreal, orthopterous insect\n (Cyrtophyllus concavus) of the family Locustidae, common in the United\n States. The males have stridulating organs at the bases of the front\n wings. During the summer and autumn, in the evening, the males make a\n peculiar, loud, shrill sound, resembling the combination Katy-did,\n whence the name."
},
{
"word": "Kauri",
"type": "n.",
"definition": "A lofty coniferous tree of New Zealand Agathis, \/ Dammara,\n australis), furnishing valuable timber and yielding one kind of dammar\n resin."
},
{
"word": "Kava",
"type": "n.",
"definition": "A species of Macropiper (M. methysticum), the long pepper,\n from the root of which an intoxicating beverage is made by the\n Polynesians, by a process of mastication; also, the beverage itself."
},
{
"word": "Kavasses",
"type": "pl. ",
"definition": "of Kavass"
},
{
"word": "Kavass",
"type": "n.",
"definition": "An armed constable; also, a government servant or courier."
},
{
"word": "Kaw",
"type": "v. i. & n.",
"definition": "See Caw."
},
{
"word": "Kawaka",
"type": "n.",
"definition": "a New Zealand tree, the Cypress cedar (Libocedrus Doniana),\n having a valuable, fine-grained, reddish wood."
},
{
"word": "Kawn",
"type": "n.",
"definition": "An inn."
},
{
"word": "Kayak",
"type": "n.",
"definition": "A light canoe, made of skins stretched over a frame, and\n usually capable of carrying but one person, who sits amidships and uses\n a double-bladed paddle. It is peculiar to the Eskimos and other Arctic\n tribes."
},
{
"word": "Kayaker",
"type": "n.",
"definition": "One who uses a kayak."
},
{
"word": "Kayko",
"type": "n.",
"definition": "The dog salmon."
},
{
"word": "Kayles",
"type": "n. pl.",
"definition": "A game; ninepins."
},
{
"word": "Kaynard",
"type": "n.",
"definition": "A lazy or cowardly person; a rascal."
},
{
"word": "Kecked",
"type": "imp. & p. p.",
"definition": "of Keck"
},
{
"word": "Kecking",
"type": "p. pr. & vb. n.",
"definition": "of Keck"
},
{
"word": "Keck",
"type": "v. i.",
"definition": "To heave or to retch, as in an effort to vomit."
},
{
"word": "Keck",
"type": "n.",
"definition": "An effort to vomit; queasiness."
},
{
"word": "Keckle",
"type": "v. i. & n.",
"definition": "See Keck, v. i. & n."
},
{
"word": "Keckled",
"type": "imp. & p. p.",
"definition": "of Keckle"
},
{
"word": "Keckling",
"type": "p. pr. & vb. n.",
"definition": "of Keckle"
},
{
"word": "Keckle",
"type": "v. t.",
"definition": "To wind old rope around, as a cable, to preserve its\n surface from being fretted, or to wind iron chains around, to defend\n from the friction of a rocky bottom, or from the ice."
},
{
"word": "Keckling",
"type": "n.",
"definition": "Old rope or iron chains wound around a cable. See Keckle,\n v. t."
},
{
"word": "Kecklish",
"type": "a.",
"definition": "Inclined to vomit; squeamish."
},
{
"word": "Kecksies",
"type": "pl. ",
"definition": "of Kecksy"
},
{
"word": "Kecksy",
"type": "n.",
"definition": "The hollow stalk of an umbelliferous plant, such as the cow\n parsnip or the hemlock."
},
{
"word": "Kecky",
"type": "a.",
"definition": "Resembling a kecksy."
},
{
"word": "Kedged",
"type": "imp. & p. p.",
"definition": "of Kedge"
},
{
"word": "Kedging",
"type": "p. pr. & vb. n.",
"definition": "of Kedge"
},
{
"word": "Kedge",
"type": "n.",
"definition": "To move (a vessel) by carrying out a kedge in a boat,\n dropping it overboard, and hauling the vessel up to it."
},
{
"word": "Kedge",
"type": "v. t.",
"definition": "A small anchor used whenever a large one can be dispensed\n witch. See Kedge, v. t., and Anchor, n."
},
{
"word": "Kedger",
"type": "n.",
"definition": "A small anchor; a kedge."
},
{
"word": "Kedlook",
"type": "n.",
"definition": "See Charlock."
},
{
"word": "Kee",
"type": "n. pl.",
"definition": "See Kie, Ky, and Kine."
},
{
"word": "Keech",
"type": "n.",
"definition": "A mass or lump of fat rolled up by the butcher."
},
{
"word": "Keel",
"type": "v. t. & i.",
"definition": "To cool; to skim or stir."
},
{
"word": "Keel",
"type": "n.",
"definition": "A brewer's cooling vat; a keelfat."
},
{
"word": "Keel",
"type": "n.",
"definition": "A longitudinal timber, or series of timbers scarfed together,\n extending from stem to stern along the bottom of a vessel. It is the\n principal timber of the vessel, and, by means of the ribs attached on\n each side, supports the vessel's frame. In an iron vessel, a\n combination of plates supplies the place of the keel of a wooden ship.\n See Illust. of Keelson."
},
{
"word": "Keel",
"type": "n.",
"definition": "Fig.: The whole ship."
},
{
"word": "Keel",
"type": "n.",
"definition": "A barge or lighter, used on the Type for carrying coal from\n Newcastle; also, a barge load of coal, twenty-one tons, four cwt."
},
{
"word": "Keel",
"type": "n.",
"definition": "The two lowest petals of the corolla of a papilionaceous\n flower, united and inclosing the stamens and pistil; a carina. See\n Carina."
},
{
"word": "Keel",
"type": "n.",
"definition": "A projecting ridge along the middle of a flat or curved\n surface."
},
{
"word": "Keeled",
"type": "imp. & p. p.",
"definition": "of Keel"
},
{
"word": "Keeling",
"type": "p. pr. & vb. n.",
"definition": "of Keel"
},
{
"word": "Keel",
"type": "v. i.",
"definition": "To traverse with a keel; to navigate."
},
{
"word": "Keel",
"type": "v. i.",
"definition": "To turn up the keel; to show the bottom."
},
{
"word": "Keelage",
"type": "n.",
"definition": "The right of demanding a duty or toll for a ship entering\n a port; also, the duty or toll."
},
{
"word": "Keeled",
"type": "a.",
"definition": "Keel-shaped; having a longitudinal prominence on the back;\n as, a keeled leaf."
},
{
"word": "Keeled",
"type": "a.",
"definition": "Having a median ridge; carinate; as, a keeled scale."
},
{
"word": "Keeler",
"type": "n.",
"definition": "One employed in managing a Newcastle keel; -- called also\n keelman."
},
{
"word": "Keeler",
"type": "n.",
"definition": "A small or shallow tub; esp., one used for holding\n materials for calking ships, or one used for washing dishes, etc."
},
{
"word": "Keelfat",
"type": "n.",
"definition": "A cooler; a vat for cooling wort, etc."
},
{
"word": "Keelhauled",
"type": "imp. & p. p.",
"definition": "of Keelhaul"
},
{
"word": "Keelhauling",
"type": "p. pr. & vb. n.",
"definition": "of Keelhaul"
},
{
"word": "Keelhaul",
"type": "v. i.",
"definition": "To haul under the keel of a ship, by ropes attached to\n the yardarms on each side. It was formerly practiced as a punishment in\n the Dutch and English navies."
},
{
"word": "Keeling",
"type": "n.",
"definition": "A cod."
},
{
"word": "Keelivine",
"type": "n.",
"definition": "A pencil of black or red lead; -- called also keelyvine\n pen."
},
{
"word": "Keelman",
"type": "n.",
"definition": "See Keeler, 1."
},
{
"word": "Keelrake",
"type": "v. t.",
"definition": "Same as Keelhaul."
},
{
"word": "Keels",
"type": "n. pl.",
"definition": "Ninepins. See Kayles."
},
{
"word": "Keelson",
"type": "n.",
"definition": "A piece of timber in a ship laid on the middle of the\n floor timbers over the keel, and binding the floor timbers to the keel;\n in iron vessels, a structure of plates, situated like the keelson of a\n timber ship."
},
{
"word": "Keelvat",
"type": "n.",
"definition": "See Keelfat."
},
{
"word": "Keen",
"type": "superl.",
"definition": "Sharp; having a fine edge or point; as, a keen razor, or\n a razor with a keen edge."
},
{
"word": "Keen",
"type": "superl.",
"definition": "Acute of mind; sharp; penetrating; having or expressing\n mental acuteness; as, a man of keen understanding; a keen look; keen\n features."
},
{
"word": "Keen",
"type": "superl.",
"definition": "Bitter; piercing; acrimonious; cutting; stinging;\n severe; as, keen satire or sarcasm."
},
{
"word": "Keen",
"type": "superl.",
"definition": "Piercing; penetrating; cutting; sharp; -- applied to\n cold, wind, etc, ; as, a keen wind; the cold is very keen."
},
{
"word": "Keen",
"type": "superl.",
"definition": "Eager; vehement; fierce; as, a keen appetite."
},
{
"word": "Keen",
"type": "v. t.",
"definition": "To sharpen; to make cold."
},
{
"word": "Keen",
"type": "n.",
"definition": "A prolonged wail for a deceased person. Cf. Coranach."
},
{
"word": "Keen",
"type": "v. i.",
"definition": "To wail as a keener does."
},
{
"word": "Keener",
"type": "n.",
"definition": "A professional mourner who wails at a funeral."
},
{
"word": "Keenly",
"type": "adv.",
"definition": "In a keen manner."