-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathn.json
15162 lines (15162 loc) · 464 KB
/
n.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": "niere",
"type": "n.",
"definition": "One who gathers rags and odds and ends; a ragpicker."
},
{
"word": "niere",
"type": "n.",
"definition": "A receptacle for rags or shreds."
},
{
"word": "niere",
"type": "n.",
"definition": "A movable and ornamental closet or piece of furniture with\n shelves or drawers."
},
{
"word": "Naleadministration",
"type": "n.",
"definition": "Maladministration."
},
{
"word": "Neyne",
"type": "n.",
"definition": "Same as Meine."
},
{
"word": "N",
"type": "n.",
"definition": "A measure of space equal to half an M (or em); an en."
},
{
"word": "Na",
"type": "a. & adv.",
"definition": "No, not. See No."
},
{
"word": "Nab",
"type": "n.",
"definition": "The summit of an eminence."
},
{
"word": "Nab",
"type": "n.",
"definition": "The cock of a gunlock."
},
{
"word": "Nab",
"type": "n.",
"definition": "The keeper, or box into which the lock is shot."
},
{
"word": "Nabbed",
"type": "imp. & p. p.",
"definition": "of Nab"
},
{
"word": "Nabbing",
"type": "p. pr. & vb. n.",
"definition": "of Nab"
},
{
"word": "Nab",
"type": "v. t.",
"definition": "To catch or seize suddenly or unexpectedly."
},
{
"word": "Nabit",
"type": "n.",
"definition": "Pulverized sugar candy."
},
{
"word": "Nabk",
"type": "n.",
"definition": "The edible berries of the Zizyphys Lotus, a tree of Northern\n Africa, and Southwestern Europe."
},
{
"word": "Nabob",
"type": "n.",
"definition": "A deputy or viceroy in India; a governor of a province of\n the ancient Mogul empire."
},
{
"word": "Nabob",
"type": "n.",
"definition": "One who returns to Europe from the East with immense riches:\n hence, any man of great wealth."
},
{
"word": "Nacarat",
"type": "n.",
"definition": "A pale red color, with a cast of orange."
},
{
"word": "Nacarat",
"type": "n.",
"definition": "Fine linen or crape dyed of this color."
},
{
"word": "Nacker",
"type": "n.",
"definition": "See Nacre."
},
{
"word": "Nacre",
"type": "n.",
"definition": "A pearly substance which lines the interior of many shells,\n and is most perfect in the mother-of-pearl. [Written also nacker and\n naker.] See Pearl, and Mother-of-pearl."
},
{
"word": "Nacreous",
"type": "a.",
"definition": "Consisting of, or resembling, nacre; pearly."
},
{
"word": "Nad",
"type": "",
"definition": "Alt. of Nadde"
},
{
"word": "Nadde",
"type": "",
"definition": "Had not."
},
{
"word": "Nadder",
"type": "n.",
"definition": "An adder."
},
{
"word": "Nadir",
"type": "n.",
"definition": "That point of the heavens, or lower hemisphere, directly\n opposite the zenith; the inferior pole of the horizon; the point of the\n celestial sphere directly under the place where we stand."
},
{
"word": "Nadir",
"type": "n.",
"definition": "The lowest point; the time of greatest depression."
},
{
"word": "Naenia",
"type": "n.",
"definition": "See Nenia."
},
{
"word": "Naeve",
"type": "n.",
"definition": "A naevus."
},
{
"word": "Naevoid",
"type": "a.",
"definition": "Resembling a naevus or naevi; as, naevoid elephantiasis."
},
{
"word": "Naevose",
"type": "a.",
"definition": "Spotted; frecled."
},
{
"word": "Naevi",
"type": "pl. ",
"definition": "of Navus"
},
{
"word": "Navus",
"type": "n.",
"definition": "A spot or mark on the skin of children when born; a\n birthmark; -- usually applied to vascular tumors, i. e., those\n consisting mainly of blood vessels, as dilated arteries, veins, or\n capillaries."
},
{
"word": "Nag",
"type": "n.",
"definition": "A small horse; a pony; hence, any horse."
},
{
"word": "Nag",
"type": "n.",
"definition": "A paramour; -- in contempt."
},
{
"word": "Nagged",
"type": "imp. & p. p.",
"definition": "of Nag"
},
{
"word": "Nagging",
"type": "p. pr. & vb. n.",
"definition": "of Nag"
},
{
"word": "Nag",
"type": "v. t. & i.",
"definition": "To tease in a petty way; to scold habitually; to\n annoy; to fret pertinaciously."
},
{
"word": "Nagging",
"type": "a.",
"definition": "Fault-finding; teasing; persistently annoying; as, a\n nagging toothache."
},
{
"word": "Naggy",
"type": "a.",
"definition": "Irritable; touchy."
},
{
"word": "Nagor",
"type": "n.",
"definition": "A West African gazelle (Gazella redunca)."
},
{
"word": "Nagyagite",
"type": "n.",
"definition": "A mineral of blackish lead-gray color and metallic\n luster, generally of a foliated massive structure; foliated tellurium.\n It is a telluride of lead and gold."
},
{
"word": "Naiad",
"type": "n.",
"definition": "A water nymph; one of the lower female divinities, fabled to\n preside over some body of fresh water, as a lake, river, brook, or\n fountain."
},
{
"word": "Naiad",
"type": "n.",
"definition": "Any species of a tribe (Naiades) of freshwater bivalves,\n including Unio, Anodonta, and numerous allied genera; a river mussel."
},
{
"word": "Naiad",
"type": "n.",
"definition": "One of a group of butterflies. See Nymph."
},
{
"word": "Naiad",
"type": "n.",
"definition": "Any plant of the order Naiadaceae, such as eelgrass,\n pondweed, etc."
},
{
"word": "Naiant",
"type": "a.",
"definition": "See Natant."
},
{
"word": "Naid",
"type": "n.",
"definition": "Any one of numerous species of small, fresh-water, chaetopod\n annelids of the tribe Naidina. They belong to the Oligochaeta."
},
{
"word": "Naif",
"type": "a.",
"definition": "Having a true natural luster without being cut; -- applied by\n jewelers to a precious stone."
},
{
"word": "Naif",
"type": "a.",
"definition": "Naive; as, a naif remark."
},
{
"word": "Naik",
"type": "n.",
"definition": "A chief; a leader; a Sepoy corporal."
},
{
"word": "Nail",
"type": "n.",
"definition": "the horny scale of plate of epidermis at the end of the\n fingers and toes of man and many apes."
},
{
"word": "Nail",
"type": "n.",
"definition": "The basal thickened portion of the anterior wings of certain\n hemiptera."
},
{
"word": "Nail",
"type": "n.",
"definition": "The terminal horny plate on the beak of ducks, and other\n allied birds."
},
{
"word": "Nail",
"type": "n.",
"definition": "A slender, pointed piece of metal, usually with a head, used\n for fastening pieces of wood or other material together, by being\n driven into or through them."
},
{
"word": "Nail",
"type": "a.",
"definition": "A measure of length, being two inches and a quarter, or the\n sixteenth of a yard."
},
{
"word": "Nailed",
"type": "imp. & p. p.",
"definition": "of Nail"
},
{
"word": "Nailing",
"type": "p. pr. & vb. n.",
"definition": "of Nail"
},
{
"word": "Nail",
"type": "n.",
"definition": "To fasten with a nail or nails; to close up or secure by\n means of nails; as, to nail boards to the beams."
},
{
"word": "Nail",
"type": "n.",
"definition": "To stud or boss with nails, or as with nails."
},
{
"word": "Nail",
"type": "n.",
"definition": "To fasten, as with a nail; to bind or hold, as to a bargain\n or to acquiescence in an argument or assertion; hence, to catch; to\n trap."
},
{
"word": "Nail",
"type": "n.",
"definition": "To spike, as a cannon."
},
{
"word": "Nailbrush",
"type": "n.",
"definition": "A brush for cleaning the nails."
},
{
"word": "Nailer",
"type": "n.",
"definition": "One whose occupation is to make nails; a nail maker."
},
{
"word": "Nailer",
"type": "n.",
"definition": "One who fastens with, or drives, nails."
},
{
"word": "Naileress",
"type": "n.",
"definition": "A women who makes nailes."
},
{
"word": "Naileries",
"type": "pl. ",
"definition": "of Nailery"
},
{
"word": "Nailery",
"type": "",
"definition": "A manufactory where nails are made."
},
{
"word": "Nail-headed",
"type": "a.",
"definition": "Having a head like that of a nail; formed so as to\n resemble the head of a nail."
},
{
"word": "Nailless",
"type": "a.",
"definition": "Without nails; having no nails."
},
{
"word": "Nainsook",
"type": "n.",
"definition": "A thick sort of jaconet muslin, plain or striped,\n formerly made in India."
},
{
"word": "Nais",
"type": "n.",
"definition": "See Naiad."
},
{
"word": "Naissant",
"type": "a.",
"definition": "Same as Jessant."
},
{
"word": "Naive",
"type": "a.",
"definition": "Having native or unaffected simplicity; ingenuous; artless;\n frank; as, naive manners; a naive person; naive and unsophisticated\n remarks."
},
{
"word": "Naively",
"type": "adv.",
"definition": "In a naive manner."
},
{
"word": "Naivete",
"type": "n.",
"definition": "Native simplicity; unaffected plainness or ingenuousness;\n artlessness."
},
{
"word": "Naivety",
"type": "n.",
"definition": "Naivete."
},
{
"word": "Nake",
"type": "v.t.",
"definition": "To make naked."
},
{
"word": "Naked",
"type": "a.",
"definition": "Having no clothes on; uncovered; nude; bare; as, a naked\n body; a naked limb; a naked sword."
},
{
"word": "Naked",
"type": "a.",
"definition": "Having no means of defense or protection; open; unarmed;\n defenseless."
},
{
"word": "Naked",
"type": "a.",
"definition": "Unprovided with needful or desirable accessories, means of\n sustenance, etc.; destitute; unaided; bare."
},
{
"word": "Naked",
"type": "a.",
"definition": "Without addition, exaggeration, or excuses; not concealed or\n disguised; open to view; manifest; plain."
},
{
"word": "Naked",
"type": "a.",
"definition": "Mere; simple; plain."
},
{
"word": "Naked",
"type": "a.",
"definition": "Without pubescence; as, a naked leaf or stem; bare, or not\n covered by the customary parts, as a flower without a perianth, a stem\n without leaves, seeds without a pericarp, buds without bud scales."
},
{
"word": "Naked",
"type": "a.",
"definition": "Not having the full complement of tones; -- said of a chord\n of only two tones, which requires a third tone to be sounded with them\n to make the combination pleasing to the ear; as, a naked fourth or\n fifth."
},
{
"word": "Nakedly",
"type": "adv.",
"definition": "In a naked manner; without covering or disguise;\n manifestly; simply; barely."
},
{
"word": "Nakedness",
"type": "n.",
"definition": "The condition of being naked."
},
{
"word": "Nakedness",
"type": "n.",
"definition": "The privy parts; the genitals."
},
{
"word": "Naker",
"type": "n.",
"definition": "Same as Nacre."
},
{
"word": "Naker",
"type": "n.",
"definition": "A kind of kettledrum."
},
{
"word": "Nakoo",
"type": "n.",
"definition": "The gavial."
},
{
"word": "Nale",
"type": "n.",
"definition": "Ale; also, an alehouse."
},
{
"word": "Nall",
"type": "n.",
"definition": "An awl."
},
{
"word": "Nam",
"type": "",
"definition": "Am not."
},
{
"word": "Nam",
"type": "",
"definition": "imp. of Nim."
},
{
"word": "Namable",
"type": "a.",
"definition": "Capable of being named."
},
{
"word": "Namation",
"type": "n.",
"definition": "A distraining or levying of a distress; an impounding."
},
{
"word": "Namaycush",
"type": "n.",
"definition": "A large North American lake trout (Salvelinus\n namaycush). It is usually spotted with red, and sometimes weighs over\n forty pounds. Called also Mackinaw trout, lake trout, lake salmon,\n salmon trout, togue, and tuladi."
},
{
"word": "Namby-pamby",
"type": "n.",
"definition": "Talk or writing which is weakly sentimental or\n affectedly pretty."
},
{
"word": "Namby-pamby",
"type": "a.",
"definition": "Affectedly pretty; weakly sentimental; finical;\n insipid."
},
{
"word": "Name",
"type": "n.",
"definition": "The title by which any person or thing is known or\n designated; a distinctive specific appellation, whether of an\n individual or a class."
},
{
"word": "Name",
"type": "n.",
"definition": "A descriptive or qualifying appellation given to a person or\n thing, on account of a character or acts."
},
{
"word": "Name",
"type": "n.",
"definition": "Reputed character; reputation, good or bad; estimation; fame;\n especially, illustrious character or fame; honorable estimation;\n distinction."
},
{
"word": "Name",
"type": "n.",
"definition": "Those of a certain name; a race; a family."
},
{
"word": "Name",
"type": "n.",
"definition": "A person, an individual."
},
{
"word": "Named",
"type": "imp. & p. p.",
"definition": "of Name"
},
{
"word": "Naming",
"type": "p. pr. & vb. n.",
"definition": "of Name"
},
{
"word": "Name",
"type": "n.",
"definition": "To give a distinctive name or appellation to; to entitle; to\n denominate; to style; to call."
},
{
"word": "Name",
"type": "n.",
"definition": "To mention by name; to utter or publish the name of; to refer\n to by distinctive title; to mention."
},
{
"word": "Name",
"type": "n.",
"definition": "To designate by name or specifically for any purpose; to\n nominate; to specify; to appoint; as, to name a day for the wedding."
},
{
"word": "Name",
"type": "n.",
"definition": "To designate (a member) by name, as the Speaker does by way\n of reprimand."
},
{
"word": "Nameless",
"type": "a.",
"definition": "Without a name; not having been given a name; as, a\n nameless star."
},
{
"word": "Nameless",
"type": "a.",
"definition": "Undistinguished; not noted or famous."
},
{
"word": "Nameless",
"type": "a.",
"definition": "Not known or mentioned by name; anonymous; as, a nameless\n writer."
},
{
"word": "Nameless",
"type": "a.",
"definition": "Unnamable; indescribable; inexpressible."
},
{
"word": "Namelessly",
"type": "adv.",
"definition": "In a nameless manner."
},
{
"word": "Namely",
"type": "adv.",
"definition": "By name; by particular mention; specifically; especially;\n expressly."
},
{
"word": "Namely",
"type": "adv.",
"definition": "That is to say; to wit; videlicet; -- introducing a\n particular or specific designation."
},
{
"word": "Namer",
"type": "n.",
"definition": "One who names, or calls by name."
},
{
"word": "Namesake",
"type": "n.",
"definition": "One that has the same name as another; especially, one\n called after, or named out of regard to, another."
},
{
"word": "Namo",
"type": "adv.",
"definition": "No more."
},
{
"word": "Nan",
"type": "inerj.",
"definition": "Anan."
},
{
"word": "Nandine",
"type": "n.",
"definition": "An African carnivore (Nandinia binotata), allied to the\n civets. It is spotted with black."
},
{
"word": "Nandou",
"type": "n.",
"definition": "Alt. of Nandu"
},
{
"word": "Nandu",
"type": "n.",
"definition": "Any one of three species of South American ostriches of the\n genera Rhea and Pterocnemia. See Rhea."
},
{
"word": "Nankeen",
"type": "n.",
"definition": "A species of cloth, of a firm texture, originally brought\n from China, made of a species of cotton (Gossypium religiosum) that is\n naturally of a brownish yellow color quite indestructible and\n permanent."
},
{
"word": "Nankeen",
"type": "n.",
"definition": "An imitation of this cloth by artificial coloring."
},
{
"word": "Nankeen",
"type": "n.",
"definition": "Trousers made of nankeen."
},
{
"word": "Nanny",
"type": "n.",
"definition": "A diminutive of Ann or Anne, the proper name."
},
{
"word": "Nannyberry",
"type": "n.",
"definition": "See Sheepberry."
},
{
"word": "Nanpie",
"type": "n.",
"definition": "The magpie."
},
{
"word": "Naos",
"type": "n.",
"definition": "A term used by modern archaeologists instead of cella. See\n Cella."
},
{
"word": "Napped",
"type": "imp. & p. p.",
"definition": "of Nap"
},
{
"word": "Napping",
"type": "p. pr. & vb. n.",
"definition": "of Nap"
},
{
"word": "Nap",
"type": "v. i.",
"definition": "To have a short sleep; to be drowsy; to doze."
},
{
"word": "Nap",
"type": "v. i.",
"definition": "To be in a careless, secure state."
},
{
"word": "Nap",
"type": "n.",
"definition": "A short sleep; a doze; a siesta."
},
{
"word": "Nap",
"type": "n.",
"definition": "Woolly or villous surface of felt, cloth, plants, etc.; an\n external covering of down, of short fine hairs or fibers forming part\n of the substance of anything, and lying smoothly in one direction; the\n pile; -- as, the nap of cotton flannel or of broadcloth."
},
{
"word": "Nap",
"type": "n.",
"definition": "The loops which are cut to make the pile, in velvet."
},
{
"word": "Nap",
"type": "v. t.",
"definition": "To raise, or put, a nap on."
},
{
"word": "Nape",
"type": "n.",
"definition": "The back part of the neck."
},
{
"word": "Nape-crest",
"type": "n.",
"definition": "An African bird of the genus Schizorhis, related to the\n plantain eaters."
},
{
"word": "Naperies",
"type": "pl. ",
"definition": "of Napery"
},
{
"word": "Napery",
"type": "n.",
"definition": "Table linen; also, linen clothing, or linen in general."
},
{
"word": "Napha water",
"type": "",
"definition": "A perfume distilled from orange flowers."
},
{
"word": "Naphew",
"type": "n.",
"definition": "See Navew."
},
{
"word": "Naphtha",
"type": "n.",
"definition": "The complex mixture of volatile, liquid, inflammable\n hydrocarbons, occurring naturally, and usually called crude petroleum,\n mineral oil, or rock oil. Specifically: That portion of the distillate\n obtained in the refinement of petroleum which is intermediate between\n the lighter gasoline and the heavier benzine, and has a specific\n gravity of about 0.7, -- used as a solvent for varnishes, as a\n carburetant, illuminant, etc."
},
{
"word": "Naphtha",
"type": "n.",
"definition": "One of several volatile inflammable liquids obtained by\n the distillation of certain carbonaceous materials and resembling the\n naphtha from petroleum; as, Boghead naphtha, from Boghead coal\n (obtained at Boghead, Scotland); crude naphtha, or light oil, from coal\n tar; wood naphtha, from wood, etc."
},
{
"word": "Naphthalate",
"type": "n.",
"definition": "A salt of naphthalic acid; a phthalate."
},
{
"word": "Naphthalene",
"type": "n.",
"definition": "A white crystalline aromatic hydrocarbon, C10H8,\n analogous to benzene, and obtained by the distillation of certain\n bituminous materials, such as the heavy oil of coal tar. It is the type\n and basis of a large number of derivatives among organic compounds.\n Formerly called also naphthaline."
},
{
"word": "Naphthalenic",
"type": "a.",
"definition": "Pertaining to , or derived from, naphthalene; -- used\n specifically to designate a yellow crystalline substance, called\n naphthalenic acid and also hydroxy quinone, and obtained from certain\n derivatives of naphthol."
},
{
"word": "Naphthalic",
"type": "a.",
"definition": "Pertaining to, derived from, or related to,\n naphthalene; -- used specifically to denote any one of a series of\n acids derived from naphthalene, and called naphthalene acids."
},
{
"word": "Naphthalic",
"type": "a.",
"definition": "Formerly, designating an acid probably identical with\n phthalic acid."
},
{
"word": "Naphthalidine",
"type": "n.",
"definition": "Same as Naphthylamine."
},
{
"word": "Naphthalin",
"type": "n.",
"definition": "Alt. of Naphthaline"
},
{
"word": "Naphthaline",
"type": "n.",
"definition": "See Naphthalene."
},
{
"word": "Naphthalize",
"type": "v. t.",
"definition": "To mingle, saturate, or impregnate, with naphtha."
},
{
"word": "Naphthazarin",
"type": "n.",
"definition": "A dyestuff, resembling alizarin, obtained from\n naphthoquinone as a red crystalline substance with a bright green,\n metallic luster; -- called also naphthalizarin."
},
{
"word": "Naphthene",
"type": "n.",
"definition": "A peculiar hydrocarbon occuring as an ingredient of\n Caucasian petroleum."
},
{
"word": "Naphthide",
"type": "n.",
"definition": "A compound of naphthalene or its radical with a metallic\n element; as, mercuric naphthide."
},
{
"word": "Naphthoic",
"type": "a.",
"definition": "Pertaining to, derived from, or related to, naphthalene;\n -- used specifically to designate any one of a series of carboxyl\n derivatives, called naphthoic acids."
},
{
"word": "Naphthol",
"type": "n.",
"definition": "Any one of a series of hydroxyl derivatives of\n naphthalene, analogous to phenol. In general they are crystalline\n substances with a phenol (carbolic) odor."
},
{
"word": "Naphthoquinone",
"type": "n.",
"definition": "A yellow crystalline substance, C10H6O2, analogous\n to quinone, obtained by oxidizing naphthalene with chromic acid."
},
{
"word": "Naphthyl",
"type": "n.",
"definition": "A hydrocarbon radical regarded as the essential residue\n of naphthalene."
},
{
"word": "Naphthylamine",
"type": "n.",
"definition": "One of two basic amido derivatives of naphthalene,\n C10H7.NH2, forming crystalline solids."
},
{
"word": "Napierian",
"type": "a.",
"definition": "Alt. of Naperian"
},
{
"word": "Naperian",
"type": "a.",
"definition": "Of, pertaining to, or discovered by, Napier, or Naper."
},
{
"word": "Napier's bones",
"type": "",
"definition": "Alt. of Napier's rods"
},
{
"word": "Napier's rods",
"type": "",
"definition": "A set of rods, made of bone or other material, each\n divided into nine spaces, and containing the numbers of a column of the\n multiplication table; -- a contrivance of Baron Napier, the inventor of\n logarithms, for facilitating the operations of multiplication and\n division."
},
{
"word": "Napiform",
"type": "a.",
"definition": "Turnip-shaped; large and round in the upper part, and\n very slender below."
},
{
"word": "Napkin",
"type": "n.",
"definition": "A little towel, or small cloth, esp. one for wiping the\n fingers and mouth at table."
},
{
"word": "Napkin",
"type": "n.",
"definition": "A handkerchief."
},
{
"word": "Napless",
"type": "a.",
"definition": "Without nap; threadbare."
},
{
"word": "Naples yellow",
"type": "",
"definition": "See under Yellow."
},
{
"word": "Napoleon",
"type": "n.",
"definition": "A French gold coin of twenty francs, or about $3.86."
},
{
"word": "Napoleonic",
"type": "a.",
"definition": "Of or pertaining to Napoleon I., or his family;\n resembling, or having the qualities of, Napoleon I."
},
{
"word": "Napoleonist",
"type": "n.",
"definition": "A supporter of the dynasty of the Napoleons."
},
{
"word": "Nappe",
"type": "n.",
"definition": "Sheet; surface; all that portion of a surface that is\n continuous in such a way that it is possible to pass from any one point\n of the portion to any other point of the portion without leaving the\n surface. Thus, some hyperboloids have one nappe, and some have two."
},
{
"word": "Nappiness",
"type": "n.",
"definition": "The quality of having a nap; abundance of nap, as on\n cloth."
},
{
"word": "Napping",
"type": "n.",
"definition": "The act or process of raising a nap, as on cloth."
},
{
"word": "Napping",
"type": "n.",
"definition": "A sheet of partially felted fur before it is united to the\n hat body."
},
{
"word": "Nappy",
"type": "a.",
"definition": "Inclined to sleep; sleepy; as, to feel nappy."
},
{
"word": "Nappy",
"type": "a.",
"definition": "Tending to cause sleepiness; serving to make sleepy; strong;\n heady; as, nappy ale."
},
{
"word": "Nappy",
"type": "a.",
"definition": "Having a nap or pile; downy; shaggy."
},
{
"word": "Nappies",
"type": "pl. ",
"definition": "of Nappy"
},
{
"word": "Nappy",
"type": "n.",
"definition": "A round earthen dish, with a flat bottom and sloping sides."
},
{
"word": "Nap-taking",
"type": "n.",
"definition": "A taking by surprise; an unexpected onset or attack."
},
{
"word": "Napu",
"type": "n.",
"definition": "A very small chevrotain (Tragulus Javanicus), native of Java.\n It is about the size of a hare, and is noted for its agility in\n leaping. Called also Java musk deer, pygmy musk deer, and deerlet."
},
{
"word": "Napus",
"type": "n.",
"definition": "A kind of turnip. See Navew."
},
{
"word": "Narceine",
"type": "n.",
"definition": "An alkaloid found in small quantities in opium, and\n extracted as a white crystalline substance of a bitter astringent\n taste. It is a narcotic. Called also narceia."
},
{
"word": "Narcissine",
"type": "a.",
"definition": "Of or pertaining to Narcissus."
},
{
"word": "Narcissuses",
"type": "pl. ",
"definition": "of Narcissus"
},
{
"word": "Narcissus",
"type": "n.",
"definition": "A genus of endogenous bulbous plants with handsome\n flowers, having a cup-shaped crown within the six-lobed perianth, and\n comprising the daffodils and jonquils of several kinds."
},
{
"word": "Narcissus",
"type": "n.",
"definition": "A beautiful youth fabled to have been enamored of his\n own image as seen in a fountain, and to have been changed into the\n flower called Narcissus."
},
{
"word": "Narcosis",
"type": "n.",
"definition": "Privation of sense or consciousness, due to a narcotic."
},
{
"word": "Narcotic",
"type": "a.",
"definition": "Having the properties of a narcotic; operating as a\n narcotic."
},
{
"word": "Narcotic",
"type": "n.",
"definition": "A drug which, in medicinal doses, generally allays morbid\n susceptibility, relieves pain, and produces sleep; but which, in\n poisonous doses, produces stupor, coma, or convulsions, and, when given\n in sufficient quantity, causes death. The best examples are opium (with\n morphine), belladonna (with atropine), and conium."
},
{
"word": "Narcotical",
"type": "a.",
"definition": "Narcotic."
},
{
"word": "Narcotine",
"type": "n.",
"definition": "An alkaloid found in opium, and extracted as a white\n crystalline substance, tasteless and less poisonous than morphine; --\n called also narcotia."
},
{
"word": "Narcotinic",
"type": "a.",
"definition": "Pertaining to narcotine."