-
Notifications
You must be signed in to change notification settings - Fork 6
/
Copy pathgreatscott16.xml
2718 lines (995 loc) · 762 KB
/
greatscott16.xml
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
<tei.2>
<teiHeader status="new" type="text">
<fileDesc>
<titleStmt>
<title>A Greek-English Lexicon</title>
<title type="sub">Machine readable text</title>
<author>Henry George Liddell</author>
<author>Robert Scott</author>
<sponsor>Perseus Project, Tufts University</sponsor>
<principal>Gregory Crane</principal>
<respStmt>
<resp>Prepared under the supervision of</resp>
<name>Lisa Cerrato</name>
<name>William Merrill</name>
<name>Elli Mylonas</name>
<name>David Smith</name>
</respStmt>
<funder n="org:NEH">The National Endowment for the Humanities</funder>
</titleStmt>
<publicationStmt>
<publisher>Trustees of Tufts University</publisher>
<pubPlace>Medford, MA</pubPlace>
<authority>Perseus Project</authority>
</publicationStmt>
<sourceDesc default="NO">
<biblStruct default="NO">
<monogr>
<author>Henry George Liddell</author>
<author>Robert Scott</author>
<title>A Greek-English Lexicon</title>
<respStmt>
<resp>revised and augmented throughout by</resp>
<name>Sir Henry Stuart Jones</name>
<resp>with the assistance of</resp>
<name>Roderick McKenzie</name>
</respStmt>
<imprint>
<pubPlace>Oxford</pubPlace>
<publisher>Clarendon Press</publisher>
<date>1940</date>
</imprint>
</monogr>
<idno type="ISBN">0198642261</idno>
</biblStruct>
</sourceDesc>
</fileDesc>
<encodingDesc>
<refsDecl doctype="TEI.2">
<state n="chunk" unit="entry"/>
</refsDecl>
<refsDecl doctype="TEI.2">
<state unit="alphabetic letter"/>
<state unit="entry"/>
</refsDecl>
<refsDecl doctype="TEI.2">
<state n="chunk" unit="section"/>
</refsDecl>
</encodingDesc>
<profileDesc>
<langUsage default="NO">
<language id="en">English
</language><language id="greek">Greek
</language><language id="la">Latin
</language><language id="fr">French
</language></langUsage>
</profileDesc>
<revisionDesc>
<change><date>22 September 2000</date>
<respStmt><name>DAS</name><resp>ed.</resp></respStmt>
<item>
$Log: lsj.xml,v $
Revisions 2.0 through 2021/02/19 Helma Dik
Converted to Unicode; checked alphabetized div2 heads to find misspelled or mistakenly split entries.
Note: I mostly left items out of alphabetical order that are out of alphabetical order in print edition.
Removed any [] and - from divheads; kept those in orth_orig. Over time, split entries (marked with a in orig_id), and corrected contents as needed.
Note: Combining UTF-8 characters where possible; modifier letter apostrophe (02BC) for Greek apostrophes.
Ongoing incremental editorial work on OCR errors and citation references (URNs)
Please report errors at logeion.uchicago.edu ("Report a Problem").
Revision 1.2 2004/12/14 20:14:41 packel
added id tags to entries/senses
Revision 1.1 2004/11/22 17:05:46 packel
converted to P4/XML
Revision 1.5 2004/10/07 14:57:49 packel
ϟ/[san ] -> koppa/san
Revision 1.4 2004/09/02 15:31:17 packel
for entries w/ identical keys, appended numbers to keys to distinguish them
Revision 1.3 2004/06/16 17:50:22 lcerrato
added entry for bioteuw, which was not separate from previous word
also fixed polemou in same entry
added space in entry for mwros after esti
fixed translation which ended around key word because of typesetting in entry sxhmatizw
fixed typos in entry for epignamptw
Revision 1.2 2004/06/15 21:06:38 lcerrato
1. malignant for malignat
2. pe/rnhmi for perneul in piprasko entry
3. removed space a)sebh/mata/
4. removed for remoued
5. vulgar for vhlgar
6. a)nh/r for a)nh/o
7. ravaging for rauaging
8. bathe for dathe
9. of light for oflight
10. interperted to interpreted
11. possil to possit
12. trun to turn
13. witty for wilty
Revision 1.1 2003/01/09 22:34:05 amahoney
this is now the official copy
Revision 1.4 2001/04/14 00:48:17 dasmith
Added funder.
Revision 1.3 2001/02/28 20:07:01 dasmith
Made headers mixed case.
Revision 1.2 2001/02/23 20:46:20 dasmith
Added preface.
Revision 1.1 2000/12/07 21:14:07 dasmith
Moved from special LSJ directory.
Revision 1.5 2000/10/06 22:54:24 dasmith
Chunk front matter on sections.
Revision 1.4 2000/10/03 16:06:06 dasmith
Fixed sourceDesc title.
Added ISBN.
Revision 1.3 2000/09/26 23:59:09 dasmith
I didnʼt mean to make alphabetic letters chunk.
Revision 1.2 2000/09/26 23:42:22 dasmith
Added alphabet to refsDecl.
Revision 1.1 2000/09/23 00:32:34 dasmith
Preamble and TEI header for loose SGML LSJ.
</item></change></revisionDesc></teiHeader>
<text>
<div1>
<div2 id="crossd" orig_id="n23151" key="d" type="main" opt="n"><head extent="full" lang="greek" opt="n" orth_orig="δ">δ</head>, <orth extent="full" lang="greek" opt="n">δέλτα</orth> (q. v.), fourth letter of the Gr. alphabet: as numeral, <foreign lang="greek">δʹ,</foreign> <sense id="n23151.0" n="" level="1" opt="n">= τέσσαρες and <foreign lang="greek">τέταρτος,</foreign> but <foreign lang="greek"><num>͵δ</num>,</foreign> <abbr>=</abbr> 4,000.</sense></div2>
<div2 id="crossda^" orig_id="n23152" key="da^" type="main" opt="n"><head extent="pref" lang="greek" opt="n" orth_orig="δᾰ-">δα-</head>, intens. Prefix, <sense id="n23152.0" n="" level="1" opt="n">= ζα-, as in <foreign lang="greek">δάσκιος, δαφοινός.</foreign></sense></div2>
<div2 id="crossda=" orig_id="n23153" key="da=" type="main" opt="n"><head extent="full" lang="greek" opt="n" orth_orig="δᾶ">δᾶ</head>, <sense id="n23153.0" n="" level="1" opt="n">expld. by the Sch. <bibl n="Perseus:abo:tlg,0085,005:1072"><author>A.</author> <title>Ag.</title> 1072</bibl>, <bibl n="Perseus:abo:tlg,4099,001:60:8" default="NO"><title>EM</title> 60.8</bibl> as <gramGrp opt="n"><gram type="dialect" opt="n">Dor.</gram></gramGrp> for <foreign lang="greek">γᾶ, γῆ,</foreign> in Trag. (lyr.) <foreign lang="greek">φεῦ δᾶ,</foreign> <bibl n="Perseus:abo:tlg,0006,015:1296"><author>E.</author> <title>Ph.</title> 1296</bibl>, <bibl n="Perseus:abo:tlg,0019,007:198"><author>Ar.</author> <title>Lys.</title> 198</bibl>; <cit><quote lang="greek">οἰοῖ δᾶ φεῦ</quote> <bibl n="Perseus:abo:tlg,0085,007:874"><author>A.</author> <title>Eu.</title> 874</bibl></cit>; <cit><quote lang="greek">ἄλευʼ ἆ δᾶ</quote> <bibl n="Perseus:abo:tlg,0085,003:567"><author>Id.</author> <title>Pr.</title> 567</bibl></cit>; <cit><quote lang="greek">ὀτοτοτοτοῖ ποποῖ δᾶ</quote> <bibl n="Perseus:abo:tlg,0085,005:1072"><author>Id.</author> <title>Ag.</title> 1072</bibl></cit>; <foreign lang="greek">οὐ δᾶν</foreign> no <i>by earth,</i> <bibl n="Perseus:abo:tlg,0005,001:4:17"><author>Theoc.</author> 4.17</bibl> (v.l. γᾶν):—prob. an exclamation of horror.</sense></div2>
<div2 id="crossdaa/nai" orig_id="n23154" key="daa/nai" type="gloss" opt="n"><head extent="full" lang="greek" opt="n" orth_orig="δαάναι·">δαάναι</head> <foreign lang="greek">δύεσθαι, ὅσον εἰς τὴν χρείαν τοῦ στήμονος μεριζόμενον καθάπτεσθαι,</foreign> <author>Hsch.</author> <orth extent="full" lang="greek" opt="n">δαβελός</orth> [i.e. <foreign lang="greek">δαϝ],</foreign> <sense id="n23154.0" n="" level="1" opt="n">= δαλός (<gramGrp opt="n"><gram type="dialect" opt="n">Lacon.</gram></gramGrp>), <author>Id.</author> <orth extent="full" lang="greek" opt="n">δαβῆ·</orth> <foreign lang="greek">καυθῇ</foreign> (<gramGrp opt="n"><gram type="dialect" opt="n">Lacon.</gram></gramGrp>), <author>Id.</author></sense></div2>
<div2 id="crossdagka/nw" orig_id="n23155" key="dagka/nw" type="main" opt="n"><head extent="full" lang="greek" opt="n" orth_orig="δαγκάνω">δαγκάνω</head>, <sense id="n23155.0" n="" level="1" opt="n">= δάκνω, cf. <author>Heraclid.</author> ap. <bibl n="Perseus:abo:tlg,4083,001:28:42" default="NO"><author>Eust.</author> 28.42</bibl>, <bibl default="NO"><author>Hdn.Gr.</author> 1.451</bibl>, etc.</sense></div2>
<div2 id="crossda/gkolon" orig_id="n23156" key="da/gkolon" type="main" opt="n"><head extent="full" lang="greek" opt="n" orth_orig="δάγκολον">δάγκολον</head>, <gen lang="greek" opt="n">τό</gen>, <sense id="n23156.0" n="" level="1" opt="n">= δρέπανον, <author>Hsch.</author>; cf. <foreign lang="greek">ζάγκλη.</foreign></sense></div2>
<div2 id="crossda/gma" orig_id="n23157" key="da/gma" type="main" opt="n"><head extent="full" lang="greek" opt="n" orth_orig="δάγμα">δάγμα</head>, <itype lang="greek" opt="n">ατος</itype>, <gen lang="greek" opt="n">τό</gen>, v. δάχμα.</div2>
<div2 id="crossda/gmnos" orig_id="n23158" key="da/gmnos" type="main" opt="n"><head extent="full" lang="greek" opt="n" orth_orig="δάγμνος">δάγμνος</head> (sic): <foreign lang="greek">οἰκτρός, πένης, ἐλεεινός,</foreign> <author>Hsch.</author></div2>
<div2 id="crossdagmo/s" orig_id="n23159" key="dagmo/s" type="main" opt="n"><head extent="full" lang="greek" opt="n" orth_orig="δαγμός">δαγμός</head>, <gen lang="greek" opt="n">ὁ</gen>, <sense id="n23159.0" n="" level="1" opt="n">= δηγμός, <author>Ruf.</author> <title>Fr.</title> 64.20.</sense></div2>
<div2 id="crossdagno/n" orig_id="n23160" key="dagno/n" type="gloss" opt="n"><head extent="full" lang="greek" opt="n" orth_orig="δαγνόν·">δαγνόν</head> <foreign lang="greek">πυκνόν,</foreign> <author>Hsch.</author> (leg. <foreign lang="greek">ἀδινόν</foreign>).</div2>
<div2 id="crossdago/menon" orig_id="n23161" key="dago/menon" type="gloss" opt="n"><head extent="full" lang="greek" opt="n" orth_orig="δαγόμενον·">δαγόμενον</head> <foreign lang="greek">ἐρρωμένον,</foreign> <author>Hsch.</author></div2>
<div2 id="crossda_gu/s" orig_id="n23162" key="da_gu/s" type="main" opt="n"><head extent="full" lang="greek" opt="n" orth_orig="δᾱγύς">δαγύς</head>, <itype lang="greek" opt="n">ῦδος</itype>, <gen lang="greek" opt="n">ἡ</gen>, <sense id="n23162.0" n="" level="1" opt="n"><i>wax doll,</i> used in magic rites, <i>puppet,</i> <bibl n="Perseus:abo:tlg,0005,001:2:110"><author>Theoc.</author> 2.110</bibl>.</sense></div2>
<div2 id="crossdadai/nw" orig_id="n23163" key="dadai/nw" type="main" opt="n"><head extent="full" lang="greek" opt="n" orth_orig="δαδαίνω">δαδαίνω</head>, <sense id="n23163.0" n="" level="1" opt="n">= δανδαίνω, <author>Hsch.</author></sense></div2>
<div2 id="cross*da|da_fo/rios" orig_id="n23164" key="*da|da_fo/rios" type="main" opt="n"><head extent="full" lang="greek" opt="n" orth_orig="Δᾳδᾱφόριος">Δᾳδαφόριος</head>, <gen lang="greek" opt="n">ὁ</gen> (sc. <foreign lang="greek">μήν</foreign>), name of a month at Delphi, <title>SIG</title> 729.1, etc.: Δᾳδαφόρια, <gen lang="greek" opt="n">τά</gen>, <sense id="n23165.0" n="" level="1" opt="n"><i>torchlight festival held in this month,</i> <author>Michel</author> 995<title>D</title> 4.</sense></div2>
<div2 id="crossda|dhfo/ros" orig_id="n23166" key="da|dhfo/ros" type="main" opt="n"><head extent="full" lang="greek" opt="n" orth_orig="δᾳδηφόρος">Δᾳδηφόρος</head>, <itype lang="greek" opt="n">ον</itype>, <sense id="n23166.0" n="" level="1" opt="n"><i>torch-bearing,</i> epith. of <foreign lang="greek">Κόρη,</foreign> <title>App.Anth.</title> 1.266c (<placeName>Eleusis</placeName>).</sense></div2>
<div2 id="crossda/|dinos" orig_id="n23167" key="da/|dinos" type="main" opt="n"><head extent="full" lang="greek" opt="n" orth_orig="δᾴδ-ινος">δᾴδινος</head>, <itype lang="greek" opt="n">η</itype>, <itype lang="greek" opt="n">ον</itype>, (<etym lang="greek" opt="n">δᾴς</etym>) <sense id="n23167.0" n="" level="1" opt="n"><i>of pine wood,</i> <author>Gal.</author> 19.738, <bibl n="Perseus:abo:tlg,0718,003:141" default="NO"><author>Aët.</author> 3.141</bibl>.</sense></div2>
<div2 id="crossda|di/on" orig_id="n23168" key="da|di/on" type="main" opt="n"><head extent="suff" lang="greek" opt="n" orth_orig="δᾳδ-ίον">δᾳδίον</head>, <gen lang="greek" opt="n">τό</gen>, <gramGrp opt="n"><gram type="dim" opt="n">Dim. of</gram></gramGrp> <foreign lang="greek">δαΐς, δᾴς,</foreign> <sense id="n23168.0" n="" level="1" opt="n"><i>splinter of pine wood,</i> <author>Dsc.</author> 1.69,2.73; <i>little torch,</i> <bibl n="Perseus:abo:tlg,2023,002:21" default="NO"><author>Iamb.</author> <title>Protr.</title> 21.ισʹ</bibl>, <bibl n="Perseus:abo:tlg,4029,001:2:20" default="NO"><author>Procop.</author> <title>Goth.</title> 2.20</bibl>, <bibl n="Perseus:abo:tlg,0542,001:10:111" default="NO"><author>Poll.</author> 10.111</bibl>; used of <i>firewood,</i> <bibl n="Perseus:abo:tlg,0019,002:921"><author>Ar.</author> <title>Eq.</title> 921</bibl>. </sense><sense n="2" id="n23168.1" level="3" opt="n"> <i>dilator</i> (cf. δαΐς 4), <bibl n="Perseus:abo:tlg,0627,036:1:13" default="NO"><author>Hp.</author> <title>Mul.</title> 1.13</bibl>, <bibl n="Perseus:abo:tlg,0627,036:2:133" default="NO">2.133</bibl>.</sense></div2>
<div2 id="crossda|di/s" orig_id="n23169" key="da|di/s" type="main" opt="n"><head extent="suff" lang="greek" opt="n" orth_orig="δᾳδ-ίς">δᾳδίς</head>, <itype lang="greek" opt="n">ίδος</itype>, <gen lang="greek" opt="n">ἡ</gen>, <sense id="n23169.0" n="" level="1" opt="n"><i>a torch-feast,</i> <bibl n="Perseus:abo:tlg,0062,038:39" default="NO"><author>Luc.</author> <title>Alex.</title> 39</bibl>.</sense></div2>
<div2 id="crossda|dokope/w" orig_id="n23170" key="da|dokope/w" type="main" opt="n"><head extent="full" lang="greek" opt="n" orth_orig="δᾳδοκοπέω">δᾳδοκοπέω</head> <foreign lang="greek">πεύκην,</foreign> <sense id="n23170.0" n="" level="1" opt="n"><i>cut out the resin-glut</i> from it, <bibl n="Perseus:abo:tlg,0093,002:5:16:2" default="NO"><author>Thphr.</author> <title>CP</title> 5.16.2</bibl> (<gramGrp opt="n"><gram type="voice" opt="n">Pass.</gram></gramGrp>).</sense></div2>
<div2 id="crossda|do/omai" orig_id="n23171" key="da|do/omai" type="main" opt="n"><head extent="full" lang="greek" opt="n" orth_orig="δᾳδόομαι">δᾳδόομαι</head>, <gramGrp opt="n"><gram type="voice" opt="n">Pass.</gram></gramGrp>, (<etym lang="greek" opt="n">δᾴς</etym>) <sense id="n23171.0" n="" level="1" opt="n"><i>become afflicted with resin-glut,</i> <bibl n="Perseus:abo:tlg,0093,002:5:11:3" default="NO"><author>Thphr.</author> <title>CP</title> 5.11.3</bibl>.</sense></div2>
<div2 id="crossda|dourge/w" orig_id="n23172" key="da|dourge/w" type="main" opt="n"><head extent="full" lang="greek" opt="n" orth_orig="δᾳδουργ-έω">δᾳδουργέω</head>, <sense id="n23172.0" n="" level="1" opt="n">= δᾳδοκοπέω, <bibl n="Perseus:abo:tlg,0093,002:5:16:2" default="NO"><author>Thphr.</author> <title>CP</title> 5.16.2</bibl>:—<gramGrp opt="n"><gram type="voice" opt="n">Pass.</gram></gramGrp>, <bibl n="Perseus:abo:tlg,0093,001:4:16:1" default="NO"><author>Id.</author> <title>HP</title> 4.16.1</bibl>.</sense></div2>
<div2 id="crossda|dourgo/s" orig_id="n23173" key="da|dourgo/s" type="main" opt="n"><head extent="suff" lang="greek" opt="n" orth_orig="δᾳδουργ-ός">δᾳδουργός</head>, <gen lang="greek" opt="n">ὁ</gen>, <sense id="n23173.0" n="" level="1" opt="n"><i>one who cuts pines for torches,</i> <bibl n="Perseus:abo:tlg,0093,001:3:9:3" default="NO"><author>Thphr.</author> <title>HP</title> 3.9.3</bibl>.</sense></div2>
<div2 id="crossda|douxe/w" orig_id="n23174" key="da|douxe/w" type="main" opt="n"><head extent="full" lang="greek" opt="n" orth_orig="δᾳδουχ-έω">δᾳδουχέω</head>, <sense id="n23174.0" n="" level="1" opt="n"><i>carry a torch,</i> esp. in pageants, <bibl n="Perseus:abo:tlg,0006,011:343"><author>E.</author> <title>Tr.</title> 343</bibl>, <bibl n="Perseus:abo:tlg,0062,016:22" default="NO"><author>Luc.</author> <title>Cat.</title> 22</bibl>. </sense><sense n="2" id="n23174.1" level="3" opt="n"> <i>hold the office of δᾳδοῦχος I.1,</i> <title>IG</title> 2.1413,1414. </sense><sense n="II" id="n23174.2" level="2" opt="n"> c. acc., <i>celebrate,</i> <cit><quote lang="greek">τὰ μυστήρια</quote> <bibl n="Perseus:abo:tlg,2001,005:71a" default="NO"><author>Them.</author> <title>Or.</title> 5.71a</bibl></cit>:—<gramGrp opt="n"><gram type="voice" opt="n">Med.</gram></gramGrp>, <cit><quote lang="greek">γόον οὐχ ὑμέναιον ἐδᾳδουχήσατο</quote> <title>Epigr.Gr.</title> 413</cit>:—<gramGrp opt="n"><gram type="voice" opt="n">Pass.</gram></gramGrp>, <i>to be illuminated,</i> <bibl n="Perseus:abo:tlg,1679,001:1" default="NO"><author>Socr.Rhod.</author> 1</bibl>.</sense></div2>
<div2 id="crossda|douxi/a" orig_id="n23175" key="da|douxi/a" type="main" opt="n"><head extent="suff" lang="greek" opt="n" orth_orig="δᾳδουχ-ία">δᾳδουχία</head>, <gen lang="greek" opt="n">ἡ</gen>, <sense id="n23175.0" n="" level="1" opt="n"><i>torch-bearing,</i> <bibl n="Perseus:abo:tlg,0527,024:4:22"><author>LXX</author> <title>2 Ma.</title> 4.22</bibl>, <bibl n="Perseus:abo:tlg,0007,112:621c"><author>Plu.</author> <title>QConv.</title> 2.621c</bibl>, <bibl n="Perseus:abo:tlg,0062,038:38" default="NO"><author>Luc.</author> <title>Alex.</title> 38</bibl>.</sense></div2>
<div2 id="crossda|dou/xion" orig_id="n23176" key="da|dou/xion" type="main" opt="n"><head extent="suff" lang="greek" opt="n" orth_orig="δᾳδούχ-ιον">δᾳδούχιον</head>, <gen lang="greek" opt="n">τό</gen>, <sense id="n23176.0" n="" level="1" opt="n"><i>office of the δᾳδοῦχος,</i> <title>IG</title> 1(2).6.99 (prob.).</sense></div2>
<div2 id="crossda/|douxos" orig_id="n23177" key="da/|douxos" type="main" opt="n"><head extent="suff" lang="greek" opt="n" orth_orig="δᾳδοῦχ-ος">δᾳδοῦχος</head>, <gen lang="greek" opt="n">ὁ</gen>, (<etym lang="greek" opt="n">ἔχω</etym>) <sense id="n23177.0" n="" level="1" opt="n"><i>torch-bearer,</i> <bibl n="Perseus:abo:tlg,0551,017:2:17"><author>App.</author> <title>BC</title> 2.17</bibl>: but usu. of the holder of a hereditary office at the mysteries of the Eleusinian Demeter, <bibl n="Perseus:abo:tlg,0032,001:6:3:3"><author>X.</author> <title>HG</title> 6.3.3</bibl>, <bibl n="Perseus:abo:tlg,0086,038:1405a:20"><author>Arist.</author> <title>Rh.</title> 1405a20</bibl>, <title>IG</title> 1(2).76.25, <title>SIG</title> 2587.305; <cit><quote lang="greek">δ. Κόρης</quote> <title>IG</title> 3.172.9</cit>. </sense><sense n="2" id="n23177.1" level="3" opt="n"> metaph., <cit><quote lang="greek">δᾳδοῦχοι τῆς σοφίας</quote> <bibl n="Perseus:abo:tlg,0007,067:10e"><author>Plu.</author> <title>Lib.educ.</title> 2.10e</bibl></cit>. </sense><sense n="3" id="n23177.2" level="3" opt="n"> of the Sun, <bibl n="Perseus:abo:tlg,1269,001:1:123" default="NO"><author>Cleanth.Stoic.</author> 1.123</bibl>. </sense><sense n="II" id="n23177.3" level="2" opt="n"> <i>torch-stand, candelabrum,</i> <title>CIG</title> 4647 (<placeName>Bostra</placeName>): also in <gramGrp opt="n"><gram type="dialect" opt="n">Lacon.</gram></gramGrp> form <foreign lang="greek">δᾳδῶχορ,</foreign> <author>Hsch.</author></sense></div2>
<pb n="365"/>
<div2 id="crossda|dofore/w" orig_id="n23178" key="da|dofore/w" type="main" opt="n"><head extent="full" lang="greek" opt="n" orth_orig="δᾳδο-φορέω">δᾳδοφορέω</head>, <sense id="n23178.0" n="" level="1" opt="n"><i>carry torches,</i> <bibl n="Perseus:abo:tlg,0062,042:36" default="NO"><author>Luc.</author> <title>Peregr.</title> 36</bibl>. </sense><sense n="II" id="n23178.1" level="2" opt="n"> <i>produce δαΐς,</i> <bibl n="Perseus:abo:tlg,0093,001:9:2:8" default="NO"><author>Thphr.</author> <title>HP</title> 9.2.8</bibl>.</sense></div2>
<div2 id="crossda|dofo/ros" orig_id="n23179" key="da|dofo/ros" type="main" opt="n"><head extent="suff" lang="greek" opt="n" orth_orig="δᾳδο-φόρος">δᾳδοφόρος</head>, <itype lang="greek" opt="n">ον</itype>, <sense id="n23179.0" n="" level="1" opt="n"><i>torch-bearing,</i> <cit><quote lang="greek">Ἑκάτα</quote> <author>B.</author> <title>Fr.</title> 23.1</cit>.</sense></div2>
<div2 id="crossdadu/ssomai" orig_id="n23180" key="dadu/ssomai" type="main" opt="n"><head extent="full" lang="greek" opt="n" orth_orig="δαδύσσομαι">δαδύσσομαι</head>, <sense id="n23180.0" n="" level="1" opt="n"><i>to be distracted,</i> <cit><quote lang="greek">ἐν ὅσσῳ δέει δαδύσσεσθε</quote> <bibl n="Perseus:abo:tlg,0524,001:117" default="NO"><author>Sophr.</author> 117</bibl></cit>.</sense></div2>
<div2 id="crossda|dw/dhs" orig_id="n23181" key="da|dw/dhs" type="main" opt="n"><head extent="full" lang="greek" opt="n" orth_orig="δᾳδ-ώδης">δᾳδώδης</head>, <itype lang="greek" opt="n">ες</itype>, <sense id="n23181.0" n="" level="1" opt="n"><i>resinous,</i> <bibl n="Perseus:abo:tlg,0093,001:3:9:7" default="NO"><author>Thphr.</author> <title>HP</title> 3.9.7</bibl>, <bibl n="Perseus:abo:tlg,0093,001:9:2:5" default="NO">9.2.5</bibl> (<gramGrp opt="n"><gram type="comp" opt="n">Comp.</gram></gramGrp>), <bibl n="Perseus:abo:tlg,0007,112:648d"><author>Plu.</author> <title>QConv.</title> 2.648d</bibl>.</sense></div2>
<div2 id="crossda/|dwsis" orig_id="n23182" key="da/|dwsis" type="main" opt="n"><head extent="suff" lang="greek" opt="n" orth_orig="δᾴδ-ωσις">δᾴδωσις</head>, <itype lang="greek" opt="n">εως</itype>, <gen lang="greek" opt="n">ἡ</gen>, <sense id="n23182.0" n="" level="1" opt="n"><i>the disease of resin-glut,</i> <bibl n="Perseus:abo:tlg,0093,002:5:11:3" default="NO"><author>Thphr.</author> <title>CP</title> 5.11.3</bibl>.</sense></div2>
<div2 id="crossdaegw/" orig_id="n23183" key="daegw/" type="gloss" opt="n"><head extent="full" lang="greek" opt="n" orth_orig="δαεγώ·">δαεγώ</head> <foreign lang="greek">οἶδα, ἐπίσταμαι,</foreign> <author>Hsch.</author> <orth extent="full" lang="greek" opt="n">δαεινόν·</orth> <foreign lang="greek">κλαύσιμον,</foreign> <author>Id.</author> (leg. <foreign lang="greek">καυσ-</foreign>).</div2>
<div2 id="cross*da/eira" orig_id="n23184" key="*da/eira" type="main" opt="n"><head extent="full" lang="greek" opt="n" orth_orig="Δάειρα">Δάειρα</head> <pron extent="full" lang="greek" opt="n">[ᾰ]</pron>,<gen lang="greek" opt="n">ἡ</gen>, <sense id="n23184.0" n="" level="1" opt="n"><i>Knowing one,</i> epith. of Persephone at Athens, <bibl n="Perseus:abo:tlg,2329,001:45" default="NO"><author>Pherecyd.</author> 45</bibl> <author>J.</author>, <bibl n="Perseus:abo:tlg,0341,002:710"><author>Lyc.</author> 710</bibl>, <title>IG</title> 2.741 <title>Ab</title> 2: <orth extent="full" lang="greek" opt="n">Δαῖρα</orth>, <bibl n="Perseus:abo:tlg,0085,008:277" default="NO"><author>A.</author> <title>Fr.</title> 277</bibl>, <title>IG</title> 2(2).1358.12: <orth extent="full" lang="greek" opt="n">—Δαειρίτης,</orth> <itype lang="greek" opt="n">ου</itype>, <gen lang="greek" opt="n">ὁ</gen>, <i>her priest,</i> <bibl n="Perseus:abo:tlg,0542,001:1:35" default="NO"><author>Poll.</author> 1.35</bibl>.</sense></div2>
<div2 id="crossdaei/w" orig_id="n23185" key="daei/w" type="main" opt="n"><head extent="full" lang="greek" opt="n" orth_orig="δαείω">δαείω</head>, <orth extent="full" lang="greek" opt="n">δαήμεναι</orth>, v. *δάω.</div2>
<div2 id="crossdaelo/s" orig_id="n23186" key="daelo/s" type="main" opt="n"><head extent="full" lang="greek" opt="n" orth_orig="δαελός">δαελός</head>, Syracusan form of <foreign lang="greek">δαλός,</foreign> <bibl n="Perseus:abo:tlg,0524,001:116" default="NO"><author>Sophr.</author> 116</bibl>; but, <sense id="n23186.0" n="" level="1" opt="n">= δῆλος, <author>Hsch.</author></sense></div2>
<div2 id="crossda^ero/s" orig_id="n23187" key="da^ero/s" type="main" opt="n"><head extent="full" lang="greek" opt="n" orth_orig="δᾰερός">δαερός</head>, (<foreign lang="greek">δαίω</foreign> A) <sense id="n23187.0" n="" level="1" opt="n"><i>hot,</i> cj. in <bibl n="Perseus:abo:tlg,1342,001:90" default="NO"><author>Emp.</author> 90</bibl>; also, <i>black,</i> or <i>burnt,</i> <author>Hsch.</author></sense></div2>
<div2 id="crossdahqmo/n" orig_id="n23188" key="dahqmo/n" type="gloss" opt="n"><head extent="full" lang="greek" opt="n" orth_orig="δαηθμόν·">δαηθμόν</head> <foreign lang="greek">ἐμπρησμόν,</foreign> <author>Hsch.</author> <orth extent="full" lang="greek" opt="n">δαήμεναι·</orth> <foreign lang="greek">ἔμπειροι γυναῖκες,</foreign> <author>Id.</author></div2>
<div2 id="crossdahmosu/nh" orig_id="n23189" key="dahmosu/nh" type="main" opt="n"><head extent="full" lang="greek" opt="n" orth_orig="δαημ-οσύνη">δαημοσύνη</head>, <gen lang="greek" opt="n">ἡ</gen>, <sense id="n23189.0" n="" level="1" opt="n"><i>skill, knowledge,</i> <bibl n="Perseus:abo:tlg,0001,001:2:175"><author>A.R.</author> 2.175</bibl> (pl.), <bibl n="Perseus:abo:tlg,0001,001:4:1273">4.1273</bibl>, <bibl n="Perseus:abo:tlg,0579,002:728" default="NO"><author>Orph.</author> <title>A.</title> 728</bibl> (pl.), <bibl n="Perseus:abo:tlg,2001,033:366a" default="NO"><author>Them.</author> <title>Or.</title> 33.366a</bibl>.</sense></div2>
<div2 id="crossdah/mwn" orig_id="n23190" key="dah/mwn" type="main" opt="n"><head extent="suff" lang="greek" opt="n" orth_orig="δαήμ-ων">δαήμων</head>, <itype lang="greek" opt="n">ον</itype>, gen. <itype lang="greek" opt="n">ονος</itype>, (<etym lang="greek" opt="n">δαῆναι</etym>) <sense id="n23190.0" n="" level="1" opt="n"><i>knowing, experienced in</i> a thing, <cit><quote lang="greek">τέκτονος ἐν παλάμῃσι δαήμονος</quote> <bibl n="Perseus:abo:tlg,0012,001:15:411"><title>Il.</title> 15.411</bibl></cit>; <cit><quote lang="greek">ἐν πάντεσσʼ ἔργοισι δαήμονα</quote> <bibl n="Perseus:abo:tlg,0012,001:23:671">23.671</bibl></cit>: c. gen. rei, <cit><quote lang="greek">δαήμονι φωτὶ ἐΐσκω ἄθλων</quote> <bibl n="Perseus:abo:tlg,0012,002:8:159"><title>Od.</title> 8.159</bibl></cit>, cf. <bibl n="Perseus:abo:tlg,0161,001:197" default="NO"><author>Democr.</author> 197</bibl>: c. <mood opt="n">inf.</mood>, <cit><quote lang="greek">κοσμῆσαι δ.</quote> <i>knowing best how to . .,</i> <bibl n="Perseus:abo:tlg,0074,001:7:28:2" default="NO"><author>Arr.</author> <title>An.</title> 7.28.2</bibl></cit>; <cit><quote lang="greek">χρήματα φυλάττειν δ.</quote> <bibl n="Perseus:abo:tlg,2001,002:25c" default="NO"><author>Them.</author> <title>Or.</title> 2.25c</bibl></cit>: <gramGrp opt="n"><gram type="comp" opt="n">Comp.</gram></gramGrp> <cit><quote lang="greek">-έστερος</quote> <bibl n="Perseus:abo:tlg,2050,001:p.499B" default="NO"><author>Eun.</author> <title>VS</title> p.499B.</bibl></cit>, <author>Procop.</author> <title>Arc.Praef.</title>: <gramGrp opt="n"><gram type="comp" opt="n">Sup.</gram></gramGrp> <cit><quote lang="greek">-έστατος</quote> <bibl n="Perseus:abo:tlg,0032,007:1:2:12"><author>X.</author> <title>Cyr.</title> 1.2.12</bibl></cit>, <bibl n="Perseus:abo:tlg,4024,001:5:6" default="NO"><author>Agath.</author> 5.6</bibl>. <pos opt="n">Adv.</pos> <gramGrp opt="n"><gram type="comp" opt="n">Sup.</gram></gramGrp> <cit><quote lang="greek">-έστατα</quote> <bibl n="Perseus:abo:tlg,4024,001:3:25" default="NO"><author>Id.</author> 3.25</bibl></cit>.</sense></div2>
<div2 id="crossdah=nai" orig_id="n23191" key="dah=nai" type="main" opt="n"><head extent="full" lang="greek" opt="n" orth_orig="δαῆναι">δαῆναι</head>, v. *δάω.</div2>
<div2 id="crossda_h/r" orig_id="n23192" key="da_h/r" type="main" opt="n"><head extent="full" lang="greek" opt="n" orth_orig="δᾱήρ">δαήρ</head>, <itype lang="greek" opt="n">έρος</itype>, <gen lang="greek" opt="n">ὁ</gen>, voc. <foreign lang="greek">δᾶερ,</foreign> <bibl n="Perseus:abo:tlg,0012,001:3:180"><title>Il.</title> 3.180</bibl>, <bibl n="Perseus:abo:tlg,0012,001:6:344">6.344</bibl>, <bibl n="Perseus:abo:tlg,0541,001:135" default="NO"><author>Men.</author> 135</bibl>: dat. written <foreign lang="greek">τῷ δαιρι</foreign> (sic) <title>JHS</title> 37.105, cf. <title>BCH</title> 8.382, Buresch <title>Aus Lydien</title> 116:— <sense id="n23192.0" n="" level="1" opt="n"><i>husbandʼs brother, brother-in-law</i>: gen. pl. as disyll., <cit><quote lang="greek">δαέρων ἢ γαλόων</quote> <bibl n="Perseus:abo:tlg,0012,001:24:769"><title>Il.</title> 24.769</bibl></cit>. (Cf. Skt. <foreign lang="sa">devár-,</foreign> Lith. gen. sg. <foreign lang="lt">dieveȓs,</foreign> Slav. <foreign lang="chu">dèverǐ,</foreign> Lat. <foreign lang="lat">lēvir.</foreign>) </sense></div2>
<div2 id="crossdahro/n" orig_id="n23193" key="dahro/n" type="gloss" opt="n"><head extent="full" lang="greek" opt="n" orth_orig="δαηρόν·">δαηρόν</head> <foreign lang="greek">θερμόν, λαμπρόν, καυματηρόν,</foreign> <bibl n="Perseus:abo:tlg,4099,001:244:42" default="NO"><title>EM</title> 244.42</bibl>, cf. <author>Hsch.</author>; perh.to be read in <bibl n="Perseus:abo:tlg,1342,001:90" default="NO"><author>Emp.</author> 90</bibl>, cf. <foreign lang="greek">δαερός.</foreign></div2>
<div2 id="crossda/hs" orig_id="n23194" key="da/hs" type="gloss" opt="n"><head extent="full" lang="greek" opt="n" orth_orig="δάης·">δάης</head> <foreign lang="greek">μάχης μεγάλης,</foreign> <author>Hsch.</author> <orth extent="full" lang="greek" opt="n">δάησις</orth> <pron extent="full" lang="greek" opt="n">[ᾰ]</pron>, <itype lang="greek" opt="n">εως</itype>, <gen lang="greek" opt="n">ἡ</gen>, <sense id="n23194.0" n="" level="1" opt="n"><i>learning, understanding,</i> <cit><quote lang="greek">δ. καὶ ἐμπειρία</quote> <bibl n="Perseus:abo:tlg,4099,001:250:53" default="NO"><title>EM</title> 250.53</bibl></cit>.</sense></div2>
<div2 id="crossda/qea" orig_id="n23195" key="da/qea" type="gloss" opt="n"><head extent="full" lang="greek" opt="n" orth_orig="δάθεα·">δάθεα</head> <foreign lang="greek">ἅρπη, φρεάτια</foreign> (<gramGrp opt="n"><gram type="dialect" opt="n">Tarent.</gram></gramGrp>), <author>Hsch.</author></div2>
<div2 id="crossdai/" orig_id="n23196" key="dai/" type="main" opt="n"><head extent="full" lang="greek" opt="n" orth_orig="δαί">δαί</head>, <sense id="n23196.0" n="" level="1" opt="n">colloquial form of <foreign lang="greek">δή,</foreign> used after interrogatives, to express wonder or curiosity, <cit><quote lang="greek">τίς δ. ὅμιλος ὅδʼ ἔπλετο;</quote> <bibl n="Perseus:abo:tlg,0012,002:1:225"><title>Od.</title> 1.225</bibl></cit>; <cit><quote lang="greek">ποῦ δ. νηῦς ἕστηκε;</quote> <bibl n="Perseus:abo:tlg,0012,002:24:299">24.299</bibl></cit>, cf. <bibl n="Perseus:abo:tlg,0082,004:78:2" default="NO"><author>A.D.</author> <title>Synt.</title> 78.2</bibl> (but wrongly read by <author>Aristarch.</author> for <cit><quote lang="greek">δʼ αἱ</quote> <bibl n="Perseus:abo:tlg,0012,001:10:408"><title>Il.</title> 10.408</bibl></cit>): freq. in Com., <cit><quote lang="greek">τί δ. σὺ . . πεποίηκας;</quote> <bibl n="Perseus:abo:tlg,0019,002:351"><author>Ar.</author> <title>Eq.</title> 351</bibl></cit>; mostly in a separate clause, <cit><quote lang="greek">τίδ.;</quote> <i>what? how?</i> <bibl n="Perseus:abo:tlg,0486,001:93" default="NO"><author>Pherecr.</author> 93</bibl></cit>, <bibl n="Perseus:abo:tlg,0019,002:171"><author>Ar.</author> <title>Eq.</title> 171</bibl>, al.; <cit><quote lang="greek">τί δ. σύ;</quote> <bibl n="Perseus:abo:tlg,0019,006:136"><author>Id.</author> <title>Av.</title> 136</bibl></cit>; <cit><quote lang="greek">πῶς δ.;</quote> <bibl n="Perseus:abo:tlg,0019,004:1212"><author>Id.</author> <title>V.</title> 1212</bibl></cit>; dub. l. in <bibl n="Perseus:abo:tlg,0085,003:933"><author>A.</author> <title>Pr.</title> 933</bibl>, <bibl n="Perseus:abo:tlg,0085,006:900"><title>Ch.</title> 900</bibl>, <bibl n="Perseus:abo:tlg,0011,002:318"><author>S.</author> <title>Ant.</title> 318</bibl>, but prob. to be read <bibl n="Perseus:abo:tlg,0006,003:1012"><author>E.</author> <title>Med.</title> 1012</bibl>, <bibl n="Perseus:abo:tlg,0006,010:275"><title>Ion</title> 275</bibl>, al.: freq. in codd. of <author>Pl.</author>, but prob. f.l. for δέ, as in <bibl n="Perseus:abo:tlg,0019,001:912"><author>Ar.</author> <title>Ach.</title> 912</bibl>.</sense></div2>
<div2 id="crossda^i+" orig_id="n23197" key="da^i+" type="main" opt="n"><head extent="full" lang="greek" opt="n" orth_orig="δᾰϊ">δαΐ</head> <foreign lang="greek">[ῐ</foreign>], <gramGrp opt="n"><gram type="dialect" opt="n">Ep.</gram></gramGrp> dat. of <foreign lang="greek">δαΐς.</foreign></div2>
<div2 id="crossdai+lmo/s" orig_id="n23198" key="dai+lmo/s" type="main" opt="n"><head extent="full" lang="greek" opt="n" orth_orig="δαϊγμός">δαϊγμός</head>, <gen lang="greek" opt="n">ὁ</gen>, <sense id="n23198.0" n="" level="1" opt="n"><i>division, partition,</i> <title>EM</title> 613.45.</sense></div2>
<div2 id="crossdaida^le/odmos" orig_id="n23199" key="daida^le/odmos" type="main" opt="n"><head extent="full" lang="greek" opt="n" orth_orig="δαιδᾰλέοδμος">δαιδαλέοδμος</head>, <itype lang="greek" opt="n">ον</itype>, <sense id="n23199.0" n="" level="1" opt="n"><i>with artificial fragrance,</i> <cit><quote lang="greek">μύρα</quote> <bibl n="Perseus:abo:tlg,1342,001:128:5" default="NO"><author>Emp.</author> 128.5</bibl></cit>.</sense></div2>
<div2 id="crossdaida/leos" orig_id="n23200" key="daida/leos" type="main" opt="n"><head extent="full" lang="greek" opt="n" orth_orig="δαιδάλ-εος">δαιδάλεος</head> <foreign lang="greek">[ᾰ</foreign>] (not <foreign lang="greek">-έος,</foreign> <bibl default="NO"><author>Hdn.Gr.</author> 1.114</bibl>), <itype lang="greek" opt="n">α</itype>, <itype lang="greek" opt="n">ον</itype>: (<etym lang="greek" opt="n"> δαιδάλλω</etym>):— <sense id="n23200.0" n="" level="1" opt="n"><i>cunningly</i> or <i>curiously wrought,</i> in Hom.always of metal or wood, <foreign lang="greek">ζωστήρ, θώρηξ, σάκος, θρόνος,</foreign> <bibl n="Perseus:abo:tlg,0012,001:4:135"><title>Il.</title> 4.135</bibl>, <bibl n="Perseus:abo:tlg,0012,001:8:195">8.195</bibl>, <bibl n="Perseus:abo:tlg,0012,001:19:380">19.380</bibl>, <bibl n="Perseus:abo:tlg,0012,002:1:131"><title>Od.</title> 1.131</bibl>; <cit><quote lang="greek">λάρναξ</quote> <bibl n="Perseus:abo:tlg,0261,001:37:1" default="NO"><author>Simon.</author> 37.1</bibl></cit>, <bibl n="Perseus:abo:tlg,0199,001:5:140"><author>B.</author> 5.140</bibl>; also of embroidery, <bibl n="Perseus:abo:tlg,0020,001:575"><author>Hes.</author> <title>Th.</title> 575</bibl>, <bibl n="Perseus:abo:tlg,0006,007:470"><author>E.</author> <title>Hec.</title> 470</bibl> (lyr.), <bibl n="Perseus:abo:tlg,0513,001:33" default="NO"><author>Theopomp.Com.</author> 33</bibl>. </sense><sense n="2" id="n23200.1" level="3" opt="n"> of natural objects, <i>dappled, spotted,</i> etc., of fish, <bibl n="Perseus:abo:tlg,0402,001:17" default="NO"><author>Alex.</author> 17</bibl>; of deer, <bibl n="Perseus:abo:tlg,2045,001:5:391" default="NO"><author>Nonn.</author> <title>D.</title> 5.391</bibl>; <i>shot with light, sheeny,</i> <bibl n="Perseus:abo:tlg,0024,001:1:218" default="NO"><author>Opp.</author> <title>C.</title> 1.218</bibl>. </sense><sense n="II" id="n23200.2" level="2" opt="n"> <i>cunning,</i> <cit><quote lang="greek">χείρ</quote> <bibl n="Perseus:abo:tlg,0059,039:22" default="NO"><author>Pl.</author> <title>Epigr.</title> 22</bibl></cit>: <cit><quote lang="greek">Ἥφαιστος</quote> <bibl n="Perseus:abo:tlg,7000,001:9:755" default="NO"><title>AP</title> 9.755</bibl></cit>.</sense></div2>
<div2 id="crossdaidaleu/omai" orig_id="n23201" key="daidaleu/omai" type="main" opt="n"><head extent="suff" lang="greek" opt="n" orth_orig="δαιδαλ-εύομαι">δαιδαλεύομαι</head>, <sense id="n23201.0" n="" level="1" opt="n">= δαιδάλλω, <bibl n="Perseus:abo:tlg,0018,001:1:666" default="NO"><author>Ph.</author> 1.666</bibl>.</sense></div2>
<div2 id="crossdaidaleu/tria" orig_id="n23202" key="daidaleu/tria" type="main" opt="n"><head extent="suff" lang="greek" opt="n" orth_orig="δαιδαλ-εύτρια">δαιδαλεύτρια</head>, <gen lang="greek" opt="n">ἡ</gen>, <sense id="n23202.0" n="" level="1" opt="n"><i>skilful workwoman,</i> <bibl n="Perseus:abo:tlg,0341,002:578"><author>Lyc.</author> 578</bibl>.</sense></div2>
<div2 id="crossdaida/llw" orig_id="n23203" key="daida/llw" type="main" opt="n"><head extent="full" lang="greek" opt="n" orth_orig="δαιδάλλω">δαιδάλλω</head>, <gramGrp opt="n"><gram type="voice" opt="n">Act.</gram></gramGrp> only in <tns opt="n">pres.</tns> and <tns opt="n">impf.</tns>:—<sense id="n23203.0" n="" level="1" opt="n"><i>work cunningly, embellish,</i> <cit><quote lang="greek">σάκος . . πάντοσε δαιδάλλων</quote> <bibl n="Perseus:abo:tlg,0012,001:18:479"><title>Il.</title> 18.479</bibl></cit>; <cit><quote lang="greek">λέχος ἔξεον . . δαιδάλλων χρυσῷ τε καὶ ἀργύρῳ ἠδʼ ἐλέφαντι</quote> <bibl n="Perseus:abo:tlg,0012,002:23:200"><title>Od.</title> 23.200</bibl></cit>; of a <i>painter</i> or <i>sculptor,</i> <bibl n="Perseus:abo:tlg,0024,001:1:335" default="NO"><author>Opp.</author> <title>C.</title> 1.335</bibl>, <title>IG</title> 14.967:—<gramGrp opt="n"><gram type="voice" opt="n">Pass.</gram></gramGrp>, to be <i>spotted, marked,</i> <cit><quote lang="greek">σφραγῖσι</quote> <bibl n="Perseus:abo:tlg,0024,001:1:324" default="NO"><author>Opp.</author> <title>C.</title> 1.324</bibl></cit>. </sense><sense n="2" id="n23203.1" level="3" opt="n"> metaph., <cit><quote lang="greek">δ. πόλιν εὐανορίαισι</quote> <bibl n="Perseus:abo:tlg,0033,001:5:21"><author>Pi.</author> <title>O.</title> 5.21</bibl></cit>; <cit><quote lang="greek">δ. ἔπεσιν</quote> <bibl n="Perseus:abo:tlg,0033,005:2:32" default="NO"><author>Id.</author> <title>Parth.</title> 2.32</bibl></cit>:—<gramGrp opt="n"><gram type="voice" opt="n">Pass.</gram></gramGrp>, <cit><quote lang="greek">δεδαιδαλμένοι ψεύδεσι μῦθοι</quote> <bibl n="Perseus:abo:tlg,0033,001:1:29"><author>Id.</author> <title>O.</title> 1.29</bibl></cit>; <foreign lang="greek">πλοῦτος ἀρεταῖς δεδ.</foreign> ib. <bibl n="Perseus:abo:tlg,0033,001:2:53">2.53</bibl>; <cit><quote lang="greek">[μέλη] δαιδαλθέντʼ ἀοιδαῖς</quote> <bibl n="Perseus:abo:tlg,0033,003:11:18"><author>Id.</author> <title>N.</title> 11.18</bibl></cit>.</sense></div2>
<div2 id="crossdai/dalma" orig_id="n23204" key="dai/dalma" type="main" opt="n"><head extent="full" lang="greek" opt="n" orth_orig="δαίδαλ-μα">δαίδαλμα</head>, <itype lang="greek" opt="n">ατος</itype>, <gen lang="greek" opt="n">τό</gen>, <sense id="n23204.0" n="" level="1" opt="n"><i>work of art,</i> <cit><quote lang="greek">θεῶν</quote> <bibl n="Perseus:abo:tlg,0005,001:1:32"><author>Theoc.</author> 1.32</bibl></cit>, cf. <bibl n="Perseus:abo:tlg,0061,002:13" default="NO"><author>Luc.</author> <title>Am.</title> 13</bibl>; <cit><quote lang="greek">τὰ τῆς οἰκοδομίας δ.</quote> <bibl n="Perseus:abo:tlg,4024,001:2:15" default="NO"><author>Agath.</author> 2.15</bibl></cit>.</sense></div2>
<div2 id="crossdaidalo/eis" orig_id="n23205" key="daidalo/eis" type="main" opt="n"><head extent="suff" lang="greek" opt="n" orth_orig="δαιδαλ-όεις">δαιδαλόεις</head>, <itype lang="greek" opt="n">εσσα</itype>, <itype lang="greek" opt="n">εν</itype>, <sense id="n23205.0" n="" level="1" opt="n">= δαιδάλεος, τεύχεα <bibl n="Perseus:abo:tlg,2046,001:1:141" default="NO"><author>Q.S.</author> 1.141</bibl>; <cit><quote lang="greek">βρέτας χρυσῷ δ.</quote> <bibl n="Perseus:abo:tlg,7000,001:9:332" default="NO"><title>AP</title> 9.332</bibl></cit> (Nossis).</sense></div2>
<div2 id="crossdai/dalos" orig_id="n23206" key="dai/dalos" type="main" opt="n"><head extent="suff" lang="greek" opt="n" orth_orig="δαίδαλ-ος">δαίδαλος</head>, <itype lang="greek" opt="n">ον</itype>, <sense id="n23206.0" n="" level="1" opt="n"><i>cunningly</i> or <i>curiously wrought,</i> <cit><quote lang="greek">μάχαιρα</quote> <bibl n="Perseus:abo:tlg,0033,003:4:59"><author>Pi.</author> <title>N.</title> 4.59</bibl></cit> (<author>Did.</author>, <foreign lang="greek">Δαιδάλου</foreign> codd.); <cit><quote lang="greek">πέπλος</quote> <bibl n="Perseus:abo:tlg,0085,007:635"><author>A.</author> <title>Eu.</title> 635</bibl></cit>: in <author>Hom.</author> only neut. as <pos opt="n">Subst.</pos>, <foreign lang="greek">ὃς χερσὶν ἐπίστατο δαίδαλα πάντα τεύχειν . . </foreign> to frame all <i>cunning works,</i> <bibl n="Perseus:abo:tlg,0012,001:5:60"><title>Il.</title> 5.60</bibl>, al.; <cit><quote lang="greek">τεκτόνων δ.</quote> <bibl n="Perseus:abo:tlg,0033,002:5:36"><author>Pi.</author> <title>P.</title> 5.36</bibl></cit>, cf. <bibl n="Perseus:abo:tlg,0024,001:1:355" default="NO"><author>Opp.</author> <title>C.</title> 1.355</bibl>: also in sg., <bibl n="Perseus:abo:tlg,0012,002:19:227"><title>Od.</title> 19.227</bibl>. </sense><sense n="2" id="n23206.1" level="3" opt="n"> <i>spotted, speckled,</i> or perh. rather, <i>sheeny, shot with light,</i> of fish, <bibl n="Perseus:abo:tlg,0024,001:1:58" default="NO"><author>Opp.</author> <title>C.</title> 1.58</bibl>. </sense><sense n="II" id="n23206.2" level="2" opt="n"> as pr. n., <orth lang="greek">Δαίδαλος</orth>, <gen lang="greek" opt="n">ὁ</gen>, <i>Daedalus,</i> <abbr>i.e.</abbr> <i>the Cunning Worker, the Artist,</i> traditional name for the first sculptor, <bibl n="Perseus:abo:tlg,0012,001:18:592"><title>Il.</title> 18.592</bibl>, <bibl n="Perseus:abo:tlg,0059,024:97d"><author>Pl.</author> <title>Men.</title> 97d</bibl>: hence <orth lang="greek">δαίδαλα</orth>, <gen lang="greek" opt="n">τά</gen>, <abbr>=</abbr> <i>statues,</i> <bibl n="Perseus:abo:tlg,0525,001:9:3:2"><author>Paus.</author> 9.3.2</bibl>: also <orth lang="greek">Δαίδαλα</orth>, <gen lang="greek" opt="n">τά</gen>, festival of Hera at Plataea, ib., <bibl n="Perseus:abo:tlg,0007,145:157" default="NO"><author>Plu.</author> <title>Daed.</title> tit.</bibl> [fr 157 Sandbach]</sense></div2>
<div2 id="crossdaidalou/rghma" orig_id="n23207" key="daidalou/rghma" type="main" opt="n"><head extent="full" lang="greek" opt="n" orth_orig="δαιδαλούργ-ημα">δαιδαλούργημα</head>, <itype lang="greek" opt="n">ατος</itype>, <gen lang="greek" opt="n">τό</gen>, <sense id="n23207.0" n="" level="1" opt="n">= δαίδαλμα, δ. χάλκειον <bibl n="Perseus:abo:tlg,1764,001:275" default="NO"><author>Vett.Val.</author> 275</bibl>. </sense></div2>
<div2 id="crossdaidalourgi/a" orig_id="n23207a" key="daidalourgi/a" type="main" opt="n"><head extent="suff" lang="greek" opt="n" orth_orig="δαιδαλουργ-ία">δαιδαλουργία</head>, <gen lang="greek" opt="n">ἡ</gen>, <sense id="n23207a.0" n="" level="1" opt="n"><i>cunning workmanship,</i> <bibl n="Perseus:abo:tlg,1286,001:3:3:1" default="NO"><author>Corp.Herm.</author> 3.3.1</bibl>.</sense></div2>
<div2 id="crossdaidalourgo/s" orig_id="n23208" key="daidalourgo/s" type="main" opt="n"><head extent="suff" lang="greek" opt="n" orth_orig="δαιδαλουργ-ός">δαιδαλουργός</head>, <itype lang="greek" opt="n">όν</itype>, <sense id="n23208.0" n="" level="1" opt="n"><i>cunningly wrought,</i> <cit><quote lang="greek">ἀνδριάντες</quote> <bibl n="Perseus:abo:tlg,0596,001:3:7" default="NO"><author>Zen.</author> 3.7</bibl></cit>.</sense></div2>
<div2 id="crossdaida^lo/xeir" orig_id="n23209" key="daida^lo/xeir" type="main" opt="n"><head extent="full" lang="greek" opt="n" orth_orig="δαιδᾰλόχειρ">δαιδαλόχειρ</head>, <gen lang="greek" opt="n">ὁ</gen>, <gen lang="greek" opt="n">ἡ</gen>, gen. <itype lang="greek" opt="n">χειρος</itype>, <sense id="n23209.0" n="" level="1" opt="n"><i>cunning of hand,</i> <bibl n="Perseus:abo:tlg,7000,001:6:204" default="NO"><title>AP</title> 6.204</bibl> (<author>Leon.</author>).</sense></div2>
<div2 id="crossdaidalo/w" orig_id="n23210" key="daidalo/w" type="main" opt="n"><head extent="full" lang="greek" opt="n" orth_orig="δαιδαλόω">δαιδαλόω</head>, <sense id="n23210.0" n="" level="1" opt="n">= δαιδάλλω, poet. <mood opt="n">inf.</mood> <tns opt="n">fut.</tns> <cit><quote lang="greek">-ωσέμεν</quote> <bibl n="Perseus:abo:tlg,0033,001:1:105"><author>Pi.</author> <title>O.</title> 1.105</bibl></cit>.</sense></div2>
<div2 id="crossdaidh/ssousi" orig_id="n23211" key="daidh/ssousi" type="gloss" opt="n"><head extent="full" lang="greek" opt="n" orth_orig="δαιδήσσουσι·">δαιδήσσουσι</head> <foreign lang="greek">βασανίζουσι,</foreign> <author>Hsch.</author> <orth extent="full" lang="greek" opt="n">δαιδύσσεσθαι·</orth> <foreign lang="greek">ἕλκεσθαι,</foreign> <author>Id.</author>; cf. <foreign lang="greek">δαδύσσομαι.</foreign></div2>
<div2 id="crossdaie/lici" orig_id="n23212" key="daie/lici" type="gloss" opt="n"><head extent="full" lang="greek" opt="n" orth_orig="δαιέλιξι·">δαιέλιξι</head> <foreign lang="greek">τοῖς πεπυρακτωμένοις ξύλοις μετὰ προσβολῆς πυρσῶν</foreign> (Arg.), <author>Hsch.</author> <orth extent="full" lang="greek" opt="n">δαιημός</orth>, <gen lang="greek" opt="n">ὁ</gen>, <sense id="n23212.0" n="" level="1" opt="n"><i>division,</i> <author>Id.</author> (leg. <foreign lang="greek">δαιθμός</foreign>).</sense></div2>
<div2 id="crossdaih=sai" orig_id="n23213" key="daih=sai" type="gloss" opt="n"><head extent="full" lang="greek" opt="n" orth_orig="δαιῆσαι·">δαιῆσαι</head> <foreign lang="greek">διδάξαι,</foreign> <author>Hsch.</author>; cf. <foreign lang="greek">*δάω.</foreign></div2>
<div2 id="crossdai/+zw" orig_id="n23214" key="dai/+zw" type="main" opt="n"><head extent="full" lang="greek" opt="n" orth_orig="δαΐζω">δαΐζω</head>, <tns opt="n">aor.</tns> <foreign lang="greek">ἐδάϊξα</foreign> (v. infr.):—<gramGrp opt="n"><gram type="voice" opt="n">Med.</gram></gramGrp> <tns opt="n">fut.</tns> <cit><quote lang="greek">δαΐσονται</quote> <bibl n="Perseus:abo:tlg,2583,001:4:615" default="NO"><author>Man.</author> 4.615</bibl></cit>:— <gramGrp opt="n"><gram type="voice" opt="n">Pass.</gram></gramGrp> (v. infr., cf. <foreign lang="greek">δαίω</foreign> B):—<sense id="n23214.0" n="" level="1" opt="n">poet. (Trag. in lyr.), <i>cleave asunder,</i> <cit><quote lang="greek">πάντα διεμοιρᾶτο δαΐζων</quote> <bibl n="Perseus:abo:tlg,0012,002:14:434"><title>Od.</title> 14.434</bibl></cit>; <cit><quote lang="greek">χιτῶνα περὶ στήθεσσι δαΐξαι</quote> <bibl n="Perseus:abo:tlg,0012,001:2:416"><title>Il.</title> 2.416</bibl></cit>, cf. <bibl n="Perseus:abo:tlg,0012,001:7:247">7.247</bibl>; <cit><quote lang="greek">δαΐζων ὀξέϊ χαλκῷ</quote> <bibl n="Perseus:abo:tlg,0012,001:24:393">24.393</bibl></cit>; <cit><quote lang="greek">κάρανα δαΐξας</quote> <bibl n="Perseus:abo:tlg,0085,006:396"><author>A.</author> <title>Ch.</title> 396</bibl></cit>. </sense><sense n="2" id="n23214.1" level="3" opt="n"> <i>slay,</i> <cit><quote lang="greek">δαΐζων ἵππους τε καὶ ἀνέρας</quote> <bibl n="Perseus:abo:tlg,0012,001:11:497"><title>Il.</title> 11.497</bibl></cit>; <cit><quote lang="greek">τέκνον δαΐξω</quote> <bibl n="Perseus:abo:tlg,0085,005:208"><author>A.</author> <title>Ag.</title> 208</bibl></cit>: freq. in <gramGrp opt="n"><gram type="voice" opt="n">Pass.</gram></gramGrp>, <cit><quote lang="greek">χαλκῷ δεδαϊγμένος</quote> <bibl n="Perseus:abo:tlg,0012,001:22:72"><title>Il.</title> 22.72</bibl></cit>, etc.; <foreign lang="greek">δεδαϊγμένος ἦτορ</foreign> <i>pierced through</i> the heart, <bibl n="Perseus:abo:tlg,0012,001:17:535">17.535</bibl>; <foreign lang="greek">δεδαϊγμένον ἦτορ</foreign> a heart <i>torn</i> by misery, <bibl n="Perseus:abo:tlg,0012,002:13:320"><title>Od.</title> 13.320</bibl>; <cit><quote lang="greek">ἐκ βελέων δαϊχθείς</quote> <bibl n="Perseus:abo:tlg,0033,002:6:33"><author>Pi.</author> <title>P.</title> 6.33</bibl></cit>; <cit><quote lang="greek">ἐξ ἐμᾶν χερῶν</quote> <bibl n="Perseus:abo:tlg,0006,013:872"><author>E.</author> <title>IT</title> 872</bibl></cit>. </sense><sense n="3" id="n23214.2" level="3" opt="n"> <i>rend,</i> <cit><quote lang="greek">χερσὶ κόμην ᾔσχυνε δαΐζων</quote> <bibl n="Perseus:abo:tlg,0012,001:18:27"><title>Il.</title> 18.27</bibl></cit> (so in <gramGrp opt="n"><gram type="voice" opt="n">Med.</gram></gramGrp> <tns opt="n">fut.</tns>, <author>Man.</author> l.c.); <foreign lang="greek">δαΐζειν πόλιν</foreign> <i>destroy</i> it <i>utterly,</i> <bibl n="Perseus:abo:tlg,0085,001:680"><author>A.</author> <title>Supp.</title> 680</bibl>, cf. <bibl n="Perseus:abo:tlg,0085,006:396"><title>Ch.</title> 396</bibl>. </sense><sense n="4" id="n23214.3" level="3" opt="n"> <i>divide,</i> <foreign lang="greek">ἐδαΐζετο θυμὸς ἐνὶ στήθεσσιν Ἀχαιῶν</foreign> their soul <i>was divided</i> within them, <bibl n="Perseus:abo:tlg,0012,001:9:8"><title>Il.</title> 9.8</bibl>; <foreign lang="greek">δαϊζόμενος κατὰ θυμὸν διχθάδια</foreign> <i>divided</i> or <i>doubting</i> between two opinions, <bibl n="Perseus:abo:tlg,0012,001:14:20">14.20</bibl>; <cit><quote lang="greek">δαΐζειν ἐννέα μοίρας</quote> <i>to divide into . .,</i> <bibl n="Perseus:abo:tlg,0579,003:712" default="NO"><author>Orph.</author> <title>L.</title> 712</bibl></cit>. </sense><sense n="5" id="n23214.4" level="3" opt="n"> = δαινύναι (q. v.), <cit><quote lang="greek">θυσίας ἃς δαΐζοι ἁ πόλις</quote> <title>IG</title> 7.207</cit> (<placeName>Aegosthena</placeName>). [<foreign lang="greek">δᾰ-;</foreign> but <cit><quote lang="greek">δᾱ-</quote> <bibl n="Perseus:abo:tlg,0012,001:11:497"><title>Il.</title> 11.497</bibl></cit>, <bibl n="Perseus:abo:tlg,0085,006:396"><author>A.</author> <title>Ch.</title> 396</bibl>.] (Prob. <foreign lang="greek">δαϝίζω</foreign> from <foreign lang="greek">*δα-ϝο-ς</foreign> <i>‘cut’</i>; cf. <foreign lang="greek">δᾰ-τέομαι.</foreign>) </sense></div2>
<div2 id="crossdaiqmo/s" orig_id="n23215" key="daiqmo/s" type="main" opt="n"><head extent="full" lang="greek" opt="n" orth_orig="δαιθμός">δαιθμός</head>, <gen lang="greek" opt="n">ὁ</gen>, (<foreign lang="greek">δαίω</foreign> B) <sense id="n23215.0" n="" level="1" opt="n"><i>allotment</i> of land, <title>IG</title> 14.352ii23 (<placeName>Halaesa</placeName>). </sense><sense n="II" id="n23215.1" level="2" opt="n"> <i>rule of distribution,</i> <title>IG</title> 12(5).50 (<placeName>Naxos</placeName>).</sense></div2>
<div2 id="crossda^i+kta/menos" orig_id="n23216" key="da^i+kta/menos" type="main" opt="n"><head extent="full" lang="greek" opt="n" orth_orig="δᾰϊκτάμενος">δαϊκτάμενος</head>, <itype lang="greek" opt="n">η</itype>, <itype lang="greek" opt="n">ον</itype>, <sense id="n23216.0" n="" level="1" opt="n"><i>slain in battle,</i> <bibl n="Perseus:abo:tlg,0012,001:21:146"><title>Il.</title> 21.146</bibl>, <bibl n="Perseus:abo:tlg,0012,001:21:301">301</bibl>.</sense></div2>
<div2 id="crossda^i+kth/r" orig_id="n23217" key="da^i+kth/r" type="main" opt="n"><head extent="full" lang="greek" opt="n" orth_orig="δᾰϊκτ-ήρ">δαϊκτήρ</head>, <itype lang="greek" opt="n">ῆρος</itype>, <gen lang="greek" opt="n">ὁ</gen>, <sense id="n23217.0" n="" level="1" opt="n"><i>slayer, murderer,</i> of Ares, <bibl n="Perseus:abo:tlg,0383,001:28" default="NO"><author>Alc.</author> 28</bibl>. </sense><sense n="2" id="n23217.1" level="3" opt="n"> as <pos opt="n">Adj.</pos>, <i>heart-rending,</i> <cit><quote lang="greek">γόος</quote> <bibl n="Perseus:abo:tlg,0085,004:916"><author>A.</author> <title>Th.</title> 916</bibl></cit> (lyr.).</sense></div2>
<div2 id="crossda^i+kth/s" orig_id="n23218" key="da^i+kth/s" type="main" opt="n"><head extent="suff" lang="greek" opt="n" orth_orig="δᾰϊκτ-ής">δαϊκτής</head>, <itype lang="greek" opt="n">οῦ</itype>, <gen lang="greek" opt="n">ὁ</gen>, <sense id="n23218.0" n="" level="1" opt="n"><abbr> = </abbr> foreg. 2, <cit><quote lang="greek">φθόνος</quote> <title>Anacreont.</title> 40.10</cit> (prob.).</sense></div2>
<div2 id="crossda^i+kto/s" orig_id="n23219" key="da^i+kto/s" type="main" opt="n"><head extent="suff" lang="greek" opt="n" orth_orig="δᾰϊκτ-ός">δαϊκτός</head>, <itype lang="greek" opt="n">ή</itype>, <itype lang="greek" opt="n">όν</itype>, <sense id="n23219.0" n="" level="1" opt="n"><i>to be slain,</i> <bibl n="Perseus:abo:tlg,0579,002:976" default="NO"><author>Orph.</author> <title>A.</title> 976</bibl>.</sense></div2>
<div2 id="crossda^i/+ktwr" orig_id="n23220" key="da^i/+ktwr" type="main" opt="n"><head extent="suff" lang="greek" opt="n" orth_orig="δᾰΐκτ-ωρ">δαΐκτωρ</head>, <itype lang="greek" opt="n">ορος</itype>, <gen lang="greek" opt="n">ὁ</gen>, <sense id="n23220.0" n="" level="1" opt="n">= δαϊκτήρ 2, <cit><quote lang="greek">γάμος</quote> <bibl n="Perseus:abo:tlg,0085,001:798"><author>A.</author> <title>Supp.</title> 798</bibl></cit> (lyr.).</sense></div2>
<div2 id="crossdai=ma" orig_id="n23221" key="dai=ma" type="gloss" opt="n"><head extent="full" lang="greek" opt="n" orth_orig="δαῖμα·">δαῖμα</head> <foreign lang="greek">σπιθαμήν, καὶ τὸ ἔγκωλον τοῦ σχοινίου, στήμονα δὲ</foreign> (i. e. <foreign lang="greek">δίασμα</foreign>) <foreign lang="greek"> Ταραντῖνοι,</foreign> <author>Hsch.</author> <orth extent="full" lang="greek" opt="n">δαιμοδία·</orth> <foreign lang="greek">ἡ τῶν ἀρίστων ἐπιβολή,</foreign> <author>Id.</author> <orth extent="full" lang="greek" opt="n">δαιμοί·</orth> <foreign lang="greek">οἱ καταδικασθέντες τὰς οὐσίας εἰς βασιλέως,</foreign> <author>Id.</author></div2>
<div2 id="crossdaimona/w" orig_id="n23222" key="daimona/w" type="main" opt="n"><head extent="full" lang="greek" opt="n" orth_orig="δαιμονάω">δαιμονάω</head>, <sense id="n23222.0" n="" level="1" opt="n"><i>to be under the power of a δαίμων,</i> <i>to suffer by a divine visitation,</i> <cit><quote lang="greek">δαιμονᾷ δόμος κακοῖς</quote> <bibl n="Perseus:abo:tlg,0085,006:566"><author>A.</author> <title>Ch.</title> 566</bibl></cit>; <cit><quote lang="greek">δαιμονῶντες ἐν ἄτᾳ</quote> <bibl n="Perseus:abo:tlg,0085,004:1008"><author>Id.</author> <title>Th.</title> 1008</bibl></cit> (lyr.): abs., <i>to be possessed, to be mad,</i> <bibl n="Perseus:abo:tlg,0006,015:888"><author>E.</author> <title>Ph.</title> 888</bibl>, <bibl n="Perseus:abo:tlg,0032,002:1:1:9"><author>X.</author> <title>Mem.</title> 1.1.9</bibl>, <bibl n="Perseus:abo:tlg,0007,022:20" default="NO"><author>Plu.</author> <title>Marc.</title> 20</bibl>, etc.; <cit><quote lang="greek">δαιμονᾷς</quote> <bibl n="Perseus:abo:tlg,0541,001:140" default="NO"><author>Men.</author> 140</bibl></cit>.</sense></div2>
<div2 id="crossdaimonhtia=|" orig_id="n23223" key="daimonhtia=|" type="gloss" opt="n"><head extent="full" lang="greek" opt="n" orth_orig="δαιμονητιᾷ·">δαιμονητιᾷ</head> <foreign lang="greek">δαιμονίζεται</foreign> (Cret.), <author>Hsch.</author></div2>
<div2 id="crossdaimonia/zomai" orig_id="n23224" key="daimonia/zomai" type="main" opt="n"><head extent="full" lang="greek" opt="n" orth_orig="δαιμονι-άζομαι">δαιμονιάζομαι</head>, <sense id="n23224.0" n="" level="1" opt="n">= δαιμονίζομαι III, <title>PMag.Par.</title> 1.3007.</sense></div2>
<div2 id="crossdaimoniako/s" orig_id="n23225" key="daimoniako/s" type="main" opt="n"><head extent="suff" lang="greek" opt="n" orth_orig="δαιμονι-ακός">δαιμονιακός</head>, <sense id="n23225.0" n="" level="1" opt="n">= δαιμονικός, <title>PMag.Osl.</title> 1.143 (<etym lang="greek" opt="n">-ων-</etym>).</sense></div2>
<div2 id="crossdaimonia/w" orig_id="n23226" key="daimonia/w" type="main" opt="n"><head extent="suff" lang="greek" opt="n" orth_orig="δαιμονι-άω">δαιμονιάω</head>, <sense id="n23226.0" n="" level="1" opt="n"><i>to be possessed of a God,</i> <author>Phld.</author> <title>D.</title> 1.18.</sense></div2>
<div2 id="crossdaimonia/rxhs" orig_id="n23227" key="daimonia/rxhs" type="main" opt="n"><head extent="suff" lang="greek" opt="n" orth_orig="δαιμονι-άρχης">δαιμονιάρχης</head>, <itype lang="greek" opt="n">ου</itype>, <gen lang="greek" opt="n">ὁ</gen>, <sense id="n23227.0" n="" level="1" opt="n"><i>ruler of demons,</i> <author>Lact.</author> <title>Inst.</title> 2.14.6.</sense></div2>
<div2 id="crossdaimoni/zomai" orig_id="n23228" key="daimoni/zomai" type="main" opt="n"><head extent="full" lang="greek" opt="n" orth_orig="δαιμον-ίζομαι">δαιμονίζομαι</head>, <gramGrp opt="n"><gram type="voice" opt="n">Med.</gram></gramGrp>, <sense id="n23228.0" n="" level="1" opt="n">= δαιμονάω, ἄλλος κατʼ ἄλλην δαιμονίζεται τύχην each one hath his own <i>fate appointed,</i> <bibl n="Perseus:abo:tlg,0487,001:191" default="NO"><author>Philem.</author> 191</bibl>. </sense><sense n="II" id="n23228.1" level="2" opt="n"> as <gramGrp opt="n"><gram type="voice" opt="n">Pass.</gram></gramGrp>, <i>to be deified,</i> <bibl n="Perseus:abo:tlg,0011,008:173"><author>S.</author> <title>Fr.</title> 173</bibl> (so expld. by <title>AB</title> 90; <gramGrp opt="n"><gram type="voice" opt="n">Act.</gram></gramGrp> in <author>Hsch.</author>). </sense><sense n="III" id="n23228.2" level="2" opt="n"> <i>to be possessed by a demon</i> or <i>evil spirit,</i> <bibl n="Perseus:abo:tlg,0031,001:4:24"><title>Ev.Matt.</title> 4.24</bibl>, al., <bibl n="Perseus:abo:tlg,0007,112:706d"><author>Plu.</author> <title>QConv.</title> 2.706d</bibl>.</sense></div2>
<div2 id="crossdaimoniko/s" orig_id="n23229" key="daimoniko/s" type="main" opt="n"><head extent="suff" lang="greek" opt="n" orth_orig="δαιμον-ικός">δαιμονικός</head>, <itype lang="greek" opt="n">ή</itype>, <itype lang="greek" opt="n">όν</itype>, of persons or animals, <sense id="n23229.0" n="" level="1" opt="n"><i>possessed by a demon,</i> <cit><quote lang="greek">ζῷον</quote> <bibl n="Perseus:abo:tlg,0007,089:362f"><author>Plu.</author> <title>Isid.</title> 2.362f</bibl></cit>: of things, <i>sent by a demon,</i> <foreign lang="greek">οὐ θεῖον, ἀλλὰ δ.</foreign> ib. <bibl n="Perseus:abo:tlg,0007,132:996c"><title>Es. carn. 2</title> 996c</bibl>, cf.458c; <foreign lang="greek">δ. δύναμις</foreign> ib. <bibl n="Perseus:abo:tlg,0007,089:363a"><title>Isid.</title> 363a</bibl>.</sense></div2>
<div2 id="crossdaimo/nion" orig_id="n23230" key="daimo/nion" type="main" opt="n"><head extent="full" lang="greek" opt="n" orth_orig="δαιμόνιον">δαιμόνιον</head>, <gen lang="greek" opt="n">τό</gen>, <sense id="n23230.0" n="" level="1" opt="n"><i>divine Power, Divinity,</i> <bibl n="Perseus:abo:tlg,0016,001:5:87"><author>Hdt.</author> 5.87</bibl>, <bibl n="Perseus:abo:tlg,0006,017:894"><author>E.</author> <title>Ba.</title> 894</bibl> (lyr.), <bibl n="Perseus:abo:tlg,0010,007:13"><author>Isoc.</author> 1.13</bibl>, <bibl n="Perseus:abo:tlg,0059,030:382e"><author>Pl.</author> <title>R.</title> 382e</bibl>, etc.; <cit><quote lang="greek">τὸ δαιμόνιον ἄρʼ ἢ θεὸς ἢ θεοῦ ἔργον</quote> <bibl n="Perseus:abo:tlg,0086,038:1398a:15"><author>Arist.</author> <title>Rh.</title> 1398a15</bibl></cit>, cf. <bibl n="Perseus:abo:tlg,0086,038:1419a:9">1419a9</bibl>; <cit><quote lang="greek">οἱ θεοὶ εἴσονται καὶ τὸ δ.</quote> <bibl n="Perseus:abo:tlg,0014,019:239"><author>D.</author> 19.239</bibl></cit>; <foreign lang="greek">φοβεῖσθαι μή τι δ. πράγματʼ ἐλαύνῃ</foreign> some <i>fatality,</i> <bibl n="Perseus:abo:tlg,0014,009:54"><author>Id.</author> 9.54</bibl>; <foreign lang="greek">τὰ τοῦ δ.</foreign> the favours of <i>fortune,</i> <bibl n="Perseus:abo:tlg,0059,035:992d"><author>Pl.</author> <title>Epin.</title> 992d</bibl>. </sense><sense n="II" id="n23230.1" level="2" opt="n"> <i>inferior divine being,</i> <cit><quote lang="greek">μεταξὺ θεοῦ τε καὶ θνητοῦ</quote> <bibl n="Perseus:abo:tlg,0059,011:202e"><author>Id.</author> <title>Smp.</title> 202e</bibl></cit>; <cit><quote lang="greek">καινὰ δ. εἰσφέρειν</quote> <bibl n="Perseus:abo:tlg,0032,002:1:1:2"><author>X.</author> <title>Mem.</title> 1.1.2</bibl></cit>, <bibl n="Perseus:abo:tlg,0059,002:24c"><author>Pl.</author> <title>Ap.</title> 24c</bibl>, cf. <bibl default="NO"><author>Vett.Val.</author> 67.5</bibl>, etc.; applied to the <i>‘genius’</i> of Socrates, <bibl n="Perseus:abo:tlg,0032,002:1:1:2"><author>X.</author> <title>Mem.</title> 1.1.2</bibl>, <bibl n="Perseus:abo:tlg,0059,002:40a"><author>Pl.</author> <title>Ap.</title> 40a</bibl>, <bibl n="Perseus:abo:tlg,0059,006:151a"><title>Tht.</title> 151a</bibl>, <bibl n="Perseus:abo:tlg,0059,001:3b"><title>Euthphr.</title> 3b</bibl>. </sense><sense n="2" id="n23230.2" level="3" opt="n"> <i>evil spirit,</i> <cit><quote lang="greek">δ. φαῦλα</quote> <bibl n="Perseus:abo:tlg,1264,001:2:338" default="NO"><author>Chrysipp.Stoic.</author> 2.338</bibl></cit>, cf. <bibl n="Perseus:abo:tlg,0527,005:32:17"><author>LXX</author> <title>De.</title> 32.17</bibl>, <bibl n="Perseus:abo:tlg,0527,021:3:8"><title>To.</title> 3.8</bibl>, <bibl n="Perseus:abo:tlg,0031,001:7:22"><title>Ev.Matt.</title> 7.22</bibl>, al., <title>PMag.Lond.</title> 1.46.120 <date>(iv A. D.)</date>.</sense></div2>
<div2 id="crossdaimonio/plhktos" orig_id="n23231" key="daimonio/plhktos" type="main" opt="n"><head extent="full" lang="greek" opt="n" orth_orig="δαιμονιό-πληκτος">δαιμονιόπληκτος</head>, <itype lang="greek" opt="n">ον</itype>, <sense id="n23231.0" n="" level="1" opt="n">= δαιμονιόληπτος, <title>PMag.Leid.V.</title> 9.1, <bibl n="Perseus:abo:tlg,0363,007:169" default="NO"><author>Ptol.</author> <title>Tetr.</title> 169</bibl>: <pos opt="n">Subst.</pos> <orth extent="suff" lang="greek" opt="n">δαιμονιο-πληξία</orth>, <gen lang="greek" opt="n">ἡ</gen>, ib. <bibl n="Perseus:abo:tlg,0363,007:170" default="NO">170</bibl>, Petas. ap. <bibl n="Perseus:abo:tlg,2589,001:95" default="NO"><author>Olymp.Alch.</author> p.95</bibl> B.</sense></div2>
<div2 id="crossdaimo/nios" orig_id="n23232" key="daimo/nios" type="main" opt="n"><head extent="full" lang="greek" opt="n" orth_orig="δαιμόνιος">δαιμόνιος</head>, <itype lang="greek" opt="n">α</itype>, <itype lang="greek" opt="n">ον</itype>: also <itype lang="greek" opt="n">ος</itype>, <itype lang="greek" opt="n">ον</itype> <bibl n="Perseus:abo:tlg,0085,004:892"><author>A.</author> <title>Th.</title> 892</bibl>, <bibl n="Perseus:abo:tlg,0540,006:32"><author>Lys.</author> 6.32</bibl>, <title>OGI</title> 383.175 (<placeName>Commagene</placeName>):—<sense id="n23232.0" n="" level="1" opt="n"><i>of</i> or <i>belonging to a <foreign lang="greek">δαίμων</foreign>:</i> properly <i>miraculous, marvellous,</i> but: </sense><sense n="I" id="n23232.1" level="2" opt="n"> in <author>Hom.</author> only in voc., <foreign lang="greek">δαιμόνιε, -ίη,</foreign> <i>good sir,</i> or <i>lady,</i> addressed to chiefs or commoners, <bibl n="Perseus:abo:tlg,0012,001:2:190"><title>Il.</title> 2.190</bibl>, <bibl n="Perseus:abo:tlg,0012,001:2:200">200</bibl>, al., <bibl n="Perseus:abo:tlg,0020,001:655"><author>Hes.</author> <title>Th.</title> 655</bibl>: pl., <bibl n="Perseus:abo:tlg,0012,002:4:774"><title>Od.</title> 4.774</bibl>: esp. in addressing strangers, <bibl n="Perseus:abo:tlg,0012,002:23:166">23.166</bibl>, <bibl n="Perseus:abo:tlg,0012,002:23:174">174</bibl>; used by husbands and wives, <bibl n="Perseus:abo:tlg,0012,001:6:407"><title>Il.</title> 6.407</bibl>, <bibl n="Perseus:abo:tlg,0012,001:6:486">486</bibl> (Hector and Andromache), <bibl n="Perseus:abo:tlg,0012,001:24:194">24.194</bibl> (Priam to Hecuba): later c. gen., <cit><quote lang="greek">δαιμόνιε ἀνδρῶν</quote> <bibl n="Perseus:abo:tlg,0016,001:4:126"><author>Hdt.</author> 4.126</bibl></cit>, <bibl n="Perseus:abo:tlg,0016,001:7:48">7.48</bibl>, <bibl n="Perseus:abo:tlg,0016,001:8:84">8.84</bibl>: freq. in Com., in an iron. sense, <cit><quote lang="greek">ὦ δαιμόνιʼ ἀνδρῶν</quote> <bibl n="Perseus:abo:tlg,0019,010:564"><author>Ar.</author> <title>Ec.</title> 564</bibl></cit>, <bibl n="Perseus:abo:tlg,0019,010:784">784</bibl>, etc.; <cit><quote lang="greek">ὦ δαιμόνιʼ</quote> <bibl n="Perseus:abo:tlg,0019,009:44"><author>Id.</author> <title>Ra.</title> 44</bibl></cit>, <bibl n="Perseus:abo:tlg,0019,009:175">175</bibl>; <cit><quote lang="greek">ὦ δαιμόνιʼ ἀνθρώπων</quote> <bibl n="Perseus:abo:tlg,0019,006:1638"><author>Id.</author> <title>Av.</title> 1638</bibl></cit>, cf. <bibl n="Perseus:abo:tlg,0059,030:344d"><author>Pl.</author> <title>R.</title> 344d</bibl>, <bibl n="Perseus:abo:tlg,0059,030:522b">522b</bibl>, <bibl n="Perseus:abo:tlg,0059,023:489d"><title>Grg.</title> 489d</bibl>, etc. </sense><sense n="II" id="n23232.2" level="2" opt="n"> from <author>Hdt.</author> and <author>Pi.</author> downwds. (Trag. in lyr.), <i>heaven-sent, miraculous, marvellous,</i> <cit><quote lang="greek">βῶλαξ</quote> <bibl n="Perseus:abo:tlg,0033,002:4:37"><author>Pi.</author> <title>P.</title> 4.37</bibl></cit>; <cit><quote lang="greek">τέρας</quote> <bibl n="Perseus:abo:tlg,0199,002:15:35"><author>B.</author> 15.35</bibl></cit>, <bibl n="Perseus:abo:tlg,0011,002:376"><author>S.</author> <title>Ant.</title> 376</bibl>; <cit><quote lang="greek">ὁρμή</quote> <bibl n="Perseus:abo:tlg,0016,001:7:18"><author>Hdt.</author> 7.18</bibl></cit>; <foreign lang="greek">ἀραί, ἄχη,</foreign> <bibl n="Perseus:abo:tlg,0085,004:892"><author>A.</author> <title>Th.</title> 892</bibl>, <bibl n="Perseus:abo:tlg,0085,002:581"><title>Pers.</title> 581</bibl>; <cit><quote lang="greek">ἡ φύσις δ. ἀλλʼ οὐ θεία</quote> <author>Arist.</author> <title>Div. Somn.</title> 463b14</cit>; <cit><quote lang="greek">εὐεργεσία</quote> <bibl n="Perseus:abo:tlg,0014,002:1"><author>D.</author> 2.1</bibl></cit>; <foreign lang="greek">εἰ μή τι δ. εἴη</foreign> were it not <i>a divine intervention,</i> <bibl n="Perseus:abo:tlg,0032,002:1:3:5"><author>X.</author> <title>Mem.</title> 1.3.5</bibl>, cf. <bibl n="Perseus:abo:tlg,0011,005:1270"><author>S.</author> <title>El.</title> 1270</bibl>; <cit><quote lang="greek">τὰ δαιμόνια</quote> <i>visitations of heaven, ways of God,</i> <bibl n="Perseus:abo:tlg,0003,001:2:64"><author>Th.</author> 2.64</bibl></cit>, <bibl n="Perseus:abo:tlg,0032,002:1:1:12"><author>X.</author> <title>Mem.</title> 1.1.12</bibl>; <cit><quote lang="greek">πολλαὶ μορφαὶ τῶν δ.</quote> <bibl n="Perseus:abo:tlg,0006,002:1159"><author>E.</author> <title>Alc.</title> 1159</bibl></cit>, al.; <cit><quote lang="greek">δ. ἀνάγκη</quote> <author>Lys.</author></cit> l.c.; <foreign lang="greek">δ. τύχη</foreign> of <i>ill</i> fortune, <bibl n="Perseus:abo:tlg,0059,025:304b"><author>Pl.</author> <title>Hp. Ma.</title> 304b</bibl>; <foreign lang="greek">Ἄπολλον, ἔφη, δαιμονίας ὑπερβολῆς</foreign> ! <bibl n="Perseus:abo:tlg,0059,030:509c"><author>Id.</author> <title>R.</title> 509c</bibl>. </sense><sense n="2" id="n23232.3" level="3" opt="n"> of persons, <cit><quote lang="greek">τῷ δ. ὡς ἀληθῶς καὶ θαυμαστῷ</quote> <bibl n="Perseus:abo:tlg,0059,011:219b"><author>Id.</author> <title>Smp.</title> 219b</bibl></cit>; <foreign lang="greek">ὁ περὶ τοιαῦτα σοφὸς δ. ἀνήρ</foreign> ib. <bibl n="Perseus:abo:tlg,0059,011:203a">203a</bibl>; <cit><quote lang="greek">δαιμόνιος τὴν σοφίαν</quote> <bibl n="Perseus:abo:tlg,0062,031:32" default="NO"><author>Luc.</author> <title>Philops.</title> 32</bibl></cit>: <gramGrp opt="n"><gram type="comp" opt="n">Comp.</gram></gramGrp> <cit><quote lang="greek">-ώτερος</quote> <bibl n="Perseus:abo:tlg,0385,001:53:8" default="NO"><author>D.C.</author> 53.8</bibl></cit>. </sense><sense n="III" id="n23232.4" level="2" opt="n"> <pos opt="n">Adv.</pos> <foreign lang="greek">-ίως</foreign> <i>by Divine power,</i> opp. <foreign lang="greek">ἀνθρωπίνως,</foreign> <bibl n="Perseus:abo:tlg,0026,003:133"><author>Aeschin.</author> 3.133</bibl>, cf. <bibl n="Perseus:abo:tlg,0059,031:25e"><author>Pl.</author> <title>Ti.</title> 25e</bibl>; <i>marvellously,</i> <bibl n="Perseus:abo:tlg,0019,003:76"><author>Ar.</author> <title>Nu.</title> 76</bibl>; <cit><quote lang="greek">δ. περί τι ἐσπουδακώς</quote> <bibl n="Perseus:abo:tlg,0026,001:41"><author>Aeschin.</author> 1.41</bibl></cit>; <foreign lang="greek">δ. ποιεῖ,</foreign> of remedies, <bibl n="Perseus:abo:tlg,0718,015:14" default="NO"><author>Aët.</author> 15.14</bibl>, al.; [<cit><quote lang="greek">οἶνος] δ. γέρων</quote> <bibl n="Perseus:abo:tlg,0402,001:167:5" default="NO"><author>Alex.</author> 167.5</bibl></cit>; <foreign lang="greek">δ. καὶ μεγαλοπρεπῶς</foreign> prob. in <bibl n="Perseus:abo:tlg,0537,003:183" default="NO"><author>Epicur.</author> <title>Fr.</title> 183</bibl> (cf. <foreign lang="greek">δάϊος</foreign>): neut. pl. as <pos opt="n">Adv.</pos>, <cit><quote lang="greek">δαιμόνια</quote> <bibl n="Perseus:abo:tlg,0019,005:585"><author>Ar.</author> <title>Pax</title> 585</bibl></cit>; <cit><quote lang="greek">δαιμονιώτατα ἀποθνῄσκει</quote> <i>most clearly by the hand of the gods,</i> <bibl n="Perseus:abo:tlg,0032,001:7:4:3"><author>X.</author> <title>HG</title> 7.4.3</bibl></cit>: also in fem. dat., <foreign lang="greek">δαιμονίᾳ,</foreign> formed like κοινῇ, θεσπεσίῃ, etc., <bibl n="Perseus:abo:tlg,0033,001:9:110"><author>Pi.</author> <title>O.</title> 9.110</bibl>.</sense></div2>
<div2 id="crossdaimoniou=xos" orig_id="n23233" key="daimoniou=xos" type="main" opt="n"><head extent="full" lang="greek" opt="n" orth_orig="δαιμονιοῦχος">δαιμονιοῦχος</head> <foreign lang="greek">αἰτία,</foreign> <sense id="n23233.0" n="" level="1" opt="n"><i>spiritual</i> cause, <bibl n="Perseus:abo:tlg,4036,008:p.513S" default="NO"><author>Procl.</author> <title>in Prm.</title> p.513S.</bibl></sense></div2>
<div2 id="crossdaimoni/s" orig_id="n23234" key="daimoni/s" type="main" opt="n"><head extent="full" lang="greek" opt="n" orth_orig="δαιμον-ίς">δαιμονίς</head>, <itype lang="greek" opt="n">ίδος</itype>, <gen lang="greek" opt="n">ἡ</gen>, fem. of <foreign lang="greek">δαίμων,</foreign> <bibl n="Perseus:abo:tlg,4036,010:1:47" default="NO"><author>Procl.</author> <title>in Ti.</title> 1.47 D.</bibl>, <title>in Prm.</title> p.643S., <bibl n="Perseus:abo:tlg,2317,001:p.87" default="NO"><author>Herm.</author> <title>in Phdr.</title> p.87</bibl> A.:—also <orth extent="suff" lang="greek" opt="n">δαιμόν-ισσα</orth>, <gen lang="greek" opt="n">ἡ</gen>, <title>PMag.Leid.W.</title> 16.48.</div2>
<div2 id="crossdaimonismo/s" orig_id="n23235" key="daimonismo/s" type="main" opt="n"><head extent="suff" lang="greek" opt="n" orth_orig="δαιμον-ισμός">δαιμονισμός</head>, <gen lang="greek" opt="n">ὁ</gen>, <sense id="n23235.0" n="" level="1" opt="n"><i>demoniac possession,</i> <bibl n="Perseus:abo:tlg,1764,001:2:18"><author>Vett.Val.</author> 2.18</bibl>.</sense></div2>
<div2 id="crossdaimoniw/dhs" orig_id="n23236" key="daimoniw/dhs" type="main" opt="n"><head extent="full" lang="greek" opt="n" orth_orig="δαιμονιώδης">δαιμονιώδης</head>, <itype lang="greek" opt="n">ες</itype>, <sense id="n23236.0" n="" level="1" opt="n"><i>like a demon,</i> Sch. <bibl n="Perseus:abo:tlg,0019,009:293"><author>Ar.</author> <title>Ra.</title> 293</bibl>; <i>demoniacal, devilish,</i> <bibl n="Perseus:abo:tlg,0031,020:3:15"><title>Ep.Jac.</title> 3.15</bibl>; <i>like a δαίμων,</i> <bibl n="Perseus:abo:tlg,4036,010:1:113D" default="NO"><author>Procl.</author> <title>in Ti.</title> 1.113D.</bibl></sense></div2>
<div2 id="crossdaimonobla/beia" orig_id="n23237" key="daimonobla/beia" type="main" opt="n"><head extent="full" lang="greek" opt="n" orth_orig="δαιμονο-βλάβεια">δαιμονοβλάβεια</head> <pron extent="full" lang="greek" opt="n">[ᾰ]</pron>, <gen lang="greek" opt="n">ἡ</gen>, <sense id="n23237.0" n="" level="1" opt="n"><i>heaven-sent visitation,</i> <bibl n="Perseus:abo:tlg,0543,001:28:9:4"><author>Plb.</author> 28.9.4</bibl>.</sense></div2>
<div2 id="crossdaimonoma^xe/w" orig_id="n23238" key="daimonoma^xe/w" type="main" opt="n"><head extent="suff" lang="greek" opt="n" orth_orig="δαιμονο-μᾰ-χέω">δαιμονομαχέω</head>, <sense id="n23238.0" n="" level="1" opt="n"><i>fight against heaven,</i> <bibl n="Perseus:abo:tlg,4083,001:1097:6" default="NO"><author>Eust.</author> 1097.6</bibl>.</sense></div2>
<div2 id="crossdaimonoplh/c" orig_id="n23239" key="daimonoplh/c" type="main" opt="n"><head extent="suff" lang="greek" opt="n" orth_orig="δαιμονο-πλήξ">δαιμονοπλήξ</head>, <itype lang="greek" opt="n">ῆγος</itype>, <sense id="n23239.0" n="" level="1" opt="n"><i>smitten of heaven,</i> cj. in <bibl n="Perseus:abo:tlg,0011,008:221:13"><author>S.</author> <title>Fr.</title> 221.13</bibl>.</sense></div2>
<div2 id="crossdaimonoplhci/a" orig_id="n23240" key="daimonoplhci/a" type="main" opt="n"><head extent="suff" lang="greek" opt="n" orth_orig="δαιμονο-πληξία">δαιμονοπληξία</head>, <gen lang="greek" opt="n">ἡ</gen>, <sense id="n23240.0" n="" level="1" opt="n">= δαιμονιοπληξία, Petas. ap. <bibl n="Perseus:abo:tlg,2589,001:97"><author>Olymp.Alch.</author> p.97B.</bibl></sense></div2>
<div2 id="crossdaimonota/kths" orig_id="n23241" key="daimonota/kths" type="main" opt="n"><head extent="suff" lang="greek" opt="n" orth_orig="δαιμονο-τάκτης">δαιμονοτάκτης</head>, <itype lang="greek" opt="n">ου</itype>, <gen lang="greek" opt="n">ὁ</gen>, <sense id="n23241.0" n="" level="1" opt="n"><i>ruler of demons,</i> <title>PMag.Par.</title> 1.1374 (pl., written <foreign lang="greek">δαιμονατ.</foreign>).</sense></div2>
<div2 id="crossdai/mwn" orig_id="n23242" key="dai/mwn" type="main" opt="n"><head extent="full" lang="greek" opt="n" orth_orig="δαίμων">δαίμων</head>, <itype lang="greek" opt="n">ονος</itype>, voc. <cit><quote lang="greek">δαίμων</quote> <bibl n="Perseus:abo:tlg,0011,007:1480"><author>S.</author> <title>OC</title> 1480</bibl></cit> (lyr.), <cit><quote lang="greek">δαῖμον</quote> <bibl n="Perseus:abo:tlg,0005,001:2:11"><author>Theoc.</author> 2.11</bibl></cit>, <gen lang="greek" opt="n">ὁ</gen>, <gen lang="greek" opt="n">ἡ</gen>, <sense id="n23242.0" n="" level="1" opt="n"><i>god, goddess,</i> of individual gods or goddesses, <bibl n="Perseus:abo:tlg,0012,001:1:222"><title>Il.</title> 1.222</bibl>, <bibl n="Perseus:abo:tlg,0012,001:3:420">3.420</bibl>, etc.; <cit><quote lang="greek">δαίμονι ἶσος</quote> <bibl n="Perseus:abo:tlg,0012,001:5:438">5.438</bibl></cit>; <foreign lang="greek">ἐμίσγετο δαίμονι δαίμων,</foreign> of <foreign lang="greek">Φιλίη</foreign> and <foreign lang="greek">Νεῖκος,</foreign> <bibl n="Perseus:abo:tlg,1342,001:59:1" default="NO"><author>Emp.</author> 59.1</bibl> :—but more freq. of <i>the Divine power</i> (while <foreign lang="greek">θεός</foreign> denotes a God in person), <i>the Deity,</i> cf. <bibl n="Perseus:abo:tlg,0012,002:3:27"><title>Od.</title> 3.27</bibl>; <foreign lang="greek">πρὸς δαίμονα</foreign> against <i>the Divine power,</i> <bibl n="Perseus:abo:tlg,0012,001:17:98"><title>Il.</title> 17.98</bibl>; <foreign lang="greek">σὺν δαίμονι</foreign> by its grace, <bibl n="Perseus:abo:tlg,0012,001:11:792">11.792</bibl>; <foreign lang="greek">κατὰ δαίμονα,</foreign> almost, = τύχῃ, by <i>chance,</i> <bibl n="Perseus:abo:tlg,0016,001:1:111"><author>Hdt.</author> 1.111</bibl>; <cit><quote lang="greek">τύχᾳ δαίμονος</quote> <bibl n="Perseus:abo:tlg,0033,001:8:67"><author>Pi.</author> <title>O.</title> 8.67</bibl></cit>; <foreign lang="greek">ἄμαχος δ.,</foreign> i. e. Destiny, <bibl n="Perseus:abo:tlg,0199,002:15:23"><author>B.</author> 15.23</bibl>: in pl., <foreign lang="greek">ὅτι δαίμονες θέλωσιν,</foreign> what <i>the Gods</i> ordain, <bibl n="Perseus:abo:tlg,0199,002:16:117"><author>Id.</author> 16.117</bibl>; <cit><quote lang="greek">ταῦτα δʼ ἐν τῷ δ.</quote> <bibl n="Perseus:abo:tlg,0011,007:1443"><author>S.</author> <title>OC</title> 1443</bibl></cit>; <cit><quote lang="greek">ἡ τύχη καὶ ὁ δ.</quote> <bibl n="Perseus:abo:tlg,0540,013:63"><author>Lys.</author> 13.63</bibl></cit>, cf. <bibl n="Perseus:abo:tlg,0026,003:111"><author>Aeschin.</author> 3.111</bibl>; <cit><quote lang="greek">κατὰ δαίμονα καὶ συντυχίαν</quote> <bibl n="Perseus:abo:tlg,0019,006:544"><author>Ar.</author> <title>Av.</title> 544</bibl></cit>. </sense><sense n="2" id="n23242.1" level="3" opt="n"> <i>the power controlling the destiny of individuals</i>: hence, oneʼs <i>lot</i> or <i>fortune,</i> <cit><quote lang="greek">στυγερὸς δέ οἱ ἔχραε δ.</quote> <bibl n="Perseus:abo:tlg,0012,002:5:396"><title>Od.</title> 5.396</bibl></cit>, cf. <bibl n="Perseus:abo:tlg,0012,002:10:64">10.64</bibl>; <cit><quote lang="greek">δαίμονος αἶσα κακή</quote> <bibl n="Perseus:abo:tlg,0012,002:11:61">11.61</bibl></cit>; <foreign lang="greek">δαίμονα δώσω</foreign> I will deal thee <i>fate,</i> i.e. kill thee, <bibl n="Perseus:abo:tlg,0012,001:8:166"><title>Il.</title> 8.166</bibl>; freq. in Trag. of <i>good</i> or <i>ill fortune,</i> <cit><quote lang="greek">ὅταν ὁ δ. εὐροῇ</quote> <bibl n="Perseus:abo:tlg,0085,002:601"><author>A.</author> <title>Pers.</title> 601</bibl></cit>; <cit><quote lang="greek">δ. ἀσινής</quote> <bibl n="Perseus:abo:tlg,0085,005:1342"><author>Id.</author> <title>Ag.</title> 1342</bibl></cit> (lyr.); <cit><quote lang="greek">κοινός</quote> <bibl n="Perseus:abo:tlg,0085,004:812"><author>Id.</author> <title>Th.</title> 812</bibl></cit>; <cit><quote lang="greek">γενναῖος πλὴν τοῦ δαίμονος</quote> <bibl n="Perseus:abo:tlg,0011,007:76"><author>S.</author> <title>OC</title> 76</bibl></cit>; <cit><quote lang="greek">δαίμονος σκληρότης</quote> <bibl n="Perseus:abo:tlg,0028,003:3:4"><author>Antipho</author> 3.3.4</bibl></cit>; <cit><quote lang="greek">τὸν οἴακα στρέφει δ. ἑκάστῳ</quote> <bibl n="Perseus:abo:tlg,0405,001:4:6" default="NO"><author>Anaxandr.</author> 4.6</bibl></cit>; personified as <i>the good</i> or <i>evil genius</i> of a family or person, <cit><quote lang="greek">δ. τῷ Πλεισθενιδῶν</quote> <bibl n="Perseus:abo:tlg,0085,005:1569"><author>A.</author> <title>Ag.</title> 1569</bibl></cit>, cf. <bibl n="Perseus:abo:tlg,0011,004:1194"><author>S.</author> <title>OT</title> 1194</bibl> (lyr.); <cit><quote lang="greek">ὁ ἑκάστου δ.</quote> <bibl n="Perseus:abo:tlg,0059,004:107d"><author>Pl.</author> <title>Phd.</title> 107d</bibl></cit>, cf. <title>PMag.Lond.</title> 121.505, <bibl n="Perseus:abo:tlg,2023,006:9:1" default="NO"><author>Iamb.</author> <title>Myst.</title> 9.1</bibl>; <cit><quote lang="greek">ὁ δ. ὁ τὴν ἡμετέραν μοῖραν λελογχώς</quote> <bibl n="Perseus:abo:tlg,0540,002:78"><author>Lys.</author> 2.78</bibl></cit>; <cit><quote lang="greek">ἅπαντι δ. ἀνδρι συμπαρίσταται εὐθὺς γενομένῳ μυσταγωγὸς τοῦ βίου</quote> <bibl n="Perseus:abo:tlg,0541,001:16:2" default="NO"><author>Men.</author> 16.2</bibl></cit> <author>D.</author>; <cit><quote lang="greek">δ. ἀλάστορες</quote> <author>Id.</author> 8D.</cit>; <cit><quote lang="greek">ὁ μέγας [τοῦ Καίσαρος] δ.</quote> <bibl n="Perseus:abo:tlg,0007,048:69"><author>Plu.</author> <title>Caes.</title> 69</bibl></cit>; <foreign lang="greek">ὁ σὸς δ. κακός</foreign> ibid.; <cit><quote lang="greek">ὁ βασιλέως δ.</quote> <bibl n="Perseus:abo:tlg,0007,064:15" default="NO"><author>Id.</author> <title>Art.</title> 15</bibl></cit>; <cit><quote lang="greek">ἦθος ἀνθρώπῳ δ.</quote> <bibl n="Perseus:abo:tlg,1415,001:119" default="NO"><author>Heraclit.</author> 119</bibl></cit>; <cit><quote lang="greek">Ξενοκράτης φησὶ τὴν ψυχὴν ἑκάστου εἶναι δ.</quote> <bibl n="Perseus:abo:tlg,0086,044:112a:37" default="NO"><author>Arist.</author> <title>Top.</title> 112a37</bibl></cit>. </sense><sense n="II" id="n23242.2" level="2" opt="n"> <orth lang="greek">δαίμονες</orth>, <gen lang="greek" opt="n">οἱ</gen>, <i>souls of men of the golden age,</i> acting as tutelary deities, <bibl n="Perseus:abo:tlg,0020,002:122"><author>Hes.</author> <title>Op.</title> 122</bibl>, <bibl n="Perseus:abo:tlg,0002,001:1348" default="NO"><author>Thgn.</author> 1348</bibl>, <bibl n="Perseus:abo:tlg,1604,001:15" default="NO"><author>Phoc.</author> 15</bibl>, <bibl n="Perseus:abo:tlg,1342,001:115:5" default="NO"><author>Emp.</author> 115.5</bibl>, etc.; <cit><quote lang="greek">θεῶν, δ., ἡρώων, τῶν ἐν Ἅιδου</quote> <bibl n="Perseus:abo:tlg,0059,030:392a"><author>Pl.</author> <title>R.</title> 392a</bibl></cit>: less freq. in sg., <cit><quote lang="greek">δαίμονι δʼ οἷος ἔησθα τὸ ἐργάζεσθαι ἄμεινον</quote> <bibl n="Perseus:abo:tlg,0020,002:314"><author>Hes.</author> <title>Op.</title> 314</bibl></cit>; <foreign lang="greek">τὸν τὲ δ. Δαρεῖον ἀγκαλεῖσθε,</foreign> of the deified Darius, <bibl n="Perseus:abo:tlg,0085,002:620"><author>A.</author> <title>Pers.</title> 620</bibl>; <foreign lang="greek">νῦν δʼ ἐστὶ μάκαιρα δ.,</foreign> of Alcestis, <bibl n="Perseus:abo:tlg,0006,002:1003"><author>E.</author> <title>Alc.</title> 1003</bibl> (lyr.), cf. <title>IG</title> 12(5).305.5 (<placeName>Paros</placeName>): later, of <i>departed souls,</i> <bibl n="Perseus:abo:tlg,0062,036:24" default="NO"><author>Luc.</author> <title>Luct.</title> 24</bibl>; <foreign lang="greek">δαίμοσιν εὐσεβέσιν,</foreign> <abbr>=</abbr> <foreign lang="lat">Dis Manibus,</foreign> <title>IG</title> 14.1683; so <foreign lang="greek">θεοὶ δ.,</foreign> ib. 938, al.: also, <i>ghost,</i> <bibl n="Perseus:abo:tlg,0525,001:6:6:8"><author>Paus.</author> 6.6.8</bibl>. </sense><sense n="2" id="n23242.3" level="3" opt="n"> generally, <i>spiritual</i> or <i>semi-divine being</i> inferior to the Gods, <bibl n="Perseus:abo:tlg,0007,092:415a"><author>Plu.</author> <title>Def.orac.</title> 2.415a</bibl>, al., <bibl n="Perseus:abo:tlg,2049,001:12" default="NO"><author>Sallust.</author> 12</bibl>, <bibl n="Perseus:abo:tlg,4066,003:183" default="NO"><author>Dam.</author> <title>Pr.</title> 183</bibl>, etc.; esp. <i>evil spirit, demon,</i> <bibl n="Perseus:abo:tlg,0031,001:8:31"><title>Ev.Matt.</title> 8.31</bibl>, <bibl n="Perseus:abo:tlg,0526,001:8:2:5"><author>J.</author> <title>AJ</title> 8.2.5</bibl>; <cit><quote lang="greek">φαῦλοι δ.</quote> <bibl n="Perseus:abo:tlg,0732,002:2:46" default="NO"><author>Alex.Aphr.</author> <title>Pr.</title> 2.46</bibl></cit>; <foreign lang="greek">δαίμονος ἔσοδος εἰς τὸν ἄνθρωπον,</foreign> <bibl n="Perseus:abo:tlg,0719,002:1:4" default="NO"><author>Aret.</author> <title>SD</title> 1.4</bibl>; <cit><quote lang="greek">πρᾶξις ἐκβάλλουσα δαίμονας</quote> <title>PMag.Par.</title> 1227</cit>. </sense><sense n="3" id="n23242.4" level="3" opt="n"> <foreign lang="greek">ἀγαθὸς δ.</foreign> <i>the Good Genius</i> to whom a toast was drunk after dinner, <bibl n="Perseus:abo:tlg,0019,004:525"><author>Ar.</author> <title>V.</title> 525</bibl>, <bibl n="Perseus:abo:tlg,0484,001:20" default="NO"><author>Nicostr.Com.</author> 20</bibl>, <bibl n="Perseus:abo:tlg,0060,001:4:3"><author>D.S.</author> 4.3</bibl>, <bibl n="Perseus:abo:tlg,0007,112:655e"><author>Plu.</author> <title>QConv.</title> 2.655e</bibl>, <author>Philonid.</author> ap. <bibl n="Perseus:abo:tlg,0008,001:15:675b" default="NO"><author>Ath.</author> 15.675b</bibl>, <bibl n="Perseus:abo:tlg,0525,001:9:39:5"><author>Paus.</author> 9.39.5</bibl>, <title>IG</title> 12(3).436 (<placeName>Thera</placeName>), etc.; of Nero, <cit><quote lang="greek">ἀ. δ. τῆς οἰκουμένης</quote> <title>OGI</title> 666.3</cit>; of the Nile, <foreign lang="greek">ἀ. δ. ποταμός</foreign> ib. 672.7 <date>(i A.D.)</date>; of the tutelary genius of individuals (supr. 1), <cit><quote lang="greek">ἀ. δ. Ποσειδωνίου</quote> <title>SIG</title> 1044.9</cit> (Halic.): pl., <foreign lang="greek">δαίμονες ἀ.,</foreign> <abbr>=</abbr> Lat. <foreign lang="lat">Di Manes,</foreign> <title>SIG</title> 1246 (<placeName>Mylasa</placeName>): Astrol., <foreign lang="greek">ἀγαθός, κακός δ.,</foreign> names of celestial <foreign lang="greek">κλῆροι,</foreign> <author>Paul.Al.</author> <title>N.</title> 4, <title>O.</title> 1, etc. (Less correctly written <foreign lang="greek">Ἀγαθοδαίμων,</foreign> q.v.). </sense><sense n="B" id="n23242.5" level="1" opt="n"> = δαήμων, <i>knowing,</i> <foreign lang="greek">δ. μάχης</foreign> <i>skilled in</i> fight, <bibl n="Perseus:abo:tlg,0232,001:3:4" default="NO"><author>Archil.</author> 3.4</bibl>. (<bibl n="Perseus:abo:tlg,0059,005:398b"><author>Pl.</author> <title>Cra.</title> 398b</bibl>, suggests this as the orig. sense; while others would write <foreign lang="greek">δαήμονες</foreign> in <author>Archil.</author>, and get rid of this sense altogether; cf. however <foreign lang="greek">αἵμων.</foreign> More probably the Root of <foreign lang="greek">δαίμων</foreign> (<i>deity</i>) is <foreign lang="greek">δαίω</foreign> <i>to distribute destinies;</i>; cf. <bibl n="Perseus:abo:tlg,0291,001:48" default="NO"><author>Alcm.</author> 48</bibl>.)</sense></div2>
<pb n="366"/>
<div2 id="crossdai/nu_mi" orig_id="n23243" key="dai/nu_mi" type="main" opt="n"><head extent="full" lang="greek" opt="n" orth_orig="δαίνῡμι">δαίνυμι</head>, imper. <cit><quote lang="greek">δαίνῡ</quote> <bibl n="Perseus:abo:tlg,0012,001:9:70"><title>Il.</title> 9.70</bibl></cit>, <mood opt="n">part.</mood> <cit><quote lang="greek">-ύντα</quote> <bibl n="Perseus:abo:tlg,0012,002:4:3"><title>Od.</title> 4.3</bibl></cit>: <gramGrp opt="n"><gram type="dialect" opt="n">Ep.</gram></gramGrp> <tns opt="n">impf.</tns> <cit><quote lang="greek">δαίνῡ</quote> <bibl n="Perseus:abo:tlg,0012,001:23:29"><title>Il.</title> 23.29</bibl></cit>; <foreign lang="greek">δαίνυεν</foreign> (from <foreign lang="greek">δαινύω</foreign>) <bibl n="Perseus:abo:tlg,0533,020:84" default="NO"><author>Call.</author> <title>Cer.</title> 84</bibl>: <tns opt="n">fut.</tns> <cit><quote lang="greek">δαίσω</quote> <bibl n="Perseus:abo:tlg,0012,001:19:299"><title>Il.</title> 19.299</bibl></cit>, <bibl n="Perseus:abo:tlg,0085,007:305"><author>A.</author> <title>Eu.</title> 305</bibl>: <tns opt="n">aor.</tns> <cit><quote lang="greek">ἔδαισα</quote> <bibl n="Perseus:abo:tlg,0033,003:9:24"><author>Pi.</author> <title>N.</title> 9.24</bibl></cit>, <bibl n="Perseus:abo:tlg,0016,001:1:162"><author>Hdt.</author> 1.162</bibl>, <bibl n="Perseus:abo:tlg,0006,016:15"><author>E.</author> <title>Or.</title> 15</bibl>:—<gramGrp opt="n"><gram type="voice" opt="n">Med.</gram></gramGrp>, <cit><quote lang="greek">δαίνῠται</quote> <bibl n="Perseus:abo:tlg,0012,001:15:99"><title>Il.</title> 15.99</bibl></cit>: <per opt="n">2</per> <number opt="n">sg.</number> <mood opt="n">subj.</mood> <cit><quote lang="greek">δαινύῃ</quote> <bibl n="Perseus:abo:tlg,0012,002:19:328"><title>Od.</title> 19.328</bibl></cit>; <gramGrp opt="n"><gram type="dialect" opt="n">Ep.</gram></gramGrp> <per opt="n">3</per> <number opt="n">sg.</number> opt. <cit><quote lang="greek">δαινῦτο</quote> <bibl n="Perseus:abo:tlg,0012,001:24:665"><title>Il.</title> 24.665</bibl></cit>; <per opt="n">3</per> <number opt="n">pl.</number> opt. <cit><quote lang="greek">δαινύατο</quote> <bibl n="Perseus:abo:tlg,0012,002:18:248"><title>Od.</title> 18.248</bibl></cit>; <mood opt="n">part.</mood> <cit><quote lang="greek">-ύμενος</quote> <bibl n="Perseus:abo:tlg,0434,001:142" default="NO"><author>Cratin.</author> 142</bibl></cit>; <per opt="n">2</per> <number opt="n">sg.</number> <tns opt="n">impf.</tns> <foreign lang="greek">δαίνυʼ</foreign> (i.e. <foreign lang="greek">-υο</foreign>) <bibl n="Perseus:abo:tlg,0012,001:24:63"><title>Il.</title> 24.63</bibl>: <tns opt="n">fut.</tns> <cit><quote lang="greek">δαίσομαι</quote> <bibl n="Perseus:abo:tlg,0341,002:668"><author>Lyc.</author> 668</bibl></cit>, <bibl n="Perseus:abo:tlg,0650,001:4:93" default="NO"><author>Herod.</author> 4.93</bibl>, etc., (<etym lang="greek" opt="n">μετα-</etym>) <bibl n="Perseus:abo:tlg,0012,002:18:48"><title>Od.</title> 18.48</bibl>: <tns opt="n">aor.</tns> <cit><quote lang="greek">ἐδαισάμην</quote> <bibl n="Perseus:abo:tlg,0232,001:99" default="NO"><author>Archil.</author> 99</bibl></cit>, <bibl n="Perseus:abo:tlg,0033,002:10:31"><author>Pi.</author> <title>P.</title> 10.31</bibl>, etc.; <cit><quote lang="greek">δαισάμενοι</quote> <bibl n="Perseus:abo:tlg,0012,002:18:408"><title>Od.</title> 18.408</bibl></cit>; [<pron extent="full" lang="greek" opt="n">δαινῠη</pron> <bibl n="Perseus:abo:tlg,0012,002:19:328"><title>Od.</title> 19.328</bibl>; but <cit><quote lang="greek">δαινῡῃ</quote> <bibl n="Perseus:abo:tlg,0012,002:8:243">8.243</bibl></cit> (for wh. <foreign lang="greek">δαινύεαι</foreign> shd. be read)]. (v. <quote lang="greek">δαίω</quote> B.):—<sense id="n23243.0" n="" level="1" opt="n">poet. Verb (used by <author>Hdt.</author>), <i>give a banquet</i> or <i>feast,</i> <cit><quote lang="greek">δαίνυ δαῖτα γέρουσι</quote> <bibl n="Perseus:abo:tlg,0012,001:9:70"><title>Il.</title> 9.70</bibl></cit>; <foreign lang="greek">ἔφασκες . . δαίσειν γάμον</foreign> didst promise <i>to give</i> me a marriage-<i>feast,</i> <bibl n="Perseus:abo:tlg,0012,001:19:299">19.299</bibl>, cf. <bibl n="Perseus:abo:tlg,0012,002:4:3"><title>Od.</title> 4.3</bibl>, <bibl n="Perseus:abo:tlg,0013,005:141"><title>h.Ven.</title> 141</bibl>, <bibl n="Perseus:abo:tlg,0033,003:1:72"><author>Pi.</author> <title>N.</title> 1.72</bibl>; <cit><quote lang="greek">ὁτοῖσι τάφον μενοεικέα δαίνυ</quote> <bibl n="Perseus:abo:tlg,0012,001:23:29"><title>Il.</title> 23.29</bibl></cit>, cf. <bibl n="Perseus:abo:tlg,0012,002:3:309"><title>Od.</title> 3.309</bibl>; <foreign lang="greek">δ. ὑμεναίους, γάμους,</foreign> <bibl n="Perseus:abo:tlg,0006,018:123"><author>E.</author> <title>IA</title> 123</bibl> (lyr.), <bibl n="Perseus:abo:tlg,0006,018:707">707</bibl>. </sense><sense n="2" id="n23243.1" level="3" opt="n"> c. acc. pers., <i>feast</i> one <i>on</i> a thing, <cit><quote lang="greek">τὸν . . Ἀστυάγης ἀνόμῳ τραπέζῃ ἔδαισε</quote> <bibl n="Perseus:abo:tlg,0016,001:1:162"><author>Hdt.</author> 1.162</bibl></cit>, cf. <bibl n="Perseus:abo:tlg,0006,016:15"><author>E.</author> <title>Or.</title> 15</bibl>; <foreign lang="greek">ζῶν με δαίσεις</foreign> <i>thou shalt be</i> my living <i>feast,</i> <bibl n="Perseus:abo:tlg,0085,007:305"><author>A.</author> <title>Eu.</title> 305</bibl>. </sense><sense n="II" id="n23243.2" level="2" opt="n"> <gramGrp opt="n"><gram type="voice" opt="n">Med.</gram></gramGrp>, <i>have a feast given one, feast,</i> in <author>Hom.</author> more freq. than <gramGrp opt="n"><gram type="voice" opt="n">Act.</gram></gramGrp>, <bibl n="Perseus:abo:tlg,0012,001:15:99"><title>Il.</title> 15.99</bibl>, al., cf. <bibl n="Perseus:abo:tlg,0033,004:6:36"><author>Pi.</author> <title>I.</title> 6(5).36</bibl>, <bibl n="Perseus:abo:tlg,0016,001:1:211"><author>Hdt.</author> 1.211</bibl>; <cit><quote lang="greek">δαίσασθαι γάμον</quote> <author>Archil.</author></cit> l.c. </sense><sense n="2" id="n23243.3" level="3" opt="n"> c. acc., <i>feast on, eat,</i> <foreign lang="greek">δαῖτα, ἑκατόμβας, κρέα,</foreign> <bibl n="Perseus:abo:tlg,0012,002:3:66"><title>Od.</title> 3.66</bibl>, <bibl n="Perseus:abo:tlg,0012,001:9:535"><title>Il.</title> 9.535</bibl>, <bibl n="Perseus:abo:tlg,0012,002:12:30"><title>Od.</title> 12.30</bibl>; <cit><quote lang="greek">κρέα δαίνυσθαι</quote> <bibl n="Perseus:abo:tlg,0016,001:3:18"><author>Hdt.</author> 3.18</bibl></cit>, <bibl n="Perseus:abo:tlg,0651,001:18:2" default="NO"><author>Ant.Lib.</author> 18.2</bibl> (but c. gen., <bibl n="Perseus:abo:tlg,0651,001:11:7" default="NO"><author>Id.</author> 11.7</bibl>); <cit><quote lang="greek">ἐδαίσατο παῖδα</quote> <bibl n="Perseus:abo:tlg,0011,008:771:5"><author>S.</author> <title>Fr.</title> 771.5</bibl></cit>, cf. <bibl n="Perseus:abo:tlg,0011,005:543"><title>El.</title> 543</bibl>; <foreign lang="greek">μίαν δ. τράπεζαν</foreign> <i>eat</i> at a common table, <bibl n="Perseus:abo:tlg,0005,001:13:38"><author>Theoc.</author> 13.38</bibl>: of fire, <i>consume,</i> <bibl n="Perseus:abo:tlg,0033,003:9:24"><author>Pi.</author> <title>N.</title> 9.24</bibl>, <bibl n="Perseus:abo:tlg,0011,001:765"><author>S.</author> <title>Tr.</title> 765</bibl>; of poison, ib. <bibl n="Perseus:abo:tlg,0011,001:1088">1088</bibl>.</sense></div2>
<div2 id="crossdai/+candros" orig_id="n23244" key="dai/+candros" type="main" opt="n"><head extent="full" lang="greek" opt="n" orth_orig="δαΐξανδρος">δαΐξανδρος</head>, <itype lang="greek" opt="n">ον</itype>, <sense id="n23244.0" n="" level="1" opt="n"><i>man-destroying,</i> <cit><quote lang="greek">χεῖρες</quote> <title>Hymn.Is.</title> 45</cit>, cf. <bibl n="Perseus:abo:pap,SB:5829" default="NO"><title>Sammelb.</title> 5829</bibl>.</sense></div2>
<div2 id="crossda/i+os" orig_id="n23245" key="da/i+os" type="main" opt="n"><head extent="full" lang="greek" opt="n" orth_orig="δάϊος">δάϊος</head>, <gramGrp opt="n"><gram type="var" opt="n">contr.</gram></gramGrp> <orth extent="full" lang="greek" opt="n">δᾷος</orth>, <itype lang="greek" opt="n">α</itype>, <itype lang="greek" opt="n">ον</itype>, <gramGrp opt="n"><gram type="dialect" opt="n">Dor.</gram></gramGrp> for <gramGrp opt="n"><gram type="dialect" opt="n">Ep.</gram></gramGrp> <orth extent="full" lang="greek" opt="n">δήιος</orth> (<gramGrp opt="n"><gram type="var" opt="n">contr.</gram></gramGrp> <orth extent="full" lang="greek" opt="n">δῇος</orth> <bibl n="Perseus:abo:tlg,0002,001:552b" default="NO"><author>Thgn.</author> 552b</bibl>), <itype lang="greek" opt="n">η</itype>, <itype lang="greek" opt="n">ον</itype>: also <orth extent="full" lang="greek" opt="n">δάϊος</orth>, <itype lang="greek" opt="n">ον</itype>, <bibl n="Perseus:abo:tlg,0006,011:1301"><author>E.</author> <title>Tr.</title> 1301</bibl> (lyr.), <bibl n="Perseus:abo:tlg,0006,009:915"><title>HF</title> 915</bibl> (lyr.) (Trag. always use the <gramGrp opt="n"><gram type="dialect" opt="n">Dor.</gram></gramGrp> form): (<etym lang="greek" opt="n">δαίω Α</etym>):—<sense id="n23245.0" n="" level="1" opt="n"><i>hostile, destructive,</i> Hom.only in <title>Il.</title>, <cit><quote lang="greek">δηΐου ἐκ πολέμου</quote> <bibl n="Perseus:abo:tlg,0012,001:7:119">7.119</bibl></cit>; <cit><quote lang="greek">δ. ἄνδρα</quote> <bibl n="Perseus:abo:tlg,0012,001:6:481">6.481</bibl></cit>: esp. as epith. of <foreign lang="greek">πῦρ,</foreign> <i>burning, consuming,</i> <bibl n="Perseus:abo:tlg,0012,001:8:181">8.181</bibl>, al.; <cit><quote lang="greek">δάϊοι</quote> <i>enemies,</i> <bibl n="Perseus:abo:tlg,0033,003:8:28"><author>Pi.</author> <title>N.</title> 8.28</bibl></cit>, <bibl n="Perseus:abo:tlg,0085,005:559"><author>A.</author> <title>Ag.</title> 559</bibl>; <cit><quote lang="greek">λάφυρα δάων</quote> <bibl n="Perseus:abo:tlg,0085,004:278"><author>Id.</author> <title>Th.</title> 278</bibl></cit> (dub.l.); <cit><quote lang="greek">φόβημα δαΐων</quote> <bibl n="Perseus:abo:tlg,0011,007:699"><author>S.</author> <title>OC</title> 699</bibl></cit> (lyr.): in sg., <i>fighting man,</i> <bibl n="Perseus:abo:tlg,0019,009:1022"><author>Ar.</author> <title>Ra.</title> 1022</bibl>; also <cit><quote lang="greek">δάου μάχας</quote> <author>S.</author> <title>Ichn.</title> 239</cit>; <cit><quote lang="greek">δαΐον ὁρμάν</quote> <i>hostile,</i> <bibl n="Perseus:abo:tlg,0019,003:335"><author>Ar.</author> <title>Nu.</title> 335</bibl></cit> (=[<author>Philox.</author>]<bibl n="Perseus:abo:tlg,1601,001:18" default="NO">18</bibl> (anap.)); <cit><quote lang="greek">ἔπιτε δαΐαν ὁδόν</quote> <bibl n="Perseus:abo:tlg,0019,009:897"><author>Ar.</author> <title>Ra.</title> 897</bibl></cit> (lyr.). </sense><sense n="2" id="n23245.1" level="3" opt="n"> <i>unhappy, wretched,</i> <bibl n="Perseus:abo:tlg,0085,002:282"><author>A.</author> <title>Pers.</title> 282</bibl> (lyr.), etc., <bibl n="Perseus:abo:tlg,0011,003:784"><author>S.</author> <title>Aj.</title> 784</bibl>, <bibl n="Perseus:abo:tlg,0006,006:838"><author>E.</author> <title>Andr.</title> 838</bibl> (lyr.). </sense><sense n="II" id="n23245.2" level="2" opt="n"> (<etym lang="greek" opt="n">δαῆναι</etym>) <i>knowing, cunning,</i> <cit><quote lang="greek">τεχνίτης</quote> <bibl n="Perseus:abo:tlg,7000,001:16:119" default="NO"><title>APl.</title> 16.119</bibl></cit> (Posid.). <pos opt="n">Adv.</pos> <cit><quote lang="greek">δαΐως</quote> <bibl n="Perseus:abo:tlg,0537,003:183" default="NO"><author>Epicur.</author> <title>Fr.</title> 183</bibl></cit> codd. <author>Plu.</author> (<foreign lang="greek">δαιμονίως</foreign> Usener). [<foreign lang="greek">δᾱϊος</foreign>: but disyll. in <author>Hom.</author> where the last syll. is long; Trag., when disyll., written <foreign lang="greek">δᾷος,</foreign> <bibl n="Perseus:abo:tlg,0085,002:282"><author>A.</author> <title>Pers.</title> 282</bibl>; <itype lang="greek" opt="n">δη̆ῐων</itype> at the end of a pentam., <bibl n="Perseus:abo:tlg,7000,001:6:123" default="NO"><title>AP</title> 6.123</bibl> (<author>Anyte</author>).]</sense></div2>
<div2 id="crossda_i+o/frwn" orig_id="n23246" key="da_i+o/frwn" type="main" opt="n"><head extent="full" lang="greek" opt="n" orth_orig="δᾱϊόφρων">δαϊόφρων</head>, <itype lang="greek" opt="n">ονος</itype>, <gen lang="greek" opt="n">ὁ</gen>, <gen lang="greek" opt="n">ἡ</gen>, (<etym lang="greek" opt="n">φρήν</etym>) <sense id="n23246.0" n="" level="1" opt="n"><i>unhappy in mind, miserable,</i> <bibl n="Perseus:abo:tlg,0085,004:918"><author>A.</author> <title>Th.</title> 918</bibl> (lyr.).</sense></div2>
<div2 id="crossdai+o/w" orig_id="n23247" key="dai+o/w" type="main" opt="n"><head extent="full" lang="greek" opt="n" orth_orig="δαϊόω">δαϊόω</head>, v. δηϊόω.</div2>
<div2 id="crossdai/+s1" orig_id="n23248" key="dai/+s1" type="main" opt="n"><head extent="full" lang="greek" opt="n" orth_orig="δαΐς">δαΐς</head>, <itype lang="greek">δαΐδος</itype>, <gramGrp opt="n"><gram type="dialect" opt="n">Att.</gram></gramGrp> <gramGrp opt="n"><gram type="var" opt="n">contr.</gram></gramGrp> <orth extent="full" lang="greek" opt="n">δᾴς</orth>, <itype lang="greek">δᾳδός</itype>, <gen lang="greek" opt="n">ἡ</gen>: (<etym lang="greek" opt="n">δαίω Α</etym>):—<sense id="n23248.0" n="" level="1" opt="n"><i>fire-brand, pine-torch,</i> <cit><quote lang="greek">δαΐδων ὑπὸ λαμπομενάων</quote> <bibl n="Perseus:abo:tlg,0012,001:18:492"><title>Il.</title> 18.492</bibl></cit>; <cit><quote lang="greek">δαΐδας μετὰ χερσὶν ἔχοντες</quote> <bibl n="Perseus:abo:tlg,0012,002:7:101"><title>Od.</title> 7.101</bibl></cit>; <foreign lang="greek">δᾷδες,</foreign> = λαμπάδες, <bibl n="Perseus:abo:tlg,0494,001:29" default="NO"><author>Philyll.</author> 29</bibl>; <cit><quote lang="greek">ἀραμένη δαΐδας</quote> <title>IG</title> 12(5).229.8</cit>; <foreign lang="greek">ἔλαχεν μυστιπόλους δ.,</foreign> of a <foreign lang="greek">δᾳδοῦχος,</foreign> ib. 3.172: in sg., <bibl n="Perseus:abo:tlg,0019,003:1494"><author>Ar.</author> <title>Nu.</title> 1494</bibl>, <bibl n="Perseus:abo:tlg,0410,001:199" default="NO"><author>Antiph.</author> 199</bibl>, <bibl n="Perseus:abo:tlg,0410,001:272" default="NO">272</bibl>: collective in sg., metaph., <foreign lang="greek">ἐπὶ τὴν δᾷδα προελθεῖν</foreign> to come to the <i>funeral-torch,</i> i.e. end of life, <bibl n="Perseus:abo:tlg,0007,117:789a"><author>Plu.</author> <title>An seni</title> 2.789a</bibl>. </sense><sense n="2" id="n23248.1" level="3" opt="n"> as collective noun, <i>pine-wood,</i> such as torches were made of, <title>SIG</title> 57.32 (Milet., V B.C.), <bibl n="Perseus:abo:tlg,0019,003:612"><author>Ar.</author> <title>Nu.</title> 612</bibl>, <bibl n="Perseus:abo:tlg,0003,001:7:53"><author>Th.</author> 7.53</bibl>, <bibl n="Perseus:abo:tlg,0032,007:7:5:23"><author>X.</author> <title>Cyr.</title> 7.5.23</bibl>, <bibl n="Perseus:abo:tlg,0086,007:791b:24" default="NO"><author>Arist.</author> <title>Col.</title> 791b24</bibl>, <title>Supp.Epigr.</title> 1.329.24. </sense><sense n="3" id="n23248.2" level="3" opt="n"> <i>a disease in pines, resin-glut,</i> <bibl n="Perseus:abo:tlg,0093,001:3:9:5" default="NO"><author>Thphr.</author> <title>HP</title> 3.9.5</bibl>. </sense><sense n="4" id="n23248.3" level="3" opt="n"> = δᾳδίον 2, <bibl n="Perseus:abo:tlg,0627,033:9" default="NO"><author>Hp.</author> <title>Mul.</title> 2.133 [9?]</bibl>.</sense></div2>
<div2 id="crossda/i+s2" orig_id="n23249" key="da/i+s2" type="main" opt="n"><head extent="full" lang="greek" opt="n" orth_orig="δάϊς">δάϊς</head> (<etym lang="greek" opt="n">δαίω Α</etym>), <sense id="n23249.0" n="" level="1" opt="n"><i>war, battle,</i> mostly in apoc. dat. <foreign lang="greek">δαΐ,</foreign> as always in <author>Hom.</author>, <bibl n="Perseus:abo:tlg,0012,001:13:286"><title>Il.</title> 13.286</bibl>, al., cf. <bibl n="Perseus:abo:tlg,0020,001:650"><author>Hes.</author> <title>Th.</title> 650</bibl>, <bibl n="Perseus:abo:tlg,0085,004:925"><author>A.</author> <title>Th.</title> 925</bibl>: acc. <cit><quote lang="greek">δάϊν</quote> <bibl n="Perseus:abo:tlg,0533,001:243" default="NO"><author>Call.</author> <title>Fr.</title> 243</bibl></cit>.</sense></div2>
<div2 id="crossdai/s2" orig_id="n23250" key="dai/s2" type="main" opt="n"><head extent="full" lang="greek" opt="n" orth_orig="δαίς">δαίς</head>, <foreign lang="greek">δαιτός, <gen lang="greek" opt="n">ἡ</gen>, </foreign> (<etym lang="greek" opt="n">δαίω Β</etym>) <sense id="n23250.0" n="" level="1" opt="n"><i>meal, banquet,</i> <foreign lang="greek">δαὶς ἐΐση,</foreign> <i>duly shared,</i> <bibl n="Perseus:abo:tlg,0012,001:15:95"><title>Il.</title> 15.95</bibl>, etc.; <foreign lang="greek">δαὶς πίειρα</foreign> sumptuous <i>banquet,</i> <bibl n="Perseus:abo:tlg,0012,001:19:179">19.179</bibl>; <i>sacrificial feast,</i> <cit><quote lang="greek">βωμὸς ἐδεύετο δαιτὸς ἐΐσης</quote> <bibl n="Perseus:abo:tlg,0012,001:24:69">24.69</bibl></cit>; <cit><quote lang="greek">δαῖτα θάλειαν</quote> <bibl n="Perseus:abo:tlg,0013,001:4"><author>Hom.</author> Fr.inc. 4</bibl></cit> Kinkel (cf. <bibl n="Perseus:abo:tlg,0012,002:17:382"><title>Od.</title> 17.382</bibl>); <foreign lang="greek">Θυέστου δαῖτα παιδείων κρεῶν</foreign> <i>the feast</i> of Th. on . ., <bibl n="Perseus:abo:tlg,0085,005:1242"><author>A.</author> <title>Ag.</title> 1242</bibl>, cf. <bibl n="Perseus:abo:tlg,0085,005:1593">1593</bibl>: pl., <bibl n="Perseus:abo:tlg,0012,002:20:182"><title>Od.</title> 20.182</bibl>, <bibl n="Perseus:abo:tlg,0085,006:483"><author>A.</author> <title>Ch.</title> 483</bibl>: of beasts of prey, <bibl n="Perseus:abo:tlg,0012,001:24:43"><title>Il.</title> 24.43</bibl>; [<cit><quote lang="greek">τούτοις] παρέξω δαῖθʼ ὑφʼ ὧν ἐφερβόμην</quote> <bibl n="Perseus:abo:tlg,0011,006:957"><author>S.</author> <title>Ph.</title> 957</bibl></cit>. </sense><sense n="2" id="n23250.1" level="3" opt="n"> <i>meat, food,</i> <bibl n="Perseus:abo:tlg,0006,001:245"><author>E.</author> <title>Cyc.</title> 245</bibl>, cf. <bibl n="Perseus:abo:tlg,0012,002:18:279"><title>Od.</title> 18.279</bibl>. </sense><sense n="3" id="n23250.2" level="3" opt="n"> personified, <bibl n="Perseus:abo:tlg,0011,008:605"><author>S.</author> <title>Fr.</title> 605</bibl>. Rare in Prose (exc. in Homeric allusions, <bibl n="Perseus:abo:tlg,0059,012:247a"><author>Pl.</author> <title>Phdr.</title> 247a</bibl>, etc.) as <bibl n="Perseus:abo:tlg,0016,001:1:133"><author>Hdt.</author> 1.133</bibl>, <bibl n="Perseus:abo:tlg,0016,001:1:211">211</bibl>.</sense></div2>
<div2 id="crossdaisa/nh" orig_id="n23251" key="daisa/nh" type="gloss" opt="n"><head extent="full" lang="greek" opt="n" orth_orig="δαισάνη·">δαισάνη</head> <foreign lang="greek">πτισάνη,</foreign> <bibl n="Perseus:abo:tlg,4099,001:251:47" default="NO"><title>EM</title> 251.47</bibl>.</div2>
<div2 id="crossdai/simos" orig_id="n23252" key="dai/simos" type="main" opt="n"><head extent="full" lang="greek" opt="n" orth_orig="δαίσιμος">δαίσιμος</head> or <orth extent="full" lang="greek" opt="n">δαίσιος</orth>, <sense id="n23252.0" n="" level="1" opt="n"><i>eatable,</i> <author>Hsch.</author>, <title>EM</title> 352.29.</sense></div2>
<div2 id="cross*dai/sios" orig_id="n23253" key="*dai/sios" type="main" opt="n"><head extent="full" lang="greek" opt="n" orth_orig="Δαίσιος">Δαίσιος</head>, <gen lang="greek" opt="n">ὁ</gen>, a Macedonian month, <title>SIG</title> 700.39 <date>(ii B. C.)</date>, <bibl n="Perseus:abo:tlg,0007,047:16" default="NO"><author>Plu.</author> <title>Alex.</title> 16</bibl>, <bibl n="Perseus:abo:tlg,0007,011:19" default="NO"><title>Cam.</title> 19</bibl>, <bibl n="Perseus:abo:tlg,0007,063:53" default="NO"><title>Arat.</title> 53</bibl>, etc.</div2>
<div2 id="crossdai=sis" orig_id="n23254" key="dai=sis" type="main" opt="n"><head extent="full" lang="greek" opt="n" orth_orig="δαῖσις">δαῖσις</head>, <itype lang="greek" opt="n">εως</itype>, <gen lang="greek" opt="n">ἡ</gen>, <sense id="n23254.0" n="" level="1" opt="n"><i>division of property,</i> <author>Leg.Gort.</author> 4.25, 5.47.</sense></div2>
<div2 id="crossda^i/+sfaltos" orig_id="n23255" key="da^i/+sfaltos" type="main" opt="n"><head extent="full" lang="greek" opt="n" orth_orig="δᾰΐσφαλτος">δαΐσφαλτος</head>, <itype lang="greek" opt="n">ον</itype>, <sense id="n23255.0" n="" level="1" opt="n"><i>in which one is overthrown,</i> <cit><quote lang="greek">πάλη</quote> <bibl n="Perseus:abo:tlg,0341,002:170"><author>Lyc.</author> 170</bibl></cit>.</sense></div2>
<div2 id="crossdaita^la/omai" orig_id="n23256" key="daita^la/omai" type="main" opt="n"><head extent="full" lang="greek" opt="n" orth_orig="δαιτᾰλ-άομαι">δαιταλάομαι</head>, <sense><i>feast,</i> <bibl n="Perseus:abo:tlg,0341,002:654"><author>Lyc.</author> 654</bibl>. </sense></div2>
<div2 id="crossdaita^leu/s" orig_id="n23256a" key="daita^leu/s" type="main" opt="n"><head extent="full" lang="greek" opt="n" orth_orig="δαιτᾰλ-εύς">δαιταλεύς</head>, gen. <itype lang="greek" opt="n">έως</itype>, <gen lang="greek" opt="n">ὁ</gen>, <sense><i>banqueter,</i> <foreign lang="greek">ἄκλητος δ.,</foreign> of the eagle eating Prometheus’ liver, <bibl n="Perseus:abo:tlg,0085,003:1024"><author>A.</author> <title>Pr.</title> 1024</bibl>: pl., <title>Com.Adesp.</title> 30 D; <foreign lang="greek">Δαιταλῆς,</foreign> play by Aristophanes.</sense></div2>
<div2 id="crossdaita^lourgi/a" orig_id="n23257" key="daita^lourgi/a" type="main" opt="n"><head extent="suff" lang="greek" opt="n" orth_orig="δαιτᾰλ-ουργία">δαιταλουργία</head>, <gen lang="greek" opt="n">ἡ</gen>, <sense id="n23257.0" n="" level="1" opt="n"><i>cookery,</i> <bibl n="Perseus:abo:tlg,0341,002:199"><author>Lyc.</author> 199</bibl>.</sense></div2>
<div2 id="crossdai/th" orig_id="n23258" key="dai/th" type="main" opt="n"><head extent="full" lang="greek" opt="n" orth_orig="δαίτη">δαίτη</head>, <gen lang="greek" opt="n">ἡ</gen>, poet. for <foreign lang="greek">δαίς,</foreign> <sense id="n23258.0" n="" level="1" opt="n"><i>feast, banquet,</i> <bibl n="Perseus:abo:tlg,0012,001:10:217"><title>Il.</title> 10.217</bibl> (pl.), <bibl n="Perseus:abo:tlg,0012,002:3:44"><title>Od.</title> 3.44</bibl>, <bibl n="Perseus:abo:tlg,0001,001:2:761"><author>A.R.</author> 2.761</bibl>, <bibl n="Perseus:abo:tlg,0533,006:178:5" default="NO"><author>Call.</author> <title>Aet.</title> 1.1.5</bibl> [Fr. 178.5 Pf.]; of beasts, <bibl n="Perseus:abo:tlg,0023,001:2:251" default="NO"><author>Opp.</author> <title>H.</title> 2.251</bibl>, <bibl n="Perseus:abo:tlg,0022,002:380" default="NO"><author>Nic.</author> <title>Al.</title> 380</bibl>.</sense></div2>
<div2 id="crossdai/thqen" orig_id="n23259" key="dai/thqen" type="main" opt="n"><head extent="full" lang="greek" opt="n" orth_orig="δαίτηθεν">δαίτηθεν</head>, <pos opt="n">Adv.</pos> <sense id="n23259.0" n="" level="1" opt="n"><i>from a feast,</i> <bibl n="Perseus:abo:tlg,0012,002:10:216"><title>Od.</title> 10.216</bibl>, <bibl n="Perseus:abo:tlg,0005,001:17:28"><author>Theoc.</author> 17.28</bibl>.</sense></div2>
<div2 id="crossdaith/rion" orig_id="n23260" key="daith/rion" type="main" opt="n"><head extent="full" lang="greek" opt="n" orth_orig="δαιτήριον">δαιτήριον</head>, <gen lang="greek" opt="n">τό</gen>, <sense id="n23260.0" n="" level="1" opt="n"><i>place of distribution,</i> <title>EM</title> 251.52, <author>Zonar.</author></sense></div2>
<div2 id="crossdai/ths" orig_id="n23261" key="dai/ths" type="main" opt="n"><head extent="full" lang="greek" opt="n" orth_orig="δαίτης">δαίτης</head>, <itype lang="greek" opt="n">ου</itype>, <gen lang="greek" opt="n">ὁ</gen>, <sense id="n23261.0" n="" level="1" opt="n"><i>priest who divided the victims,</i> <bibl n="Perseus:abo:tlg,0006,020:472:12" default="NO"><author>E.</author> <title>Fr.</title> 472.12</bibl>.</sense></div2>
<div2 id="crossdai=tis" orig_id="n23262" key="dai=tis" type="main" opt="n"><head extent="full" lang="greek" opt="n" orth_orig="δαῖτις">δαῖτις</head>, <sense id="n23262.0" n="" level="1" opt="n">v. δέτις. </sense><sense n="II" id="n23262.1" level="2" opt="n"> epith. of Aphrodite at Ephesus, <title>Jahresh.</title> 17.146.</sense></div2>
<div2 id="crossdaitrei/a" orig_id="n23263" key="daitrei/a" type="main" opt="n"><head extent="full" lang="greek" opt="n" orth_orig="δαιτρ-εία">δαιτρεία</head>, <gen lang="greek" opt="n">ἡ</gen>, <sense id="n23263.0" n="" level="1" opt="n"><i>place where meat is cut up,</i> <bibl n="Perseus:abo:tlg,0087,036:19" default="NO"><author>Hdn.</author> <title>Epim.</title> 19</bibl>.</sense></div2>
<div2 id="crossdaitreutw=s" orig_id="n23264" key="daitreutw=s" type="main" opt="n"><head extent="suff" lang="greek" opt="n" orth_orig="δαιτρ-ευτῶς">δαιτρευτῶς</head>, <pos opt="n">Adv.</pos> <sense id="n23264.0" n="" level="1" opt="n"><i>by dividing</i> or <i>distributing,</i> Zonar. </sense></div2>
<div2 id="crossdaitreu/w" orig_id="n23264a" key="daitreu/w" type="main" opt="n"><head extent="suff" lang="greek" opt="n" orth_orig="δαιτρ-εύω">δαιτρεύω</head>, <sense><i>divide,</i> esp. <i>cut up</i> meat, <foreign lang="greek">δαιτρεῦσαί τε καὶ ὀπτῆσαι</foreign> <i>to cut up</i> and roast it, <bibl n="Perseus:abo:tlg,0012,002:15:323"><title>Od.</title> 15.323</bibl>; <cit><quote lang="greek">ἂν δὲ . . ἵστατο δαιτρεύσων</quote> <i>to carve,</i> <bibl n="Perseus:abo:tlg,0012,002:14:433">14.433</bibl></cit>; <foreign lang="greek">τὰ δʼ ἄλλʼ ἐς δῆμον ἔδωκε δαιτρεύειν</foreign> <i>to cut up for distribution</i> among the people, <bibl n="Perseus:abo:tlg,0012,001:11:705"><title>Il.</title> 11.705</bibl>, cf. <bibl n="Perseus:abo:tlg,0012,001:11:688">688</bibl>; <foreign lang="greek">ἵππους δαίτρευον,</foreign> of the Amazons, <bibl n="Perseus:abo:tlg,0001,001:2:1176"><author>A.R.</author> 2.1176</bibl>; <cit><quote lang="greek">τὰ πιότερα τῶν προβάτων</quote> <bibl n="Perseus:abo:tlg,2001,013:171c" default="NO"><author>Them.</author> <title>Or.</title> 13.171c</bibl></cit>; of animals, <i>devour</i> prey, <bibl n="Perseus:abo:tlg,0023,001:2:294" default="NO"><author>Opp.</author> <title>H.</title> 2.294</bibl>: —<gramGrp opt="n"><gram type="voice" opt="n">Med.</gram></gramGrp>, <bibl n="Perseus:abo:tlg,0023,001:2:606" default="NO">ib. 606</bibl>, <bibl n="Perseus:abo:tlg,2045,001:5:363" default="NO"><author>Nonn.</author> <title>D.</title> 5.363</bibl>, al.:—<gramGrp opt="n"><gram type="voice" opt="n">Pass.</gram></gramGrp>, <bibl n="Perseus:abo:tlg,0341,002:160"><author>Lyc.</author> 160</bibl>, etc. </sense></div2>
<div2 id="crossdaitro/n" orig_id="n23264b" key="daitro/n" type="main" opt="n"><head extent="suff" lang="greek" opt="n" orth_orig="δαιτρ-όν">δαιτρόν</head>, <gen lang="greek" opt="n">τό</gen>, <sense> <i>oneʼs portion,</i> <cit><quote lang="greek">δαιτρὸν πίνειν</quote> <bibl n="Perseus:abo:tlg,0012,001:4:262"><title>Il.</title> 4.262</bibl></cit>.</sense></div2>
<div2 id="crossdaitropo/nos" orig_id="n23265" key="daitropo/nos" type="main" opt="n"><head extent="full" lang="greek" opt="n" orth_orig="δαιτροπόνος">δαιτροπόνος</head>, <sense id="n23265.0" n="" level="1" opt="n">= σιτοπόνος, σιτοποιός, <author>Hsch.</author>, <title>EM</title> 252.4.</sense></div2>
<div2 id="crossdaitro/s" orig_id="n23266" key="daitro/s" type="main" opt="n"><head extent="full" lang="greek" opt="n" orth_orig="δαιτρός">δαιτρός</head>, <gen lang="greek" opt="n">ὁ</gen>, (<etym lang="greek" opt="n">δαίω</etym>) <sense id="n23266.0" n="" level="1" opt="n"><i>one that carves and portions out,</i> esp. meat at table, <bibl n="Perseus:abo:tlg,0012,002:1:141"><title>Od.</title> 1.141</bibl>, <bibl n="Perseus:abo:tlg,0012,002:17:331">17.331</bibl>, <bibl n="Perseus:abo:tlg,0341,002:35"><author>Lyc.</author> 35</bibl>, <bibl n="Perseus:abo:tlg,0022,002:258" default="NO"><author>Nic.</author> <title>Al.</title> 258</bibl>, <bibl n="Perseus:abo:tlg,0008,001:1:12d" default="NO"><author>Ath.</author> 1.12d</bibl>. </sense><sense n="II" id="n23266.1" level="2" opt="n"> hereditary priest who officiated at the Dipolia, <bibl n="Perseus:abo:tlg,2034,003:2:30" default="NO"><author>Porph.</author> <title>Abst.</title> 2.30</bibl>.</sense></div2>
<div2 id="crossdaitrosu/nh" orig_id="n23267" key="daitrosu/nh" type="main" opt="n"><head extent="full" lang="greek" opt="n" orth_orig="δαιτροσύνη">δαιτροσύνη</head>, <gen lang="greek" opt="n">ἡ</gen>, <sense id="n23267.0" n="" level="1" opt="n"><i>art of carving meat into portions,</i> <bibl n="Perseus:abo:tlg,0012,002:16:253"><title>Od.</title> 16.253</bibl> (pl.).</sense></div2>
<div2 id="crossdaitu^moneu/s" orig_id="n23268" key="daitu^moneu/s" type="main" opt="n"><head extent="full" lang="greek" opt="n" orth_orig="δαιτῠμ-ονεύς">δαιτυμονεύς</head>, <gramGrp opt="n"><gram type="dialect" opt="n">Ep.</gram></gramGrp> gen. <itype lang="greek" opt="n">ῆος</itype>, <gen lang="greek" opt="n">ὁ</gen>, <abbr>=</abbr> sq., <bibl n="Perseus:abo:tlg,2045,001:2:666" default="NO"><author>Nonn.</author> <title>D.</title> 2.666</bibl>.</div2>
<div2 id="crossdaitu^mw/n" orig_id="n23269" key="daitu^mw/n" type="main" opt="n"><head extent="suff" lang="greek" opt="n" orth_orig="δαιτῠμ-ών">δαιτυμών</head>, <itype lang="greek" opt="n">όνος</itype>, <gen lang="greek" opt="n">ὁ</gen>, (<etym lang="greek" opt="n">δαίς</etym>) <sense id="n23269.0" n="" level="1" opt="n"><i>one that is entertained, guest,</i> (but in <bibl n="Perseus:abo:tlg,0012,002:4:621"><title>Od.</title> 4.621</bibl> of <i>those who bring each his portion</i>) <author>Hom.</author> only in pl., <bibl n="Perseus:abo:tlg,0012,002:7:102"><title>Od.</title> 7.102</bibl>, <bibl n="Perseus:abo:tlg,0012,002:7:148">148</bibl>, al, cf. <bibl n="Perseus:abo:tlg,0016,001:1:73"><author>Hdt.</author> 1.73</bibl>, etc.: in sg., <bibl n="Perseus:abo:tlg,0059,030:345c"><author>Pl.</author> <title>R.</title> 345c</bibl>, <bibl n="Perseus:abo:tlg,0086,035:1282a:22"><author>Arist.</author> <title>Pol.</title> 1282a22</bibl>.</sense></div2>
<div2 id="crossdaitu/s" orig_id="n23270" key="daitu/s" type="main" opt="n"><head extent="full" lang="greek" opt="n" orth_orig="δαιτύς">δαιτύς</head>, <itype lang="greek" opt="n">ύος</itype>, <gen lang="greek" opt="n">ἡ</gen>, <gramGrp opt="n"><gram type="dialect" opt="n">Ep.</gram></gramGrp> for <foreign lang="greek">δαίς,</foreign> <sense id="n23270.0" n="" level="1" opt="n"><i>a meal,</i> <bibl n="Perseus:abo:tlg,0012,001:22:496"><title>Il.</title> 22.496</bibl>.</sense></div2>
<div2 id="crossdai/+frwn" orig_id="n23271" key="dai/+frwn" type="main" opt="n"><head extent="full" lang="greek" opt="n" orth_orig="δαΐφρων">δαΐφρων</head>, <itype lang="greek" opt="n">ον</itype>, gen. <itype lang="greek" opt="n">ονος</itype>, <sense n="1" id="n23271.0" level="3" opt="n"> (<etym lang="greek" opt="n">δάϊς</etym>) (<i>warlike, fiery,</i> <bibl n="Perseus:abo:tlg,0012,001:2:23"><title>Il.</title> 2.23</bibl>, al. (not in <title>Od.</title>); <cit><quote lang="greek">Λατοῦς θυγάτηρ</quote> <bibl n="Perseus:abo:tlg,0199,001:5:122"><author>B.</author> 5.122</bibl></cit>, cf. 137, <bibl n="Perseus:abo:tlg,2046,001:1:47" default="NO"><author>Q.S.</author> 1.47</bibl>; <cit><quote lang="greek">δ. ἀλκή</quote> <bibl n="Perseus:abo:tlg,2046,001:1:218" default="NO"><author>Id.</author> 1.218</bibl></cit>. </sense><sense n="2" id="n23271.1" level="3" opt="n"> (<etym lang="greek" opt="n">δαῆναι</etym>) <i>wise, prudent,</i> <cit><quote lang="greek">Ὀδυσῆα δ. ποικιλομήτην</quote> <bibl n="Perseus:abo:tlg,0012,001:11:482"><title>Il.</title> 11.482</bibl></cit>, cf. <bibl n="Perseus:abo:tlg,0012,002:1:48"><title>Od.</title> 1.48</bibl>, al.; of a charioteer, <bibl n="Perseus:abo:tlg,0012,001:24:325"><title>Il.</title> 24.325</bibl>; <i>craftsman,</i> <bibl n="Perseus:abo:tlg,0012,002:8:373"><title>Od.</title> 8.373</bibl>; of a woman, <bibl n="Perseus:abo:tlg,0012,002:15:356">15.356</bibl>: hence <cit><quote lang="greek">δ. Περσεφόνεια</quote> <bibl n="Perseus:abo:tlg,0013,002:359"><title>h.Cer.</title> 359</bibl></cit>, cf. <bibl n="Perseus:abo:tlg,0033,002:9:84"><author>Pi.</author> <title>P.</title> 9.84</bibl>. (<foreign lang="greek">δα(σ)ι-,</foreign> cf. Skt. <foreign lang="sa">dasrás</foreign> ‘working miracles’.)</sense></div2>
<div2 id="crossdai/w1" orig_id="n23272" key="dai/w1" type="main" opt="n"><head extent="full" lang="greek" opt="n" orth_orig="δαίω">δαίω</head> (A), <gramGrp opt="n"><gram type="voice" opt="n">Act.</gram></gramGrp> only <tns opt="n">pres.</tns> and <tns opt="n">impf.</tns> (but <foreign lang="greek">ἔδευσε</foreign> may be for <foreign lang="greek">ἔδαυσε</foreign> <tns opt="n">aor. 1</tns>, cf. infr. II, <title>Berl.Sitzb.</title> 1902.1098): —<gramGrp opt="n"><gram type="voice" opt="n">Pass.</gram></gramGrp>, <tns opt="n">pres.</tns> and <tns opt="n">impf.</tns>, <author>Hom.</author>: <tns opt="n">aor. 2</tns> <mood opt="n">subj.</mood> <cit><quote lang="greek">δάηται</quote> <bibl n="Perseus:abo:tlg,0012,001:20:316"><title>Il.</title> 20.316</bibl></cit>: also intr. in <tns opt="n">pf.</tns> 2 <gramGrp opt="n"><gram type="voice" opt="n">Act.</gram></gramGrp> <foreign lang="greek">δέδηα,</foreign> <tns opt="n">plpf.</tns> <foreign lang="greek">δεδήειν</foreign> (v. infr.); <gramGrp opt="n"><gram type="dialect" opt="n">Ep.</gram></gramGrp> <mood opt="n">part.</mood> fem. <cit><quote lang="greek">δεδᾰυῖα</quote> <bibl n="Perseus:abo:tlg,2045,001:6:305" default="NO"><author>Nonn.</author> <title>D.</title> 6.305</bibl></cit>: <tns opt="n">aor.</tns> <mood opt="n">part.</mood> <cit><quote lang="greek">δαισθείς</quote> <bibl n="Perseus:abo:tlg,0006,004:914"><author>E.</author> <title>Heracl.</title> 914</bibl></cit> (if not from <foreign lang="greek">δαίνυμι</foreign>): also <tns opt="n">aor. 2</tns> <mood opt="n">subj.</mood> <foreign lang="greek">δαβῇ, ἐκδαβῇ,</foreign> <author>Hsch.</author>: <tns opt="n">pf.</tns> <gramGrp opt="n"><gram type="voice" opt="n">Pass.</gram></gramGrp> <foreign lang="greek">δέδαυμαι</foreign> (v. infr. II). (<foreign lang="greek">*δαϝ-yω,</foreign> cf. <foreign lang="greek">δε-δαυ-μένος, δαβελός,</foreign> Skt. <foreign lang="sa">dunō óti</foreign> ‘burnʼ):—<sense id="n23272.0" n="" level="1" opt="n">poet. Verb, <i>light up, kindle,</i> <foreign lang="greek">δαῖέ οἱ ἐκ κόρυθός τε καὶ ἀσπίδος ἀκάματον πῦρ</foreign> <i>she made</i> fire <i>burn</i> from . ., <bibl n="Perseus:abo:tlg,0012,001:5:4"><title>Il.</title> 5.4</bibl>, cf. <bibl n="Perseus:abo:tlg,0012,001:5:7">7</bibl>; <cit><quote lang="greek">ἐκ δʼ αὐτοῦ δαῖε φλόγα</quote> <bibl n="Perseus:abo:tlg,0012,001:18:206">18.206</bibl></cit>, cf. <bibl n="Perseus:abo:tlg,0012,001:18:227">227</bibl>; so <cit><quote lang="greek">πῦρ καὶ φῶς δ.</quote> <bibl n="Perseus:abo:tlg,0085,006:864"><author>A.</author> <title>Ch.</title> 864</bibl></cit> (lyr.); <cit><quote lang="greek">φλόγα</quote> <bibl n="Perseus:abo:tlg,0085,005:496"><author>Id.</author> <title>Ag.</title> 496</bibl></cit>: metaph., <cit><quote lang="greek">δαῖε δʼ ἐν ὀφθαλμοῖς . . πόθον</quote> <bibl n="Perseus:abo:tlg,0001,001:4:1147"><author>A.R.</author> 4.1147</bibl></cit>:—<gramGrp opt="n"><gram type="voice" opt="n">Pass.</gram></gramGrp>, <i>blaze, burn fiercely,</i> <cit><quote lang="greek">ἐν πεδίῳ πῦρ δαίετο καῖε δὲ νεκρούς</quote> <bibl n="Perseus:abo:tlg,0012,001:21:343"><title>Il.</title> 21.343</bibl></cit>; <foreign lang="greek">πυρὶ ὄσσε δεδήει</foreign> <i>blazed</i> with fire, <bibl n="Perseus:abo:tlg,0012,001:12:466">12.466</bibl>; <cit><quote lang="greek">ἐν δέ οἱ ὄσσε δαίεται</quote> <i>blaze like fire,</i> <bibl n="Perseus:abo:tlg,0012,002:6:132"><title>Od.</title> 6.132</bibl></cit>; <cit><quote lang="greek">σεμνῶν ὀργίων ἐδαίετο φλόξ</quote> <bibl n="Perseus:abo:tlg,0011,001:765"><author>S.</author> <title>Tr.</title> 765</bibl></cit>: mostly metaph. sense, <cit><quote lang="greek">μάχη πόλεμός τε δέδηεν</quote> <bibl n="Perseus:abo:tlg,0012,001:20:18"><title>Il.</title> 20.18</bibl></cit>, al., cf. <bibl n="Perseus:abo:tlg,0012,001:12:35">12.35</bibl>, <bibl n="Perseus:abo:tlg,0012,001:17:253">17.253</bibl>; <foreign lang="greek">Ὄσσα δεδήει</foreign> Rumour <i>spread like wild-fire,</i> <bibl n="Perseus:abo:tlg,0012,001:2:93">2.93</bibl>; <cit><quote lang="greek">φιλοφροσύνη δεδήει</quote> <i>glowed,</i> <bibl n="Perseus:abo:tlg,1342,001:130:2" default="NO"><author>Emp.</author> 130.2</bibl></cit>. </sense><sense n="II" id="n23272.1" level="2" opt="n"> <i>burn up,</i> <cit><quote lang="greek">μῆρʼ ἐπὶ βωμῶν</quote> <title>Epigr.Gr.</title> 1035.20</cit> (Pergam.); <foreign lang="greek">σάρκας ἔδευσε</foreign> (sic) <foreign lang="greek">πυρί</foreign> <title>Berl.Sitzb.</title> l.c.; <foreign lang="greek">τὰν χώραν δ.</foreign> Decr.Byz. ap. <bibl n="Perseus:abo:tlg,0014,018:90"><author>D.</author> 18.90</bibl>; <i>use cautery,</i> <bibl n="Perseus:abo:tlg,0627,029:2" default="NO"><author>Hp.</author> <title>Haem.</title> 2</bibl> (very rare in Prose):—<gramGrp opt="n"><gram type="voice" opt="n">Pass.</gram></gramGrp>, <cit><quote lang="greek">φλογὶ σῶμα δαισθείς</quote> <author>E.</author></cit> l.c.; <cit><quote lang="greek">μηρίων δεδαυμένων</quote> <bibl n="Perseus:abo:tlg,0260,001:30" default="NO"><author>Semon.</author> 30</bibl></cit>; <foreign lang="greek">ἐν ἔρωτι δεδ.,</foreign> prob. in <bibl n="Perseus:abo:tlg,0533,003:50"><author>Call.</author> <title>Epigr.</title> 50</bibl> (cf. δάκνω III).</sense></div2>
<div2 id="crossdai/w2" orig_id="n23273" key="dai/w2" type="main" opt="n"><head extent="full" lang="greek" opt="n" orth_orig="δαίω">δαίω</head> (B), <sense id="n23273.0" n="" level="1" opt="n"><i>divide</i>:—<gramGrp opt="n"><gram type="voice" opt="n">Act.</gram></gramGrp> is not found in this sense (for <tns opt="n">aor.</tns> <foreign lang="greek">ἔδαισα</foreign> v. δαίνυμι) <foreign lang="greek">, δαΐζω</foreign> being used:—<gramGrp opt="n"><gram type="voice" opt="n">Pass.</gram></gramGrp>, <foreign lang="greek">δαίεται ἦτορ</foreign> my heart <i>is torn, distracted,</i> <bibl n="Perseus:abo:tlg,0012,002:1:48"><title>Od.</title> 1.48</bibl>: <gramGrp opt="n"><gram type="dialect" opt="n">Ep.</gram></gramGrp> <per opt="n">3</per> <number opt="n">pl.</number> <tns opt="n">pf.</tns>, <foreign lang="greek">Αἰθίοπας, τοὶ διχθὰ δεδαίαται</foreign> ib. <bibl n="Perseus:abo:tlg,0012,002:1:23">23</bibl>: —more freq. in <gramGrp opt="n"><gram type="voice" opt="n">Med.</gram></gramGrp>, <i>distribute,</i> <cit><quote lang="greek">κρέα δαίετο</quote> <bibl n="Perseus:abo:tlg,0012,002:15:140">15.140</bibl></cit>; <cit><quote lang="greek">κρέα πολλὰ δαιόμενος</quote> <bibl n="Perseus:abo:tlg,0012,002:17:332">17.332</bibl></cit>; <cit><quote lang="greek">πήματα . . δαίονται βροτοῖς ἀθάνατοι</quote> <bibl n="Perseus:abo:tlg,0033,002:3:81"><author>Pi.</author> <title>P.</title> 3.81</bibl></cit>; cf. <foreign lang="greek">δατέομαι.</foreign> </sense><sense n="II" id="n23273.1" level="2" opt="n"> <tns opt="n">aor.</tns> <foreign lang="greek">ἔδαισα,</foreign> <i>feast,</i> from <author>Hdt.</author> downwards, though formed from <foreign lang="greek">δαίω,</foreign> belongs in sense to <foreign lang="greek">δαίνυμι</foreign> (q. v.):—<gramGrp opt="n"><gram type="voice" opt="n">Med.</gram></gramGrp>, <i>feast on,</i> <cit><quote lang="greek">[ἀμβροσίην] δαίονται</quote> <bibl n="Perseus:abo:tlg,1486,001:72" default="NO"><author>Matro</author> <title>Conv.</title> 72</bibl></cit>. (<foreign lang="greek">δαι-</foreign> also in <foreign lang="greek">δαίς, δαίνυμι,</foreign> etc.: prob. akin to <foreign lang="greek">δα-</foreign> in <foreign lang="greek">δατέομαι.</foreign>) </sense></div2>
<div2 id="crossda/kar" orig_id="n23274" key="da/kar" type="main" opt="n"><head extent="full" lang="greek" opt="n" orth_orig="δάκαρ">δάκαρ</head>, <sense id="n23274.0" n="" level="1" opt="n">v.l. for δάρκα, <author>Dsc.</author> 1.13.</sense></div2>
<pb n="367"/>
<div2 id="crossda^ke/qu_mos" orig_id="n23275" key="da^ke/qu_mos" type="main" opt="n"><head extent="full" lang="greek" opt="n" orth_orig="δᾰκέθῡμος">δακέθυμος</head>, <itype lang="greek" opt="n">ον</itype>, <sense id="n23275.0" n="" level="1" opt="n"><i>heart-eating, heart-vexing,</i> <cit><quote lang="greek">ἱδρώς</quote> <bibl n="Perseus:abo:tlg,0261,001:58:5" default="NO"><author>Simon.</author> 58.5</bibl></cit>; <cit><quote lang="greek">ἄτη</quote> <bibl n="Perseus:abo:tlg,0011,006:705"><author>S.</author> <title>Ph.</title> 705</bibl></cit> (lyr.).</sense></div2>
<div2 id="crossda^keto/n" orig_id="n23276" key="da^keto/n" type="main" opt="n"><head extent="full" lang="greek" opt="n" orth_orig="δᾰκετόν">δακετόν</head> or <orth extent="full" lang="greek" opt="n">δάκετον</orth>, <gen lang="greek" opt="n">τό</gen>, <sense id="n23276.0" n="" level="1" opt="n">= δάκος I, <bibl n="Perseus:abo:tlg,0019,006:1069"><author>Ar.</author> <title>Av.</title> 1069</bibl>, <bibl n="Perseus:abo:tlg,0093,001:9:19:3" default="NO"><author>Thphr.</author> <title>HP</title> 9.19.3</bibl>, <bibl n="Perseus:abo:tlg,0018,001:1:399" default="NO"><author>Ph.</author> 1.399</bibl>, etc.: as <pos opt="n">Adj.</pos>, <cit><quote lang="greek">δ. θηρία</quote> <bibl n="Perseus:abo:tlg,0060,001:1:87"><author>D.S.</author> 1.87</bibl></cit>, <bibl n="Perseus:abo:tlg,0060,001:20:42">20.42</bibl>, <bibl default="NO"><author>Vett.Val.</author> 126.29</bibl>.</sense></div2>
<div2 id="crossda/kia" orig_id="n23277" key="da/kia" type="gloss" opt="n"><head extent="full" lang="greek" opt="n" orth_orig="δάκια·">δάκια</head> <foreign lang="greek">τὰ ἄγρια ὀρνιθάρια,</foreign> <author>Hsch.</author>; but, <sense id="n23277.0" n="" level="1" opt="n">= τὰ μικρὰ θηρία, <bibl n="Perseus:abo:tlg,4099,001:245:33" default="NO"><title>EM</title> 245.33</bibl>.</sense></div2>
<div2 id="crossdakku/lios" orig_id="n23278" key="dakku/lios" type="main" opt="n"><head extent="full" lang="greek" opt="n" orth_orig="δακκύλιος">δακκύλιος</head>, v. δάκτυλος.</div2>
<div2 id="crossdakna/zw" orig_id="n23279" key="dakna/zw" type="main" opt="n"><head extent="full" lang="greek" opt="n" orth_orig="δακν-άζω">δακνάζω</head>, <sense id="n23279.0" n="" level="1" opt="n">= δάκνω, <bibl n="Perseus:abo:tlg,7000,001:7:504" default="NO"><title>AP</title> 7.504</bibl> (<author>Leon.</author>). </sense><sense n="II" id="n23279.1" level="2" opt="n"> metaph. in <gramGrp opt="n"><gram type="voice" opt="n">Pass.</gram></gramGrp>, <i>to be afflicted, mournful,</i> imper. <cit><quote lang="greek">δακνάζου</quote> <bibl n="Perseus:abo:tlg,0085,002:571"><author>A.</author> <title>Pers.</title> 571</bibl></cit>.</sense></div2>
<div2 id="crossdaknhro/s" orig_id="n23280" key="daknhro/s" type="main" opt="n"><head extent="suff" lang="greek" opt="n" orth_orig="δακν-ηρός">δακνηρός</head>, <itype lang="greek" opt="n">ά</itype>, <itype lang="greek" opt="n">όν</itype>, <sense id="n23280.0" n="" level="1" opt="n"><i>biting,</i> <cit><quote lang="greek">ἔπη</quote> <author>Phld.</author> <title>Ir.</title> p.31</cit> W.; <orth lang="greek">δακνηρόν</orth>, <gen lang="greek" opt="n">τό</gen>, ib.p.75 W., <author>Herm.</author> ap. <author>Stob.</author> 1.49.44.</sense></div2>
<div2 id="crossdakni/s" orig_id="n23281" key="dakni/s" type="main" opt="n"><head extent="suff" lang="greek" opt="n" orth_orig="δακν-ίς">δακνίς</head>, <gen lang="greek" opt="n">ἡ</gen>, <sense id="n23281.0" n="" level="1" opt="n">a <i>bird,</i> <author>Hsch.</author></sense></div2>
<div2 id="crossdaknisth/r" orig_id="n23282" key="daknisth/r" type="main" opt="n"><head extent="suff" lang="greek" opt="n" orth_orig="δακν-ιστήρ">δακνιστήρ</head>, <itype lang="greek" opt="n">ῆρος</itype>, <gen lang="greek" opt="n">ὁ</gen>, <sense id="n23282.0" n="" level="1" opt="n"><i>biter, stinger,</i> v. μακιστήρ.</sense></div2>
<div2 id="crossda/knw" orig_id="n23283" key="da/knw" type="main" opt="n"><head extent="suff" lang="greek" opt="n" orth_orig="δάκν-ω">δάκνω</head>, <bibl n="Perseus:abo:tlg,0233,001:49:6" default="NO"><author>Hippon.</author> 49.6</bibl> (cj.), <bibl n="Perseus:abo:tlg,0085,004:399"><author>A.</author> <title>Th.</title> 399</bibl>, etc.: <tns opt="n">fut.</tns> <cit><quote lang="greek">δήξομαι</quote> <bibl n="Perseus:abo:tlg,0627,033:16" default="NO"><author>Hp.</author> <title>Nat.Mul.</title> 16</bibl></cit>, <bibl n="Perseus:abo:tlg,0627,036:1:18" default="NO"><title>Mul.</title> 1.18</bibl> (v.l. δάξεται): <tns opt="n">pf.</tns> <cit><quote lang="greek">δέδηχα</quote> <bibl n="Perseus:abo:tlg,0614,001:77" default="NO"><author>Babr.</author> 77</bibl></cit>: <tns opt="n">aor. 1</tns> <foreign lang="greek">ἔδηξα</foreign> late, <bibl n="Perseus:abo:tlg,0061,001:9" default="NO"><author>Luc.</author> <title>Asin.</title> 9</bibl>: <tns opt="n">aor. 2</tns> (the only tense in <author>Hom.</author>) <cit><quote lang="greek">ἔδᾰκον</quote> <bibl n="Perseus:abo:tlg,1220,001:181" default="NO"><author>Batr.</author> 181</bibl></cit>, <bibl n="Perseus:abo:tlg,0266,001:10:32" default="NO"><author>Tyrt.</author> 10.32</bibl>, etc., <gramGrp opt="n"><gram type="dialect" opt="n">Ep.</gram></gramGrp> <cit><quote lang="greek">δάκε</quote> <bibl n="Perseus:abo:tlg,0012,001:5:493"><title>Il.</title> 5.493</bibl></cit>, redupl. <cit><quote lang="greek">δέδακε</quote> <bibl n="Perseus:abo:tlg,7000,001:12:15" default="NO"><title>AP</title> 12.15</bibl></cit> (<author>Strat.</author>): <gramGrp opt="n"><gram type="dialect" opt="n">Ep.</gram></gramGrp> <mood opt="n">inf.</mood> <cit><quote lang="greek">δακέειν</quote> <bibl n="Perseus:abo:tlg,0012,001:17:572"><title>Il.</title> 17.572</bibl></cit>: —<gramGrp opt="n"><gram type="voice" opt="n">Pass.</gram></gramGrp>, <cit><quote lang="greek">δάκνομαι</quote> <bibl n="Perseus:abo:tlg,0002,001:910" default="NO"><author>Thgn.</author> 910</bibl></cit>: <tns opt="n">fut.</tns> <cit><quote lang="greek">δηχθήσομαι</quote> <bibl n="Perseus:abo:tlg,0006,002:1100"><author>E.</author> <title>Alc.</title> 1100</bibl></cit>: <tns opt="n">aor.</tns> <cit><quote lang="greek">ἐδήχθην</quote> <bibl n="Perseus:abo:tlg,0011,001:254"><author>S.</author> <title>Tr.</title> 254</bibl></cit>, <bibl n="Perseus:abo:tlg,0019,001:18"><author>Ar.</author> <title>Ach.</title> 18</bibl>, etc.; later <cit><quote lang="greek">ἐδάκην</quote> <bibl n="Perseus:abo:tlg,0719,002:2:2" default="NO"><author>Aret.</author> <title>SD</title> 2.2</bibl></cit>: <tns opt="n">pf.</tns> <cit><quote lang="greek">δέδηγμαι</quote> <bibl n="Perseus:abo:tlg,0019,001:1"><author>Ar.</author> <title>Ach.</title> 1</bibl></cit>, etc.; <gramGrp opt="n"><gram type="dialect" opt="n">Dor.</gram></gramGrp> <cit><quote lang="greek">δεδαγμένος</quote> <bibl n="Perseus:abo:tlg,0033,002:8:87"><author>Pi.</author> <title>P.</title> 8.87</bibl></cit>, <bibl n="Perseus:abo:tlg,0533,003:50"><author>Call.</author> <title>Epigr.</title> 50</bibl> codd.:—<sense id="n23283.0" n="" level="1" opt="n"><i>bite,</i> of dogs, <cit><quote lang="greek">δακέειν μὲν ἀπετρωπῶντο λεόντων</quote> <bibl n="Perseus:abo:tlg,0012,001:18:585"><title>Il.</title> 18.585</bibl></cit>; of a gnat, <cit><quote lang="greek">ἰσχανάᾳ δακέειν</quote> <bibl n="Perseus:abo:tlg,0012,001:17:572">17.572</bibl></cit>; <foreign lang="greek">στόμιον δ.</foreign> <i>champ</i> the bit, <bibl n="Perseus:abo:tlg,0085,003:1009"><author>A.</author> <title>Pr.</title> 1009</bibl>; <foreign lang="greek">χεῖλος ὀδοῦσι δακών,</foreign> as a mark of stern determination, <author>Tyrt.</author> l.c.: abs., <cit><quote lang="greek">δακὼν ἀνάσχου</quote> <bibl n="Perseus:abo:tlg,0541,029:141" default="NO"><author>Men.</author> <title>Sam.</title> 141</bibl></cit>; <foreign lang="greek">δ. στόμα</foreign> <i>bite</i> oneʼs tongue, so as to refrain from speaking, <cit><quote lang="greek">πρὸ τῶν τοιούτων χρὴ λόγων δ. στόμα</quote> <bibl n="Perseus:abo:tlg,0085,008:397" default="NO"><author>A.</author> <title>Fr.</title> 397</bibl></cit>, cf. <bibl n="Perseus:abo:tlg,0011,001:976"><author>S.</author> <title>Tr.</title> 976</bibl>; <foreign lang="greek">δ. ἑαυτόν</foreign> <i>to bite</i> oneʼs lips for fear of laughing, <bibl n="Perseus:abo:tlg,0019,009:43"><author>Ar.</author> <title>Ra.</title> 43</bibl>; so (by a joke <foreign lang="greek">παρὰ προσδοκίαν</foreign>) <cit><quote lang="greek"> δ. θυμόν</quote> <bibl n="Perseus:abo:tlg,0019,003:1369"><author>Id.</author> <title>Nu.</title> 1369</bibl></cit>; <cit><quote lang="greek">δ. χόλον</quote> <bibl n="Perseus:abo:tlg,0001,001:3:1170"><author>A.R.</author> 3.1170</bibl></cit>. </sense><sense n="II" id="n23283.1" level="2" opt="n"> metaph. of pungent smoke and dust, <i>sting,</i> <bibl n="Perseus:abo:tlg,0019,001:18"><author>Ar.</author> <title>Ach.</title> 18</bibl>, <bibl n="Perseus:abo:tlg,0019,007:298"><title>Lys.</title> 298</bibl>, <bibl n="Perseus:abo:tlg,0019,011:822"><title>Pl.</title> 822</bibl>; <foreign lang="greek">δ. ὄμματα,</foreign> of dry winds, <bibl n="Perseus:abo:tlg,0627,012:3:17" default="NO"><author>Hp.</author> <title>Aph.</title> 3.17</bibl>. </sense><sense n="III" id="n23283.2" level="2" opt="n"> of the mind, <i>bite, sting,</i> <cit><quote lang="greek">δάκε δὲ φρένας Ἕκτορι μῦθος</quote> <bibl n="Perseus:abo:tlg,0012,001:5:493"><title>Il.</title> 5.493</bibl></cit>, cf. <bibl n="Perseus:abo:tlg,0020,001:567"><author>Hes.</author> <title>Th.</title> 567</bibl>; <cit><quote lang="greek">ἔδακε λύπη</quote> <bibl n="Perseus:abo:tlg,0016,001:7:16:α"><author>Hdt.</author> 7.16.αʹ</bibl></cit>; <cit><quote lang="greek">συμφορὰ δ.</quote> <bibl n="Perseus:abo:tlg,0085,002:846"><author>A.</author> <title>Pers.</title> 846</bibl></cit>; <foreign lang="greek">λόφοι δὲ κώδωντʼ οὐ δάκνουσʼ ἄνευ δορός</foreign> <i>have</i> no <i>sting,</i> <bibl n="Perseus:abo:tlg,0085,004:399"><author>Id.</author> <title>Th.</title> 399</bibl>; <cit><quote lang="greek">σαίνουσα δάκνεις</quote> <bibl n="Perseus:abo:tlg,0011,008:885"><author>S.</author> <title>Fr.</title> 885</bibl></cit>; <cit><quote lang="greek">τὸ δάκνον τῆς συμβουλῆς</quote> <bibl n="Perseus:abo:tlg,2003,001:7:207d" default="NO"><author>Jul.</author> <title>Or.</title> 7.207d</bibl></cit>; of love, <cit><quote lang="greek">πάντες οἱ ἐν ὥρᾳ τὸν φιλόπαιδα δάκνουσι</quote> <bibl n="Perseus:abo:tlg,0059,030:474d"><author>Pl.</author> <title>R.</title> 474d</bibl></cit>:—freq. in <gramGrp opt="n"><gram type="voice" opt="n">Pass.</gram></gramGrp>, <cit><quote lang="greek">δηχθεῖσα κέντροις . . ἠράσθη</quote> <bibl n="Perseus:abo:tlg,0006,005:1303"><author>E.</author> <title>Hipp.</title> 1303</bibl></cit>; <cit><quote lang="greek">ἔρωτι δεδαγμένος</quote> <author>Call.</author></cit> l.c.; of vexation, <cit><quote lang="greek">δάκνομαι ψυχήν</quote> <bibl n="Perseus:abo:tlg,0002,001:910" default="NO"><author>Thgn.</author> 910</bibl></cit>; <foreign lang="greek">συμφορᾷ δεδαγμένοι</foreign> <author>Pi.</author> l.c.; <cit><quote lang="greek">δέδηγμαι καρδίαν</quote> <bibl n="Perseus:abo:tlg,0019,001:1"><author>Ar.</author> <title>Ach.</title> 1</bibl></cit>; <cit><quote lang="greek">ὑπὸ τῆς δαπάνης</quote> <bibl n="Perseus:abo:tlg,0019,003:12"><author>Id.</author> <title>Nu.</title> 12</bibl></cit>; <foreign lang="greek">πρός τι, ἐπί τινι,</foreign> at a thing, <bibl n="Perseus:abo:tlg,0011,006:378"><author>S.</author> <title>Ph.</title> 378</bibl>, <bibl n="Perseus:abo:tlg,0032,007:4:3:3"><author>X.</author> <title>Cyr.</title> 4.3.3</bibl>; <cit><quote lang="greek">ὑπὸ τῶν ἐν φιλοσοφίᾳ λόγων</quote> <bibl n="Perseus:abo:tlg,0059,011:218a"><author>Pl.</author> <title>Smp.</title> 218a</bibl></cit>: c.<mood opt="n">part.</mood>, <cit><quote lang="greek">ἐδήχθη ἀκούσας</quote> <bibl n="Perseus:abo:tlg,0032,007:1:4:13"><author>X.</author> <title>Cyr.</title> 1.4.13</bibl></cit>. (Cf.Skt. <foreign lang="sa">dáśati</foreign> ‘bite’, Goth. <foreign lang="got">tahjan</foreign> ‘tear’.)</sense></div2>
<div2 id="crossdaknw/dhs" orig_id="n23284" key="daknw/dhs" type="main" opt="n"><head extent="suff" lang="greek" opt="n" orth_orig="δακν-ώδης">δακνώδης</head>, <itype lang="greek" opt="n">ες</itype>, <sense id="n23284.0" n="" level="1" opt="n"><i>biting, pungent,</i> <bibl n="Perseus:abo:tlg,0627,012:5:20" default="NO"><author>Hp.</author> <title>Aph.</title> 5.20</bibl>, <author>Gal.</author> 6.237; <i>painful,</i> <bibl n="Perseus:abo:tlg,4034,001:499:3" default="NO"><author>Mich.</author> <title>in EN</title> 499.3</bibl>.</sense></div2>
<div2 id="crossda/kos" orig_id="n23285" key="da/kos" type="main" opt="n"><head extent="full" lang="greek" opt="n" orth_orig="δάκος">δάκος</head> <pron extent="full" lang="greek" opt="n">[ᾰ]</pron>, <itype lang="greek" opt="n">εος</itype>, <gen lang="greek" opt="n">τό</gen>, (<etym lang="greek" opt="n">δάκνω</etym>) <sense id="n23285.0" n="" level="1" opt="n"><i>animal of which the bite is dangerous, noxious beast,</i> <bibl n="Perseus:abo:tlg,0085,003:583"><author>A.</author> <title>Pr.</title> 583</bibl> (lyr.), <bibl n="Perseus:abo:tlg,0085,004:558"><title>Th.</title> 558</bibl>; <foreign lang="greek">Ἀργεῖον δ.,</foreign> of the Trojan horse, <bibl n="Perseus:abo:tlg,0085,005:824"><author>Id.</author> <title>Ag.</title> 824</bibl>; <foreign lang="greek">δάκη θηρῶν</foreign> <i>ravenous</i> beasts, <bibl n="Perseus:abo:tlg,0006,005:646"><author>E.</author> <title>Hipp.</title> 646</bibl>; <cit><quote lang="greek">θήρειον δ.</quote> <bibl n="Perseus:abo:tlg,0006,001:325"><author>Id.</author> <title>Cyc.</title> 325</bibl></cit>; generally, <foreign lang="greek">β. δάκος,</foreign> of a whale, <bibl n="Perseus:abo:tlg,0023,001:5:333" default="NO"><author>Opp.</author> <title>H.</title> 5.333</bibl>. </sense><sense n="II" id="n23285.1" level="2" opt="n"> <i>bite, sting,</i> <cit><quote lang="greek">δ. κακαγοριᾶν</quote> <bibl n="Perseus:abo:tlg,0033,002:2:53"><author>Pi.</author> <title>P.</title> 2.53</bibl></cit>, cf. <bibl n="Perseus:abo:tlg,0023,001:2:454" default="NO"><author>Opp.</author> <title>H.</title> 2.454</bibl>, <bibl n="Perseus:abo:tlg,0023,001:5:30" default="NO">5.30</bibl>.</sense></div2>
<div2 id="crossdako/ssai" orig_id="n23286" key="dako/ssai" type="gloss" opt="n"><head extent="full" lang="greek" opt="n" orth_orig="δακόσσαι·">δακόσσαι</head> <foreign lang="greek">πορθῆσαι,</foreign> <author>Hsch.</author></div2>
<div2 id="crossda/kru" orig_id="n23287" key="da/kru" type="main" opt="n"><head extent="full" lang="greek" opt="n" orth_orig="δάκρυ">δάκρυ</head>, <gen lang="greek" opt="n">τό</gen>, used by Poets metri gr. for <foreign lang="greek">δάκρυον</foreign> in sg. <foreign lang="greek">δάκρυ</foreign> and dat. pl. <cit><quote lang="greek">δάκρυσι</quote> <bibl n="Perseus:abo:tlg,0012,001:9:570"><title>Il.</title> 9.570</bibl></cit>, etc.: dat. pl. sts. in Prose, <bibl n="Perseus:abo:tlg,0003,001:7:75"><author>Th.</author> 7.75</bibl>, <bibl n="Perseus:abo:tlg,0014,030:32"><author>D.</author> 30.32</bibl>, <bibl n="Perseus:abo:tlg,0031,003:7:38"><title>Ev.Luc.</title> 7.38</bibl>: pl., <cit><quote lang="greek">δάκρη</quote> <title>An.Ox.</title> 1.121</cit> (cj. Bgk. in <bibl n="Perseus:abo:tlg,0033,005:122:3" default="NO"><author>Pi.</author> <title>Fr.</title> 122.3</bibl>, cf. δάκρυον 2):—<sense id="n23287.0" n="" level="1" opt="n"><i>tear,</i> <bibl n="Perseus:abo:tlg,0012,001:2:266"><title>Il.</title> 2.266</bibl>, <bibl n="Perseus:abo:tlg,0012,002:4:114"><title>Od.</title> 4.114</bibl>, <bibl n="Perseus:abo:tlg,0085,003:638"><author>A.</author> <title>Pr.</title> 638</bibl>, etc.; <cit><quote lang="greek">τοῦ ὅ γε δ. χέων</quote> <bibl n="Perseus:abo:tlg,0012,002:2:24"><title>Od.</title> 2.24</bibl></cit>. </sense><sense n="II" id="n23287.1" level="2" opt="n"> generally, <i>drop,</i> <cit><quote lang="greek">λιβάνου</quote> <author>Pi.</author></cit> l.c.; <cit><quote lang="greek">δ. πεύκινον</quote> <bibl n="Perseus:abo:tlg,0006,003:1200"><author>E.</author> <title>Med.</title> 1200</bibl></cit>. (Cf.Lat. <foreign lang="lat">lacruma,</foreign> Goth. <foreign lang="got">tagr,</foreign> OE. <foreign lang="ang">tear.</foreign>) </sense></div2>
<div2 id="crossdakru/dion" orig_id="n23288" key="dakru/dion" type="main" opt="n"><head extent="full" lang="greek" opt="n" orth_orig="δακρ-ύδιον">δακρύδιον</head>, <gen lang="greek" opt="n">τό</gen>, <sense id="n23288.0" n="" level="1" opt="n"><gramGrp opt="n"><gram type="dim" opt="n">Dim. of</gram></gramGrp> <foreign lang="greek">δύκρυ,</foreign> = σκαμμωνία, Ps.-<author>Dsc.</author> 4.170, cf. <author>Alex.Trall.</author> <title>Febr.</title> 5.</sense></div2>
<div2 id="crossda/kru_ma" orig_id="n23289" key="da/kru_ma" type="main" opt="n"><head extent="suff" lang="greek" opt="n" orth_orig="δάκρ-ῡμα">δάκρυμα</head>, <itype lang="greek" opt="n">ατος</itype>, <gen lang="greek" opt="n">τό</gen>, <sense id="n23289.0" n="" level="1" opt="n"><i>that which is wept for, a subject for tears,</i> Orac. ap. <bibl n="Perseus:abo:tlg,0016,001:7:169"><author>Hdt.</author> 7.169</bibl>. </sense><sense n="II" id="n23289.1" level="2" opt="n"> <i>tear,</i> <bibl n="Perseus:abo:tlg,0085,002:134"><author>A.</author> <title>Pers.</title> 134</bibl> (lyr.), <bibl n="Perseus:abo:tlg,0006,006:92"><author>E.</author> <title>Andr.</title> 92</bibl> (pl.).</sense></div2>
<div2 id="crossdakruogo/nos" orig_id="n23290" key="dakruogo/nos" type="main" opt="n"><head extent="full" lang="greek" opt="n" orth_orig="δακρυο-γόνος">δακρυογόνος</head>, <itype lang="greek" opt="n">ον</itype>, <sense id="n23290.0" n="" level="1" opt="n"><i>author of tears,</i> <cit><quote lang="greek">Ἄρης</quote> <bibl n="Perseus:abo:tlg,0085,001:682"><author>A.</author> <title>Supp.</title> 682</bibl></cit> (lyr.).</sense></div2>
<div2 id="crossdakruo/eis" orig_id="n23291" key="dakruo/eis" type="main" opt="n"><head extent="suff" lang="greek" opt="n" orth_orig="δακρυό-εις">δακρυόεις</head>, <orth extent="full" lang="greek" opt="n">εσσα</orth>, <orth extent="full" lang="greek" opt="n">εν</orth>, neut. <cit><quote lang="greek">-όειν</quote> <bibl n="Perseus:abo:tlg,0001,001:4:1291"><author>A.R.</author> 4.1291</bibl></cit>: <sense n="1" id="n23291.1" level="3" opt="n"> of persons, <i>tearful,</i> <bibl n="Perseus:abo:tlg,0012,001:21:506"><title>Il.</title> 21.506</bibl>, etc.; <cit><quote lang="greek">γόος</quote> <bibl n="Perseus:abo:tlg,0012,002:24:323"><title>Od.</title> 24.323</bibl></cit>; <foreign lang="greek">δακρυόεν γελάσασα</foreign> smiling <i>through tears,</i> <bibl n="Perseus:abo:tlg,0012,001:6:484"><title>Il.</title> 6.484</bibl>. </sense><sense n="2" id="n23291.2" level="3" opt="n"> of things, <i>causing tears,</i> <foreign lang="greek">πόλεμος, ἄλγεα, θάνατος,</foreign> <bibl n="Perseus:abo:tlg,0012,001:5:737">5.737</bibl>, <bibl n="Perseus:abo:tlg,0020,001:227"><author>Hes.</author> <title>Th.</title> 227</bibl>, etc.</sense></div2>
<div2 id="crossda/kruon" orig_id="n23292" key="da/kruon" type="main" opt="n"><head extent="full" lang="greek" opt="n" orth_orig="δάκρυον">δάκρυον</head>, <gen lang="greek" opt="n">τό</gen>, used in sg. <foreign lang="greek">δάκρυον,</foreign> pl. <foreign lang="greek">δάκρυα, -ύων, -ύοις,</foreign> <gramGrp opt="n"><gram type="dialect" opt="n">Ep.</gram></gramGrp> gen. pl. <foreign lang="greek">δακρυόφι </foreign> (<etym lang="greek" opt="n">-φιν</etym>) <bibl n="Perseus:abo:tlg,0012,001:17:696"><title>Il.</title> 17.696</bibl>, <bibl n="Perseus:abo:tlg,0012,002:5:152"><title>Od.</title> 5.152</bibl>, etc.: (v. <foreign lang="greek">δάκρυ</foreign>):—<sense id="n23292.0" n="" level="1" opt="n"><i>tear,</i> <cit><quote lang="greek">δ. θερμὰ χέων</quote> <bibl n="Perseus:abo:tlg,0012,001:16:3"><title>Il.</title> 16.3</bibl></cit>; <foreign lang="greek">δ. λείβειν, εἴβειν,</foreign> <bibl n="Perseus:abo:tlg,0012,001:13:88">13.88</bibl>, <bibl n="Perseus:abo:tlg,0012,002:4:153"><title>Od.</title> 4.153</bibl>; <cit><quote lang="greek">βλεφάρων ἄπο δ. ἧκεν</quote> <bibl n="Perseus:abo:tlg,0012,002:23:33">23.33</bibl></cit>; <cit><quote lang="greek">ἐς δάκρυα πεσεῖν</quote> <bibl n="Perseus:abo:tlg,0016,001:6:21"><author>Hdt.</author> 6.21</bibl></cit>; <cit><quote lang="greek">ἴσχειν πηγὰς δακρύων</quote> <bibl n="Perseus:abo:tlg,0011,002:803"><author>S.</author> <title>Ant.</title> 803</bibl></cit> (lyr.), etc.; <cit><quote lang="greek">μετὰ πολλῶν δ. ἱκετεύειν</quote> <bibl n="Perseus:abo:tlg,0059,002:34c"><author>Pl.</author> <title>Ap.</title> 34c</bibl></cit>. </sense><sense n="2" id="n23292.1" level="3" opt="n"> <i>that which drops like tears, gum, sap,</i> <cit><quote lang="greek">τῆς ἀκάνθης</quote> <bibl n="Perseus:abo:tlg,0016,001:2:96"><author>Hdt.</author> 2.96</bibl></cit>; <cit><quote lang="greek">κρομμύου</quote> <bibl n="Perseus:abo:tlg,0627,036:2:201" default="NO"><author>Hp.</author> <title>Mul.</title> 2.201</bibl></cit>; <cit><quote lang="greek">τῶν δένδρων</quote> <bibl n="Perseus:abo:tlg,0086,014:553b:28" default="NO"><author>Arist.</author> <title>HA</title> 553b28</bibl></cit>; <cit><quote lang="greek">ἀμπέλου</quote> <bibl n="Perseus:abo:tlg,7000,001:11:298" default="NO"><title>AP</title> 11.298</bibl></cit>; <cit><quote lang="greek">τὸ ἤλεκτρον καὶ ὅσα λέγεται ὡς δάκρυα</quote> <bibl n="Perseus:abo:tlg,0086,026:388b:19" default="NO"><author>Arist.</author> <title>Mete.</title> 388b19</bibl></cit>; <foreign lang="greek">δ. κάμωνος,</foreign> = σκαμμωνία, <bibl n="Perseus:abo:tlg,0022,002:484" default="NO"><author>Nic.</author> <title>Al.</title> 484</bibl>; of the bulbils of <foreign lang="greek">κρίνον</foreign> (q.v.), <bibl n="Perseus:abo:tlg,0093,001:2:2:1" default="NO"><author>Thphr.</author> <title>HP</title> 2.2.1</bibl>, al. </sense><sense n="II" id="n23292.2" level="2" opt="n"> = δάκρυμα 1, <bibl n="Perseus:abo:tlg,7000,001:7:527" default="NO"><title>AP</title> 7.527</bibl> (<author>Theodorid.</author>).</sense></div2>
<div2 id="crossdakru^opeth/s" orig_id="n23293" key="dakru^opeth/s" type="main" opt="n"><head extent="full" lang="greek" opt="n" orth_orig="δακρῠο-πετής">δακρυοπετής</head>, <itype lang="greek" opt="n">ές</itype>, <sense id="n23293.0" n="" level="1" opt="n"><i>making tears fall,</i> <cit><quote lang="greek">πάθεα</quote> <bibl n="Perseus:abo:tlg,0085,001:113"><author>A.</author> <title>Supp.</title> 113</bibl></cit> (lyr.).</sense></div2>
<div2 id="crossdakru^opoio/s" orig_id="n23294" key="dakru^opoio/s" type="main" opt="n"><head extent="suff" lang="greek" opt="n" orth_orig="δακρῠο-ποιός">δακρυοποιός</head>, <itype lang="greek" opt="n">όν</itype>, <sense id="n23294.0" n="" level="1" opt="n"><i>inducing tears,</i> <author>Dsc.</author> 1.1.</sense></div2>
<div2 id="crossdakru^o/ti_mos" orig_id="n23295" key="dakru^o/ti_mos" type="main" opt="n"><head extent="suff" lang="greek" opt="n" orth_orig="δακρῠό-τῑμος">δακρυότιμος</head>, <itype lang="greek" opt="n">ον</itype>, <sense id="n23295.0" n="" level="1" opt="n"><i>honoured with tears,</i> <bibl n="Perseus:abo:tlg,0579,001:56:6" default="NO"><author>Orph.</author> <title>H.</title> 56.6</bibl>.</sense></div2>
<div2 id="crossdakruplw/w" orig_id="n23296" key="dakruplw/w" type="main" opt="n"><head extent="full" lang="greek" opt="n" orth_orig="δακρυ-πλώω">δακρυπλώω</head>, (<etym lang="greek" opt="n">πλέω</etym>) <sense id="n23296.0" n="" level="1" opt="n"><i>swim with tears,</i> of drunken men, <bibl n="Perseus:abo:tlg,0012,002:19:122"><title>Od.</title> 19.122</bibl>.</sense></div2>
<div2 id="crossdakrurroe/w" orig_id="n23297" key="dakrurroe/w" type="main" opt="n"><head extent="suff" lang="greek" opt="n" orth_orig="δακρυ-ρροέω">δακρυρροέω</head>, <sense id="n23297.0" n="" level="1" opt="n"><i>melt into tears, shed tears,</i> <bibl n="Perseus:abo:tlg,0011,001:326"><author>S.</author> <title>Tr.</title> 326</bibl>, <bibl n="Perseus:abo:tlg,0018,001:2:179" default="NO"><author>Ph.</author> 2.179</bibl>; <cit><quote lang="greek">χαρᾷ</quote> <bibl n="Perseus:abo:tlg,0011,005:1313"><author>S.</author> <title>El.</title> 1313</bibl></cit>; <cit><quote lang="greek">ἐπὶ παισί</quote> <bibl n="Perseus:abo:tlg,0006,009:1181"><author>E.</author> <title>HF</title> 1181</bibl></cit>; of the eyes, <i>run with tears,</i> <bibl n="Perseus:abo:tlg,0627,006:4:25" default="NO"><author>Hp.</author> <title>Epid.</title> 4.25</bibl>; <cit><quote lang="greek">ὄμμα δακρυροοῦν</quote> <bibl n="Perseus:abo:tlg,0006,002:826"><author>E.</author> <title>Alc.</title> 826</bibl></cit>, cf. <bibl n="Perseus:abo:tlg,0006,015:370"><title>Ph.</title> 370</bibl> codd., <bibl n="Perseus:abo:tlg,0402,001:313" default="NO"><author>Alex.</author> 313</bibl>. </sense><sense n="2" id="n23297.1" level="3" opt="n"> of vines, <i>‘weep’,</i> <bibl n="Perseus:abo:tlg,0093,002:3:13:2" default="NO"><author>Thphr.</author> <title>CP</title> 3.13.2</bibl>, <bibl n="Perseus:abo:tlg,4080,001:5:38" default="NO"><title>Gp.</title> 5.38</bibl>.</sense></div2>
<div2 id="crossdakru/rroia" orig_id="n23298" key="dakru/rroia" type="main" opt="n"><head extent="suff" lang="greek" opt="n" orth_orig="δακρύ-ρροια">δακρύρροια</head>, <gen lang="greek" opt="n">ἡ</gen>, <sense id="n23298.0" n="" level="1" opt="n"><i>shedding of tears,</i> <bibl n="Perseus:abo:tlg,1386,001:3:3" default="NO"><author>Ps.-Callisth.</author> 3.3</bibl>, Sch. <bibl n="Perseus:abo:tlg,0006,016:788"><author>E.</author> <title>Or.</title> 788</bibl>.</sense></div2>
<div2 id="crossdakru/rroos" orig_id="n23299" key="dakru/rroos" type="main" opt="n"><head extent="suff" lang="greek" opt="n" orth_orig="δακρύ-ρροος">δακρύρροος</head>, <itype lang="greek" opt="n">ον</itype>, <sense id="n23299.0" n="" level="1" opt="n"><i>flowing with tears,</i> <bibl n="Perseus:abo:tlg,0006,008:773"><author>E.</author> <title>Supp.</title> 773</bibl>; <cit><quote lang="greek">τέκνων πηγαί</quote> <bibl n="Perseus:abo:tlg,0006,009:98"><author>Id.</author> <title>HF</title> 98</bibl></cit>.</sense></div2>
<div2 id="crossdakru^si/staktos" orig_id="n23300" key="dakru^si/staktos" type="main" opt="n"><head extent="full" lang="greek" opt="n" orth_orig="δακρῠσίστακτος">δακρυσίστακτος</head>, <itype lang="greek" opt="n">ον</itype>, <sense id="n23300.0" n="" level="1" opt="n"><i>in floods of tears,</i> neut. pl. as <pos opt="n">Adv.</pos>, <bibl n="Perseus:abo:tlg,0085,003:400"><author>A.</author> <title>Pr.</title> 400</bibl> (lyr.).</sense></div2>
<div2 id="crossdakru_to/s" orig_id="n23301" key="dakru_to/s" type="main" opt="n"><head extent="full" lang="greek" opt="n" orth_orig="δακρῡτός">δακρυτός</head>, <foreign lang="greek">όν </foreign> (<itype lang="greek" opt="n">ή</itype>, <itype lang="greek" opt="n">όν</itype> <bibl n="Perseus:abo:tlg,0526,001:4:8:48"><author>J.</author> <title>AJ</title> 4.8.48</bibl>), <sense id="n23301.0" n="" level="1" opt="n"><i>wept over, tearful,</i> <cit><quote lang="greek">ἐλπίς</quote> <bibl n="Perseus:abo:tlg,0085,006:236"><author>A.</author> <title>Ch.</title> 236</bibl></cit>; <cit><quote lang="greek">μόρος</quote> <bibl n="Perseus:abo:tlg,7000,001:7:495" default="NO"><title>AP</title> 7.495</bibl></cit> (<author>Alc.</author>); <foreign lang="greek">ἀπαλλαγή</foreign> <author>J.</author> l.c.: irreg. <gramGrp opt="n"><gram type="comp" opt="n">Sup.</gram></gramGrp> <foreign lang="greek">δακρυώτατος,</foreign> <author>Hsch.</author></sense></div2>
<div2 id="crossdakru^xa^rh/s" orig_id="n23302" key="dakru^xa^rh/s" type="main" opt="n"><head extent="full" lang="greek" opt="n" orth_orig="δακρῠ-χᾰρής">δακρυχαρής</head>, <itype lang="greek" opt="n">ές</itype>, <sense id="n23302.0" n="" level="1" opt="n"><i>delighting in tears,</i> <cit><quote lang="greek">πλούτων</quote> <title>IG</title> 14.769</cit> (<placeName>Naples</placeName>); <cit><quote lang="greek">Λάθας κευθμών</quote> <title>Mon.Ant.</title> 11.477</cit> (Cret.); <foreign lang="greek">κνίσματα</foreign> prob.l. in <bibl n="Perseus:abo:tlg,7000,001:5:165" default="NO"><title>AP</title> 5.165</bibl> (<author>Mel.</author>).</sense></div2>
<div2 id="crossdakru^xe/wn" orig_id="n23303" key="dakru^xe/wn" type="main" opt="n"><head extent="suff" lang="greek" opt="n" orth_orig="δακρῠ-χέων">δακρυχέων</head>, <itype lang="greek" opt="n">ουσα</itype>, wrongly written for <foreign lang="greek">δάκρυ χέων</foreign> in <author>Hom.</author>, etc.: hence <author>Nonn.</author> formed <foreign lang="greek">δακρυχέειν</foreign> in trans. sense, <sense id="n23303.0" n="" level="1" opt="n"><i>bewail,</i> <bibl n="Perseus:abo:tlg,2045,001:5:532" default="NO"><title>D.</title> 5.532</bibl>.</sense></div2>
<div2 id="crossdakru/w" orig_id="n23304" key="dakru/w" type="main" opt="n"><head extent="full" lang="greek" opt="n" orth_orig="δακρύω">δακρύω</head>, first in <bibl n="Perseus:abo:tlg,0085,006:81"><author>A.</author> <title>Ch.</title> 81</bibl>: <tns opt="n">fut.</tns> <cit><quote lang="greek">-ύσω</quote> <bibl n="Perseus:abo:tlg,0006,012:658"><author>E.</author> <title>El.</title> 658</bibl></cit>, later <cit><quote lang="greek">-ύσομαι</quote> <bibl n="Perseus:abo:tlg,0647,001:404" default="NO"><author>Tryph.</author> 404</bibl></cit>: <tns opt="n">aor.</tns> <cit><quote lang="greek">ἐδάκρῡσα</quote> <bibl n="Perseus:abo:tlg,0016,001:1:112"><author>Hdt.</author> 1.112</bibl></cit>, etc., <gramGrp opt="n"><gram type="dialect" opt="n">Ep.</gram></gramGrp> <cit><quote lang="greek">δάκρῡσα</quote> <bibl n="Perseus:abo:tlg,0012,002:11:55"><title>Od.</title> 11.55</bibl></cit>: <tns opt="n">pf.</tns> <cit><quote lang="greek">δεδάκρῡκα</quote> <bibl n="Perseus:abo:tlg,0640,001:2:3:14" default="NO"><author>Alciphr.</author> 2.3.14</bibl></cit>:—<gramGrp opt="n"><gram type="voice" opt="n">Med.</gram></gramGrp>, <cit><quote lang="greek">δακρύεσθαι</quote> <bibl n="Perseus:abo:tlg,0085,004:815"><author>A.</author> <title>Th.</title> 815</bibl></cit>: <tns opt="n">aor.</tns> <cit><quote lang="greek">δακρύσατο</quote> <bibl n="Perseus:abo:tlg,0647,001:431" default="NO"><author>Tryph.</author> 431</bibl></cit>:—<gramGrp opt="n"><gram type="voice" opt="n">Pass.</gram></gramGrp>, <tns opt="n">pres.</tns>, <bibl n="Perseus:abo:tlg,0006,014:1226"><author>E.</author> <title>Hel.</title> 1226</bibl>: <tns opt="n">pf.</tns> <cit><quote lang="greek">δεδάκρῡμαι</quote> <bibl n="Perseus:abo:tlg,0012,001:16:7"><title>Il.</title> 16.7</bibl></cit>, etc.: [<itype lang="greek" opt="n">υ</itype> long in all tenses, except in late Poets, as <bibl n="Perseus:abo:tlg,7000,001:9:148" default="NO"><title>AP</title> 9.148</bibl>]: (for the Root, v. δάκρυ). <sense n="I" id="n23304.1" level="2" opt="n"> intr., <i>weep, shed tears,</i> <title>Od.</title> l.c., etc.: c. acc. cogn., <foreign lang="greek">δ. γόους</foreign> to lament <i>with tears,</i> <bibl n="Perseus:abo:tlg,0011,003:580"><author>S.</author> <title>Aj.</title> 580</bibl>: c. gen. causae, <cit><quote lang="greek">δ. συμφορᾶς</quote> <bibl n="Perseus:abo:tlg,0006,009:528"><author>E.</author> <title>HF</title> 528</bibl></cit> (dub. l.); <foreign lang="greek">δ. βλέφαρα</foreign> <i>to flood</i> them <i>with tears,</i> <bibl n="Perseus:abo:tlg,0006,014:948"><author>Id.</author> <title>Hel.</title> 948</bibl>; <cit><quote lang="greek">δ. χαρᾷ</quote> <bibl n="Perseus:abo:tlg,0032,001:7:2:9"><author>X.</author> <title>HG</title> 7.2.9</bibl></cit>; <cit><quote lang="greek">ἐπὶ ταῖς συμφοραῖς</quote> <bibl n="Perseus:abo:tlg,0010,011:168"><author>Isoc.</author> 4.168</bibl></cit>:— <gramGrp opt="n"><gram type="voice" opt="n">Pass.</gram></gramGrp>, <tns opt="n">pf.</tns> <foreign lang="greek">δεδάκρυμαι</foreign> <i>to be in tears,</i> <cit><quote lang="greek">τίπτε δεδάκρυσαι, Πατρόκλεες;</quote> <bibl n="Perseus:abo:tlg,0012,001:16:7"><title>Il.</title> 16.7</bibl></cit>; <cit><quote lang="greek">δεδάκρυνται δὲ παρειαί</quote> <bibl n="Perseus:abo:tlg,0012,001:22:491">22.491</bibl></cit>; <cit><quote lang="greek">δεδακρυμένος</quote> <i>in tears,</i> <bibl n="Perseus:abo:tlg,0059,038:364b" default="NO"><author>Pl.</author> <title>Ax.</title> 364b</bibl></cit>, <bibl n="Perseus:abo:tlg,0007,008:6" default="NO"><author>Plu.</author> <title>Publ.</title> 6</bibl>, etc. </sense><sense n="2" id="n23304.2" level="3" opt="n"> of the eyes, <i>run,</i> <bibl n="Perseus:abo:tlg,0086,014:620a:5" default="NO"><author>Arist.</author> <title>HA</title> 620a5</bibl>. </sense><sense n="3" id="n23304.3" level="3" opt="n"> of trees, <i>exude gum,</i> <bibl n="Perseus:abo:tlg,0093,010:121" default="NO"><author>Thphr.</author> <title>Fr.</title> 121</bibl>; <cit><quote lang="greek">ἤλεκτρον δακρύειν</quote> <bibl n="Perseus:abo:tlg,0062,045:55" default="NO"><author>Luc.</author> <title>Salt.</title> 55</bibl></cit>. </sense><sense n="II" id="n23304.4" level="2" opt="n"> c. acc., <i>weep for,</i> <cit><quote lang="greek">τινά</quote> <bibl n="Perseus:abo:tlg,0085,005:1490"><author>A.</author> <title>Ag.</title> 1490</bibl></cit> (lyr.), <bibl n="Perseus:abo:tlg,0011,004:1486"><author>S.</author> <title>OT</title> 1486</bibl>, <bibl n="Perseus:abo:tlg,0019,001:1027"><author>Ar.</author> <title>Ach.</title> 1027</bibl>, etc.:—<gramGrp opt="n"><gram type="voice" opt="n">Pass.</gram></gramGrp>, <i>to be wept for,</i> <cit><quote lang="greek">συμφορὰ δακρύεται</quote> <bibl n="Perseus:abo:tlg,0006,014:1226"><author>E.</author> <title>Hel.</title> 1226</bibl></cit> (prob. <gramGrp opt="n"><gram type="voice" opt="n">Med.</gram></gramGrp> in <bibl n="Perseus:abo:tlg,0085,004:815"><author>A.</author> <title>Th.</title> 815</bibl>).</sense></div2>
<div2 id="crossdakruw/dhs" orig_id="n23305" key="dakruw/dhs" type="main" opt="n"><head extent="full" lang="greek" opt="n" orth_orig="δακρυώδης">δακρυώδης</head>, <itype lang="greek" opt="n">ες</itype>, <sense id="n23305.0" n="" level="1" opt="n"><i>exuding a watery fluid,</i> <cit><quote lang="greek">ἕλκος δ. καὶ ἀνεκπύητον</quote> <bibl n="Perseus:abo:tlg,0627,009:25" default="NO"><author>Hp.</author> <title>Fract.</title> 25</bibl></cit>; <i>running</i> at the eyes, <title>Hippiatr.</title> 1, al. </sense><sense n="2" id="n23305.1" level="3" opt="n"> <i>tear-like,</i> <foreign lang="greek">συρροή,</foreign> of the bulbils of <foreign lang="greek">κρίνον</foreign> (cf. <cit><quote lang="greek">δάκρυον</quote> 1.2</cit>), <bibl n="Perseus:abo:tlg,0093,001:6:6:8" default="NO"><author>Thphr.</author> <title>HP</title> 6.6.8</bibl>. </sense><sense n="II" id="n23305.2" level="2" opt="n"> <i>tearful, lamentable,</i> <bibl n="Perseus:abo:tlg,0062,024:14" default="NO"><author>Luc.</author> <title>Vit.Auct.</title> 14</bibl>.</sense></div2>
<div2 id="crossdaktu^lh/qra" orig_id="n23306" key="daktu^lh/qra" type="main" opt="n"><head extent="full" lang="greek" opt="n" orth_orig="δακτῠλ-ήθρα">δακτυλήθρα</head>, <gen lang="greek" opt="n">ἡ</gen>, (<etym lang="greek" opt="n">δάκτυλος</etym>) <sense id="n23306.0" n="" level="1" opt="n"><i>finger-sheath,</i> <bibl n="Perseus:abo:tlg,0032,007:8:8:17"><author>X.</author> <title>Cyr.</title> 8.8.17</bibl>, <bibl n="Perseus:abo:tlg,1270,001:21" default="NO"><author>Clearch.</author> 21</bibl>; <i>thumb-screw,</i> <bibl n="Perseus:abo:tlg,0527,026:8:13"><author>LXX</author> <title>4 Ma.</title> 8.13</bibl>.</sense></div2>
<div2 id="crossdaktu^/lhqron" orig_id="n23307" key="daktu^/lhqron" type="main" opt="n"><head extent="suff" lang="greek" opt="n" orth_orig="δακτῠλ-ηθρον">δακτύληθρον</head>, <gen lang="greek" opt="n">τό</gen>, <sense id="n23307.0" n="" level="1" opt="n"><i>ring,</i> <bibl n="Perseus:abo:tlg,2001,021:253a" default="NO"><author>Them.</author> <title>Or.</title> 21.253a</bibl>.</sense></div2>
<div2 id="crossdaktu^liai=os" orig_id="n23308" key="daktu^liai=os" type="main" opt="n"><head extent="suff" lang="greek" opt="n" orth_orig="δακτῠλ-ιαῖος">δακτυλιαῖος</head>, <itype lang="greek" opt="n">α</itype>, <itype lang="greek" opt="n">ον</itype>, <sense id="n23308.0" n="" level="1" opt="n"><i>of a fingerʼs length, breadth</i> or <i>thickness,</i> <cit><quote lang="greek">ῥάβδοι</quote> <bibl n="Perseus:abo:tlg,0627,009:30" default="NO"><author>Hp.</author> <title>Fract.</title> 30</bibl></cit>; <cit><quote lang="greek">κάραβοι</quote> <bibl n="Perseus:abo:tlg,0086,014:549b:10" default="NO"><author>Arist.</author> <title>HA</title> 549b10</bibl></cit>; <cit><quote lang="greek">τομοὶ δ. τῷ τε μήκει καὶ πάχει</quote> <author>Damocr.</author></cit> ap. <author>Gal.</author> 13.1000: Astron., <i>a digit in extent,</i> <bibl n="Perseus:abo:tlg,1272,001:2:3" default="NO"><author>Cleom.</author> 2.3</bibl>. </sense><sense n="II" id="n23308.1" level="2" opt="n"> <i>possessing δάκτυλοι,</i> <foreign lang="greek">δ. μέρη τοῦ σώματος,</foreign> i.e. hands and feet, <bibl n="Perseus:abo:tlg,0060,001:1:77"><author>D.S.</author> 1.77</bibl>.</sense></div2>
<div2 id="crossdaktu^li/dion" orig_id="n23309" key="daktu^li/dion" type="main" opt="n"><head extent="suff" lang="greek" opt="n" orth_orig="δακτῠλ-ίδιον">δακτυλίδιον</head> <pron extent="full" lang="greek" opt="n">[λῑ]</pron>, <gen lang="greek" opt="n">τό</gen>, <sense id="n23309.0" n="" level="1" opt="n"><gramGrp opt="n"><gram type="dim" opt="n">Dim. of</gram></gramGrp> <foreign lang="greek">δακτύλιος,</foreign> <i>ring,</i> <title>IG</title> 11(2).161<title>B</title> 119 (<placeName>Delos</placeName>, <date>iii B. C.</date>), <bibl n="Perseus:abo:pap,BGU:1104:13" default="NO"><title>BGU</title> 1104.13</bibl> (8 B.C.), <bibl n="Perseus:abo:pap,P.Amh.:126:55" default="NO"><title>PAmh.</title> 126.55</bibl> <date>(ii A. D.)</date>, <bibl n="Perseus:abo:tlg,0542,001:2:155" default="NO"><author>Poll.</author> 2.155</bibl>, <bibl n="Perseus:abo:tlg,0542,001:5:100" default="NO">5.100</bibl>, <bibl n="Perseus:abo:pap,BGU:843:8" default="NO"><title>BGU</title> 843.8</bibl>, etc., but rejected by Atticists, cf. <title>AB</title> 88. </sense><sense n="II" id="n23309.1" level="2" opt="n"> <orth extent="full" lang="greek" opt="n">δακτυλίδιον</orth> <pron extent="full" lang="greek" opt="n">[λῐ]</pron>, <gen lang="greek" opt="n">τό</gen>, <gramGrp opt="n"><gram type="dim" opt="n">Dim. of</gram></gramGrp> <foreign lang="greek">δάκτυλος,</foreign> <i>toe,</i> <bibl n="Perseus:abo:tlg,0019,007:417"><author>Ar.</author> <title>Lys.</title> 417</bibl>.</sense></div2>
<div2 id="crossdaktu^li/druon" orig_id="n23310" key="daktu^li/druon" type="main" opt="n"><head extent="suff" lang="greek" opt="n" orth_orig="δακτῠλ-ίδρυον">δακτυλίδρυον</head>, <itype lang="greek" opt="n">το</itype>, <sense id="n23310.0" n="" level="1" opt="n">late spelling of δακτυλίδιον I, <bibl n="Perseus:abo:pap,BGU:1036:14" default="NO"><title>BGU</title> 1036.14</bibl> <date>(ii A. D.)</date>:—also <orth extent="full" lang="greek" opt="n">δακτυριτριω</orth>( <orth extent="full" lang="greek" opt="n">ν</orth>) (sic, gen. pl.), <bibl n="Perseus:abo:pap,P.Lond.:2:193v4" default="NO"><title>PLond.</title> 2.193v4</bibl> <date>(ii A. D.)</date>, cf. ib. <bibl n="Perseus:abo:pap,P.Lond.:44" default="NO">44</bibl>.</sense></div2>
<div2 id="crossdaktu^li/zw" orig_id="n23311" key="daktu^li/zw" type="main" opt="n"><head extent="suff" lang="greek" opt="n" orth_orig="δακτῠλ-ίζω">δακτυλίζω</head>, <sense id="n23311.0" n="" level="1" opt="n">= δακτυλοδεικτέω (in bad sense), <author>Hsch.</author> s.vv. <foreign lang="greek">ἐδακτύλιζον, σκινδαρεύεσθαι.</foreign> </sense><sense n="II" id="n23311.1" level="2" opt="n"> <gramGrp opt="n"><gram type="voice" opt="n">Pass.</gram></gramGrp> in metre, <i>to be made a dactyl,</i> <bibl n="Perseus:abo:tlg,4083,001:874:8" default="NO"><author>Eust.</author> 874.8</bibl>.</sense></div2>
<div2 id="crossdaktu^liko/s" orig_id="n23312" key="daktu^liko/s" type="main" opt="n"><head extent="suff" lang="greek" opt="n" orth_orig="δακτῠλ-ικός">δακτυλικός</head>, <itype lang="greek" opt="n">ή</itype>, <itype lang="greek" opt="n">όν</itype>, <sense id="n23312.0" n="" level="1" opt="n"><i>of</i> or <i>for the finger</i>: <foreign lang="greek">αὐλὸς δ.</foreign> a flute <i>played with the fingers,</i> <bibl n="Perseus:abo:tlg,0008,001:4:176f" default="NO"><author>Ath.</author> 4.176f</bibl>; <foreign lang="greek">δ. ψῆφος</foreign> a stone <i>for calculating,</i> <bibl n="Perseus:abo:tlg,7000,001:11:290" default="NO"><title>AP</title> 11.290</bibl> (<author>Pall.</author>). </sense><sense n="2" id="n23312.1" level="3" opt="n"> <i>for the anus,</i> <cit><quote lang="greek">ἔμπλαστρος</quote> <author>Orib.</author> <title>Fr.</title> 83</cit>, <bibl n="Perseus:abo:tlg,0733,001:74" default="NO"><author>Cass.Fel.</author> 74</bibl>. </sense><sense n="II" id="n23312.2" level="2" opt="n"> <i>dactylic,</i> <cit><quote lang="greek">ῥυθμός</quote> <bibl n="Perseus:abo:tlg,0560,001:39:4" default="NO"><author>Longin.</author> 39.4</bibl></cit>, <bibl n="Perseus:abo:tlg,1402,001:4" default="NO"><author>Heph.</author> 4</bibl>. <pos opt="n">Adv.</pos> <cit><quote lang="greek">-κῶς, ποδίζεσθαι</quote> <bibl n="Perseus:abo:tlg,4083,001:11:25" default="NO"><author>Eust.</author> 11.25</bibl></cit>. </sense><sense n="III" id="n23312.3" level="2" opt="n"> = δακτυλιαῖος, διάστημα <bibl default="NO"><author>Theo Sm.</author> p.125</bibl> H.</sense></div2>
<div2 id="crossdaktu^lioglu^fi/a" orig_id="n23313" key="daktu^lioglu^fi/a" type="main" opt="n"><head extent="full" lang="greek" opt="n" orth_orig="δακτῠλιο-γλῠφία">δακτυλιογλυφία</head>, <gen lang="greek" opt="n">ἡ</gen>, <sense id="n23313.0" n="" level="1" opt="n"><i>art of cutting gems,</i> <bibl n="Perseus:abo:tlg,0059,013:128c"><author>Pl.</author> <title>Alc.</title> 1.128c</bibl>.</sense></div2>
<div2 id="crossdaktu^lioglu/fos" orig_id="n23314" key="daktu^lioglu/fos" type="main" opt="n"><head extent="suff" lang="greek" opt="n" orth_orig="δακτῠλιο-γλύφος">δακτυλιογλύφος</head>, <gen lang="greek" opt="n">ὁ</gen>, <sense id="n23314.0" n="" level="1" opt="n"><i>engraver of gems,</i> <bibl n="Perseus:abo:tlg,0319,001:66" default="NO"><author>Critias</author> 66 D.</bibl>, <author>Phld.</author> <title>Po.Herc.</title> 1676.5, <bibl n="Perseus:abo:tlg,0004,001:1:57" default="NO"><author>D.L.</author> 1.57</bibl>, <author>Gal.</author> 12.205.</sense></div2>
<div2 id="crossdaktu^lioqh/kh" orig_id="n23315" key="daktu^lioqh/kh" type="main" opt="n"><head extent="suff" lang="greek" opt="n" orth_orig="δακτῠλιο-θήκη">δακτυλιοθήκη</head>, <gen lang="greek" opt="n">ἡ</gen>, <sense id="n23315.0" n="" level="1" opt="n"><i>collection of gems,</i> <bibl n="Perseus:abo:phi,0978,001:37:11"><author>Plin.</author> <title>HN</title> 37.11</bibl>. </sense><sense n="II" id="n23315.1" level="2" opt="n"> <i>ring-case,</i> <bibl n="Perseus:abo:phi,1294,002:11:59"><author>Mart.</author> 11.59</bibl>.</sense></div2>
<div2 id="crossdaktu/lion" orig_id="n23316" key="daktu/lion" type="main" opt="n"><head extent="full" lang="greek" opt="n" orth_orig="δακτύλιον">δακτύλιον</head>, <gen lang="greek" opt="n">τό</gen>, <abbr>=</abbr> sq. 1, <bibl n="Perseus:abo:pap,BGU:781 ii 15" default="NO"><title>BGU</title> 781 ii 15</bibl>: <abbr>=</abbr> sq. II.2, <bibl n="Perseus:abo:tlg,0718,002:185" default="NO"><author>Aët.</author> 2.185</bibl> (s.v.l.); also <abbr>v.l.</abbr> for <foreign lang="greek">δακρύδιον</foreign> Ps.-<author>Dsc.</author> 4.170.</div2>
<div2 id="crossdaktu/lios" orig_id="n23317" key="daktu/lios" type="main" opt="n"><head extent="full" lang="greek" opt="n" orth_orig="δακτύλιος">δακτύλιος</head> <pron extent="full" lang="greek" opt="n">[ῠ]</pron>, <gramGrp opt="n"><gram type="dialect" opt="n">Boeot.</gram></gramGrp> <orth extent="full" lang="greek" opt="n">δακκύλιος</orth> (v. <foreign lang="greek">δάκτυλος</foreign>), <gen lang="greek" opt="n">ὁ</gen>, <sense id="n23317.0" n="" level="1" opt="n"><i>ring, signet,</i> <author>Sapph.</author> 35, <bibl n="Perseus:abo:tlg,0016,001:2:38"><author>Hdt.</author> 2.38</bibl>, <bibl n="Perseus:abo:tlg,0019,011:884"><author>Ar.</author> <title>Pl.</title> 884</bibl>, <bibl n="Perseus:abo:tlg,0059,030:359e"><author>Pl.</author> <title>R.</title> 359e</bibl>; <foreign lang="greek">ὁ ἐπὶ τοῦ δ.</foreign> keeper of the <i>signet,</i> <bibl n="Perseus:abo:tlg,0527,021:1:22"><author>LXX</author> <title>To.</title> 1.22</bibl>; <cit><quote lang="greek">ὁ τῆς πόλεως δ.</quote> <title>OGI</title> 229.88</cit> (<placeName>Smyrna</placeName>, <date>iii B. C.</date>); <cit><quote lang="greek">δ. φαρμακίτης</quote> <bibl n="Perseus:abo:tlg,0461,001:87" default="NO"><author>Eup.</author> 87</bibl></cit>, cf. <bibl n="Perseus:abo:tlg,0410,001:177" default="NO"><author>Antiph.</author> 177</bibl>. </sense><sense n="II" id="n23317.1" level="2" opt="n"> <i>anything ring-shaped,</i> as, </sense><sense n="1" id="n23317.2" level="3" opt="n"> <i>felloe</i> of a wheel, <bibl n="Perseus:abo:tlg,0542,001:1:145" default="NO"><author>Poll.</author> 1.145</bibl>. </sense><sense n="2" id="n23317.3" level="3" opt="n"> <i>anus,</i> <author>Dsc.</author> 1.70, <bibl n="Perseus:abo:tlg,0062,008:17" default="NO"><author>Luc.</author> <title>Demon.</title> 17</bibl>, <bibl n="Perseus:abo:pap,P.Ryl.:28:68" default="NO"><title>PRyl.</title> 28.68</bibl> <date>(iv A. D.)</date>. </sense><sense n="3" id="n23317.4" level="3" opt="n"> pl., <i>movable rings</i> on a bit, <bibl n="Perseus:abo:tlg,0032,013:10:9"><author>X.</author> <title>Eq.</title> 10.9</bibl>. </sense><sense n="4" id="n23317.5" level="3" opt="n"> <i>stone</i> to which mooring-cables were attached, <author>Hsch.</author> </sense><sense n="5" id="n23317.6" level="3" opt="n"> <i>door-handle,</i> <author>Id.</author> </sense><sense n="6" id="n23317.7" level="3" opt="n"> <i>end of the steering-paddle,</i> <author>Id.</author></sense></div2>
<div2 id="crossdaktu^liourgo/s" orig_id="n23318" key="daktu^liourgo/s" type="main" opt="n"><head extent="full" lang="greek" opt="n" orth_orig="δακτῠλιουργός">δακτυλιουργός</head>, <gen lang="greek" opt="n">ὁ</gen>, <sense id="n23318.0" n="" level="1" opt="n"><i>ring-maker,</i> <bibl n="Perseus:abo:tlg,0494,001:15" default="NO"><author>Philyll.</author> 15</bibl>, <bibl n="Perseus:abo:tlg,0486,001:207" default="NO"><author>Pherecr.</author> 207</bibl>.</sense></div2>
<div2 id="crossdaktu^li/s" orig_id="n23319" key="daktu^li/s" type="main" opt="n"><head extent="full" lang="greek" opt="n" orth_orig="δακτῠλ-ίς">δακτυλίς</head>, <itype lang="greek" opt="n">ίδος</itype>, <gen lang="greek" opt="n">ἡ</gen>, <sense id="n23319.0" n="" level="1" opt="n">name of a kind of <i>grape,</i> <bibl n="Perseus:abo:phi,0978,001:14:40"><author>Plin.</author> <title>HN</title> 14.40</bibl>. </sense><sense n="II" id="n23319.1" level="2" opt="n"> = δάκτυλος, <author>Steph.</author> <title>in Hp.Aph.</title> 2.294D.</sense></div2>
<div2 id="crossdaktu^li/skos" orig_id="n23320" key="daktu^li/skos" type="main" opt="n"><head extent="suff" lang="greek" opt="n" orth_orig="δακτῠλ-ίσκος">δακτυλίσκος</head>, <gen lang="greek" opt="n">ὁ</gen>, <sense id="n23320.0" n="" level="1" opt="n"><gramGrp opt="n"><gram type="dim" opt="n">Dim. of</gram></gramGrp> δάκτυλος II, <title>IG</title> 7.3073.115 (Lebad.).</sense></div2>
<div2 id="crossdaktu^listh/s" orig_id="n23321" key="daktu^listh/s" type="main" opt="n"><head extent="suff" lang="greek" opt="n" orth_orig="δακτῠλ-ιστής">δακτυλιστής</head>, <itype lang="greek" opt="n">οῦ</itype>, <gen lang="greek" opt="n">ὁ</gen>, (<cit><quote lang="greek">δάκτυλος</quote> ΙΙ</cit>) <sense id="n23321.0" n="" level="1" opt="n"><i>measurer, surveyor,</i> <title>PFay.</title> 12.11 <date>(i A. D.)</date>, <bibl n="Perseus:abo:pap,P.Amh.:126:32" default="NO"><title>PAmh.</title> 126.32</bibl> <date>(ii A. D.)</date>.</sense></div2>
<div2 id="crossdaktu^li=tis" orig_id="n23322" key="daktu^li=tis" type="main" opt="n"><head extent="full" lang="greek" opt="n" orth_orig="δακτῠλῖτις">δακτυλῖτις</head>, <gen lang="greek" opt="n">ἡ</gen>, <sense id="n23322.0" n="" level="1" opt="n">= ἀριστολοχεία μακρά, <author>Dsc.</author> 3.4, <author>Isid.</author> <title>Etym.</title> 17.9.52.</sense></div2>
<div2 id="crossdaktu^lodeikte/w" orig_id="n23323" key="daktu^lodeikte/w" type="main" opt="n"><head extent="full" lang="greek" opt="n" orth_orig="δακτῠλο-δεικτέω">δακτυλοδεικτέω</head>, <sense id="n23323.0" n="" level="1" opt="n"><i>point with the finger,</i> <bibl n="Perseus:abo:tlg,0014,025:68"><author>D.</author> 25.68</bibl>: c. acc., <bibl n="Perseus:abo:tlg,0385,001:61:17" default="NO"><author>D.C.</author> 61.17</bibl>:—<gramGrp opt="n"><gram type="voice" opt="n">Pass.</gram></gramGrp>, <bibl n="Perseus:abo:tlg,0081,016:7:4" default="NO"><author>D.H.</author> <title>Rh.</title> 7.4</bibl>, <bibl n="Perseus:abo:tlg,0018,001:2:539" default="NO"><author>Ph.</author> 2.539</bibl>.</sense></div2>
<div2 id="crossdaktu^lo/deiktos" orig_id="n23324" key="daktu^lo/deiktos" type="main" opt="n"><head extent="suff" lang="greek" opt="n" orth_orig="δακτῠλό-δεικτος">δακτυλόδεικτος</head>, <itype lang="greek" opt="n">ον</itype>, <sense id="n23324.0" n="" level="1" opt="n"><i>pointed at with the finger,</i> <cit><quote lang="greek">μέλαθρα</quote> <bibl n="Perseus:abo:tlg,0085,005:1332"><author>A.</author> <title>Ag.</title> 1332</bibl></cit> (lyr.), cf. <title>PLond. ined.</title> 1821.</sense></div2>
<div2 id="crossdaktu^lo/diktos" orig_id="n23325" key="daktu^lo/diktos" type="main" opt="n"><head extent="suff" lang="greek" opt="n" orth_orig="δακτῠλό-δικτος">δακτυλόδικτος</head>, <itype lang="greek" opt="n">ον</itype>, (<etym lang="greek" opt="n">δικεῖν</etym>) <sense id="n23325.0" n="" level="1" opt="n"><i>thrown from the fingers,</i> <foreign lang="greek">δ. μέλος,</foreign> of the humming of a top, <bibl n="Perseus:abo:tlg,0085,008:57" default="NO"><author>A.</author> <title>Fr.</title> 57</bibl> codd. <author>Str.</author> (<foreign lang="greek">-δεικτον</foreign> edd.).</sense></div2>
<div2 id="crossdaktu^lodo/xmh" orig_id="n23326" key="daktu^lodo/xmh" type="main" opt="n"><head extent="suff" lang="greek" opt="n" orth_orig="δακτῠλο-δόχμη">δακτυλοδόχμη</head>, <gen lang="greek" opt="n">ἡ</gen>, <sense id="n23326.0" n="" level="1" opt="n"><i>four fingers’ breadth,</i> = παλαιστή, <bibl n="Perseus:abo:tlg,0542,001:2:157" default="NO"><author>Poll.</author> 2.157</bibl>.</sense></div2>
<div2 id="crossdaktu^loeidh/s" orig_id="n23327" key="daktu^loeidh/s" type="main" opt="n"><head extent="suff" lang="greek" opt="n" orth_orig="δακτῠλο-ειδής">δακτυλοειδής</head>, <itype lang="greek" opt="n">ές</itype>, <sense id="n23327.0" n="" level="1" opt="n"><i>like a finger,</i> <author>Philem.</author> Gloss. ap. <bibl n="Perseus:abo:tlg,0008,001:11:468f" default="NO"><author>Ath.</author> 11.468f</bibl>, <author>Ruf.</author> <title>Oss.</title> 22.</sense></div2>
<div2 id="crossdaktu^lokamyo/du^nos" orig_id="n23328" key="daktu^lokamyo/du^nos" type="main" opt="n"><head extent="suff" lang="greek" opt="n" orth_orig="δακτῠλο-καμψόδῠνος">δακτυλοκαμψόδυνος</head>, <itype lang="greek" opt="n">ον</itype>, <sense id="n23328.0" n="" level="1" opt="n"><i>wearying the fingers by keeping them bent,</i> <bibl n="Perseus:abo:tlg,7000,001:16:18" default="NO"><title>APl.</title> 16.18</bibl>.</sense></div2>
<div2 id="crossdaktu^lokoiloglu/fos" orig_id="n23329" key="daktu^lokoiloglu/fos" type="main" opt="n"><head extent="suff" lang="greek" opt="n" orth_orig="δακτῠλο-κοιλογλύφος">δακτυλοκοιλογλύφος</head> <pron extent="full" lang="greek" opt="n">[λῠ]</pron>, <gen lang="greek" opt="n">ὁ</gen>, <sense id="n23329.0" n="" level="1" opt="n">= δακτυλιογλύφος, <title>IGRom.</title> 4.1648 (<placeName>Philadelphia</placeName>).</sense></div2>
<div2 id="crossdaktu^lopoihtiko/s" orig_id="n23330" key="daktu^lopoihtiko/s" type="main" opt="n"><head extent="suff" lang="greek" opt="n" orth_orig="δακτῠλο-ποιητικός">δακτυλοποιητικός</head>, <itype lang="greek" opt="n">ή</itype>, <itype lang="greek" opt="n">όν</itype>, <sense id="n23330.0" n="" level="1" opt="n"><i>finger-making,</i> <cit><quote lang="greek">δύναμις</quote> <bibl n="Perseus:abo:tlg,4015,007:193:11" default="NO"><author>Phlp.</author> <title>in GA</title> 193.11</bibl></cit>.</sense></div2>
<div2 id="crossdaktu^lo/pous" orig_id="n23331" key="daktu^lo/pous" type="main" opt="n"><head extent="suff" lang="greek" opt="n" orth_orig="δακτῠλό-πους">δακτυλόπους</head>, <gen lang="greek" opt="n">ὁ</gen>, gen. <itype lang="greek" opt="n">ποδος</itype>, <sense id="n23331.0" n="" level="1" opt="n"><i>first phalanx,</i> <cit><quote lang="greek">δ. ἢ ῥιζοδάκτυλος</quote> <title>Cat.Cod.Astr.</title> 7.238.25</cit>.</sense></div2>
<div2 id="crossda/ktu^los" orig_id="n23332" key="da/ktu^los" type="main" opt="n"><head extent="full" lang="greek" opt="n" orth_orig="δάκτῠλος">δάκτυλος</head>, <gen lang="greek" opt="n">ὁ</gen>, poet. pl. <cit><quote lang="greek">δάκτυλα</quote> <bibl n="Perseus:abo:tlg,0005,001:19:3"><author>Theoc.</author> 19.3</bibl></cit>, <bibl n="Perseus:abo:tlg,7000,001:9:365" default="NO"><title>AP</title> 9.365</bibl> (<author>Jul.</author> Imp.), also <bibl n="Perseus:abo:tlg,0086,032:810a:22" default="NO"><author>Arist.</author> <title>Phgn.</title> 810a22</bibl>:- <sense id="n23332.0" n="" level="1" opt="n"><i>finger,</i> <foreign lang="greek">ἐπὶ δακτύλων συμβάλλεσθαι τοὺς μῆνας</foreign> to reckon on <i>the fingers,</i> <bibl n="Perseus:abo:tlg,0016,001:6:63"><author>Hdt.</author> 6.63</bibl>; <cit><quote lang="greek">ὁ μέγας δ.</quote> <i>the thumb,</i> <bibl n="Perseus:abo:tlg,0016,001:3:8"><author>Id.</author> 3.8</bibl></cit>, <bibl n="Perseus:abo:tlg,1319,001:6" default="NO"><author>Diog.Apoll.</author> 6</bibl>; <cit><quote lang="greek">ὁ μέσος</quote> <bibl n="Perseus:abo:tlg,0086,030:687b:18" default="NO"><author>Arist.</author> <title>PA</title> 687b18</bibl></cit>; <cit><quote lang="greek">οἱ λιχανοί</quote> <bibl n="Perseus:abo:tlg,0627,010:37" default="NO"><author>Hp.</author> <title>Art.</title> 37</bibl></cit>; <cit><quote lang="greek">ὁ ἔσχατος</quote> <bibl n="Perseus:abo:tlg,0086,030:687b:17" default="NO"><author>Id.</author> <title>PA</title> 687b17</bibl></cit>: prov., <cit><quote lang="greek">ἄκρῳ δ. γεύεσθαι</quote> <bibl n="Perseus:abo:tlg,2598,019:31" default="NO"><author>Procop.Gaz.</author> <title>Ep.</title> 31</bibl></cit>; <cit><quote lang="greek">οὐκ ἄξια ψόφου δακτύλων</quote> <bibl n="Perseus:abo:tlg,1270,001:5" default="NO"><author>Clearch.</author> 5</bibl></cit>. </sense><sense n="2" id="n23332.1" level="3" opt="n"> <cit><quote lang="greek">οἱ δ. τῶν ποδῶν</quote> <i>the toes,</i> <bibl n="Perseus:abo:tlg,0032,006:4:5:12"><author>X.</author> <title>An.</title> 4.5.12</bibl></cit>; and, without <foreign lang="greek">ποδός,</foreign> <bibl n="Perseus:abo:tlg,1220,001:45" default="NO"><author>Batr.</author> 45</bibl>, <bibl n="Perseus:abo:tlg,0019,002:874"><author>Ar.</author> <title>Eq.</title> 874</bibl>, <bibl n="Perseus:abo:tlg,0086,014:494a:12" default="NO"><author>Arist.</author> <title>HA</title> 494a12</bibl>; <cit><quote lang="greek">τὸ τῶν δ. μέγεθος ἐναντίως ἔχει ἐπί τε τῶν ποδῶν καὶ τῶν χειρῶν</quote> <bibl n="Perseus:abo:tlg,0086,030:690a:30" default="NO"><author>Id.</author> <title>PA</title> 690a30</bibl></cit>; <foreign lang="greek">ὁ μέσος δ.</foreign> of a monkey, <bibl n="Perseus:abo:tlg,0086,014:502b:3" default="NO"><author>Id.</author> <title>HA</title> 502b3</bibl>; <foreign lang="greek">ὁ μείζων δ.</foreign> the great <i>toe,</i> <bibl n="Perseus:abo:tlg,0007,030:3" default="NO"><author>Plu.</author> <title>Pyrrh.</title> 3</bibl>. </sense><sense n="b" id="n23332.1a" level="4" opt="n"> of <i>the toes</i> of beasts, <bibl n="Perseus:abo:tlg,0086,014:498a:34" default="NO"><author>Arist.</author> <title>HA</title> 498a34</bibl>; of birds, <bibl n="Perseus:abo:tlg,0086,030:695a:22" default="NO"><author>Id.</author> <title>PA</title> 695a22</bibl>. </sense><sense n="II" id="n23332.2" level="2" opt="n"> a measure of length, <i>fingerʼs breadth,</i> <abbr>=</abbr> about 7/10 of an inch, <bibl n="Perseus:abo:tlg,0016,001:1:60"><author>Hdt.</author> 1.60</bibl>, al.; <cit><quote lang="greek">πώνωμεν, δάκτυλος ἀμέρα</quote> <bibl n="Perseus:abo:tlg,0383,001:41" default="NO"><author>Alc.</author> 41</bibl></cit>; <cit><quote lang="greek">δάκτυλος ἀώς</quote> <bibl n="Perseus:abo:tlg,7000,001:12:50" default="NO"><title>AP</title> 12.50</bibl></cit> (<author>Asclep.</author>): Astron., <i>digit,</i> i.e. twelfth part of the sunʼs or moonʼs apparent diameter, <bibl n="Perseus:abo:tlg,1272,001:2:3" default="NO"><author>Cleom.</author> 2.3</bibl>. </sense><sense n="III" id="n23332.3" level="2" opt="n"> metrical foot, <i>dactyl,</i> -⏑⏑, <bibl n="Perseus:abo:tlg,0059,030:400b"><author>Pl.</author> <title>R.</title> 400b</bibl>; <cit><quote lang="greek">ῥυθμὸς κατὰ δάκτυλον</quote> <bibl n="Perseus:abo:tlg,0019,003:651"><author>Ar.</author> <title>Nu.</title> 651</bibl></cit>; <foreign lang="greek">δ. κατʼ ἵαμβον,</foreign> <i>diiambus,</i> <author>Aristid.</author> <author>Quint.</author> 1.17. </sense><sense n="2" id="n23332.4" level="3" opt="n"> <orth lang="greek">δάκτυλοι</orth>, <gen lang="greek" opt="n">οἱ</gen>, a <i>dance,</i> <bibl n="Perseus:abo:tlg,0008,001:14:629d" default="NO"><author>Ath.</author> 14.629d</bibl>. </sense><sense n="IV" id="n23332.5" level="2" opt="n"> <i>date,</i> fruit of the <foreign lang="greek">φοῖνιξ,</foreign> <bibl n="Perseus:abo:tlg,0086,026:342a:10" default="NO"><author>Arist.</author> <title>Mete.</title> 342a10</bibl>, <bibl n="Perseus:abo:tlg,0553,001:5:89" default="NO"><author>Artem.</author> 5.89</bibl>. </sense><sense n="2" id="n23332.6" level="3" opt="n"> kind of <i>grape,</i> <bibl n="Perseus:abo:phi,0978,001:14:15"><author>Plin.</author> <title>HN</title> 14.15</bibl>, <bibl n="Perseus:abo:phi,0845,002:3:2:1"><author>Colum.</author> 3.2.1</bibl>. </sense><sense n="3" id="n23332.7" level="3" opt="n"> = ἄγρωστις, <bibl n="Perseus:abo:phi,0978,001:24:182"><author>Plin.</author> <title>HN</title> 24.182</bibl>. </sense><sense n="V" id="n23332.8" level="2" opt="n"> <foreign lang="greek">Δάκτυλοι Ἰδαῖοι</foreign> mythical <i>wizards</i> and <i>craftsmen</i> in Crete (or Phrygia, <bibl n="Perseus:abo:tlg,0060,001:17:7"><author>D.S.</author> 17.7</bibl>), attached to the cult of Rhea Cybele, <bibl n="Perseus:abo:tlg,0020,007:176" default="NO"><author>Hes.</author> <title>Fr.</title> 176</bibl>, <bibl n="Perseus:abo:tlg,2329,001:47" default="NO"><author>Pherecyd.</author> 47</bibl> <author>J.</author>, <bibl n="Perseus:abo:tlg,0011,008:364"><author>S.</author> <title>Fr.</title> 364</bibl>, <bibl n="Perseus:abo:tlg,0099,001:8:3:30"><author>Str.</author> 8.3.30</bibl>, <bibl n="Perseus:abo:tlg,0060,001:5:64"><author>D.S.</author> 5.64</bibl>, <title>IG</title> 12(9).259.22 (<placeName>Eretria</placeName>). </sense><sense n="2" id="n23332.9" level="3" opt="n"> <foreign lang="greek">δ. Ἰδαῖοι,</foreign> = γλυκυσίδη, <author>Dsc.</author> 3.140. </sense><sense n="b" id="n23332.10" level="4" opt="n"> fossil found in Crete, <bibl n="Perseus:abo:phi,0978,001:37:170"><author>Plin.</author> <title>HN</title> 37.170</bibl>. </sense><sense n="VI" id="n23332.11" level="2" opt="n"> <foreign lang="greek">δ. θεοῦ</foreign> the <i>hand</i> of God, <bibl n="Perseus:abo:tlg,0527,002:8:19"><author>LXX</author> <title>Ex.</title> 8.19</bibl>, cf. <bibl n="Perseus:abo:tlg,0031,003:11:20"><title>Ev.Luc.</title> 11.20</bibl>. (Orig. <foreign lang="greek">Δάτκυλος,</foreign> cf. <gramGrp opt="n"><gram type="dialect" opt="n">Boeot.</gram></gramGrp> <cit><quote lang="greek">δακκύλιος</quote> <title>Schwyzer</title> 462</cit><title>B</title> 51; <foreign lang="greek">δατ-</foreign> <abbr>=</abbr> <i>dṇt,</i> cf. Skt. <foreign lang="sa">a-datkas</foreign> ‘toothless’.)</sense></div2>
<pb n="368"/>
<div2 id="crossdaktu^lo/triptos" orig_id="n23333" key="daktu^lo/triptos" type="main" opt="n"><head extent="full" lang="greek" opt="n" orth_orig="δακτῠλότριπτος">δακτυλότριπτος</head>, <itype lang="greek" opt="n">ον</itype>, <sense id="n23333.0" n="" level="1" opt="n"><i>worn by the fingers,</i> <cit><quote lang="greek">ἄτρακτος</quote> <bibl n="Perseus:abo:tlg,7000,001:6:247:3" default="NO"><title>AP</title> 6.247.3</bibl></cit> (<author>Phil.</author>).</sense></div2>
<div2 id="crossdaktu^lwto/s" orig_id="n23334" key="daktu^lwto/s" type="main" opt="n"><head extent="full" lang="greek" opt="n" orth_orig="δακτῠλωτός">δακτυλωτός</head>, <itype lang="greek" opt="n">ή</itype>, <itype lang="greek" opt="n">όν</itype>, <sense id="n23334.0" n="" level="1" opt="n"><i>with finger-like handles,</i> <foreign lang="greek">ἔκπωμα</foreign> <bibl n="Perseus:abo:tlg,0308,001:1:2"><author>Ion Trag.</author> 1.2</bibl>, Didym. ap. <bibl n="Perseus:abo:tlg,0008,001:11:468e" default="NO"><author>Ath.</author> 11.468e</bibl>.</sense></div2>
<div2 id="crossda/la" orig_id="n23335" key="da/la" type="gloss" opt="n"><head extent="full" lang="greek" opt="n" orth_orig="δάλα·">δάλα</head> <foreign lang="greek">ἄμπελος,</foreign> <author>Hsch.</author> <orth extent="full" lang="greek" opt="n">δάλαν·</orth> <foreign lang="greek">λύμην,</foreign> <author>Id.</author> (Cf. <foreign lang="greek">δηλέομαι.</foreign>) </div2>
<div2 id="crossdala/gxan" orig_id="n23336" key="dala/gxan" type="gloss" opt="n"><head extent="full" lang="greek" opt="n" orth_orig="δαλάγχαν·">δαλάγχαν</head> <foreign lang="greek">θάλασσαν</foreign> (Maced.), <author>Hsch.</author> <orth extent="full" lang="greek" opt="n">δάλεμον·</orth> <foreign lang="greek">κηδεμόνα,</foreign> <author>Id.</author></div2>
<div2 id="crossda_le/omai" orig_id="n23337" key="da_le/omai" type="main" opt="n"><head extent="full" lang="greek" opt="n" orth_orig="δᾱλέομαι">δαλέομαι</head>, <gramGrp opt="n"><gram type="dialect" opt="n">Dor.</gram></gramGrp> for <foreign lang="greek">δηλέομαι.</foreign></div2>
<div2 id="crossda^lero/s" orig_id="n23338" key="da^lero/s" type="main" opt="n"><head extent="full" lang="greek" opt="n" orth_orig="δᾰλερός">δαλερός</head>, <itype lang="greek" opt="n">ά</itype>, <itype lang="greek" opt="n">όν</itype>, <sense id="n23338.0" n="" level="1" opt="n"><i>burning, hot,</i> dub.l. in <bibl n="Perseus:abo:tlg,1342,001:90:2" default="NO"><author>Emp.</author> 90.2</bibl>.</sense></div2>
<div2 id="crossda/lidas" orig_id="n23339" key="da/lidas" type="gloss" opt="n"><head extent="full" lang="greek" opt="n" orth_orig="δάλιδας·">δάλιδας</head> <foreign lang="greek">τὰς μεμνηστευμένας,</foreign> <author>Hsch.</author> (leg. <foreign lang="greek">τάλιδας</foreign>).</div2>
<div2 id="crossda_li/on" orig_id="n23340" key="da_li/on" type="main" opt="n"><head extent="full" lang="greek" opt="n" orth_orig="δᾱλίον">δαλίον</head>, <gen lang="greek" opt="n">τό</gen>, <gramGrp opt="n"><gram type="dim" opt="n">Dim. of</gram></gramGrp> <foreign lang="greek">δαλός,</foreign> <bibl n="Perseus:abo:tlg,0019,005:959"><author>Ar.</author> <title>Pax</title> 959</bibl>.</div2>
<div2 id="cross*da/lios" orig_id="n23341" key="*da/lios" type="main" opt="n"><head extent="full" lang="greek" opt="n" orth_orig="Δάλιος">Δάλιος</head>, <gramGrp opt="n"><gram type="dialect" opt="n">Dor.</gram></gramGrp> for <foreign lang="greek">Δήλιος</foreign> (q.v.).</div2>
<div2 id="crossdalioxei=n" orig_id="n23342" key="dalioxei=n" type="main" opt="n"><head extent="full" lang="greek" opt="n" orth_orig="δαλιοχεῖν">δαλιοχεῖν</head>, <sense id="n23342.0" n="" level="1" opt="n">= παιδὶ συνεῖναι (Ambrac.); also, = μοιχεύειν, <author>Hsch.</author>: <orth extent="full" lang="greek" opt="n">δαλιοχός·</orth> <foreign lang="greek">μοιχός,</foreign> <author>Id.</author> <orth extent="full" lang="greek" opt="n">δαλίς·</orth> <foreign lang="greek">μωρός,</foreign> <author>Id.</author> <orth extent="full" lang="greek" opt="n">δάλκιον·</orth> <foreign lang="greek">πινάκιον,</foreign> <author>Id.</author> <orth extent="full" lang="greek" opt="n">δάλλει·</orth> <foreign lang="greek">κακουργεῖ,</foreign> <author>Id.</author> (Cf. <foreign lang="greek">δηλέομαι.</foreign>) </sense></div2>
<div2 id="crossdallw/" orig_id="n23343" key="dallw/" type="main" opt="n"><head extent="full" lang="greek" opt="n" orth_orig="δαλλώ">δαλλώ</head> or <orth extent="full" lang="greek" opt="n">δαλώ</orth>, <sense id="n23343.0" n="" level="1" opt="n"><i>old woman</i> (cf. δαλός II), <author>Hsch.</author> <orth extent="full" lang="greek" opt="n">δαλμᾶναι·</orth> <foreign lang="greek">εἰκάσαι,</foreign> <author>Id.</author></sense></div2>
<div2 id="cross*dalma^tei=s" orig_id="n23344" key="*dalma^tei=s" type="main" opt="n"><head extent="full" lang="greek" opt="n" orth_orig="Δαλμᾰτεῖς">Δαλματεῖς</head>, <gen lang="greek" opt="n">οἱ</gen>, <sense id="n23344.0" n="" level="1" opt="n"><i>Dalmatians,</i> <bibl n="Perseus:abo:tlg,0543,001:12:5:2"><author>Plb.</author> 12.5.2</bibl>, <bibl n="Perseus:abo:tlg,0099,001:7:5:5"><author>Str.</author> 7.5.5</bibl>:—also <orth extent="full" lang="greek" opt="n">Δαλμάται</orth>, <bibl n="Perseus:abo:tlg,0551,012:11"><author>App.</author> <title>Ill.</title> 11</bibl>: <orth extent="full" lang="greek" opt="n">Δαλματία</orth>, <gen lang="greek" opt="n">ἡ</gen>, <bibl n="Perseus:abo:tlg,0099,001:7:5:3"><author>Str.</author> 7.5.3</bibl>:—<pos opt="n">Adj.</pos> <orth extent="suff" lang="greek" opt="n">Δαλματικός</orth>, <itype lang="greek" opt="n">ή</itype>, <itype lang="greek" opt="n">όν</itype>, <bibl n="Perseus:abo:tlg,0099,001:7:5:5"><author>Id.</author> 7.5.5</bibl>:—hence <orth extent="full" lang="greek" opt="n">Δαλμᾰτική</orth>, <gen lang="greek" opt="n">ἡ</gen>, <i>a robe,</i> <bibl n="Perseus:abo:pap,CPR:21:16" default="NO"><title>CPR</title> 21.16</bibl> <date>(iii A.D.)</date>:—more freq. <orth extent="full" lang="greek" opt="n">Δελμ-</orth>, <title>Edict.Diocl.</title> 19.9, al., <bibl n="Perseus:abo:pap,BGU:93:7" default="NO"><title>BGU</title> 93.7</bibl> <date>(ii/iii A.D.)</date>:—<gramGrp opt="n"><gram type="var" opt="n">Dim.</gram></gramGrp> <orth extent="full" lang="greek" opt="n">Δελματίκιον</orth>, <gen lang="greek" opt="n">τό</gen>, <bibl n="Perseus:abo:pap,SB:1988" default="NO"><title>Sammelb.</title> 1988</bibl>, <bibl n="Perseus:abo:pap,P.Oxy.:1026:10" default="NO"><title>POxy.</title> 1026.10</bibl> (V A.D.):—also <orth extent="full" lang="greek" opt="n">δερματική</orth>, <bibl n="Perseus:abo:pap,P.Tebt.:405:10" default="NO"><title>PTeb.</title> 405.10</bibl> <date>(iii A.D.)</date>:—<gramGrp opt="n"><gram type="var" opt="n">Dim.</gram></gramGrp> <orth extent="full" lang="greek" opt="n">δερματίκιν</orth>, <bibl n="Perseus:abo:pap,P.Tebt.:413:8" default="NO"><title>PTeb.</title> 413.8</bibl> <date>(ii/iii A.D.)</date>.</sense></div2>
<div2 id="crossdalma^tikoma^fo/rths" orig_id="n23345" key="dalma^tikoma^fo/rths" type="main" opt="n"><head extent="full" lang="greek" opt="n" orth_orig="δαλμᾰτικομᾰφόρτης">δαλματικομαφόρτης</head>, <itype lang="greek" opt="n">ου</itype>, <gen lang="greek" opt="n">ὁ</gen>, <sense id="n23345.0" n="" level="1" opt="n"><i>Dalmatian cloak with a hood,</i> <title>POxy.</title> 1273.14 <date>(iii A.D.)</date> (<foreign lang="greek">δελμ-</foreign>:—<gramGrp opt="n"><gram type="var" opt="n">Dim.</gram></gramGrp> <orth extent="full" lang="greek" opt="n">δερμᾰτικομᾰφόρτιν</orth>, ib. 114.5 <date>(ii/iii A.D.)</date>.</sense></div2>
<div2 id="cross*da_logenh/s" orig_id="n23346" key="*da_logenh/s" type="main" opt="n"><head extent="full" lang="greek" opt="n" orth_orig="Δᾱλογενής">Δαλογενής</head>, <itype lang="greek" opt="n">ές</itype>, <gramGrp opt="n"><gram type="dialect" opt="n">Dor.</gram></gramGrp> for <foreign lang="greek">Δηλογενής.</foreign></div2>
<div2 id="crossda_lo/s1" orig_id="n23347" key="da_lo/s1" type="main" opt="n"><head extent="full" lang="greek" opt="n" orth_orig="δᾱλός">δαλός</head>, <gen lang="greek" opt="n">ὁ</gen>, (<etym lang="greek" opt="n">δαίω</etym>) <sense id="n23347.0" n="" level="1" opt="n"><i>fire-brand,</i> <bibl n="Perseus:abo:tlg,0012,001:15:421"><title>Il.</title> 15.421</bibl>, <bibl n="Perseus:abo:tlg,0012,002:5:488"><title>Od.</title> 5.488</bibl>, <bibl n="Perseus:abo:tlg,0006,001:471"><author>E.</author> <title>Cyc.</title> 471</bibl>, <bibl n="Perseus:abo:tlg,0006,001:472">472</bibl>, <bibl n="Perseus:abo:tlg,0085,006:608"><author>A.</author> <title>Ch.</title> 608</bibl> (lyr.), <bibl n="Perseus:abo:tlg,0086,026:344a:26" default="NO"><author>Arist.</author> <title>Mete.</title> 344a26</bibl>; <i>beacon-light,</i> <bibl n="Perseus:abo:tlg,7000,001:9:675" default="NO"><title>AP</title> 9.675</bibl>; of the thunderbolt, <bibl n="Perseus:abo:tlg,0012,001:13:320"><title>Il.</title> 13.320</bibl>, cf. <bibl n="Perseus:abo:tlg,0062,022:2" default="NO"><author>Luc.</author> <title>Tim.</title> 2</bibl>. </sense><sense n="2" id="n23347.1" level="3" opt="n"> a kind of <i>meteor,</i> <bibl n="Perseus:abo:tlg,0086,026:341b:28" default="NO"><author>Arist.</author> <title>Mete.</title> 341b28</bibl>. </sense><sense n="II" id="n23347.2" level="2" opt="n"> <i>burnt-out torch</i>: metaph. of an old man, <bibl n="Perseus:abo:tlg,7000,001:12:41" default="NO"><title>AP</title> 12.41</bibl> (<author>Mel.</author>). (Contr. fr. <foreign lang="greek">δᾰϝελός,</foreign> cf. <foreign lang="greek">δαβελός.</foreign>) </sense></div2>
<div2 id="crossdalo/s2" orig_id="n23348" key="dalo/s2" type="gloss" opt="n"><head extent="full" lang="greek" opt="n" orth_orig="δαλός·">δαλός</head> <foreign lang="greek">μελάνουρος ἰχθύς,</foreign> <author>Hsch.</author> <orth extent="full" lang="greek" opt="n">δαλοῦν·</orth> <foreign lang="greek">σύντομον,</foreign> <author>Id.</author></div2>
<div2 id="crossda/ltos" orig_id="n23349" key="da/ltos" type="main" opt="n"><head extent="full" lang="greek" opt="n" orth_orig="δάλτος">δάλτος</head>, <sense id="n23349.0" n="" level="1" opt="n">Cypr. = δέλτος, <title>Inscr.Cypr.</title> 135.26 H. (<placeName>Idalium</placeName>).</sense></div2>
<div2 id="crossdama/zw" orig_id="n23350" key="dama/zw" type="main" opt="n"><head extent="full" lang="greek" opt="n" orth_orig="δαμάζω">δαμάζω</head> <bibl n="Perseus:abo:tlg,0085,006:324"><author>A.</author> <title>Ch.</title> 324</bibl> (lyr.), etc.: <tns opt="n">fut.</tns> <cit><quote lang="greek">δαμάσω</quote> <bibl n="Perseus:abo:tlg,7000,001:6:329" default="NO"><title>AP</title> 6.329</bibl></cit> (<author>Leon.</author>); <gramGrp opt="n"><gram type="dialect" opt="n">Ep.</gram></gramGrp> <cit><quote lang="greek">δαμάσσω</quote> <bibl n="Perseus:abo:tlg,0012,001:22:176"><title>Il.</title> 22.176</bibl></cit>, also <foreign lang="greek">δαμᾷ, δαμάᾳ,</foreign> <bibl n="Perseus:abo:tlg,0012,001:1:61">1.61</bibl>, <bibl n="Perseus:abo:tlg,0012,001:22:271">22.271</bibl>; <per opt="n">3</per> <number opt="n">pl.</number> <cit><quote lang="greek">δαμόωσι</quote> <bibl n="Perseus:abo:tlg,0012,001:6:368">6.368</bibl></cit> (v. <foreign lang="greek">δαμάω</foreign>): <tns opt="n">aor. 1</tns> <cit><quote lang="greek">ἐδάμᾰσα</quote> <bibl n="Perseus:abo:tlg,0033,003:7:90"><author>Pi.</author> <title>N.</title> 7.90</bibl></cit> (<mood opt="n">part.</mood> <cit><quote lang="greek">δαμάσσαις</quote> <bibl n="Perseus:abo:tlg,0033,001:9:92"><title>O.</title> 9.92</bibl></cit>), <gramGrp opt="n"><gram type="dialect" opt="n">Ep.</gram></gramGrp> <foreign lang="greek">ἐδάμασσα, δάμασσα,</foreign> <bibl n="Perseus:abo:tlg,0012,001:5:191"><title>Il.</title> 5.191</bibl>, <bibl n="Perseus:abo:tlg,0012,002:14:367"><title>Od.</title> 14.367</bibl>: <tns opt="n">pf.</tns> <cit><quote lang="greek">δεδάμακα</quote> <author>Stob.</author> <title>Flor.Monac.</title> 82</cit>:—<gramGrp opt="n"><gram type="voice" opt="n">Med.</gram></gramGrp>, <tns opt="n">fut.</tns> <gramGrp opt="n"><gram type="dialect" opt="n">Ep.</gram></gramGrp> <cit><quote lang="greek">δαμάσσομαι</quote> <bibl n="Perseus:abo:tlg,0012,001:21:226"><title>Il.</title> 21.226</bibl></cit>: <tns opt="n">aor.</tns> <foreign lang="greek">ἐδαμάσσατο, δαμάσαντο, δαμασσάμενος,</foreign> <bibl n="Perseus:abo:tlg,0012,002:9:516"><title>Od.</title> 9.516</bibl>, <bibl n="Perseus:abo:tlg,0012,001:10:210"><title>Il.</title> 10.210</bibl>, <bibl n="Perseus:abo:tlg,0012,002:9:454"><title>Od.</title> 9.454</bibl>; <tns opt="n">aor. 1</tns> opt. <cit><quote lang="greek">δαμάσαιτο</quote> <title>Leg.Gort.</title> 2.11</cit>: <tns opt="n">aor. 2</tns> opt. <cit><quote lang="greek">δάμοιτο</quote> <title>CIG</title> 4000.18</cit> (<placeName>Iconium</placeName>):—<gramGrp opt="n"><gram type="voice" opt="n">Pass.</gram></gramGrp>, <tns opt="n">fut.</tns> 3 <cit><quote lang="greek">δεδμήσομαι</quote> <bibl n="Perseus:abo:tlg,0013,003:543"><title>h.Ap.</title> 543</bibl></cit>; irreg. <cit><quote lang="greek">δαμοῦμαι</quote> <title>PMag.Par.</title> 1.2906</cit>: <tns opt="n">aor.</tns> <cit><quote lang="greek">ἐδαμάσθην</quote> <bibl n="Perseus:abo:tlg,0012,002:8:231"><title>Od.</title> 8.231</bibl></cit>, <bibl n="Perseus:abo:tlg,0033,001:2:20"><author>Pi.</author> <title>O.</title> 2.20</bibl>, <bibl n="Perseus:abo:tlg,0085,002:279"><author>A.</author> <title>Pers.</title> 279</bibl> (lyr.), <bibl n="Perseus:abo:tlg,0006,015:563"><author>E.</author> <title>Ph.</title> 563</bibl>; <gramGrp opt="n"><gram type="dialect" opt="n">Ep.</gram></gramGrp> <cit><quote lang="greek">δαμάσθην</quote> <bibl n="Perseus:abo:tlg,0012,001:19:9"><title>Il.</title> 19.9</bibl></cit>, cf. <bibl n="Perseus:abo:tlg,0012,001:16:816">16.816</bibl>; <foreign lang="greek">ἐδμήθην,</foreign> imper. <cit><quote lang="greek">δμηθήτω</quote> <bibl n="Perseus:abo:tlg,0012,001:9:158">9.158</bibl></cit>, <cit><quote lang="greek">δμηθείς</quote> <bibl n="Perseus:abo:tlg,0012,001:4:99">4.99</bibl></cit>, <bibl n="Perseus:abo:tlg,0020,001:1000"><author>Hes.</author> <title>Th.</title> 1000</bibl>, <gramGrp opt="n"><gram type="dialect" opt="n">Dor.</gram></gramGrp> <cit><quote lang="greek">δμᾱθείς</quote> <bibl n="Perseus:abo:tlg,0085,002:907"><author>A.</author> <title>Pers.</title> 907</bibl></cit> (lyr.), <author>E.</author> (lyr., <abbr>v.</abbr> infr.), <bibl n="Perseus:abo:tlg,1250,001:7:1" default="NO"><author>Cerc.</author> 7.1</bibl>: <foreign lang="greek">ἐδάμην [ᾰ</foreign>] <bibl n="Perseus:abo:tlg,0012,001:13:812"><title>Il.</title> 13.812</bibl>, <bibl n="Perseus:abo:tlg,1562,001:7:1" default="NO"><author>Parm.</author> 7.1</bibl>, etc.; <gramGrp opt="n"><gram type="dialect" opt="n">Ep.</gram></gramGrp> <cit><quote lang="greek">δάμην</quote> <bibl n="Perseus:abo:tlg,0012,002:3:90"><title>Od.</title> 3.90</bibl></cit>; <per opt="n">3</per> <number opt="n">pl.</number> <cit><quote lang="greek">δάμεν</quote> <bibl n="Perseus:abo:tlg,0012,001:8:344"><title>Il.</title> 8.344</bibl></cit>; <gramGrp opt="n"><gram type="dialect" opt="n">Ep.</gram></gramGrp> <mood opt="n">subj.</mood> <cit><quote lang="greek">δαμείω</quote> <bibl n="Perseus:abo:tlg,0012,002:18:54"><title>Od.</title> 18.54</bibl></cit>, 2 and <per opt="n">3</per> <number opt="n">sg.</number> <cit><quote lang="greek">δαμήῃς -ήῃ</quote> <bibl n="Perseus:abo:tlg,0012,001:3:436"><title>Il.</title> 3.436</bibl></cit>, <bibl n="Perseus:abo:tlg,0012,001:22:246">22.246</bibl>, <per opt="n">2</per> <number opt="n">pl.</number> <cit><quote lang="greek">δαμήετε</quote> <bibl n="Perseus:abo:tlg,0012,001:7:72">7.72</bibl></cit>; opt. <cit><quote lang="greek">δαμείην</quote> <bibl n="Perseus:abo:tlg,0012,001:3:301"><title>Il.</title> 3.301</bibl></cit>, <bibl n="Perseus:abo:tlg,0006,003:648"><author>E.</author> <title>Med.</title> 648</bibl>; <mood opt="n">inf.</mood> <cit><quote lang="greek">δαμῆναι</quote> <bibl n="Perseus:abo:tlg,0012,001:15:522"><title>Il.</title> 15.522</bibl></cit>, <bibl n="Perseus:abo:tlg,0085,006:368"><author>A.</author> <title>Ch.</title> 368</bibl> (lyr.), <bibl n="Perseus:abo:tlg,0011,006:200"><author>S.</author> <title>Ph.</title> 200</bibl>, <gramGrp opt="n"><gram type="dialect" opt="n">Ep.</gram></gramGrp> <mood opt="n">inf.</mood> <cit><quote lang="greek">δᾰμήμεναι</quote> <bibl n="Perseus:abo:tlg,0012,001:20:312"><title>Il.</title> 20.312</bibl></cit>; <mood opt="n">part.</mood> <cit><quote lang="greek">δαμείς</quote> <bibl n="Perseus:abo:tlg,0012,001:22:40">22.40</bibl></cit>, <author>Sapph.</author> 90, etc. (only form of <tns opt="n">aor.</tns> used by <author>S.</author>, and preferred by <author>A.</author> and <author>E.</author>): <tns opt="n">pf.</tns> <cit><quote lang="greek">δέδμημαι</quote> <bibl n="Perseus:abo:tlg,0012,001:5:878"><title>Il.</title> 5.878</bibl></cit>, etc., <cit><quote lang="greek">-ημένος</quote> <bibl n="Perseus:abo:tlg,0012,001:14:482">14.482</bibl></cit>, etc.; later <cit><quote lang="greek">δεδαμασμένος</quote> <bibl n="Perseus:abo:tlg,0022,002:29" default="NO"><author>Nic.</author> <title>Al.</title> 29</bibl></cit>, <title>Epigr.Gr.</title> 550.9: <tns opt="n">plpf.</tns> <cit><quote lang="greek">δέδμητο</quote> <bibl n="Perseus:abo:tlg,0012,002:3:305"><title>Od.</title> 3.305</bibl></cit>; <per opt="n">3</per> <number opt="n">pl.</number> <cit><quote lang="greek">-ήατο</quote> <bibl n="Perseus:abo:tlg,0012,001:3:183"><title>Il.</title> 3.183</bibl></cit>.—Poet. Verb, used by <author>X.</author> in <tns opt="n">pres.</tns> <mood opt="n">part.</mood> <cit><quote lang="greek">δαμάζων</quote> <bibl n="Perseus:abo:tlg,0032,002:4:3:10"><title>Mem.</title> 4.3.10</bibl></cit>: <tns opt="n">aor.</tns> <gramGrp opt="n"><gram type="voice" opt="n">Pass.</gram></gramGrp> <foreign lang="greek">δαμασθεῖεν</foreign> ib. <bibl n="Perseus:abo:tlg,0032,002:4:1:3">4.1.3</bibl>; also <mood opt="n">inf.</mood> <foreign lang="greek">δαμασθῆναι</foreign> is <abbr>f.l.</abbr> in <bibl n="Perseus:abo:tlg,0010,018:4"><author>Isoc.</author> 7.4</bibl>:—<sense id="n23350.0" n="" level="1" opt="n"><i>overpower</i>: </sense><sense n="I" id="n23350.1" level="2" opt="n"> of animals, <i>tame, break in,</i> twice in <author>Hom.</author>, in <gramGrp opt="n"><gram type="voice" opt="n">Med.</gram></gramGrp>, <cit><quote lang="greek">ἡμίονον . . ἥτʼ ἀλγίστη δαμάσασθαι</quote> <bibl n="Perseus:abo:tlg,0012,001:23:655"><title>Il.</title> 23.655</bibl></cit>; <cit><quote lang="greek">τῶν κέν τινʼ . . δαμασαίμην</quote> <bibl n="Perseus:abo:tlg,0012,002:4:637"><title>Od.</title> 4.637</bibl></cit>:—later in <gramGrp opt="n"><gram type="voice" opt="n">Act.</gram></gramGrp>, <bibl n="Perseus:abo:tlg,0032,002:4:3:10"><author>X.</author> <title>Mem.</title> 4.3.10</bibl>:—<gramGrp opt="n"><gram type="voice" opt="n">Pass.</gram></gramGrp>, ib. <bibl n="Perseus:abo:tlg,0032,002:4:1:3">4.1.3</bibl>. </sense><sense n="2" id="n23350.2" level="3" opt="n"> of metals, <i>work,</i> <cit><quote lang="greek">σίδαρον</quote> <bibl n="Perseus:abo:tlg,0006,002:980"><author>E.</author> <title>Alc.</title> 980</bibl></cit> (lyr.); of land, <i>clear,</i> <bibl n="Perseus:abo:pap,PSI:4:316" default="NO"><title>PSI</title> 4.316</bibl> (iv(?) A.D.). </sense><sense n="II" id="n23350.3" level="2" opt="n"> of maidens, <i>make subject</i> to a husband, <cit><quote lang="greek">ἀνδρὶ δάμασσεν</quote> <bibl n="Perseus:abo:tlg,0012,001:18:432"><title>Il.</title> 18.432</bibl></cit>:—<gramGrp opt="n"><gram type="voice" opt="n">Med.</gram></gramGrp>, <i>force, seduce,</i> <author>Leg.Gort.</author> l.c.:—<gramGrp opt="n"><gram type="voice" opt="n">Pass.</gram></gramGrp>, <bibl n="Perseus:abo:tlg,0012,001:3:301"><title>Il.</title> 3.301</bibl>, <bibl n="Perseus:abo:tlg,0012,002:3:269"><title>Od.</title> 3.269</bibl>. </sense><sense n="III" id="n23350.4" level="2" opt="n"> <i>subdue, conquer,</i> <bibl n="Perseus:abo:tlg,0012,002:9:59"><title>Od.</title> 9.59</bibl>, al.; <cit><quote lang="greek">βίῃ καὶ χερσὶ δ.</quote> <bibl n="Perseus:abo:tlg,0020,001:490"><author>Hes.</author> <title>Th.</title> 490</bibl></cit>:—<gramGrp opt="n"><gram type="voice" opt="n">Pass.</gram></gramGrp>, <i>to be subject to</i> another, <cit><quote lang="greek">σοί τʼ ἐπιπείθονται καὶ δεδμήμεσθα ἕκαστος</quote> <bibl n="Perseus:abo:tlg,0012,001:5:878"><title>Il.</title> 5.878</bibl></cit>; <cit><quote lang="greek">δέδμητο δὲ λαὸς ὑπʼ αὐτῷ</quote> <bibl n="Perseus:abo:tlg,0012,002:3:305"><title>Od.</title> 3.305</bibl></cit>. </sense><sense n="b" id="n23350.5" level="4" opt="n"> of the gods, <i>bring low,</i> <bibl n="Perseus:abo:tlg,0012,001:9:118"><title>Il.</title> 9.118</bibl>, <bibl n="Perseus:abo:tlg,0012,001:16:845">16.845</bibl>, al. </sense><sense n="c" id="n23350.6" level="4" opt="n"> <i>subdue, gain the mastery over,</i> <foreign lang="greek">ἐπιθυμίαν</foreign> <author>Stob.</author> l.c. </sense><sense n="2" id="n23350.7" level="3" opt="n"> <i>lay low, kill,</i> esp. in fight, <cit><quote lang="greek">εἴ χʼ ὑπʼ ἐμοί γε θεὸς δαμάσῃ μνηστῆρας</quote> <bibl n="Perseus:abo:tlg,0012,002:21:213"><title>Od.</title> 21.213</bibl></cit>:—<gramGrp opt="n"><gram type="voice" opt="n">Pass.</gram></gramGrp>, <cit><quote lang="greek">ὑπʼ ἐμοὶ δμηθέντα</quote> <bibl n="Perseus:abo:tlg,0012,001:5:646"><title>Il.</title> 5.646</bibl></cit>; <foreign lang="greek">ὑπὸ δουρὶ δαμέντα</foreign> ib. <bibl n="Perseus:abo:tlg,0012,001:5:653">653</bibl>. </sense><sense n="3" id="n23350.8" level="3" opt="n"> of the powers of nature, etc., <i>overcome, overpower,</i> <cit><quote lang="greek">ἔρος . . θυμὸν ἐνὶ στήθεσσιν . . . ἐδάμασσεν</quote> <bibl n="Perseus:abo:tlg,0012,001:14:316">14.316</bibl></cit>:—<gramGrp opt="n"><gram type="voice" opt="n">Med.</gram></gramGrp>, <cit><quote lang="greek">δαμασσάμενος φρένας οἴνῳ</quote> <bibl n="Perseus:abo:tlg,0012,002:9:454"><title>Od.</title> 9.454</bibl></cit>, cf. <bibl n="Perseus:abo:tlg,0012,002:9:516">516</bibl>:—<gramGrp opt="n"><gram type="voice" opt="n">Pass.</gram></gramGrp>, <i>to be overcome,</i> <cit><quote lang="greek">αἴθρῳ καὶ καμάτῳ δεδμημένον</quote> <bibl n="Perseus:abo:tlg,0012,002:14:318">14.318</bibl></cit>; <cit><quote lang="greek">μαλακῷ δεδμημένοι ὕπνῳ</quote> <bibl n="Perseus:abo:tlg,0012,001:10:2"><title>Il.</title> 10.2</bibl></cit>; <cit><quote lang="greek">ὕπνῳ καὶ φιλότητι δαμείς</quote> <bibl n="Perseus:abo:tlg,0012,001:14:353">14.353</bibl></cit>; <cit><quote lang="greek">ἁλὶ δέδμητο φίλον κῆρ</quote> <bibl n="Perseus:abo:tlg,0012,002:5:454"><title>Od.</title> 5.454</bibl></cit>, cf. <bibl n="Perseus:abo:tlg,0012,002:8:231">8.231</bibl>; <cit><quote lang="greek">δμαθέντες</quote> <i>dead,</i> <bibl n="Perseus:abo:tlg,0006,002:127"><author>E.</author> <title>Alc.</title> 127</bibl></cit> (lyr.). </sense><sense n="IV" id="n23350.9" level="2" opt="n"> <foreign lang="greek">ἀγῶνα δαμάσσαι ἔργῳ</foreign> <i>win</i> it, <bibl n="Perseus:abo:tlg,0033,002:8:80"><author>Pi.</author> <title>P.</title> 8.80</bibl>. </sense><sense n="V" id="n23350.10" level="2" opt="n"> <foreign lang="greek">οὐ μήποτε τοῦτο δαμῇ, εἶναι μὴ ἐόντα</foreign> it shall never be <i>proved</i> that . ., <bibl n="Perseus:abo:tlg,1562,001:7:1" default="NO"><author>Parm.</author> 7.1</bibl>. (<foreign lang="greek">δᾰμᾰ-</foreign>: <foreign lang="greek">δμη-</foreign> underlies <foreign lang="greek">δάμνημι, ἐδάμα(σ)<itype lang="greek" opt="n">σα</itype>, δέδμημαι; δαμάζω</foreign> is a post-Homeric form of <tns opt="n">pres.</tns>; cf. Skt. <foreign lang="sa">dá̄myati</foreign> ‘to be tamed’, <foreign lang="sa">damitar-</foreign> ‘tamer’, etc.)</sense></div2>
<div2 id="cross*da^mai=os" orig_id="n23351" key="*da^mai=os" type="main" opt="n"><head extent="full" lang="greek" opt="n" orth_orig="Δᾰμαῖος">Δαμαῖος</head>, <gen lang="greek" opt="n">ὁ</gen>, (<etym lang="greek" opt="n">δαμάζω</etym>) <sense id="n23351.0" n="" level="1" opt="n"><i>Horse-Tamer,</i> epith. of Poseidon, <bibl n="Perseus:abo:tlg,0033,001:13:69"><author>Pi.</author> <title>O.</title> 13.69</bibl>.</sense></div2>
<div2 id="crossda^ma/lh" orig_id="n23352" key="da^ma/lh" type="main" opt="n"><head extent="full" lang="greek" opt="n" orth_orig="δᾰμάλη">δαμάλη</head> <pron extent="full" lang="greek" opt="n">[μᾰ]</pron>, <gen lang="greek" opt="n">ἡ</gen>, <sense id="n23352.0" n="" level="1" opt="n">= δάμαλις, <bibl n="Perseus:abo:tlg,0006,017:739"><author>E.</author> <title>Ba.</title> 739</bibl>, <bibl n="Perseus:abo:tlg,0005,001:4:12"><author>Theoc.</author> 4.12</bibl>, <bibl n="Perseus:abo:pap,P.Oxy.:1734:2" default="NO"><title>POxy.</title> 1734.2</bibl>, etc.</sense></div2>
<div2 id="crossda^ma^lh/botos" orig_id="n23353" key="da^ma^lh/botos" type="main" opt="n"><head extent="full" lang="greek" opt="n" orth_orig="δᾰμᾰλήβοτος">δαμαλήβοτος</head>, <itype lang="greek" opt="n">ον</itype>, <sense id="n23353.0" n="" level="1" opt="n"><i>browsed by heifers,</i> <bibl n="Perseus:abo:tlg,7000,001:16:230" default="NO"><title>APl.</title> 16.230</bibl> (<author>Leon.</author>).</sense></div2>
<div2 id="crossda^ma/lhs" orig_id="n23354" key="da^ma/lhs" type="main" opt="n"><head extent="full" lang="greek" opt="n" orth_orig="δᾰμάλης">δαμάλης</head> <pron extent="full" lang="greek" opt="n">[μᾰ]</pron>, <itype lang="greek" opt="n">ου</itype>, <gen lang="greek" opt="n">ὁ</gen>, (<etym lang="greek" opt="n">δαμάζω</etym>) <sense id="n23354.0" n="" level="1" opt="n"><i>subduer,</i> <cit><quote lang="greek">Ἔρως</quote> <bibl n="Perseus:abo:tlg,0237,001:2:1" default="NO"><author>Anacr.</author> 2.1</bibl></cit>. </sense><sense n="II" id="n23354.1" level="2" opt="n"> <i>young steer,</i> <bibl n="Perseus:abo:tlg,0086,014:632a:15" default="NO"><author>Arist.</author> <title>HA</title> 632a15</bibl>, <bibl n="Perseus:abo:tlg,7000,001:6:96" default="NO"><title>AP</title> 6.96</bibl> (<author>Eryc.</author>).</sense></div2>
<div2 id="crossda^ma^lhfa/gos" orig_id="n23355" key="da^ma^lhfa/gos" type="main" opt="n"><head extent="full" lang="greek" opt="n" orth_orig="δᾰμᾰληφάγος">δαμαληφάγος</head> <pron extent="full" lang="greek" opt="n">[φᾰ]</pron>, <itype lang="greek" opt="n">ον</itype>, <sense id="n23355.0" n="" level="1" opt="n"><i>beef-eating,</i> <cit><quote lang="greek">Ἀλκείδης</quote> <bibl n="Perseus:abo:tlg,7000,001:9:237" default="NO"><title>AP</title> 9.237</bibl></cit> (<author>Eryc.</author>).</sense></div2>
<div2 id="crossda^ma^li/zw" orig_id="n23356" key="da^ma^li/zw" type="main" opt="n"><head extent="full" lang="greek" opt="n" orth_orig="δᾰμᾰλ-ίζω">δαμαλίζω</head>, poet. <sense id="n23356.0" n="" level="1" opt="n">= δαμάζω, <i>to subdue,</i> <bibl n="Perseus:abo:tlg,0033,002:5:121"><author>Pi.</author> <title>P.</title> 5.121</bibl> codd.:—<gramGrp opt="n"><gram type="voice" opt="n">Med.</gram></gramGrp>, <cit><quote lang="greek">πώλους δαμαλιζομένα</quote> <bibl n="Perseus:abo:tlg,0006,005:231"><author>E.</author> <title>Hipp.</title> 231</bibl></cit> (lyr.).</sense></div2>
<div2 id="crossda^ma^/lion" orig_id="n23357" key="da^ma^/lion" type="main" opt="n"><head extent="suff" lang="greek" opt="n" orth_orig="δᾰμᾰλ-ιον">δαμάλιον</head>, <gen lang="greek" opt="n">τό</gen>, <gramGrp opt="n"><gram type="dim" opt="n">Dim. of</gram></gramGrp> <foreign lang="greek">δάμαλις,</foreign> <bibl n="Perseus:abo:pap,P.Flor.:150:2" default="NO"><title>PFlor.</title> 150.2</bibl> <date>(iii A.D.)</date>.</div2>
<div2 id="crossda^/ma^lis" orig_id="n23358" key="da^/ma^lis" type="main" opt="n"><head extent="suff" lang="greek" opt="n" orth_orig="δᾰμᾰλ-ις">δάμαλις</head>, <itype lang="greek" opt="n">εως</itype>, <gen lang="greek">ἡ</gen> (<gen lang="greek" opt="n">ὁ</gen> <bibl n="Perseus:abo:tlg,0081,001:1:39" default="NO"><author>D.H.</author> 1.39</bibl>), (<etym lang="greek" opt="n">δαμάζω</etym>) <sense id="n23358.0" n="" level="1" opt="n"><i>young cow, heifer,</i> <bibl n="Perseus:abo:tlg,0085,001:351"><author>A.</author> <title>Supp.</title> 351</bibl> (lyr.), <bibl n="Perseus:abo:tlg,0058,001:27:1" default="NO"><author>Aen.Tact.</author> 27.1</bibl>, <bibl n="Perseus:abo:tlg,0081,001:1:35" default="NO"><author>D.H.</author> 1.35</bibl>; of Io, <bibl n="Perseus:abo:tlg,0199,002:18:24"><author>B.</author> 18.24</bibl>, <bibl n="Perseus:abo:tlg,0022,002:344" default="NO"><author>Nic.</author> <title>Al.</title> 344</bibl>; also masc., <bibl n="Perseus:abo:tlg,0539,001:111J" default="NO"><author>Hellanic.</author> 111J.</bibl> </sense><sense n="2" id="n23358.1" level="3" opt="n"> <cit><quote lang="greek">δ. σῦς</quote> <title>IG</title> 5</cit> (1).1390.34,69 (<placeName>Andania</placeName>, <date>i B.C.</date>). </sense><sense n="II" id="n23358.2" level="2" opt="n"> <i>girl,</i> <bibl n="Perseus:abo:tlg,0451,001:9" default="NO"><author>Epicr.</author> 9</bibl>, <bibl n="Perseus:abo:tlg,7000,001:5:291" default="NO"><title>AP</title> 5.291</bibl> (<author>Agath.</author>).</sense></div2>
<div2 id="crossdama/llontes" orig_id="n23359" key="dama/llontes" type="gloss" opt="n"><head extent="full" lang="greek" opt="n" orth_orig="δαμάλλοντες·">δαμάλλοντες</head> <foreign lang="greek">δαρδάπτοντες,</foreign> <author>Hsch.</author></div2>
<div2 id="crossda^ma^lopo/dia" orig_id="n23360" key="da^ma^lopo/dia" type="main" opt="n"><head extent="full" lang="greek" opt="n" orth_orig="δᾰμᾰλοπόδια">δαμαλοπόδια</head>, <itype lang="greek" opt="n">ων</itype>, <gen lang="greek" opt="n">τά</gen>, <sense id="n23360.0" n="" level="1" opt="n"><i>calves’ feet,</i> <bibl n="Perseus:abo:tlg,0744,001:7:8" default="NO"><author>Alex.Trall.</author> 7.8</bibl>.</sense></div2>
<div2 id="crossda/ma^los" orig_id="n23361" key="da/ma^los" type="main" opt="n"><head extent="full" lang="greek" opt="n" orth_orig="δάμᾰλος">δάμαλος</head>, <gen lang="greek" opt="n">ὁ</gen>, <sense id="n23361.0" n="" level="1" opt="n">perh. <i>calf,</i> <bibl default="NO"><author>Hdn.Gr.</author> 1.159</bibl>.</sense></div2>
<div2 id="crossda^manth/r" orig_id="n23362" key="da^manth/r" type="main" opt="n"><head extent="full" lang="greek" opt="n" orth_orig="δᾰμαντήρ">δαμαντήρ</head>, <itype lang="greek" opt="n">ῆρος</itype>, <gen lang="greek" opt="n">ὁ</gen>, <sense id="n23362.0" n="" level="1" opt="n"><i>tamer,</i> <abbr>v.l.</abbr> in <bibl n="Perseus:abo:tlg,0291,001:9" default="NO"><author>Alcm.</author> 9</bibl>.</sense></div2>
<div2 id="crossda/ma^r" orig_id="n23363" key="da/ma^r" type="main" opt="n"><head extent="full" lang="greek" opt="n" orth_orig="δάμᾰρ">δάμαρ</head> <pron extent="full" lang="greek" opt="n">[ᾰ]</pron>, <itype lang="greek" opt="n">αρτος</itype>, <gen lang="greek" opt="n">ἡ</gen>, (δαμάζω ΙΙ) <sense id="n23363.0" n="" level="1" opt="n"><i>wife, spouse,</i> <bibl n="Perseus:abo:tlg,0012,001:3:122"><title>Il.</title> 3.122</bibl>, <bibl n="Perseus:abo:tlg,0033,003:4:57"><author>Pi.</author> <title>N.</title> 4.57</bibl>, <bibl n="Perseus:abo:tlg,0085,003:834"><author>A.</author> <title>Pr.</title> 834</bibl>, etc.</sense></div2>
<div2 id="crossda^mari/ppews" orig_id="n23364" key="da^mari/ppews" type="main" opt="n"><head extent="full" lang="greek" opt="n" orth_orig="δᾰμαρίππεως">δαμαρίππεως</head>, <itype lang="greek" opt="n">ω,</itype> <sense id="n23364.0" n="" level="1" opt="n">a kind of <i>fig,</i> <bibl n="Perseus:abo:tlg,0461,001:407" default="NO"><author>Eup.</author> 407</bibl>.</sense></div2>
<div2 id="crossdamarou/sios" orig_id="n23365" key="damarou/sios" type="gloss" opt="n"><head extent="full" lang="greek" opt="n" orth_orig="δαμαρούσιος·">δαμαρούσιος</head> <foreign lang="greek">ὀχετὸς δημόσιος,</foreign> <author>Hsch.</author></div2>
<div2 id="crossda^ma^sa/ndra" orig_id="n23366" key="da^ma^sa/ndra" type="main" opt="n"><head extent="full" lang="greek" opt="n" orth_orig="δᾰμᾰσ-άνδρα">δαμασάνδρα</head>, <gen lang="greek" opt="n">ἡ</gen>, <sense id="n23366.0" n="" level="1" opt="n"><i>subduer of men,</i> of the moon, <title>Hymn.Mag.</title> 5.43.</sense></div2>
<div2 id="crossda^ma^sh/nwr" orig_id="n23367" key="da^ma^sh/nwr" type="main" opt="n"><head extent="suff" lang="greek" opt="n" orth_orig="δᾰμᾰσ-ήνωρ">δαμασήνωρ</head>, <itype lang="greek" opt="n">ορος</itype>, <sense id="n23367.0" n="" level="1" opt="n"><i>man-slaying,</i> <cit><quote lang="greek">λέων</quote> <bibl n="Perseus:abo:tlg,1555,001:1085:3" default="NO"><author>Pancrat.</author> <title>Oxy.</title> 1085.3</bibl></cit>.</sense></div2>
<div2 id="crossda^ma^siko/ndulos" orig_id="n23368" key="da^ma^siko/ndulos" type="main" opt="n"><head extent="full" lang="greek" opt="n" orth_orig="δᾰμᾰσι-κόνδυλος">δαμασικόνδυλος</head>, <itype lang="greek" opt="n">ον</itype>, <sense id="n23368.0" n="" level="1" opt="n"><i>conquering with the knuckles,</i> <bibl n="Perseus:abo:tlg,0461,001:408" default="NO"><author>Eup.</author> 408</bibl>.</sense></div2>
<div2 id="crossda^ma^si/mbrotos" orig_id="n23369" key="da^ma^si/mbrotos" type="main" opt="n"><head extent="suff" lang="greek" opt="n" orth_orig="δᾰμᾰσί-μβροτος">δαμασίμβροτος</head>, <itype lang="greek" opt="n">ον</itype>, <sense id="n23369.0" n="" level="1" opt="n"><i>taming mortals, man-slaying,</i> <cit><quote lang="greek">Σπάρτη</quote> <bibl n="Perseus:abo:tlg,0261,001:218" default="NO"><author>Simon.</author> 218</bibl></cit>; <cit><quote lang="greek">αἰχμή</quote> <bibl n="Perseus:abo:tlg,0033,001:9:79"><author>Pi.</author> <title>O.</title> 9.79</bibl></cit>; <cit><quote lang="greek">χαλκός</quote> <bibl n="Perseus:abo:tlg,0199,001:12:50"><author>B.</author> 12.50</bibl></cit>.</sense></div2>
<div2 id="crossda^ma/sippos" orig_id="n23370" key="da^ma/sippos" type="main" opt="n"><head extent="full" lang="greek" opt="n" orth_orig="δᾰμάσιππος">δαμάσιππος</head> <pron extent="full" lang="greek" opt="n">[μᾰ]</pron>, <itype lang="greek" opt="n">ον</itype>, <sense id="n23370.0" n="" level="1" opt="n"><i>horse-taming,</i> of Athena, <bibl n="Perseus:abo:tlg,0370,001:1:4" default="NO"><author>Lamprocl.</author> 1.4</bibl> (perh.Stes., cf.Sch. <author>Aristid.</author> 3.537 <author>D.</author>), cf. <bibl n="Perseus:abo:tlg,0654,002:20" default="NO"><author>Corn.</author> <title>ND</title> 20</bibl>; <cit><quote lang="greek">Λυδία</quote> <bibl n="Perseus:abo:tlg,0199,001:3:23"><author>B.</author> 3.23</bibl></cit>.</sense></div2>
<div2 id="crossda/ma^sis" orig_id="n23371" key="da/ma^sis" type="main" opt="n"><head extent="full" lang="greek" opt="n" orth_orig="δάμᾰσις">δάμασις</head> <pron extent="full" lang="greek" opt="n">[δᾰ]</pron>, <itype lang="greek" opt="n">εως</itype>, <gen lang="greek" opt="n">ἡ</gen>, <sense id="n23371.0" n="" level="1" opt="n"><i>taming, subduing,</i> Sch. <bibl n="Perseus:abo:tlg,0033,001:13:98"><author>Pi.</author> <title>O.</title> 13.98</bibl>.</sense></div2>
<div2 id="crossda^ma^si/frwn" orig_id="n23372" key="da^ma^si/frwn" type="main" opt="n"><head extent="full" lang="greek" opt="n" orth_orig="δᾰμᾰσί-φρων">δαμασίφρων</head>, <itype lang="greek" opt="n">ον</itype>, gen. <itype lang="greek" opt="n">ονος</itype>, <sense id="n23372.0" n="" level="1" opt="n"><i>heart-subduing</i> <cit><quote lang="greek">χρυσός</quote> <bibl n="Perseus:abo:tlg,0033,001:13:78"><author>Pi.</author> <title>O.</title> 13.78</bibl></cit>.</sense></div2>
<div2 id="crossda^ma^si/fws" orig_id="n23373" key="da^ma^si/fws" type="main" opt="n"><head extent="suff" lang="greek" opt="n" orth_orig="δᾰμᾰσί-φως">δαμασίφως</head>, <itype lang="greek" opt="n">ωτος</itype>, <gen lang="greek" opt="n">ὁ</gen>, <gen lang="greek" opt="n">ἡ</gen>, <sense id="n23373.0" n="" level="1" opt="n">= δαμασίμβροτος, ὕπνος <bibl n="Perseus:abo:tlg,0261,001:232" default="NO"><author>Simon.</author> 232</bibl>; of Ares, prob. in <bibl n="Perseus:abo:tlg,0376,001:22" default="NO"><author>Tim.</author> <title>Pers.</title> 22</bibl>.</sense></div2>
<div2 id="crossda^ma^si/xqwn" orig_id="n23374" key="da^ma^si/xqwn" type="main" opt="n"><head extent="full" lang="greek" opt="n" orth_orig="δᾰμᾰσίχθων">δαμασίχθων</head>, <itype lang="greek" opt="n">ονος</itype>, <gen lang="greek" opt="n">ὁ</gen>, <sense id="n23374.0" n="" level="1" opt="n"><i>earth-subduer,</i> epith. of Poseidon, <bibl n="Perseus:abo:tlg,0199,002:15:19"><author>B.</author> 15.19</bibl>.</sense></div2>
<div2 id="cross*damaskhno/n" orig_id="n23375" key="*damaskhno/n" type="main" opt="n"><head extent="full" lang="greek" opt="n" orth_orig="Δαμασκηνόν">Δαμασκηνόν</head>, <gen lang="greek" opt="n">τό</gen>, <sense id="n23375.0" n="" level="1" opt="n"><i>Damascus-plum, damson,</i> <bibl n="Perseus:abo:tlg,0008,001:2:49d" default="NO"><author>Ath.</author> 2.49d</bibl>, <author>Gal.</author> 6.353.</sense></div2>
<div2 id="crossda^maste/on" orig_id="n23376" key="da^maste/on" type="main" opt="n"><head extent="full" lang="greek" opt="n" orth_orig="δᾰμασ-τέον">δαμαστέον</head>, <sense id="n23376.0" n="" level="1" opt="n"><i>one must break in,</i> <cit><quote lang="greek">τριετῆ πῶλον</quote> <bibl n="Perseus:abo:tlg,4080,001:16:1:11" default="NO"><title>Gp.</title> 16.1.11</bibl></cit>. </sense><sense n="II" id="n23376.1" level="2" opt="n"> <pos opt="n">Adj.</pos> <foreign lang="greek">-τέος,</foreign> <itype lang="greek" opt="n">α</itype>, <itype lang="greek" opt="n">ον</itype>, <author>Hsch.</author> s.v. δματέα.</sense></div2>
<div2 id="crossda^masth/s" orig_id="n23377" key="da^masth/s" type="main" opt="n"><head extent="suff" lang="greek" opt="n" orth_orig="δᾰμασ-τής">δαμαστής</head>, <itype lang="greek" opt="n">οῦ</itype>, <gen lang="greek" opt="n">ὁ</gen>, <sense id="n23377.0" n="" level="1" opt="n"><i>subduer,</i> Gloss., prob. epith. of <foreign lang="greek">Ἔρως,</foreign> [<author>Epich.</author>]<bibl n="Perseus:abo:tlg,0521,001:301" default="NO">301</bibl>.</sense></div2>
<div2 id="crossda^mastiko/s" orig_id="n23378" key="da^mastiko/s" type="main" opt="n"><head extent="suff" lang="greek" opt="n" orth_orig="δᾰμασ-τικός">δαμαστικός</head>, <itype lang="greek" opt="n">ή</itype>, <itype lang="greek" opt="n">όν</itype>, <sense id="n23378.0" n="" level="1" opt="n">gloss on Δαμαῖος, Sch. <bibl n="Perseus:abo:tlg,0033,001:13:98"><author>Pi.</author> <title>O.</title> 13.98</bibl>.</sense></div2>
<div2 id="crossdamasw/nion" orig_id="n23379" key="damasw/nion" type="main" opt="n"><head extent="full" lang="greek" opt="n" orth_orig="δαμασώνιον">δαμασώνιον</head>, <gen lang="greek" opt="n">τό</gen>, <sense id="n23379.0" n="" level="1" opt="n">= ἄλισμα, <author>Dsc.</author> 3.152; = ἅλιμος, Ps.-<author>Dsc.</author> 1.91. </sense><sense n="II" id="n23379.1" level="2" opt="n"> a diuretic, <author>Pall.</author> <title>in Hp.</title> <bibl n="Perseus:abo:tlg,2123,001:2:18D" default="NO">2.18D.</bibl></sense></div2>
<div2 id="crossda^ma/teira" orig_id="n23380" key="da^ma/teira" type="main" opt="n"><head extent="full" lang="greek" opt="n" orth_orig="δᾰμάτειρα">δαμάτειρα</head> <pron extent="full" lang="greek" opt="n">[μᾰ]</pron>, <gen lang="greek" opt="n">ἡ</gen>, fem. of <foreign lang="greek">δαμαντήρ,</foreign> <bibl n="Perseus:abo:tlg,7000,001:11:403" default="NO"><title>AP</title> 11.403</bibl> (<author>Luc.</author>).</div2>
<div2 id="cross*dama/thr" orig_id="n23381" key="*dama/thr" type="main" opt="n"><head extent="full" lang="greek" opt="n" orth_orig="Δαμάτηρ">Δαμάτηρ</head>, v. Δημήτηρ.</div2>
<div2 id="crossda_ma_tri/zein" orig_id="n23382" key="da_ma_tri/zein" type="main" opt="n"><head extent="full" lang="greek" opt="n" orth_orig="δᾱμᾱτρίζειν">δαματρίζειν</head> (<etym lang="greek" opt="n">Δημήτηρ</etym>) <sense id="n23382.0" n="" level="1" opt="n"><i>gather in the fruits of the earth</i> (Cypr.), <author>Hsch.</author></sense></div2>
<div2 id="crossdama/trion" orig_id="n23383" key="dama/trion" type="gloss" opt="n"><head extent="full" lang="greek" opt="n" orth_orig="δαμάτριον·">δαμάτριον</head> <foreign lang="greek">ἄνθος ὅμοιον ναρκίσσῳ,</foreign> <author>Hsch.</author></div2>
<div2 id="cross*da_ma/trios" orig_id="n23384" key="*da_ma/trios" type="main" opt="n"><head extent="full" lang="greek" opt="n" orth_orig="Δᾱμάτριος">Δαμάτριος</head>, <gen lang="greek" opt="n">ὁ</gen>, Boeotian month, <title>IG</title> 7.296, al., <bibl n="Perseus:abo:tlg,0007,089:378e"><author>Plu.</author> <title>Isid.</title> 2.378e</bibl>.</div2>
<div2 id="crossda^ma/w" orig_id="n23385" key="da^ma/w" type="main" opt="n"><head extent="full" lang="greek" opt="n" orth_orig="δᾰμάω">δαμάω</head>, a form assumed as the <per opt="n">1st pers.</per> of <foreign lang="greek">δαμᾷ, δαμάᾳ, δαμόωσι,</foreign> which in <author>Hom.</author> are <tns opt="n">fut.</tns> of <foreign lang="greek">δαμάζω</foreign> or <foreign lang="greek">δάμνημι</foreign>: but <foreign lang="greek">δαμόωσι, δαμόωνται,</foreign> are <tns opt="n">pres.</tns> in late <gramGrp opt="n"><gram type="dialect" opt="n">Ep.</gram></gramGrp>, <bibl n="Perseus:abo:tlg,2046,001:5:247" default="NO"><author>Q.S.</author> 5.247</bibl>, <bibl n="Perseus:abo:tlg,2046,001:249" default="NO">249</bibl>.</div2>
<div2 id="cross*da/meia" orig_id="n23386" key="*da/meia" type="main" opt="n"><head extent="full" lang="greek" opt="n" orth_orig="Δάμεια">Δάμεια</head>, <gen lang="greek" opt="n">τά</gen>, festival at Tarentum, <author>Hsch.</author></div2>
<div2 id="crossda^mei/w" orig_id="n23387" key="da^mei/w" type="main" opt="n"><head extent="full" lang="greek" opt="n" orth_orig="δᾰμείω">δαμείω</head>, <orth extent="full" lang="greek" opt="n">δᾰμήμεναι</orth>, v. δαμάζω.</div2>
<div2 id="crossda_me/tas" orig_id="n23388" key="da_me/tas" type="main" opt="n"><head extent="full" lang="greek" opt="n" orth_orig="δᾱμέτας">δαμέτας</head>, <itype lang="greek" opt="n">α</itype>, <gen lang="greek" opt="n">ὁ</gen>, <sense id="n23388.0" n="" level="1" opt="n">= δημότης, <title>IG</title> 12(1).1032.13 (<placeName>Carpathus</placeName>).</sense></div2>
<div2 id="crossda_mi/a" orig_id="n23389" key="da_mi/a" type="main" opt="n"><head extent="full" lang="greek" opt="n" orth_orig="δᾱμία">δαμία</head>, Cret. for <foreign lang="greek">ζημία.</foreign></div2>
<div2 id="cross*dami/a" orig_id="n23390" key="*dami/a" type="main" opt="n"><head extent="full" lang="greek" opt="n" orth_orig="Δαμία">Δαμία</head>, <gen lang="greek" opt="n">ἡ</gen>, fertility-Goddess at Aegina, <bibl n="Perseus:abo:tlg,0016,001:5:82"><author>Hdt.</author> 5.82</bibl>, <bibl n="Perseus:abo:tlg,0525,001:2:30:4"><author>Paus.</author> 2.30.4</bibl>: also <orth extent="full" lang="greek" opt="n">Δαμοία</orth>, <title>IG</title> 5(1).363 (<placeName>Sparta</placeName>), 1314 (<placeName>Thalamae</placeName>).</div2>
<div2 id="crossda_mieu/w" orig_id="n23391" key="da_mieu/w" type="main" opt="n"><head extent="full" lang="greek" opt="n" orth_orig="δᾱμιεύω">δαμιεύω</head>, <sense id="n23391.0" n="" level="1" opt="n">= δημοσιόω, <title>IG</title> 4.554 (<placeName>Argos</placeName>), cf. <author>Hsch.</author></sense></div2>
<div2 id="crossda_miergo/s" orig_id="n23392" key="da_miergo/s" type="main" opt="n"><head extent="full" lang="greek" opt="n" orth_orig="δᾱμι-εργός">δαμιεργός</head>, <orth extent="suff" lang="greek" opt="n">δᾱμι-οεργός</orth>, <orth extent="suff" lang="greek" opt="n">δᾱμι-οργός</orth>, <gramGrp opt="n"><gram type="dialect" opt="n">Dor.</gram></gramGrp> for <foreign lang="greek">δημιουργός</foreign>: <orth extent="full" lang="greek" opt="n">δᾱμιόργιον</orth>, <gen lang="greek" opt="n">τό</gen>, <sense id="n23392.0" n="" level="1" opt="n"><i>office of δαμιοργοί,</i> <title>LW</title> 1572b (<placeName>Cnidus</placeName>): <orth extent="full" lang="greek" opt="n">δάμιος</orth>, <gramGrp opt="n"><gram type="dialect" opt="n">Dor.</gram></gramGrp> for <foreign lang="greek">δήμιος</foreign>: <orth extent="full" lang="greek" opt="n">δαμιόω</orth>, <gramGrp opt="n"><gram type="dialect" opt="n">Boeot.</gram></gramGrp> and Cret. for <foreign lang="greek">ζημιόω.</foreign></sense></div2>
<div2 id="crossdamname/nh" orig_id="n23393" key="damname/nh" type="main" opt="n"><head extent="full" lang="greek" opt="n" orth_orig="δαμναμένη">δαμναμένη</head>, <sense id="n23393.0" n="" level="1" opt="n">= κατανάγκη, Ps.-<author>Dsc.</author> 4.131; = κῆμος, ib. 133.</sense></div2>
<div2 id="crossdamna/w" orig_id="n23394" key="damna/w" type="main" opt="n"><head extent="full" lang="greek" opt="n" orth_orig="δαμνάω">δαμνάω</head>, <sense id="n23394.0" n="" level="1" opt="n">= δαμάζω, <author>Hom.</author> only in <per opt="n">3</per> <number opt="n">sg.</number> <tns opt="n">pres.</tns> <cit><quote lang="greek">δαμνᾷ</quote> <bibl n="Perseus:abo:tlg,0012,002:11:221"><title>Od.</title> 11.221</bibl></cit>: <tns opt="n">impf.</tns> <cit><quote lang="greek">ἐδάμνα</quote> <bibl n="Perseus:abo:tlg,0012,001:21:52"><title>Il.</title> 21.52</bibl></cit>, <bibl n="Perseus:abo:tlg,0009,001:1:12" default="NO"><author>Sapph.</author> <title>Supp.</title> 1.12</bibl>; <cit><quote lang="greek">δάμνα</quote> <bibl n="Perseus:abo:tlg,0012,001:16:103"><title>Il.</title> 16.103</bibl></cit>, al.; <gramGrp opt="n"><gram type="dialect" opt="n">Ion.</gram></gramGrp> <cit><quote lang="greek">δάμνασκε</quote> <bibl n="Perseus:abo:tlg,0013,005:251"><title>h.Ven.</title> 251</bibl></cit>: <per opt="n">2</per> <number opt="n">sg.</number> <tns opt="n">pres.</tns> <cit><quote lang="greek">δαμνᾷς</quote> <bibl n="Perseus:abo:tlg,0002,001:1388" default="NO"><author>Thgn.</author> 1388</bibl></cit> (s.v.l.); imper. <cit><quote lang="greek">δάμνα</quote> <author>Sapph.</author> 1.3</cit>. (These forms may belong orig.to <foreign lang="greek">δάμνᾱμι,</foreign> <gramGrp opt="n"><gram type="dialect" opt="n">Aeol.</gram></gramGrp> for sq.; <author>Hsch.</author> also gives <tns opt="n">pres.</tns> <foreign lang="greek">δάμνει</foreign> and <tns opt="n">fut.</tns> <foreign lang="greek">δαμνήσει.</foreign>) </sense></div2>
<div2 id="crossda/mnhmi" orig_id="n23395" key="da/mnhmi" type="main" opt="n"><head extent="full" lang="greek" opt="n" orth_orig="δάμνημι">δάμνημι</head> (v. also foreg.), <sense id="n23395.0" n="" level="1" opt="n">= δαμάζω, τὴν μὲν . . δάμνημʼ ἐπέεσσι <bibl n="Perseus:abo:tlg,0012,001:5:893"><title>Il.</title> 5.893</bibl>; <foreign lang="greek">δάμνησι στίχας ἀνδρῶν</foreign> ib. <bibl n="Perseus:abo:tlg,0012,001:5:746">746</bibl>, etc.; <cit><quote lang="greek">ἄνδρʼ ἀγαθὸν πενίη δάμνησι</quote> <bibl n="Perseus:abo:tlg,0002,001:173" default="NO"><author>Thgn.</author> 173</bibl></cit>; <cit><quote lang="greek">πενία . . δ. λαόν</quote> <bibl n="Perseus:abo:tlg,0383,001:92" default="NO"><author>Alc.</author> 92</bibl></cit>:—<gramGrp opt="n"><gram type="voice" opt="n">Med.</gram></gramGrp>, <cit><quote lang="greek">ἵμερον, ᾧ τε σὺ πάντας δαμνᾷ ἀθανάτους</quote> <bibl n="Perseus:abo:tlg,0012,001:14:199"><title>Il.</title> 14.199</bibl></cit>; <cit><quote lang="greek">ἀλλά με χεῖμα δάμναται</quote> <bibl n="Perseus:abo:tlg,0012,002:14:488"><title>Od.</title> 14.488</bibl></cit>; <cit><quote lang="greek">Ἔρος δ. νόον</quote> <bibl n="Perseus:abo:tlg,0020,001:122"><author>Hes.</author> <title>Th.</title> 122</bibl></cit>, cf. <bibl n="Perseus:abo:tlg,0232,001:85" default="NO"><author>Archil.</author> 85</bibl>, <bibl n="Perseus:abo:tlg,0085,003:165"><author>A.</author> <title>Pr.</title> 165</bibl>, <bibl n="Perseus:abo:tlg,2046,001:11:25" default="NO"><author>Q.S.</author> 11.25</bibl>:—<gramGrp opt="n"><gram type="voice" opt="n">Pass.</gram></gramGrp>, <cit><quote lang="greek">πυκνὰ καρήαθʼ ὑφʼ Ἕκτορι δάμνατο</quote> <bibl n="Perseus:abo:tlg,0012,001:11:309"><title>Il.</title> 11.309</bibl></cit>; <cit><quote lang="greek">μηδʼ οὕτω Τρώεσσιν ἔα δάμνασθαι Ἀχαιούς</quote> <bibl n="Perseus:abo:tlg,0012,001:8:244">8.244</bibl></cit>; <cit><quote lang="greek">Ἀχαιοὺς Τρωσὶν δαμναμένους</quote> <bibl n="Perseus:abo:tlg,0012,001:13:16">13.16</bibl></cit>; <cit><quote lang="greek">δάμναμαι</quote> <bibl n="Perseus:abo:tlg,0085,001:904"><author>A.</author> <title>Supp.</title> 904</bibl></cit> (lyr.); imper. <cit><quote lang="greek">μηκέτι δάμναο θυμόν</quote> <bibl n="Perseus:abo:tlg,1475,001:51" default="NO"><author>Maiist.</author> 51</bibl></cit>: <tns opt="n">pf.</tns> <mood opt="n">part.</mood> <cit><quote lang="greek">δεδαμναμένα</quote> <i>forced, seduced,</i> <author>Leg.Gort.</author> 2.13</cit>.</sense></div2>
<div2 id="crossdamnh=tis" orig_id="n23396" key="damnh=tis" type="main" opt="n"><head extent="full" lang="greek" opt="n" orth_orig="δαμνῆτις">δαμνῆτις</head>, <itype lang="greek" opt="n">ιδος</itype>, <gen lang="greek" opt="n">ἡ</gen>, <sense id="n23396.0" n="" level="1" opt="n"><i>she that subdues,</i> <author>Hsch.</author> <orth extent="full" lang="greek" opt="n">δάμνια·</orth> <foreign lang="greek">θύματα, σφάγια,</foreign> <author>Id.</author></sense></div2>
<div2 id="crossda/mnippos" orig_id="n23397" key="da/mnippos" type="main" opt="n"><head extent="full" lang="greek" opt="n" orth_orig="δάμνιππος">δάμνιππος</head>, <itype lang="greek" opt="n">ον</itype>, <sense id="n23397.0" n="" level="1" opt="n"><i>horse-taming,</i> <bibl n="Perseus:abo:tlg,0579,002:740" default="NO"><author>Orph.</author> <title>A.</title> 740</bibl>.</sense></div2>
<div2 id="crossdamnogo/nh" orig_id="n23398" key="damnogo/nh" type="main" opt="n"><head extent="full" lang="greek" opt="n" orth_orig="δαμνογόνη">δαμνογόνη</head>, <orth extent="full" lang="greek" opt="n">δαμνοδάμεια</orth>, <orth extent="full" lang="greek" opt="n">δαμνώ</orth>, <sense id="n23398.0" n="" level="1" opt="n"><i>she that subdues,</i> epiths. of the Moon, <title>Hymn.Mag.</title> 5.43.</sense></div2>
<div2 id="crossdamno/n" orig_id="n23399" key="damno/n" type="gloss" opt="n"><head extent="full" lang="greek" opt="n" orth_orig="δαμνόν·">δαμνόν</head> <foreign lang="greek">δεινόν,</foreign> <author>Hsch.</author> <orth extent="full" lang="greek" opt="n">δάμνος·</orth> <foreign lang="greek">ἵππος</foreign> (Tyrrhen.), <author>Id.</author></div2>
<div2 id="crossda_moge/rwn" orig_id="n23400" key="da_moge/rwn" type="main" opt="n"><head extent="full" lang="greek" opt="n" orth_orig="δᾱμογέρων">δαμογέρων</head>, <orth extent="full" lang="greek" opt="n">δαμόθεν</orth>, <orth extent="full" lang="greek" opt="n">δαμόομαι</orth>, <orth extent="full" lang="greek" opt="n">δᾱμόσιος</orth>, <orth extent="full" lang="greek" opt="n">δᾶμος</orth>, <orth extent="full" lang="greek" opt="n">δαμότης</orth>, <gramGrp opt="n"><gram type="dialect" opt="n">Dor.</gram></gramGrp> for <foreign lang="greek">δημ-.</foreign></div2>
<div2 id="crossda_moqoini/a" orig_id="n23401" key="da_moqoini/a" type="main" opt="n"><head extent="full" lang="greek" opt="n" orth_orig="δᾱμοθοινία">δαμοθοινία</head>, <gramGrp opt="n"><gram type="dialect" opt="n">Dor.</gram></gramGrp> <sense id="n23401.0" n="" level="1" opt="n">= δημοθοινία, <i>public feast,</i> <title>SIG</title> 671<title>A</title> 2, al. (<placeName>Delph.</placeName>, <date>ii B.C.</date>).</sense></div2>
<div2 id="cross*damoi/a" orig_id="n23402" key="*damoi/a" type="main" opt="n"><head extent="full" lang="greek" opt="n" orth_orig="Δαμοία">Δαμοία</head>, v. Δαμία.</div2>
<div2 id="crossda_mosioma/stas" orig_id="n23403" key="da_mosioma/stas" type="main" opt="n"><head extent="full" lang="greek" opt="n" orth_orig="δᾱμοσιομάστας">δαμοσιομάστας</head>, <gen lang="greek" opt="n">ὁ</gen>, official title, prob. <sense id="n23403.0" n="" level="1" opt="n">= μαστρός (q.v.), <title>IG</title> 5(1).47 (<placeName>Sparta</placeName>, <date>ii A.D.</date>); <foreign lang="greek">-μαστης,</foreign> ib. 554.</sense></div2>
<div2 id="crossda_mosiorgi/a" orig_id="n23404" key="da_mosiorgi/a" type="main" opt="n"><head extent="full" lang="greek" opt="n" orth_orig="δᾱμοσιοργία">δαμοσιοργία</head>, <gen lang="greek" opt="n">ἡ</gen>, <sense id="n23404.0" n="" level="1" opt="n">= δημιουργία, <title>GDI</title> 3052.10.</sense></div2>
<div2 id="crossda+mosiofu/la^kes" orig_id="n23405" key="da+mosiofu/la^kes" type="main" opt="n"><head extent="full" lang="greek" opt="n" orth_orig="δαμοσιοφύλᾰκες">δαμοσιοφύλακες</head> <pron extent="full" lang="greek" opt="n">[ῠ]</pron>, <gen lang="greek" opt="n">οἱ</gen>, title of board of magistrates at Dyme, <title>GDI</title> 1615, <title>SIG</title> 529.4 <date>(iii B.C.)</date>.</div2>
<div2 id="crossdamoso/nios" orig_id="n23406" key="damoso/nios" type="main" opt="n"><head extent="full" lang="greek" opt="n" orth_orig="δαμοσόνιος">δαμοσόνιος</head>, a plant, <author>Hsch.</author>; cf. <foreign lang="greek">δαμασώνιον.</foreign></div2>
<div2 id="crossdamou=ai" orig_id="n23407" key="damou=ai" type="gloss" opt="n"><head extent="full" lang="greek" opt="n" orth_orig="δαμοῦαι·">δαμοῦαι</head> <foreign lang="greek">οἱ ἐπὶ Μελαντίας πεμπόμενοι</foreign> (<gramGrp opt="n"><gram type="dialect" opt="n">Lacon.</gram></gramGrp>), <author>Hsch.</author> <orth extent="full" lang="greek" opt="n">δαμοῦχοι</orth>, <gen lang="greek" opt="n">οἱ</gen>, <gramGrp opt="n"><gram type="dialect" opt="n">Dor.</gram></gramGrp> for <foreign lang="greek">δημ-,</foreign> title of a board of magistrates, <author>Id.</author> <orth extent="full" lang="greek" opt="n">δαμοφανής</orth>, <sense id="n23407.0" n="" level="1" opt="n">= ἱμάτιον (<gramGrp opt="n"><gram type="dialect" opt="n">Lacon.</gram></gramGrp>), <author>Id.</author> <orth extent="full" lang="greek" opt="n">δαμπόν</orth>, = πυρίεφθον (Cret.), <author>Id.</author></sense></div2>
<pb n="369"/>
<div2 id="crossda_mw/mata" orig_id="n23408" key="da_mw/mata" type="main" opt="n"><head extent="full" lang="greek" opt="n" orth_orig="δᾱμώματα">δαμώματα</head>, <gen lang="greek" opt="n">τά</gen>, <sense id="n23408.0" n="" level="1" opt="n">= τὰ δημοσίᾳ ᾀδόμενα, <bibl n="Perseus:abo:tlg,0019,005:797"><author>Ar.</author> <title>Pax</title> 797</bibl>, from Stes.(<bibl n="Perseus:abo:tlg,0019,012:37" default="NO"><title>Fr.</title> 37</bibl>): expld. by <foreign lang="greek">κοινώματα, δημοσιώματα,</foreign> <author>Hsch.</author> <orth extent="full" lang="greek" opt="n">δαμώμενος·</orth> <foreign lang="greek">ἀγαλλόμενος, οἱ δὲ παίζων,</foreign> <author>Id.</author> <orth extent="full" lang="greek" opt="n">δαμώσεις·</orth> <foreign lang="greek">δημόται, ἢ οἱ ἐντελεῖς</foreign> (<gramGrp opt="n"><gram type="dialect" opt="n">Lacon.</gram></gramGrp>), <author>Id.</author> <orth extent="full" lang="greek" opt="n">δαμώσικτον·</orth> <foreign lang="greek">δεδοκιμασμένον</foreign> (<gramGrp opt="n"><gram type="dialect" opt="n">Lacon.</gram></gramGrp>), <author>Id.</author> <orth extent="full" lang="greek" opt="n">δᾶν</orth>, v. δᾶ.</sense></div2>
<div2 id="cross*da/n" orig_id="n23409" key="*da/n" type="main" opt="n"><head extent="full" lang="greek" opt="n" orth_orig="Δάν">Δάν</head>, <sense id="n23409.0" n="" level="1" opt="n">= Ζεύς, <title>BpW</title> 31.1578 (Delph.), <bibl default="NO"><author>Hdn.Gr.</author> 1.394</bibl>.</sense></div2>
<div2 id="crossda/n" orig_id="n23410" key="da/n" type="main" opt="n"><head extent="full" lang="greek" opt="n" orth_orig="δάν">δάν</head>, <orth extent="full" lang="greek" opt="n">δαναιός</orth>, <gramGrp opt="n"><gram type="dialect" opt="n">Dor.</gram></gramGrp> for <foreign lang="greek">δήν, δηναιός.</foreign></div2>
<div2 id="cross*dana/h" orig_id="n23411" key="*dana/h" type="main" opt="n"><head extent="full" lang="greek" opt="n" orth_orig="Δανάη">Δανάη</head>, <gen lang="greek" opt="n">ἡ</gen>, <sense id="n23411.0" n="" level="1" opt="n">= δάφνη, Ps.-<author>Dsc.</author> 4.145.</sense></div2>
<div2 id="crossda/naie" orig_id="n23412" key="da/naie" type="gloss" opt="n"><head extent="full" lang="greek" opt="n" orth_orig="δάναιε·">δάναιε</head> <foreign lang="greek">δαιδοῦλαι</foreign> (<gramGrp opt="n"><gram type="dialect" opt="n">Tarent.</gram></gramGrp>), <author>Hsch.</author></div2>
<div2 id="cross*danai/+s" orig_id="n23413" key="*danai/+s" type="main" opt="n"><head extent="full" lang="greek" opt="n" orth_orig="Δαναΐς">Δαναΐς</head>, <gen lang="greek" opt="n">ἡ</gen>, <sense id="n23413.0" n="" level="1" opt="n">= κόνυζα πλατύφυλλος, Ps.-<author>Dsc.</author> 3.121.</sense></div2>
<div2 id="crossda^na/kh" orig_id="n23414" key="da^na/kh" type="main" opt="n"><head extent="full" lang="greek" opt="n" orth_orig="δᾰνάκη">δανάκη</head> <pron extent="full" lang="greek" opt="n">[νᾰ]</pron>, <gen lang="greek" opt="n">ἡ</gen>, <sense id="n23414.0" n="" level="1" opt="n"><i>Persian coin,</i> worth rather more than an obol: hence, <i>the coin buried with a corpse</i> as Charon’s fee, <bibl n="Perseus:abo:tlg,0533,001:110" default="NO"><author>Call.</author> <title>Fr.</title> 110</bibl>, <bibl n="Perseus:abo:tlg,0542,001:9:82" default="NO"><author>Poll.</author> 9.82</bibl>, <author>Hsch.</author>, <title>EM</title> 247.41: <gramGrp opt="n"><gram type="var" opt="n">Dim.</gram></gramGrp> <orth extent="full" lang="greek" opt="n">δανάκιον</orth>, <gen lang="greek" opt="n">τό</gen>, prob. in <author>Suid.</author> (<author>Pers.</author> <title>dānak.</title> ) </sense></div2>
<div2 id="cross*da^naoi/" orig_id="n23415" key="*da^naoi/" type="main" opt="n"><head extent="full" lang="greek" opt="n" orth_orig="Δᾰναοί">Δαναοί</head>, <gen lang="greek" opt="n">οἱ</gen>, <sense id="n23415.0" n="" level="1" opt="n"><i>the Danaäns,</i> subjects of <foreign lang="greek">Δάναος,</foreign> king of Argos, but in <bibl n="Perseus:abo:tlg,0012,001:1:42"><title>Il.</title> 1.42</bibl>, al., for <i>the Greeks</i> generally (but expl. as = νεκροί (cf. <foreign lang="greek">δάνος</foreign> (B)), <bibl n="Perseus:abo:tlg,4099,001:247:49" default="NO"><title>EM</title> 247.49</bibl>): Com. <gramGrp opt="n"><gram type="comp" opt="n">Sup.</gram></gramGrp> <cit><quote lang="greek">Δαναώτατος</quote> <bibl n="Perseus:abo:tlg,0019,012:259" default="NO"><author>Ar.</author> <title>Fr.</title> 259</bibl></cit>:—<orth extent="full" lang="greek" opt="n">Δαναΐδαι</orth>, <itype lang="greek" opt="n">ῶν</itype>, <gen lang="greek" opt="n">οἱ</gen>, <i>the sons</i> or <i>descendants of Danaus,</i> <bibl n="Perseus:abo:tlg,0006,015:466"><author>E.</author> <title>Ph.</title> 466</bibl>:—<orth extent="full" lang="greek" opt="n">Δαναΐδες</orth>, <gen lang="greek" opt="n">αἱ</gen>, <i>his daughters,</i> name of a play of <author>A.</author></sense></div2>
<div2 id="crossda/nas" orig_id="n23416" key="da/nas" type="gloss" opt="n"><head extent="full" lang="greek" opt="n" orth_orig="δάνας·">δάνας</head> <foreign lang="greek">μερίδας</foreign> (<author>Caryst.</author>), <author>Hsch.</author> <orth extent="full" lang="greek" opt="n">δανδαίνειν·</orth> <foreign lang="greek">ἀτενίζειν, φροντίζειν, μεριμνᾶν,</foreign> <author>Id.</author></div2>
<div2 id="crossdandali/s" orig_id="n23417" key="dandali/s" type="main" opt="n"><head extent="full" lang="greek" opt="n" orth_orig="δανδαλίς">δανδαλίς</head>, <itype lang="greek" opt="n">ίδος</itype>, <gen lang="greek" opt="n">ἡ</gen>, <sense id="n23417.0" n="" level="1" opt="n">= δενδαλίς, <bibl n="Perseus:abo:tlg,0542,001:6:77" default="NO"><author>Poll.</author> 6.77</bibl>, <author>Hsch.</author></sense></div2>
<div2 id="crossda/ndalos" orig_id="n23418" key="da/ndalos" type="main" opt="n"><head extent="full" lang="greek" opt="n" orth_orig="δάνδαλος">δάνδαλος</head>, <gen lang="greek" opt="n">ὁ</gen>, <sense id="n23418.0" n="" level="1" opt="n">= ἐριθακός, <author>Hsch.</author> <orth extent="full" lang="greek" opt="n">δανδαρίκαι·</orth> <foreign lang="greek">οἱ βολευταί,</foreign> <author>Id.</author></sense></div2>
<div2 id="crossda^neiako/s" orig_id="n23419" key="da^neiako/s" type="main" opt="n"><head extent="full" lang="greek" opt="n" orth_orig="δᾰν-ειακός">δανειακός</head>, <itype lang="greek" opt="n">ή</itype>, <itype lang="greek" opt="n">όν</itype>, <sense id="n23419.0" n="" level="1" opt="n"><i>concerning loans,</i> <title>Cod.Just.</title> 1.3.45, <bibl n="Perseus:abo:tlg,2734,013:134:8" default="NO"><author>Just.</author> <title>Nov.</title> 134.8</bibl>.</sense></div2>
<div2 id="crossda^nei/zw" orig_id="n23420" key="da^nei/zw" type="main" opt="n"><head extent="suff" lang="greek" opt="n" orth_orig="δᾰν-είζω">δανείζω</head>, <tns opt="n">fut.</tns> <cit><quote lang="greek">-είσω</quote> <bibl n="Perseus:abo:tlg,0014,035:52"><author>D.</author> 35.52</bibl></cit>: <tns opt="n">aor.</tns> <cit><quote lang="greek">ἐδάνεισα</quote> <bibl n="Perseus:abo:tlg,0032,007:3:1:34"><author>X.</author> <title>Cyr.</title> 3.1.34</bibl></cit>, etc.: <tns opt="n">pf.</tns> <cit><quote lang="greek">δεδάνεικα</quote> <bibl n="Perseus:abo:tlg,0014,035:52"><author>D.</author> 35.52</bibl></cit>:—<gramGrp opt="n"><gram type="voice" opt="n">Med.</gram></gramGrp>, ibid.: <tns opt="n">fut.</tns> <cit><quote lang="greek">δανείσομαι</quote> <bibl n="Perseus:abo:tlg,0014,032:15"><author>Id.</author> 32.15</bibl></cit>: <tns opt="n">aor.</tns> <cit><quote lang="greek">ἐδανεισάμην</quote> <bibl n="Perseus:abo:tlg,0540,012:59"><author>Lys.</author> 12.59</bibl></cit>, etc.: <tns opt="n">pf.</tns> <foreign lang="greek">δεδάνεισμαι</foreign> in med. sense, <bibl n="Perseus:abo:tlg,0032,001:6:5:19"><author>X.</author> <title>HG</title> 6.5.19</bibl>, <bibl n="Perseus:abo:tlg,0014,037:53"><author>D.</author> 37.53</bibl>:—<gramGrp opt="n"><gram type="voice" opt="n">Pass.</gram></gramGrp>, <tns opt="n">aor.</tns> <cit><quote lang="greek">ἐδανείσθην</quote> <bibl n="Perseus:abo:tlg,0032,001:2:4:28"><author>X.</author> <title>HG</title> 2.4.28</bibl></cit>, <bibl n="Perseus:abo:tlg,0014,033:12"><author>D.</author> 33.12</bibl>: <tns opt="n">pf.</tns> <cit><quote lang="greek">δεδάνεισμαι</quote> <bibl n="Perseus:abo:tlg,0014,036:5"><author>Id.</author> 36.5</bibl></cit>, <bibl n="Perseus:abo:tlg,0014,049:53">49.53</bibl>: (<etym lang="greek" opt="n">δάνος</etym>):—<sense id="n23420.0" n="" level="1" opt="n"><i>put out money at usury, lend,</i> <title>IG</title> 1(2).302.56, <bibl n="Perseus:abo:tlg,0019,008:842"><author>Ar.</author> <title>Th.</title> 842</bibl>, al.; more fully, <cit><quote lang="greek">δ. ἐπὶ τόκῳ</quote> <bibl n="Perseus:abo:tlg,0059,034:742c"><author>Pl.</author> <title>Lg.</title> 742c</bibl></cit>; <cit><quote lang="greek">ἐπὶ ὀκτὼ ὀβολοῖς τὴν μνᾶν δ. τοῦ μηνὸς ἑκάστου</quote> <bibl n="Perseus:abo:tlg,0014,053:13"><author>D.</author> 53.13</bibl></cit>, cf. <bibl n="Perseus:abo:tlg,0026,001:107"><author>Aeschin.</author> 1.107</bibl>; <foreign lang="greek">δ. ἐπὶ τούτοις τοῖς ἀνδραπόδοις</foreign> on the security of . ., <bibl n="Perseus:abo:tlg,0014,027:27"><author>D.</author> 27.27</bibl>; <cit><quote lang="greek">ἐπὶ τοῖς σώμασι</quote> <bibl n="Perseus:abo:tlg,0086,003:9:1"><author>Arist.</author> <title>Ath.</title> 9.1</bibl></cit>; <cit><quote lang="greek">εἰς τὰ ἡμέτερα</quote> <bibl n="Perseus:abo:tlg,0014,027:28"><author>D.</author> 27.28</bibl></cit>; <cit><quote lang="greek">δανεῖσαι χρήματα εἰς τὸν Πόντον καὶ πάλιν Ἀθήναζε</quote> <bibl n="Perseus:abo:tlg,0014,035:3"><author>Id.</author> 35.3</bibl></cit>. </sense><sense n="2" id="n23420.1" level="3" opt="n"> <gramGrp opt="n"><gram type="voice" opt="n">Med.</gram></gramGrp>, <i>have lent to one, borrow,</i> <bibl n="Perseus:abo:tlg,0019,003:1306"><author>Ar.</author> <title>Nu.</title> 1306</bibl>, etc.; <cit><quote lang="greek">ἀπό τινος</quote> <bibl n="Perseus:abo:tlg,0540,017:2"><author>Lys.</author> 17.2</bibl></cit>; <foreign lang="greek">ἐπὶ τοῖς μεγάλοις [τόκοις</foreign>] <bibl n="Perseus:abo:tlg,0014,001:15"><author>D.</author> 1.15</bibl>; <cit><quote lang="greek">δ. ἐγγείων τόκων</quote> <bibl n="Perseus:abo:tlg,0014,034:23">34.23</bibl></cit>:—<gramGrp opt="n"><gram type="voice" opt="n">Act.</gram></gramGrp> and <gramGrp opt="n"><gram type="voice" opt="n">Med.</gram></gramGrp> opposed, <foreign lang="greek">ἀποδώσουσι οἱ δανεισάμενοι τοῖς δανείσασι τὸ γιγνόμενον ἀργύριον</foreign> ap. <bibl n="Perseus:abo:tlg,0014,035:11"><author>D.</author> 35.11</bibl>:—<gramGrp opt="n"><gram type="voice" opt="n">Pass.</gram></gramGrp>, of the money, <i>to be lent out,</i> <bibl n="Perseus:abo:tlg,0019,003:756"><author>Ar.</author> <title>Nu.</title> 756</bibl>, <bibl n="Perseus:abo:tlg,0032,001:2:4:28"><author>X.</author> <title>HG</title> 2.4.28</bibl>, <bibl n="Perseus:abo:tlg,0014,033:12"><author>D.</author> 33.12</bibl>. </sense><sense n="3" id="n23420.2" level="3" opt="n"> metaph. in <gramGrp opt="n"><gram type="voice" opt="n">Med.</gram></gramGrp>, <cit><quote lang="greek">μόρια ἀπὸ τοῦ κόσμου</quote> <bibl n="Perseus:abo:tlg,0059,031:42e"><author>Pl.</author> <title>Ti.</title> 42e</bibl></cit>; <cit><quote lang="greek">ἀποδώσετέ μοι ἃ ἐδανείσασθε ἐν τῷ λόγῳ</quote> <bibl n="Perseus:abo:tlg,0059,030:612c"><author>Pl.</author> <title>R.</title> 612c</bibl></cit>.</sense></div2>
<div2 id="crossda^neioko/pos" orig_id="n23421" key="da^neioko/pos" type="main" opt="n"><head extent="full" lang="greek" opt="n" orth_orig="δᾰνειοκόπος">δανειοκόπος</head>, <gen lang="greek" opt="n">ὁ</gen>, <sense id="n23421.0" n="" level="1" opt="n"><i>usurer,</i> prob. in Mitteis <title>Chr.</title> 80.27 <date>(i A.D.)</date>.</sense></div2>
<div2 id="crossda/neion" orig_id="n23422" key="da/neion" type="main" opt="n"><head extent="full" lang="greek" opt="n" orth_orig="δάν-ειον">δάνειον</head> <pron extent="full" lang="greek" opt="n">[ᾰ]</pron>, <gen lang="greek" opt="n">τό</gen>, <sense id="n23422.0" n="" level="1" opt="n"><i>loan,</i> <cit><quote lang="greek">δ. ἀπαιτεῖν</quote> <bibl n="Perseus:abo:tlg,0014,034:12"><author>D.</author> 34.12</bibl></cit>; <cit><quote lang="greek">ἀποδοτέον</quote> <bibl n="Perseus:abo:tlg,0086,010:1164b:32"><author>Arist.</author> <title>EN</title> 1164b32</bibl></cit>: pl., <bibl n="Perseus:abo:tlg,0541,047:97" default="NO"><author>Men.</author> <title>Mon.</title> 97</bibl>; <cit><quote lang="greek">σπέρματα δάνεια</quote> <bibl n="Perseus:abo:pap,P.Oxy.:1262:16" default="NO"><title>POxy.</title> 1262.16</bibl></cit><date>(ii A.D.)</date>: —written <orth extent="full" lang="greek" opt="n">δάνιον</orth>, <bibl n="Perseus:abo:tlg,0527,005:15:8"><author>LXX</author> <title>De.</title> 15.8</bibl>, al.</sense></div2>
<div2 id="crossda/neisma" orig_id="n23423" key="da/neisma" type="main" opt="n"><head extent="suff" lang="greek" opt="n" orth_orig="δάν-εισμα">δάνεισμα</head>, <itype lang="greek" opt="n">ατος</itype>, <gen lang="greek" opt="n">τό</gen>, <sense id="n23423.0" n="" level="1" opt="n">= δάνειον, δ. ποιεῖσθαι, = δανείζεσθαι, <bibl n="Perseus:abo:tlg,0003,001:1:121"><author>Th.</author> 1.121</bibl>; <cit><quote lang="greek">τῶν μαρτύρων τῶν παραγιγνομένων τῷ δ.</quote> <bibl n="Perseus:abo:tlg,0014,035:9"><author>D.</author> 35.9</bibl></cit>: metaph., <cit><quote lang="greek">οἷον δάνεισμα καὶ μόρια τοῦ μεγάλου κόσμου</quote> <author>Gal.</author> 19.159</cit>.</sense></div2>
<div2 id="crossdaneismo/s" orig_id="n23424" key="daneismo/s" type="main" opt="n"><head extent="suff" lang="greek" opt="n" orth_orig="δαν-εισμός">δανεισμός</head>, <gen lang="greek" opt="n">ὁ</gen>, <sense id="n23424.0" n="" level="1" opt="n"><i>money-lending,</i> <title>IG</title> 2(2).1172, <bibl n="Perseus:abo:tlg,0059,034:842d"><author>Pl.</author> <title>Lg.</title> 842d</bibl> (pl.), <bibl n="Perseus:abo:tlg,0086,010:1131a:3"><author>Arist.</author> <title>EN</title> 1131a3</bibl>, etc. </sense><sense n="II" id="n23424.1" level="2" opt="n"> <i>borrowing,</i> <bibl n="Perseus:abo:tlg,0059,030:573e"><author>Pl.</author> <title>R.</title> 573e</bibl> (pl.), <bibl n="Perseus:abo:pap,P.Oxy.:799" default="NO"><title>POxy.</title> 799</bibl> <date>(i A.D.)</date>, <bibl n="Perseus:abo:tlg,0007,112:706b"><author>Plu.</author> <title>QConv.</title> 2.706b</bibl>: metaph., <cit><quote lang="greek">αἷμα δʼ αἵματος πικρὸς δ. ἦλθε</quote> <bibl n="Perseus:abo:tlg,0006,012:858"><author>E.</author> <title>El.</title> 858</bibl></cit>.</sense></div2>
<div2 id="crossdaneiste/on" orig_id="n23425" key="daneiste/on" type="main" opt="n"><head extent="suff" lang="greek" opt="n" orth_orig="δαν-ειστέον">δανειστέον</head>, <sense id="n23425.0" n="" level="1" opt="n"><i>one must lend money,</i> <bibl n="Perseus:abo:tlg,0007,091:408c"><author>Plu.</author> <title>Pyth.</title> 2.408c</bibl>.</sense></div2>
<div2 id="crossdaneisth/s" orig_id="n23426" key="daneisth/s" type="main" opt="n"><head extent="suff" lang="greek" opt="n" orth_orig="δαν-ειστής">δανειστής</head>, <itype lang="greek" opt="n">οῦ</itype>, <gen lang="greek" opt="n">ὁ</gen>, <sense id="n23426.0" n="" level="1" opt="n"><i>money-lender</i> or <i>creditor,</i> <title>IPE</title> 12.32<hi rend="ital">B</hi>84 (<placeName>Olbia</placeName>), <bibl n="Perseus:abo:tlg,0527,014:4:1"><author>LXX</author> <title>4 Ki.</title> 4.1</bibl>, <bibl n="Perseus:abo:tlg,0031,003:7:41"><title>Ev.Luc.</title> 7.41</bibl>, <bibl n="Perseus:abo:tlg,0018,001:2:284" default="NO"><author>Ph.</author> 2.284</bibl>, al., <author>Hierocl.</author> p.57 A., <title>POxy.</title> 68.25 <date>(ii A.D.)</date>. </sense><sense n="II" id="n23426.1" level="2" opt="n"> <i>borrower,</i> <title>IG</title> 12(7).67.41,68.4 (Amorg.), <bibl n="Perseus:abo:tlg,0007,007:13"><author>Plu.</author> <title>Sol.</title> 13</bibl>.</sense></div2>
<div2 id="crossdaneistiko/s" orig_id="n23427" key="daneistiko/s" type="main" opt="n"><head extent="suff" lang="greek" opt="n" orth_orig="δαν-ειστικός">δανειστικός</head>, <itype lang="greek" opt="n">ή</itype>, <itype lang="greek" opt="n">όν</itype>, <sense id="n23427.0" n="" level="1" opt="n"><i>concerning loans,</i> <bibl n="Perseus:abo:pap,BGU:1149:23" default="NO"><title>BGU</title> 1149.23</bibl> <date>(i B.C.)</date>, <bibl n="Perseus:abo:tlg,0007,051:13" default="NO"><author>Plu.</author> <title>Agis</title> 13</bibl>, etc.; <foreign lang="greek">ὁ δ.,</foreign> = δανειστής, <bibl n="Perseus:abo:tlg,0062,015:5" default="NO"><author>Luc.</author> <title>Symp.</title> 5</bibl>.</sense></div2>