-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathtoh173-v4.tmx
More file actions
1167 lines (1167 loc) · 59.1 KB
/
Copy pathtoh173-v4.tmx
File metadata and controls
1167 lines (1167 loc) · 59.1 KB
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
<?xml version="1.0" encoding="UTF-8"?>
<tmx xmlns="http://www.lisa.org/tmx14" xmlns:eft="http://read.84000.co/ns/1.0" xmlns:tei="http://www.tei-c.org/ns/1.0">
<header creationtool="monlam-ai/84000" datatype="PlainText" segtype="block" adminlang="en-us" srclang="bo" o-tmf="TEI" eft:text-id="UT22084-060-002" eft:text-version="v-1.0.7-2023"/>
<body>
<tu id="UT22084-060-002-TU-1">
<prop type="location-id">translation</prop>
<tuv xml:lang="bo">
<seg>
<tei:ref folio="F.5.b"/>༄༅༅། །རྒྱ་གར་སྐད་དུ། ཨཱརྱ་ནཻ་ར་ཨཱཏྨ་པ་རི་པྲྀཙྪཱ་ནཱ་མ་མ་ཧཱ་ཡཱ་ན་སཱུ་ཏྲ།</seg>
</tuv>
<tuv xml:lang="en">
<seg/>
</tuv>
</tu>
<tu id="UT22084-060-002-TU-2">
<prop type="location-id">translation</prop>
<tuv xml:lang="bo">
<seg>བོད་སྐད་དུ།</seg>
</tuv>
<tuv xml:lang="en">
<seg/>
</tuv>
</tu>
<tu id="UT22084-060-002-TU-3">
<prop type="location-id">translation</prop>
<tuv xml:lang="bo">
<seg>འཕགས་པ་བདག་མེད་པ་དྲིས་པ་ཞེས་བྱ་བ་ཐེག་པ་ཆེན་པོའི་མདོ།</seg>
</tuv>
<tuv xml:lang="en">
<seg>The Noble Mahāyāna Sūtra Questions on Selflessness</seg>
</tuv>
</tu>
<tu id="UT22084-060-002-TU-4">
<prop type="location-id">UT22084-060-002-9</prop>
<tuv xml:lang="bo">
<seg/>
</tuv>
<tuv xml:lang="en">
<seg>
<tei:milestone xml:id="UT22084-060-002-9"/>Questions Selflessness</seg>
</tuv>
</tu>
<tu id="UT22084-060-002-TU-5">
<prop type="location-id">UT22084-060-002-9</prop>
<tuv xml:lang="bo">
<seg>སངས་རྒྱས་དང་བྱང་ཆུབ་སེམས་དཔའ་ཐམས་ཅད་ལ་ཕྱག་འཚལ་ལོ།</seg>
</tuv>
<tuv xml:lang="en">
<seg>Homage to all buddhas and bodhisattvas.</seg>
</tuv>
</tu>
<tu id="UT22084-060-002-TU-6">
<prop type="location-id">UT22084-060-002-11</prop>
<tuv xml:lang="bo">
<seg>།དེ་ནས་དམིགས་པའི་ལྟ་བ་ཅན་རྣམ་པར་རྟོག་པ་དང་བཅས་ཤིང་རྣམ་པར་དཔྱོད་པ་དང་བཅས་པའི་མུ་སྟེགས་པ་དེ་དག་རྣམས་ཐེག་པ་ཆེན་པོའི་ནང་དུ་སོང་སྟེ།</seg>
</tuv>
<tuv xml:lang="en">
<seg>
<tei:milestone xml:id="UT22084-060-002-11"/>Now, the tīrthikas—those who hold views based on objects and who engage in concepts and analysis—went among the followers of the Mahāyāna.</seg>
</tuv>
</tu>
<tu id="UT22084-060-002-TU-7">
<prop type="location-id">UT22084-060-002-11</prop>
<tuv xml:lang="bo">
<seg>ཞེ་ས་དང་བཅས་ཤིང་ཐལ་མོ་སྦྱར་ནས་བདག་མེད་པའི་དྲི་བ་དག་ཡོངས་སུ་དྲིས་པ།</seg>
</tuv>
<tuv xml:lang="en">
<seg>Respectfully, with joined palms, they asked these questions on selflessness:</seg>
</tuv>
</tu>
<tu id="UT22084-060-002-TU-8">
<prop type="location-id">UT22084-060-002-11</prop>
<tuv xml:lang="bo">
<seg>རིགས་ཀྱི་བུ་ཐམས་ཅད་མཁྱེན་པས་ནི་ལུས་ལ་བདག་མེད་དོ་ཞེས་གསུངས་ལ།</seg>
</tuv>
<tuv xml:lang="en">
<seg>“Sons of noble family, the Omniscient One taught that there is no self in the body.</seg>
</tuv>
</tu>
<tu id="UT22084-060-002-TU-9">
<prop type="location-id">UT22084-060-002-11</prop>
<tuv xml:lang="bo">
<seg>གལ་ཏེ་ལུས་ལ་ཡང་དག་པར་བདག་མེད་ན་ཇི་ལྟར་ན་དེ་ལས་རྩེ་བ་དང་། དགོད་པ་དང་། ངུ་བ་དང་། རོལ་བ་དང་། ཁྲོ་བ་དང་། ང་རྒྱལ་དང་། ཕྲག་དོག་དང་། ཕྲ་མ་ལ་སོགས་པ་ཀུན་ཏུ་འབྱུང་བར་འགྱུར།</seg>
</tuv>
<tuv xml:lang="en">
<seg>If there truly<tei:note xml:id="UT22084-060-002-12"/> is no self in the body, then how do playfulness, laughter, crying, enjoyment, anger, pride, jealousy, calumny, and so forth come about?</seg>
</tuv>
</tu>
<tu id="UT22084-060-002-TU-10">
<prop type="location-id">UT22084-060-002-11</prop>
<tuv xml:lang="bo">
<seg>ཅི་ལུས་ལ་ཡང་དག་པར་ན་བདག་ཡོད་དམ་མེད་པ་ཡིན།</seg>
</tuv>
<tuv xml:lang="en">
<seg>Is there truly a self in the body or not?</seg>
</tuv>
</tu>
<tu id="UT22084-060-002-TU-11">
<prop type="location-id">UT22084-060-002-11</prop>
<tuv xml:lang="bo">
<seg>བདག་ཅག་གི་ཐེ་ཚོམ་དེ་དག་ཁྱོད་ཀྱིས་བསལ་བའི་རིགས་སོ།</seg>
</tuv>
<tuv xml:lang="en">
<seg>It would be proper for you to dispel our doubts.”</seg>
</tuv>
</tu>
<tu id="UT22084-060-002-TU-12">
<prop type="location-id">UT22084-060-002-13</prop>
<tuv xml:lang="bo">
<seg>།ཐེག་པ་ཆེན་པོ་པ་རྣམས་ཀྱིས་སྨྲས་པ། གྲོགས་པོ་དག་ལུས་ལ་ནི་བདག་ཡང་དག་པར་ཡོད་དོ་ཞེའམ། མེད་དོ་ཞེས་གཉི་གར་ཡང་འདིར་བརྗོད་པར་མི་བྱ་སྟེ། ཡང་དག་པར་ཡོད་དོ་ཞེས་བརྗོད་པ་ན་མེད་དོ་ཞེས་བརྗོད་པ་ནི་ལོག་པར་སྨྲ་བའོ།</seg>
</tuv>
<tuv xml:lang="en">
<seg>
<tei:milestone xml:id="UT22084-060-002-13"/>The followers of the Mahāyāna replied, “Friends, it should not be said that there truly is or is not a self in the body, because to say in this case that there truly is or is not a self is mistaken speech.</seg>
</tuv>
</tu>
<tu id="UT22084-060-002-TU-13">
<prop type="location-id">UT22084-060-002-13</prop>
<tuv xml:lang="bo">
<seg>།གལ་ཏེ་ཡོད་ན་ཇི་ལྟར་ན་དེ་སྐྲ་དང་། སེན་མོ་དང་། པགས་པ་དང་། མགོ་བོ་དང་། ཤ་དང་། རུས་པ་དང་། རྐང་དང་། ཚིལ་དང་། རྒྱུས་པ་དང་། མཆིན་པ་དང་། རྒྱུ་མ་དང་། མིད་པ་དང་། ལག་པ་དང་། རྐང་པ་དང་། ཡན་ལག་དང་། ཉིང་ལག་ལ་སོགས་པ་ལུས་ཐམས་ཅད་ཀྱི་ཕྱི་དང་ནང་དུ་བཅས་པ་ལ་རྣམ་པར་བརྟགས་ན་བདག་ཡང་དག་པར་མི་སྣང་ངོ་།</seg>
</tuv>
<tuv xml:lang="en">
<seg>Now, if there were a self, then why is it not perceptible at all, even after searching through the hair, nails, skin, head, flesh, bones, marrow, fat, ligaments, liver, intestines, throat, hands, feet, limbs, and other minor parts, both inside and outside the body?”</seg>
</tuv>
</tu>
<tu id="UT22084-060-002-TU-14">
<prop type="location-id">UT22084-060-002-16</prop>
<tuv xml:lang="bo">
<seg>།མུ་སྟེགས་པ་རྣམས་ཀྱིས་སྨྲས་པ། ལྷའི་མིག་དང་ལྡན་པ་འགའ་ཞིག་གིས་མཐོང་གིས།</seg>
</tuv>
<tuv xml:lang="en">
<seg>
<tei:milestone xml:id="UT22084-060-002-16"/>The tīrthikas said, “The self is only visible to those who have the divine eye.</seg>
</tuv>
</tu>
<tu id="UT22084-060-002-TU-15">
<prop type="location-id">UT22084-060-002-16</prop>
<tuv xml:lang="bo">
<seg>བདག་ཅག་རྣམས་ནི་ཤའི་མིག་ཅན་ཡིན་པས་བདག་ཡང་དག་པར་ཇི་ལྟར་མཐོང་།</seg>
</tuv>
<tuv xml:lang="en">
<seg>How could it be visible to us who only have eyes of flesh?”</seg>
</tuv>
</tu>
<tu id="UT22084-060-002-TU-16">
<prop type="location-id">UT22084-060-002-17</prop>
<tuv xml:lang="bo">
<seg>ཐེག་པ་ཆེན་པོ་པ་རྣམས་ཀྱིས་སྨྲས་པ། ལྷའི་མིག་དང་ལྡན་པ་རྣམས་ཀྱིས་ཀྱང་མི་མཐོང་སྟེ།</seg>
</tuv>
<tuv xml:lang="en">
<seg>
<tei:milestone xml:id="UT22084-060-002-17"/>The followers of the Mahāyāna replied, “It is not seen even by those with the divine eye.</seg>
</tuv>
</tu>
<tu id="UT22084-060-002-TU-17">
<prop type="location-id">UT22084-060-002-17</prop>
<tuv xml:lang="bo">
<seg>གང་ལ་ཁ་དོག་མེད་པ་དང་། གཟུགས་མེད་པ་དང་། དབྱིབས་མེད་པ་དེ་ཇི་ལྟར་མཐོང་བར་འགྱུར།</seg>
</tuv>
<tuv xml:lang="en">
<seg>For how can something that has no color, form, or shape be seen?”<tei:note xml:id="UT22084-060-002-18"/>
</seg>
</tuv>
</tu>
<tu id="UT22084-060-002-TU-18">
<prop type="location-id">UT22084-060-002-19</prop>
<tuv xml:lang="bo">
<seg>མུ་སྟེགས་པ་<tei:ref folio="F.6.a"/>རྣམས་ཀྱིས་སྨྲས་པ། ཅི་མེད་པ་ཡིན་ནམ།</seg>
</tuv>
<tuv xml:lang="en">
<seg>
<tei:milestone xml:id="UT22084-060-002-19"/>The tīrthikas asked, “Then is it nonexistent?”</seg>
</tuv>
</tu>
<tu id="UT22084-060-002-TU-19">
<prop type="location-id">UT22084-060-002-19</prop>
<tuv xml:lang="bo">
<seg>ཐེག་པ་ཆེན་པོ་པ་རྣམས་ཀྱིས་སྨྲས་པ། མེད་དོ་ཞེས་བརྗོད་པ་ན་ཡོད་དོ་ཞེས་བརྗོད་པ་ནི་ལོག་པར་སྨྲ་བའོ།</seg>
</tuv>
<tuv xml:lang="en">
<seg>The followers of the Mahāyāna said, “To say that it is nonexistent<tei:note xml:id="UT22084-060-002-21"/> or to say that it is existent is mistaken speech.</seg>
</tuv>
</tu>
<tu id="UT22084-060-002-TU-20">
<prop type="location-id">UT22084-060-002-19</prop>
<tuv xml:lang="bo">
<seg>།གལ་ཏེ་མེད་ན་ཇི་ལྟར་འདི་མངོན་སུམ་དུ་ཡོད་པར་རྩེ་བ་དང་། དགོད་པ་དང་། ངུ་བ་དང་། རོལ་བ་དང་། ཁྲོ་བ་དང་། ང་རྒྱལ་དང་། ཕྲག་དོག་དང་། ཕྲ་མ་ལ་སོགས་པ་ཀུན་ཏུ་འབྱུང་བར་འགྱུར།</seg>
</tuv>
<tuv xml:lang="en">
<seg>If it is nonexistent, then why do playfulness, laughter, crying, enjoyment, anger, pride, jealousy, calumny, and so forth arise so clearly?</seg>
</tuv>
</tu>
<tu id="UT22084-060-002-TU-21">
<prop type="location-id">UT22084-060-002-19</prop>
<tuv xml:lang="bo">
<seg>དེ་བས་ན་མེད་དོ་ཞེས་བརྗོད་པར་ཡང་མི་རུང་སྟེ།</seg>
</tuv>
<tuv xml:lang="en">
<seg>Therefore, it is not correct to say that it is nonexistent.</seg>
</tuv>
</tu>
<tu id="UT22084-060-002-TU-22">
<prop type="location-id">UT22084-060-002-19</prop>
<tuv xml:lang="bo">
<seg>ཡོད་དམ་མེད་ཅེས་གང་འདི་ལྟར་བརྗོད་པར་མི་བྱ་སྟེ།</seg>
</tuv>
<tuv xml:lang="en">
<seg>One should not say that it is existent or nonexistent.</seg>
</tuv>
</tu>
<tu id="UT22084-060-002-TU-23">
<prop type="location-id">UT22084-060-002-19</prop>
<tuv xml:lang="bo">
<seg>ཉེས་པ་འདི་ཡོད་པས་ན་ཡོད་པའོ་ཞེའམ། མེད་པའོ་ཞེས་བརྗོད་པར་མི་བྱའོ།</seg>
</tuv>
<tuv xml:lang="en">
<seg>Since this would be a fault, one should not say that it exists or that it does not exist.”</seg>
</tuv>
</tu>
<tu id="UT22084-060-002-TU-24">
<prop type="location-id">UT22084-060-002-22</prop>
<tuv xml:lang="bo">
<seg>།མུ་སྟེགས་པ་རྣམས་ཀྱིས་སྨྲས་པ།འོ་ན་འདིར་གང་ཞིག་དམིགས་པར་འགྱུར།</seg>
</tuv>
<tuv xml:lang="en">
<seg>
<tei:milestone xml:id="UT22084-060-002-22"/>The tīrthikas asked, “Then what is apprehended in this case?”</seg>
</tuv>
</tu>
<tu id="UT22084-060-002-TU-25">
<prop type="location-id">UT22084-060-002-22</prop>
<tuv xml:lang="bo">
<seg>ཐེག་པ་ཆེན་པོ་པ་རྣམས་ཀྱིས་སྨྲས་པ། དམིགས་པར་གྱུར་པ་ནི་ཅི་ཡང་མེད་དོ།</seg>
</tuv>
<tuv xml:lang="en">
<seg>The followers of the Mahāyāna said, “Nothing at all is apprehended.”</seg>
</tuv>
</tu>
<tu id="UT22084-060-002-TU-26">
<prop type="location-id">UT22084-060-002-23</prop>
<tuv xml:lang="bo">
<seg>།མུ་སྟེགས་པ་རྣམས་ཀྱིས་སྨྲས་པ། ཅི་ནམ་མཁའ་ལྟར་སྟོང་པ་ཉིད་ཡིན་ནམ།</seg>
</tuv>
<tuv xml:lang="en">
<seg>
<tei:milestone xml:id="UT22084-060-002-23"/>The tīrthikas asked, “Is it as empty as the sky?”</seg>
</tuv>
</tu>
<tu id="UT22084-060-002-TU-27">
<prop type="location-id">UT22084-060-002-23</prop>
<tuv xml:lang="bo">
<seg>ཐེག་པ་ཆེན་པོ་པ་རྣམས་ཀྱིས་སྨྲས་པ། གྲོགས་པོ་དག་དེ་དེ་བཞིན་ཏེ། ནམ་མཁའ་ལྟར་སྟོང་པ་ཉིད་ཡིན་ནོ།</seg>
</tuv>
<tuv xml:lang="en">
<seg>The followers of the Mahāyāna said, “Friends, it is exactly like that! It is as empty as the sky.”</seg>
</tuv>
</tu>
<tu id="UT22084-060-002-TU-28">
<prop type="location-id">UT22084-060-002-24</prop>
<tuv xml:lang="bo">
<seg>།མུ་སྟེགས་པ་རྣམས་ཀྱིས་སྨྲས་པ། གལ་ཏེ་དེ་ལྟར་ཡིན་ན་རྩེ་བ་དང་། དགོད་པ་དང་། ངུ་བ་དང་། རོལ་པ་དང་། ཁྲོ་བ་དང་། ང་རྒྱལ་དང་། ཕྲག་དོག་དང་། ཕྲ་མ་ལ་སོགས་པ་ཇི་ལྟར་བལྟ་བར་བགྱི།</seg>
</tuv>
<tuv xml:lang="en">
<seg>
<tei:milestone xml:id="UT22084-060-002-24"/>The tīrthikas asked, “If that is so, then how should one view playfulness, laughter, crying, enjoyment, anger, pride, jealousy, calumny, and so forth?”</seg>
</tuv>
</tu>
<tu id="UT22084-060-002-TU-29">
<prop type="location-id">UT22084-060-002-25</prop>
<tuv xml:lang="bo">
<seg>ཐེག་པ་ཆེན་པོ་པ་རྣམས་ཀྱིས་སྨྲས་པ། སྒྱུ་མ་དང་། རྨི་ལམ་དང་། མིག་འཕྲུལ་དང་འདྲ་བ་ཉིད་ཡིན་ནོ།</seg>
</tuv>
<tuv xml:lang="en">
<seg>
<tei:milestone xml:id="UT22084-060-002-25"/>The followers of the Mahāyāna said, “They should be regarded as like an illusion, a dream, and a magical deception.”</seg>
</tuv>
</tu>
<tu id="UT22084-060-002-TU-30">
<prop type="location-id">UT22084-060-002-26</prop>
<tuv xml:lang="bo">
<seg>།མུ་སྟེགས་པ་རྣམས་ཀྱིས་སྨྲས་པ། སྒྱུ་མ་ནི་ཇི་ལྟ་བུ་ལགས། རྨི་ལམ་དང་། མིག་འཕྲུལ་ནི་ཇི་ལྟ་བུ་ལགས།</seg>
</tuv>
<tuv xml:lang="en">
<seg>
<tei:milestone xml:id="UT22084-060-002-26"/>The tīrthikas asked, “How are they like an illusion, a dream, and a magical deception?”</seg>
</tuv>
</tu>
<tu id="UT22084-060-002-TU-31">
<prop type="location-id">UT22084-060-002-26</prop>
<tuv xml:lang="bo">
<seg>ཐེག་པ་ཆེན་པོ་པ་རྣམས་ཀྱིས་སྨྲས་པ། སྒྱུ་མ་ནི་མཚོན་པ་ཙམ་མོ།</seg>
</tuv>
<tuv xml:lang="en">
<seg>The followers of the Mahāyāna said, “An illusion is a mere analogy.</seg>
</tuv>
</tu>
<tu id="UT22084-060-002-TU-32">
<prop type="location-id">UT22084-060-002-26</prop>
<tuv xml:lang="bo">
<seg>།རྨི་ལམ་ནི་སོ་སོར་སྣང་བ་ཙམ་སྟེ། གཟུང་བར་བྱ་བ་མ་ཡིན་ཞིང་རང་བཞིན་གྱིས་སྟོང་པ། ཡོད་པ་མ་ཡིན་པའི་ངོ་བོ་ཉིད་དོ།</seg>
</tuv>
<tuv xml:lang="en">
<seg>A dream is a mere appearance that is not graspable, empty by nature, and nonexistent in essence.</seg>
</tuv>
</tu>
<tu id="UT22084-060-002-TU-33">
<prop type="location-id">UT22084-060-002-26</prop>
<tuv xml:lang="bo">
<seg>།མིག་འཕྲུལ་ནི་བཅོས་མ་ཙམ་དུ་དགོས་པའོ།</seg>
</tuv>
<tuv xml:lang="en">
<seg>A magical deception is intentionally fabricated.</seg>
</tuv>
</tu>
<tu id="UT22084-060-002-TU-34">
<prop type="location-id">UT22084-060-002-26</prop>
<tuv xml:lang="bo">
<seg>།གྲོགས་པོ་དག་དེ་དེ་བཞིན་ཏེ།</seg>
</tuv>
<tuv xml:lang="en">
<seg>This is the way things are, friends.</seg>
</tuv>
</tu>
<tu id="UT22084-060-002-TU-35">
<prop type="location-id">UT22084-060-002-26</prop>
<tuv xml:lang="bo">
<seg>དངོས་པོ་ཇི་སྙེད་པ་ཐམས་ཅད་ནི་སྒྱུ་མ་དང་། རྨི་ལམ་དང་། མིག་འཕྲུལ་དང་འདྲ་བར་ཤེས་པར་བྱའོ།</seg>
</tuv>
<tuv xml:lang="en">
<seg>You should regard all these things as being like an illusion, a dream, and a magical deception.</seg>
</tuv>
</tu>
<tu id="UT22084-060-002-TU-36">
<prop type="location-id">UT22084-060-002-27</prop>
<tuv xml:lang="bo">
<seg>།གཞན་ཡང་ཀུན་རྫོབ་དང་། དོན་དམ་པ་དག་བསྟན་པར་བྱ་སྟེ།</seg>
</tuv>
<tuv xml:lang="en">
<seg>
<tei:milestone xml:id="UT22084-060-002-27"/>“Moreover, the distinction between the relative and the ultimate should be pointed out.</seg>
</tuv>
</tu>
<tu id="UT22084-060-002-TU-37">
<prop type="location-id">UT22084-060-002-27</prop>
<tuv xml:lang="bo">
<seg>དེ་ལ་ཀུན་རྫོབ་ཅེས་བྱ་བ་ནི་འདི་ནི་བདག་གོ། །འདི་ནི་གཞན་ནོ་ཞེས་བྱ་བ་དང་། སྲོག་དང་། སྐྱེས་བུ་<tei:ref folio="F.6.b"/>དང་། གང་ཟག་དང་། བྱེད་པ་པོ་དང་། ཚོར་བ་པོ་དང་། ནོར་དང་། བུ་དང་། ཆུང་མ་དང་། མཛའ་བཤེས་དང་། ཉེ་དུ་ལ་སོགས་པར་རྟོག་པ་དེ་ནི་ཀུན་རྫོབ་ཅེས་བྱའོ།</seg>
</tuv>
<tuv xml:lang="en">
<seg>In this regard, the relative consists in the conception ‘this is self, that is other.’ To conceptualize a soul, a person, an individual, an agent, an observer, wealth, children, wives, friends, relatives, and so forth is called the relative.</seg>
</tuv>
</tu>
<tu id="UT22084-060-002-TU-38">
<prop type="location-id">UT22084-060-002-29</prop>
<tuv xml:lang="bo">
<seg>།གང་ལ་བདག་མེད་པ་དང་། གཞན་མེད་པ་དང་། སྲོག་མེད་པ་དང་། སྐྱེས་བུ་མེད་པ་དང་། གང་ཟག་མེད་པ་དང་། བྱེད་པ་པོ་མེད་པ་དང་། ཚོར་བ་པོ་མེད་པ་དང་། ནོར་མེད་པ་དང་། བུ་མེད་པ་དང་། ཆུང་མ་མེད་པ་དང་། མཛའ་བཤེས་མེད་པ་དང་། ཉེ་དུ་ལ་སོགས་པ་མེད་པ་དེ་ནི་དོན་དམ་པ་ཞེས་བྱའོ།</seg>
</tuv>
<tuv xml:lang="en">
<seg>
<tei:milestone xml:id="UT22084-060-002-29"/>“Where there is no self, no other, no soul, no person, no individual, no agent, no observer, no wealth, no children, no wives, no friends, no relatives, and so forth, this is called the ultimate.<tei:note xml:id="UT22084-060-002-30"/>
</seg>
</tuv>
</tu>
<tu id="UT22084-060-002-TU-39">
<prop type="location-id">UT22084-060-002-29</prop>
<tuv xml:lang="bo">
<seg>།གང་ལ་རང་བཞིན་གྱིས་དངོས་པོ་ཐམས་ཅད་དུ་ཡོངས་སུ་བརྟགས་ཤིང་དགེ་བ་དང་། མི་དགེ་བའི་འབྲས་བུ་དང་། སྐྱེ་བ་དང་། འགག་པ་ནི་ཀུན་རྫོབ་བོ།</seg>
</tuv>
<tuv xml:lang="en">
<seg>The relative consists in habitually labeling all things, in the results of virtuous and nonvirtuous deeds, and in birth and cessation.</seg>
</tuv>
</tu>
<tu id="UT22084-060-002-TU-40">
<prop type="location-id">UT22084-060-002-31</prop>
<tuv xml:lang="bo">
<seg>།དགེ་བ་དང་མི་དགེ་བའི་འབྲས་བུ་མེད་པ་དང་། སྐྱེ་བ་མེད་པ་དང་། འགག་པ་མེད་པ་དེ་བཞིན་ཉིད་ཀྱི་ངོ་བོ་ཉིད་དེ་ལ་ནི་ཀུན་ནས་ཉོན་མོངས་པ་དང་། རྣམ་པར་བྱང་བ་མེད་དེ། དེ་ནི་དབུ་མའི་ཆོས་རྣམས་ཀྱི་སྒྲུབ་པ་ལྷུར་ལེན་པའོ།</seg>
</tuv>
<tuv xml:lang="en">
<seg>
<tei:milestone xml:id="UT22084-060-002-31"/>“The very essence of suchness, where there are no virtuous results, no nonvirtuous results, no birth, and no cessation, is beyond both pollution and purification.<tei:note xml:id="UT22084-060-002-32"/> This is the middle way teaching to strive for in practice.</seg>
</tuv>
</tu>
<tu id="UT22084-060-002-TU-41">
<prop type="location-id">UT22084-060-002-31</prop>
<tuv xml:lang="bo">
<seg>།དེ་ལ་འདི་སྐད་ཅེས་བྱ་སྟེ།</seg>
</tuv>
<tuv xml:lang="en">
<seg>In this regard, it is said:</seg>
</tuv>
</tu>
<tu id="UT22084-060-002-TU-42">
<prop type="location-id">UT22084-060-002-33</prop>
<tuv xml:lang="bo">
<seg>ཀུན་རྫོབ་དང་ནི་དོན་དམ་སྟེ།</seg>
</tuv>
<tuv xml:lang="en">
<seg>
<tei:milestone xml:id="UT22084-060-002-33"/>“Relative and ultimate</seg>
</tuv>
</tu>
<tu id="UT22084-060-002-TU-43">
<prop type="location-id">UT22084-060-002-33</prop>
<tuv xml:lang="bo">
<seg>།དབྱེ་བ་གཉིས་སུ་ཡང་དག་བཤད།</seg>
</tuv>
<tuv xml:lang="en">
<seg>Are explained as two categories:</seg>
</tuv>
</tu>
<tu id="UT22084-060-002-TU-44">
<prop type="location-id">UT22084-060-002-33</prop>
<tuv xml:lang="bo">
<seg>།ཀུན་རྫོབ་འཇིག་རྟེན་པ་ཡི་ཆོས།</seg>
</tuv>
<tuv xml:lang="en">
<seg>The relative comprises worldly phenomena;</seg>
</tuv>
</tu>
<tu id="UT22084-060-002-TU-45">
<prop type="location-id">UT22084-060-002-33</prop>
<tuv xml:lang="bo">
<seg>།དོན་དམ་འཇིག་རྟེན་འདས་པའོ།</seg>
</tuv>
<tuv xml:lang="en">
<seg>The ultimate is beyond the worldly.</seg>
</tuv>
</tu>
<tu id="UT22084-060-002-TU-46">
<prop type="location-id">UT22084-060-002-34</prop>
<tuv xml:lang="bo">
<seg>།ཀུན་རྫོབ་ཆོས་ལ་ཞུགས་པ་ཡི།</seg>
</tuv>
<tuv xml:lang="en">
<seg>
<tei:milestone xml:id="UT22084-060-002-34"/>“Engaging with relative phenomena,</seg>
</tuv>
</tu>
<tu id="UT22084-060-002-TU-47">
<prop type="location-id">UT22084-060-002-34</prop>
<tuv xml:lang="bo">
<seg>།སེམས་ཅན་ཉོན་མོངས་དབང་དུ་འགྲོ།</seg>
</tuv>
<tuv xml:lang="en">
<seg>Sentient beings are overpowered by emotional defilements.</seg>
</tuv>
</tu>
<tu id="UT22084-060-002-TU-48">
<prop type="location-id">UT22084-060-002-34</prop>
<tuv xml:lang="bo">
<seg>།དོན་དམ་ཡོངས་སུ་མ་ཤེས་པས།</seg>
</tuv>
<tuv xml:lang="en">
<seg>Not knowing the ultimate at all,</seg>
</tuv>
</tu>
<tu id="UT22084-060-002-TU-49">
<prop type="location-id">UT22084-060-002-34</prop>
<tuv xml:lang="bo">
<seg>།འཁོར་བར་ཡུན་རིང་འཁོར་བར་འགྱུར།</seg>
</tuv>
<tuv xml:lang="en">
<seg>They wander for a long time in saṃsāra.</seg>
</tuv>
</tu>
<tu id="UT22084-060-002-TU-50">
<prop type="location-id">UT22084-060-002-35</prop>
<tuv xml:lang="bo">
<seg>།ཀུན་རྫོབ་འཇིག་རྟེན་ཆོས་རྣམས་ལ། །མི་མཁས་པ་དག་རྟོག་པར་བྱེད།</seg>
</tuv>
<tuv xml:lang="en">
<seg>
<tei:milestone xml:id="UT22084-060-002-35"/>“The unwise form the concepts Of relative worldly phenomena.</seg>
</tuv>
</tu>
<tu id="UT22084-060-002-TU-51">
<prop type="location-id">UT22084-060-002-35</prop>
<tuv xml:lang="bo">
<seg>།ཀུན་ཏུ་རྟོག་པ་དེ་ཡིས་ནི།</seg>
</tuv>
<tuv xml:lang="en">
<seg>Due to such conceptualization,</seg>
</tuv>
</tu>
<tu id="UT22084-060-002-TU-52">
<prop type="location-id">UT22084-060-002-37</prop>
<tuv xml:lang="bo">
<seg>།སྡུག་བསྔལ་ཉམས་སུ་མྱོང་བར་འགྱུར། །ཇི་ལྟར་སོ་སོའི་སྐྱེ་བོ་ཡི། །བྱིས་པས་གྲོལ་ལམ་མི་ཤེས་པས།</seg>
</tuv>
<tuv xml:lang="en">
<seg>They experience suffering. <tei:milestone xml:id="UT22084-060-002-37"/>“Ordinary individuals, due to their immaturity, Do not know the path of liberation.<tei:note xml:id="UT22084-060-002-38"/>
</seg>
</tuv>
</tu>
<tu id="UT22084-060-002-TU-53">
<prop type="location-id">UT22084-060-002-37</prop>
<tuv xml:lang="bo">
<seg>།མི་ཟད་པ་ཡི་སྡུག་བསྔལ་དག །མང་པོ་རྗེས་སུ་མྱོང་བར་འགྱུར།</seg>
</tuv>
<tuv xml:lang="en">
<seg>They experience sundry forms Of unending suffering.<tei:note xml:id="UT22084-060-002-39"/>
</seg>
</tuv>
</tu>
<tu id="UT22084-060-002-TU-54">
<prop type="location-id">UT22084-060-002-40</prop>
<tuv xml:lang="bo">
<seg>།གང་དུ་སྲིད་པ་འགག་འགྱུར་བའི། །དོན་དམ་དག་ནི་མི་ཤེས་པས།</seg>
</tuv>
<tuv xml:lang="en">
<seg>
<tei:milestone xml:id="UT22084-060-002-40"/>“Oblivious to the ultimate,Where worldly existence ceases,</seg>
</tuv>
</tu>
<tu id="UT22084-060-002-TU-55">
<prop type="location-id">UT22084-060-002-40</prop>
<tuv xml:lang="bo">
<seg>།སྐྱེ་བ་དང་ནི་འགག་འགྱུར་ཞིང་།</seg>
</tuv>
<tuv xml:lang="en">
<seg>They are born and cease.</seg>
</tuv>
</tu>
<tu id="UT22084-060-002-TU-56">
<prop type="location-id">UT22084-060-002-40</prop>
<tuv xml:lang="bo">
<seg>།སྐྱེ་མེད་འགྲོ་དང་འོང་བར་འགྱུར།</seg>
</tuv>
<tuv xml:lang="en">
<seg>Although birthless, they come and go.</seg>
</tuv>
</tu>
<tu id="UT22084-060-002-TU-57">
<prop type="location-id">UT22084-060-002-41</prop>
<tuv xml:lang="bo">
<seg>།འཇིག་རྟེན་ཆོས་ལ་གནས་པ་ཡི།།བླུན་པོ་འཁོར་ལོ་བཞིན་དུ་འཁོར།</seg>
</tuv>
<tuv xml:lang="en">
<seg>
<tei:milestone xml:id="UT22084-060-002-41"/>“Fools who dwell on worldly phenomena Will rove around like a wheel.</seg>
</tuv>
</tu>
<tu id="UT22084-060-002-TU-58">
<prop type="location-id">UT22084-060-002-41</prop>
<tuv xml:lang="bo">
<seg>།སྡུག་བསྔལ་གནས་ཅན་འཁོར་བ་འདིར།</seg>
</tuv>
<tuv xml:lang="en">
<seg>In saṃsāra, the place of suffering,</seg>
</tuv>
</tu>
<tu id="UT22084-060-002-TU-59">
<prop type="location-id">UT22084-060-002-43</prop>
<tuv xml:lang="bo">
<seg>།ཡང་དང་ཡང་དུ་འཁོར་བར་འགྱུར། །ཇི་ལྟར་ཉི་མ་ཟླ་བ་དག །སླར་ཡང་འོང་ཞིང་འགྲོ་བར་བྱེད།</seg>
</tuv>
<tuv xml:lang="en">
<seg>They will revolve again and again.<tei:note xml:id="UT22084-060-002-42"/>
<tei:milestone xml:id="UT22084-060-002-43"/> “Just as the sun and the moon Continue to come and go,</seg>
</tuv>
</tu>
<tu id="UT22084-060-002-TU-60">
<prop type="location-id">UT22084-060-002-43</prop>
<tuv xml:lang="bo">
<seg>།དེ་བཞིན་སྲིད་པར་འཕོ་བ་ན།</seg>
</tuv>
<tuv xml:lang="en">
<seg>Likewise, these beings, transmigrating in the world,</seg>
</tuv>
</tu>
<tu id="UT22084-060-002-TU-61">
<prop type="location-id">UT22084-060-002-43</prop>
<tuv xml:lang="bo">
<seg>།སླར་ཡང་འོང་ཞིང་འགྲོ་བར་འགྱུར།</seg>
</tuv>
<tuv xml:lang="en">
<seg>Come and go, again and again.</seg>
</tuv>
</tu>
<tu id="UT22084-060-002-TU-62">
<prop type="location-id">UT22084-060-002-44</prop>
<tuv xml:lang="bo">
<seg>།འཁོར་བ་ཐམས་ཅད་མི་རྟག་<tei:ref folio="F.7.a"/>ཅིང་།།མི་བརྟན་སྐད་ཅིག་འཇིག་པ་ཉིད།</seg>
</tuv>
<tuv xml:lang="en">
<seg>
<tei:milestone xml:id="UT22084-060-002-44"/>“The whole of saṃsāra<tei:note xml:id="UT22084-060-002-45"/> is impermanent and unstable,Disintegrating at every moment.</seg>
</tuv>
</tu>
<tu id="UT22084-060-002-TU-63">
<prop type="location-id">UT22084-060-002-44</prop>
<tuv xml:lang="bo">
<seg>།དེ་བས་དོན་དམ་ཤེས་པ་ཡིས།</seg>
</tuv>
<tuv xml:lang="en">
<seg>That is why, by knowing the ultimate,</seg>
</tuv>
</tu>
<tu id="UT22084-060-002-TU-64">
<prop type="location-id">UT22084-060-002-44</prop>
<tuv xml:lang="bo">
<seg>།ཀུན་རྫོབ་བདེན་པའི་གནས་སྤོང་ངོ་།</seg>
</tuv>
<tuv xml:lang="en">
<seg>One abandons the state of relative reality.</seg>
</tuv>
</tu>
<tu id="UT22084-060-002-TU-65">
<prop type="location-id">UT22084-060-002-47</prop>
<tuv xml:lang="bo">
<seg>།མཐོ་རིས་གནས་ནས་ལྷ་རྣམས་དང་། །དྲི་ཟ་ལྷ་མི་རྣམས་ཀྱང་ནི།</seg>
</tuv>
<tuv xml:lang="en">
<seg>
<tei:milestone xml:id="UT22084-060-002-47"/>“Devas from the higher realms, As well as gandharvas, apsarases, and humans,<tei:note xml:id="UT22084-060-002-48"/>
</seg>
</tuv>
</tu>
<tu id="UT22084-060-002-TU-66">
<prop type="location-id">UT22084-060-002-47</prop>
<tuv xml:lang="bo">
<seg>།ཀུན་ལ་འཕོ་བ་ཡོད་གྱུར་པ།</seg>
</tuv>
<tuv xml:lang="en">
<seg>Are all subject to transmigration—</seg>
</tuv>
</tu>
<tu id="UT22084-060-002-TU-67">
<prop type="location-id">UT22084-060-002-47</prop>
<tuv xml:lang="bo">
<seg>།ཀུན་ཀྱང་ཀུན་རྫོབ་འབྲས་བུ་ཡིན།</seg>
</tuv>
<tuv xml:lang="en">
<seg>All this is the result of the relative.</seg>
</tuv>
</tu>
<tu id="UT22084-060-002-TU-68">
<prop type="location-id">UT22084-060-002-49</prop>
<tuv xml:lang="bo">
<seg>།གྲུབ་དང་རིགས་འཛིན་གནོད་སྦྱིན་དང་། །དྲི་ཟ་དང་ནི་ལྟོ་འཕྱེ་རྣམས།</seg>
</tuv>
<tuv xml:lang="en">
<seg>
<tei:milestone xml:id="UT22084-060-002-49"/>“Siddhas, vidyādharas, and yakṣas, Gandharvas<tei:note xml:id="UT22084-060-002-50"/> and mahoragas,</seg>
</tuv>
</tu>
<tu id="UT22084-060-002-TU-69">
<prop type="location-id">UT22084-060-002-49</prop>
<tuv xml:lang="bo">
<seg>།སླར་ཡང་དམྱལ་བར་འགྲོ་འགྱུར་བ།</seg>
</tuv>
<tuv xml:lang="en">
<seg>Go again and again to hell—</seg>
</tuv>
</tu>
<tu id="UT22084-060-002-TU-70">
<prop type="location-id">UT22084-060-002-49</prop>
<tuv xml:lang="bo">
<seg>།ཀུན་ཀྱང་ཀུན་རྫོབ་འབྲས་བུ་ཡིན།</seg>
</tuv>
<tuv xml:lang="en">
<seg>All this is the result of the relative.</seg>
</tuv>
</tu>
<tu id="UT22084-060-002-TU-71">
<prop type="location-id">UT22084-060-002-51</prop>
<tuv xml:lang="bo">
<seg>།གང་ཞིག་བརྩོན་དྲག་ལྷ་རྣམས་དང་། །ཡོན་ཏན་འབྱུང་གནས་ལ་གནས་གང་།</seg>
</tuv>
<tuv xml:lang="en">
<seg>
<tei:milestone xml:id="UT22084-060-002-51"/>“Those with great perseverance who come to abide In the abode of the devas due to good qualities</seg>
</tuv>
</tu>
<tu id="UT22084-060-002-TU-72">
<prop type="location-id">UT22084-060-002-51</prop>
<tuv xml:lang="bo">
<seg>།མཐོ་རིས་ལས་འཕོ་ལྟུང་གྱུར་པ།</seg>
</tuv>
<tuv xml:lang="en">
<seg>Must again pass away and fall from the higher realms—</seg>
</tuv>
</tu>
<tu id="UT22084-060-002-TU-73">
<prop type="location-id">UT22084-060-002-51</prop>
<tuv xml:lang="bo">
<seg>།ཐམས་ཅད་ཀུན་རྫོབ་འབྲས་བུ་ཡིན།</seg>
</tuv>
<tuv xml:lang="en">
<seg>All this is the result of the relative.<tei:note xml:id="UT22084-060-002-52"/>
</seg>
</tuv>
</tu>
<tu id="UT22084-060-002-TU-74">
<prop type="location-id">UT22084-060-002-53</prop>
<tuv xml:lang="bo">
<seg>།བརྒྱ་བྱིན་འཁོར་ལོས་སྒྱུར་ཉིད་དེ།།གང་གིས་དམ་པའི་གནས་ཐོབ་ནས།</seg>
</tuv>
<tuv xml:lang="en">
<seg>
<tei:milestone xml:id="UT22084-060-002-53"/>“Whoever attains the supreme state Of Śakra or of a universal monarch</seg>
</tuv>
</tu>
<tu id="UT22084-060-002-TU-75">
<prop type="location-id">UT22084-060-002-53</prop>
<tuv xml:lang="bo">
<seg>།སླར་ཡང་བྱོལ་སོང་སྐྱེ་གནས་འཇུག །ཐམས་ཅད་ཀུན་རྫོབ་འབྲས་བུ་ཡིན།</seg>
</tuv>
<tuv xml:lang="en">
<seg>Will once again enter the birthplace of animals— All this is the result of the relative.</seg>
</tuv>
</tu>
<tu id="UT22084-060-002-TU-76">
<prop type="location-id">UT22084-060-002-54</prop>
<tuv xml:lang="bo">
<seg>།དེ་བས་མཐོ་རིས་ལྷ་རྣམས་ཀྱི།</seg>
</tuv>
<tuv xml:lang="en">
<seg>
<tei:milestone xml:id="UT22084-060-002-54"/>“Abandoning the great bliss<tei:note xml:id="UT22084-060-002-55"/>
</seg>
</tuv>
</tu>
<tu id="UT22084-060-002-TU-77">
<prop type="location-id">UT22084-060-002-54</prop>
<tuv xml:lang="bo">
<seg>།བདེན་པ་བཟང་པོ་ཀུན་སྤོང་ལ།</seg>
</tuv>
<tuv xml:lang="en">
<seg>Of the devas of the higher realms,</seg>
</tuv>
</tu>
<tu id="UT22084-060-002-TU-78">
<prop type="location-id">UT22084-060-002-54</prop>
<tuv xml:lang="bo">
<seg>།བྱང་ཆུབ་སེམས་ནི་འོད་གསལ་བ། །རྣལ་འབྱོར་པས་ནི་རྟག་ཏུ་བསྒོམ།</seg>
</tuv>
<tuv xml:lang="en">
<seg>A yogin should always meditate On the mind of awakening, which is luminosity.</seg>
</tuv>
</tu>
<tu id="UT22084-060-002-TU-79">
<prop type="location-id">UT22084-060-002-56</prop>
<tuv xml:lang="bo">
<seg>།དངོས་པོ་མེད་ཅིང་དམིགས་སུ་མེད།</seg>
</tuv>
<tuv xml:lang="en">
<seg>
<tei:milestone xml:id="UT22084-060-002-56"/>“Essenceless, unapprehendable,</seg>
</tuv>
</tu>
<tu id="UT22084-060-002-TU-80">
<prop type="location-id">UT22084-060-002-56</prop>
<tuv xml:lang="bo">
<seg>།ཐམས་ཅད་སྟོང་པ་གནས་མེད་པ།</seg>
</tuv>
<tuv xml:lang="en">
<seg>Entirely empty, groundless,</seg>
</tuv>
</tu>
<tu id="UT22084-060-002-TU-81">
<prop type="location-id">UT22084-060-002-56</prop>
<tuv xml:lang="bo">
<seg>།སྤྲོས་པ་རྣམས་ལས་ཡང་དག་འདས།</seg>
</tuv>
<tuv xml:lang="en">
<seg>And beyond all conceptual elaboration—</seg>
</tuv>
</tu>
<tu id="UT22084-060-002-TU-82">
<prop type="location-id">UT22084-060-002-56</prop>
<tuv xml:lang="bo">
<seg>།བྱང་ཆུབ་སེམས་དཔའི་མཚན་ཉིད་ཡིན།</seg>
</tuv>
<tuv xml:lang="en">
<seg>Such is the definition of the mind of awakening.</seg>
</tuv>
</tu>
<tu id="UT22084-060-002-TU-83">
<prop type="location-id">UT22084-060-002-57</prop>
<tuv xml:lang="bo">
<seg>།སྲ་བ་མ་ཡིན་འཇམ་པ་མིན།</seg>
</tuv>
<tuv xml:lang="en">
<seg>
<tei:milestone xml:id="UT22084-060-002-57"/>“Neither hard nor soft,</seg>
</tuv>
</tu>
<tu id="UT22084-060-002-TU-84">
<prop type="location-id">UT22084-060-002-57</prop>
<tuv xml:lang="bo">
<seg>།དྲོ་བ་མ་ཡིན་གྲང་བ་མིན།</seg>
</tuv>
<tuv xml:lang="en">
<seg>Neither warm nor cold,</seg>
</tuv>
</tu>
<tu id="UT22084-060-002-TU-85">
<prop type="location-id">UT22084-060-002-57</prop>
<tuv xml:lang="bo">
<seg>།དེ་ནི་རེག་མིན་གཟུང་བྱ་མིན།</seg>
</tuv>
<tuv xml:lang="en">
<seg>Neither tangible nor graspable—</seg>
</tuv>
</tu>
<tu id="UT22084-060-002-TU-86">
<prop type="location-id">UT22084-060-002-57</prop>
<tuv xml:lang="bo">
<seg>།བྱང་ཆུབ་སེམས་ཀྱི་མཚན་ཉིད་ཡིན།</seg>
</tuv>
<tuv xml:lang="en">
<seg>Such is the definition of the mind of awakening.</seg>
</tuv>
</tu>
<tu id="UT22084-060-002-TU-87">
<prop type="location-id">UT22084-060-002-58</prop>
<tuv xml:lang="bo">
<seg>།རིང་པོ་མ་ཡིན་ཐུང་བ་མིན།</seg>
</tuv>
<tuv xml:lang="en">
<seg>
<tei:milestone xml:id="UT22084-060-002-58"/>“Neither long nor short,</seg>
</tuv>
</tu>
<tu id="UT22084-060-002-TU-88">
<prop type="location-id">UT22084-060-002-58</prop>
<tuv xml:lang="bo">
<seg>།ཟླུམ་པོ་མ་ཡིན་གྲུ་གསུམ་མིན།</seg>
</tuv>
<tuv xml:lang="en">
<seg>Neither round nor triangular,</seg>
</tuv>
</tu>
<tu id="UT22084-060-002-TU-89">
<prop type="location-id">UT22084-060-002-58</prop>
<tuv xml:lang="bo">
<seg>།ཕྲ་བ་མ་ཡིན་སྦོམ་པའང་མིན།</seg>
</tuv>
<tuv xml:lang="en">
<seg>Neither thin nor thick—</seg>
</tuv>
</tu>
<tu id="UT22084-060-002-TU-90">
<prop type="location-id">UT22084-060-002-58</prop>
<tuv xml:lang="bo">
<seg>།བྱང་ཆུབ་སེམས་ཀྱི་མཚན་ཉིད་ཡིན།</seg>
</tuv>
<tuv xml:lang="en">
<seg>Such is the definition of the mind of awakening.<tei:note xml:id="UT22084-060-002-59"/>
</seg>
</tuv>
</tu>
<tu id="UT22084-060-002-TU-91">
<prop type="location-id">UT22084-060-002-60</prop>
<tuv xml:lang="bo">
<seg>།སྒོམ་པ་རྣམས་ལས་རྣམ་འདས་ཤིང་།</seg>
</tuv>
<tuv xml:lang="en">
<seg>
<tei:milestone xml:id="UT22084-060-002-60"/>“Beyond meditation,</seg>
</tuv>
</tu>
<tu id="UT22084-060-002-TU-92">
<prop type="location-id">UT22084-060-002-60</prop>
<tuv xml:lang="bo">
<seg>།མུ་སྟེགས་རྣམས་ཀྱི་སྤྱོད་ཡུལ་མིན།</seg>
</tuv>
<tuv xml:lang="en">
<seg>Out of range for tīrthikas,</seg>
</tuv>
</tu>
<tu id="UT22084-060-002-TU-93">
<prop type="location-id">UT22084-060-002-60</prop>
<tuv xml:lang="bo">
<seg>།ཤེས་རབ་ཕ་རོལ་ཕྱིན་སྦྱོར་བ།</seg>
</tuv>
<tuv xml:lang="en">
<seg>And having the perfection of insight as its practice<tei:note xml:id="UT22084-060-002-61"/>—</seg>
</tuv>
</tu>
<tu id="UT22084-060-002-TU-94">
<prop type="location-id">UT22084-060-002-60</prop>
<tuv xml:lang="bo">
<seg>།བྱང་ཆུབ་སེམས་ཀྱི་མཚན་ཉིད་ཡིན།</seg>
</tuv>
<tuv xml:lang="en">
<seg>Such is the definition of the mind of awakening.</seg>
</tuv>
</tu>
<tu id="UT22084-060-002-TU-95">
<prop type="location-id">UT22084-060-002-62</prop>
<tuv xml:lang="bo">
<seg>།དཔེ་མེད་བསྒོམ་དུ་མེད་པ་དང་། །མཐོང་མིན་གནས་ཀྱི་མཆོག་གྱུར་ལ།</seg>
</tuv>
<tuv xml:lang="en">
<seg>
<tei:milestone xml:id="UT22084-060-002-62"/>“Beyond analogy, it is nothing to meditate on. The supreme unseen abode,</seg>
</tuv>
</tu>
<tu id="UT22084-060-002-TU-96">
<prop type="location-id">UT22084-060-002-62</prop>
<tuv xml:lang="bo">
<seg>།རང་བཞིན་གྱིས་ནི་རྣམ་དག་པ།</seg>
</tuv>
<tuv xml:lang="en">
<seg>Completely pure by nature—</seg>
</tuv>
</tu>
<tu id="UT22084-060-002-TU-97">
<prop type="location-id">UT22084-060-002-62</prop>
<tuv xml:lang="bo">
<seg>།བྱང་ཆུབ་སེམས་ཀྱི་མཚན་ཉིད་ཡིན།</seg>
</tuv>
<tuv xml:lang="en">
<seg>Such is the definition of the mind of awakening.</seg>
</tuv>
</tu>
<tu id="UT22084-060-002-TU-98">
<prop type="location-id">UT22084-060-002-63</prop>
<tuv xml:lang="bo">
<seg>།ཐམས་ཅད་དབུ་བ་ལྟ་བུ་སྟེ།</seg>
</tuv>
<tuv xml:lang="en">
<seg>
<tei:milestone xml:id="UT22084-060-002-63"/>“All things are like foam,</seg>
</tuv>
</tu>
<tu id="UT22084-060-002-TU-99">
<prop type="location-id">UT22084-060-002-63</prop>
<tuv xml:lang="bo">
<seg>།ཆུ་བུར་ལྟ་བུར་སྙིང་པོ་མེད།</seg>
</tuv>
<tuv xml:lang="en">
<seg>Essenceless like water bubbles,</seg>
</tuv>
</tu>
<tu id="UT22084-060-002-TU-100">
<prop type="location-id">UT22084-060-002-63</prop>
<tuv xml:lang="bo">
<seg>།རྟག་པ་མ་ཡིན་བདག་མེད་པ།</seg>
</tuv>
<tuv xml:lang="en">
<seg>Neither permanent nor having self.</seg>
</tuv>
</tu>
<tu id="UT22084-060-002-TU-101">
<prop type="location-id">UT22084-060-002-63</prop>
<tuv xml:lang="bo">
<seg>།སྒྱུ་མ་སྨིག་རྒྱུ་དག་དང་མཚུངས།</seg>
</tuv>
<tuv xml:lang="en">
<seg>They are similar to magical illusions and mirages.</seg>
</tuv>
</tu>
<tu id="UT22084-060-002-TU-102">
<prop type="location-id">UT22084-060-002-64</prop>
<tuv xml:lang="bo">
<seg>།གོང་བུ་བཞིན་དུ་བསྡུས་གྱུར་པ།</seg>
</tuv>
<tuv xml:lang="en">
<seg>
<tei:milestone xml:id="UT22084-060-002-64"/>“Like a vase that is made from a lump of clay,<tei:note xml:id="UT22084-060-002-105"/>
</seg>
</tuv>
</tu>
<tu id="UT22084-060-002-TU-103">
<prop type="location-id">UT22084-060-002-64</prop>
<tuv xml:lang="bo">
<seg>།སྤྲོས་པ་རྣམས་ཀྱིས་ཡོངས་སུ་གང་།</seg>
</tuv>
<tuv xml:lang="en">
<seg>Beings are filled with conceptual elaborations—</seg>
</tuv>
</tu>
<tu id="UT22084-060-002-TU-104">
<prop type="location-id">UT22084-060-002-64</prop>
<tuv xml:lang="bo">
<seg>།འདོད་ཆགས་ཞེ་སྡང་ལ་སོགས་ལྟར།</seg>
</tuv>
<tuv xml:lang="en">
<seg>Desire, anger, and so forth—</seg>
</tuv>
</tu>
<tu id="UT22084-060-002-TU-105">
<prop type="location-id">UT22084-060-002-64</prop>
<tuv xml:lang="bo">
<seg>།དེ་ནི་སྒྱུ་མཚུངས་འབའ་ཞིག་ཡིན།</seg>
</tuv>
<tuv xml:lang="en">
<seg>They are utterly illusion-like.</seg>
</tuv>
</tu>
<tu id="UT22084-060-002-TU-106">
<prop type="location-id">UT22084-060-002-65</prop>
<tuv xml:lang="bo">
<seg>།ཇི་ལྟར་ནང་ན་ཐིག་ལེ་ནི།</seg>
</tuv>
<tuv xml:lang="en">
<seg>
<tei:milestone xml:id="UT22084-060-002-65"/>“Just as in the morning where there was a dew drop</seg>