-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathtoh118-v3.tmx
More file actions
2669 lines (2669 loc) · 168 KB
/
toh118-v3.tmx
File metadata and controls
2669 lines (2669 loc) · 168 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="linguae-dharmae/84000" datatype="PlainText" segtype="block" adminlang="en-us" srclang="bo" o-tmf="TEI" eft:text-id="UT22084-051-006" eft:text-version="v-1.0.6-2023"/>
<body>
<tu id="UT22084-051-006-TU-1">
<prop type="location-id">translation</prop>
<tuv xml:lang="bo">
<seg>
<tei:ref folio="F.290.b"/>༄༅༅། །རྒྱ་གར་སྐད་དུ། ཨཱརྱ་རཏྣ་ཀོ་ཊི་ནཱ་མ་མ་ཧཱ་ཡཱ་ན་སཱུ་ཏྲ། བོད་སྐད་དུ།</seg>
</tuv>
<tuv xml:lang="en">
<seg/>
</tuv>
</tu>
<tu id="UT22084-051-006-TU-2">
<prop type="location-id">translation</prop>
<tuv xml:lang="bo">
<seg>འཕགས་པ་རིན་པོ་ཆེའི་མཐའ་ཞེས་བྱ་བ་ཐེག་པ་ཆེན་པོའི་མདོ།</seg>
</tuv>
<tuv xml:lang="en">
<seg>The Noble Great Vehicle Sūtra Infinite Jewels</seg>
</tuv>
</tu>
<tu id="UT22084-051-006-TU-3">
<prop type="location-id">UT22084-051-006-19</prop>
<tuv xml:lang="bo">
<seg>སངས་རྒྱས་དང་བྱང་ཆུབ་སེམས་དཔའ་ཐམས་ཅད་ལ་ཕྱག་འཚལ་ལོ།</seg>
</tuv>
<tuv xml:lang="en">
<seg>
<tei:milestone xml:id="UT22084-051-006-19"/>Homage to all buddhas and bodhisattvas!</seg>
</tuv>
</tu>
<tu id="UT22084-051-006-TU-4">
<prop type="location-id">UT22084-051-006-21</prop>
<tuv xml:lang="bo">
<seg>།འདི་སྐད་བདག་གིས་ཐོས་པ་དུས་གཅིག་ན།</seg>
</tuv>
<tuv xml:lang="en">
<seg>
<tei:milestone xml:id="UT22084-051-006-21"/>Thus did I hear at one time.</seg>
</tuv>
</tu>
<tu id="UT22084-051-006-TU-5">
<prop type="location-id">UT22084-051-006-21</prop>
<tuv xml:lang="bo">
<seg>བཅོམ་ལྡན་འདས་རྒྱལ་པོའི་ཁབ་ན་བྱ་རྒོད་ཀྱི་ཕུང་པོའི་རི་ལ་དགེ་སློང་ལྔ་བརྒྱ་ཐམ་པའི་དགེ་སློང་གི་དགེ་འདུན་ཆེན་པོ་དང་ཐབས་ཅིག་ཏུ་བཞུགས་ཏེ།</seg>
</tuv>
<tuv xml:lang="en">
<seg>The Blessed One was dwelling on Vulture Peak Mountain near Rājagṛha, together with a great saṅgha of five hundred monks.</seg>
</tuv>
</tu>
<tu id="UT22084-051-006-TU-6">
<prop type="location-id">UT22084-051-006-21</prop>
<tuv xml:lang="bo">
<seg>དེ་ནས་འཇམ་དཔལ་གཞོན་ནུར་གྱུར་པ་མཚན་མོ་སྲོད་ལ་བཅོམ་ལྡན་འདས་ཀྱི་བཞུགས་ཁང་ག་ལ་བ་དེར་སོང་སྟེ་ཕྱིན་ནས་བཞུགས་ཁང་གི་སྒོ་དྲུང་ན་འགྲེང་སྟེ་བཅོམ་ལྡན་འདས་ལ་སྡོད་དོ།</seg>
</tuv>
<tuv xml:lang="en">
<seg>At dusk Youthful Mañjuśrī went to the Blessed One’s residence, stood at the door, and praised<tei:note xml:id="UT22084-051-006-22"/> the Blessed One.</seg>
</tuv>
</tu>
<tu id="UT22084-051-006-TU-7">
<prop type="location-id">UT22084-051-006-21</prop>
<tuv xml:lang="bo">
<seg>།དེའི་ཚེ་བཅོམ་ལྡན་འདས་རིན་པོ་ཆེའི་མཐའ་ཞེས་བྱ་བའི་ཏིང་ངེ་འཛིན་ལ་སྙོམས་པར་ཞུགས་སོ།</seg>
</tuv>
<tuv xml:lang="en">
<seg>At that time, the Blessed One was resting in equipoise in the absorption known as infinite jewels.</seg>
</tuv>
</tu>
<tu id="UT22084-051-006-TU-8">
<prop type="location-id">UT22084-051-006-21</prop>
<tuv xml:lang="bo">
<seg>།དེ་ནས་བཅོམ་ལྡན་འདས་དྲན་པ་དང་མཁྱེན་བཞིན་དུ་ཏིང་ངེ་འཛིན་དེ་ལས་བཞེངས་ནས་འཇམ་དཔལ་གཞོན་ནུར་གྱུར་པ་སྒོ་ན་འདུག་པ་གཟིགས་སོ། །གཟིགས་ནས་ཀྱང་འཇམ་དཔལ་ཁྱོད་ནང་དུ་ཤོག་ཅེས་དེ་སྐད་ཅེས་བཀའ་སྩལ་ཏོ།</seg>
</tuv>
<tuv xml:lang="en">
<seg>Mindful and alert, the Blessed One then arose from that absorption. He saw that Youthful Mañjuśrī was at the door and said, “Please come inside, Mañjuśrī.”</seg>
</tuv>
</tu>
<tu id="UT22084-051-006-TU-9">
<prop type="location-id">UT22084-051-006-23</prop>
<tuv xml:lang="bo">
<seg>།བཅོམ་ལྡན་འདས་ལེགས་སོ་ལེགས་སོ་ཞེས་གསོལ་ཏེ། འཇམ་དཔལ་གཞོན་ནུར་གྱུར་པས་བཅོམ་ལྡན་འདས་ཀྱི་ལྟར་མཉན་ནས་བཅོམ་ལྡན་འདས་ག་ལ་བ་དེར་སོང་སྟེ་ཕྱིན་ནས།</seg>
</tuv>
<tuv xml:lang="en">
<seg>
<tei:milestone xml:id="UT22084-051-006-23"/>“Very well, Blessed One, very well,” replied Youthful Mañjuśrī, and, heeding the Blessed One’s words, he went before the Blessed One.</seg>
</tuv>
</tu>
<tu id="UT22084-051-006-TU-10">
<prop type="location-id">UT22084-051-006-23</prop>
<tuv xml:lang="bo">
<seg>བཅོམ་ལྡན་འདས་ཀྱི་ཞབས་ལ་མགོ་བོས་ཕྱག་འཚལ་ཏེ་ཕྱོགས་གཅིག་ཏུ་འགྲེང་ངོ་།</seg>
</tuv>
<tuv xml:lang="en">
<seg>He prostrated, placing his head at the Blessed One’s feet, and stood to one side.</seg>
</tuv>
</tu>
<tu id="UT22084-051-006-TU-11">
<prop type="location-id">UT22084-051-006-23</prop>
<tuv xml:lang="bo">
<seg>།འཇམ་དཔལ་གཞོན་ནུར་གྱུར་པ་ཕྱོགས་གཅིག་ཏུ་འགྲེང་བ་དང་། བཅོམ་ལྡན་འདས་ཀྱིས་སྟན་ལ་འདུག་ཅེས་གནང་བ་མཛད་དོ། །བཅོམ་ལྡན་འདས་ཀྱིས་གནང་བས་དེ་ནས་འཇམ་དཔལ་གཞོན་ནུར་གྱུར་པ། བཅོམ་ལྡན་འདས་ག་ལ་བ་དེ་ལོགས་སུ་ཐལ་མོ་སྦྱར་བ་བཏུད་དེ་ཕྱོགས་གཅིག་ཏུ་འདུག་གོ།</seg>
</tuv>
<tuv xml:lang="en">
<seg>The Blessed One gave Youthful Mañjuśrī permission to sit, and, with the Blessed One’s permission, Youthful Mañjuśrī bowed with palms joined and then sat to one side of the Blessed One.</seg>
</tuv>
</tu>
<tu id="UT22084-051-006-TU-12">
<prop type="location-id">UT22084-051-006-24</prop>
<tuv xml:lang="bo">
<seg>།ཕྱོགས་གཅིག་ཏུ་འདུག་ནས་བཅོམ་ལྡན་འདས་ལ་འཇམ་དཔལ་གཞོན་ནུར་གྱུར་པས་འདི་སྐད་ཅེས་གསོལ་ཏོ། །བཅོམ་ལྡན་འདས་ད་གདོད་ཏིང་ངེ་འཛིན་གང་གིས་བཞུགས་བཞུགས་པ་ལས་བཞེངས་ལགས།</seg>
</tuv>
<tuv xml:lang="en">
<seg>
<tei:milestone xml:id="UT22084-051-006-24"/>Sitting to one side, Youthful Mañjuśrī asked the Blessed One, “What was the absorption from which you just arose, Blessed One?”</seg>
</tuv>
</tu>
<tu id="UT22084-051-006-TU-13">
<prop type="location-id">UT22084-051-006-25</prop>
<tuv xml:lang="bo">
<seg>དེ་སྐད་ཅེས་གསོལ་པ་དང་། བཅོམ་ལྡན་འདས་ཀྱིས་འཇམ་<tei:ref folio="F.291.a"/>དཔལ་གཞོན་ནུར་གྱུར་པ་ལ་འདི་སྐད་ཅེས་བཀའ་སྩལ་ཏོ། །འཇམ་དཔལ་རིན་པོ་ཆེའི་མཐའ་ཞེས་བྱ་བའི་ཏིང་ངེ་འཛིན་ཡོད་དོ།</seg>
</tuv>
<tuv xml:lang="en">
<seg>
<tei:milestone xml:id="UT22084-051-006-25"/>“Mañjuśrī, there is an absorption called infinite jewels,” replied the Blessed One to Youthful Mañjuśrī.</seg>
</tuv>
</tu>
<tu id="UT22084-051-006-TU-14">
<prop type="location-id">UT22084-051-006-25</prop>
<tuv xml:lang="bo">
<seg>།ཏིང་ངེ་འཛིན་དེས་ང་ད་གདོད་གནས་གནས་པ་ལས་ལངས་སོ།</seg>
</tuv>
<tuv xml:lang="en">
<seg>“That is the absorption from which I just arose.”</seg>
</tuv>
</tu>
<tu id="UT22084-051-006-TU-15">
<prop type="location-id">UT22084-051-006-26</prop>
<tuv xml:lang="bo">
<seg>།གསོལ་པ། བཅོམ་ལྡན་འདས་ཅིའི་སླད་དུ་དེ་ལ་རིན་པོ་ཆེའི་མཐའ་ཞེས་བགྱི་ལགས། བཅོམ་ལྡན་འདས་ཀྱིས་བཀའ་སྩལ་པ།</seg>
</tuv>
<tuv xml:lang="en">
<seg>
<tei:milestone xml:id="UT22084-051-006-26"/>“Blessed One, why is it called infinite jewels?”</seg>
</tuv>
</tu>
<tu id="UT22084-051-006-TU-16">
<prop type="location-id">UT22084-051-006-26</prop>
<tuv xml:lang="bo">
<seg>འཇམ་དཔལ་འདི་ལྟ་སྟེ། དཔེར་ན་ནོར་བུ་རིན་པོ་ཆེ་ཤིན་ཏུ་དག་ཅིང་ཤིན་ཏུ་བྱི་དོར་བྱས་པ་ས་ཕྱོགས་མཉམ་པ་ལ་བཞག་ན་དེ་གང་དང་གང་ཁོ་ནར་བཞག་པ་དེ་དང་དེར་རིན་པོ་ཆེ་བྱེ་བ་གནས་པར་འགྱུར་རོ།</seg>
</tuv>
<tuv xml:lang="en">
<seg>The Blessed One responded, “Mañjuśrī, take as an analogy an exceedingly pure and well-polished precious jewel. If it is placed on level ground, then wherever it is placed, there will be untold millions of jewels.</seg>
</tuv>
</tu>
<tu id="UT22084-051-006-TU-17">
<prop type="location-id">UT22084-051-006-26</prop>
<tuv xml:lang="bo">
<seg>།འཇམ་དཔལ་དེ་བཞིན་དུ་ང་ཏིང་ངེ་འཛིན་དེ་ལ་གནས་ནས་ཤར་ཕྱོགས་སུ་བལྟས་ཏེ། ཤར་ཕྱོགས་སུ་བལྟས་ན་ངས་འཇིག་རྟེན་གྱི་ཁམས་དཔག་ཏུ་མེད་གྲངས་མེད་པ་དག་ན་དེ་བཞིན་གཤེགས་པ་དགྲ་བཅོམ་པ་ཡང་དག་པར་རྫོགས་པའི་སངས་རྒྱས་ཆོས་སྟོན་ཅིང་བཞུགས་པ་དག་མཐོང་ངོ་།</seg>
</tuv>
<tuv xml:lang="en">
<seg>In the same way, Mañjuśrī, when I remain in this absorption and look to the east, I see thus-gone ones, worthy ones, perfect buddhas abiding and teaching the Dharma in countless, innumerable world systems.</seg>
</tuv>
</tu>
<tu id="UT22084-051-006-TU-18">
<prop type="location-id">UT22084-051-006-26</prop>
<tuv xml:lang="bo">
<seg>།དེ་བཞིན་དུ་ལྷོ་ཕྱོགས་དང་། ནུབ་ཕྱོགས་དང་། བྱང་ཕྱོགས་དང་། འོག་དང་། སྟེང་ནས་ཕྱོགས་བཅུའི་བར་དུ་བལྟས་ན་ངས་འཇིག་རྟེན་གྱི་ཁམས་དཔག་ཏུ་མེད་པ་དག་ན་དེ་བཞིན་གཤེགས་པ་དགྲ་བཅོམ་པ་ཡང་དག་པར་རྫོགས་པའི་སངས་རྒྱས་ཆོས་སྟོན་ཅིང་བཞུགས་པ་དག་མཐོང་ངོ་།</seg>
</tuv>
<tuv xml:lang="en">
<seg>It is the same to the south, west, north, below, and above. When I look in the ten directions, I see thus-gone ones, worthy ones, perfect buddhas abiding and teaching the Dharma in boundless world systems.</seg>
</tuv>
</tu>
<tu id="UT22084-051-006-TU-19">
<prop type="location-id">UT22084-051-006-26</prop>
<tuv xml:lang="bo">
<seg>།འཇམ་དཔལ་ངས་ཏིང་ངེ་འཛིན་འདི་ལ་གནས་ནས་གང་ཡང་དག་པའི་མཐའ་མ་ཡིན་པའི་ཆོས་དེ་གང་ཡང་ཡང་དག་པར་རྗེས་སུ་མ་མཐོང་ངོ་།</seg>
</tuv>
<tuv xml:lang="en">
<seg>Remaining in this absorption, Mañjuśrī, I do not actually see any phenomenon whatsoever that is not the limit of reality.</seg>
</tuv>
</tu>
<tu id="UT22084-051-006-TU-20">
<prop type="location-id">UT22084-051-006-26</prop>
<tuv xml:lang="bo">
<seg>།འཇམ་དཔལ་ཡང་དག་པའི་མཐའི་ཕྱག་རྒྱ་འདི་ངས་ཕྱག་རྒྱར་བཞག་སྟེ།</seg>
</tuv>
<tuv xml:lang="en">
<seg>Mañjuśrī, I posit this seal of the limit of reality as my seal.</seg>
</tuv>
</tu>
<tu id="UT22084-051-006-TU-21">
<prop type="location-id">UT22084-051-006-26</prop>
<tuv xml:lang="bo">
<seg>དད་པ་ཅན་གྱི་རིགས་ཀྱི་བུ་རྣམས་དང་། རིགས་ཀྱི་བུ་མོ་རྣམས་ཀྱིས་ཕྱག་རྒྱ་འདི་ལ་སྤྱད་ན་སྤོབས་པ་མི་ཆོད་པ་འཛིན་པར་འགྱུར་རོ། །གསོལ་པ།</seg>
</tuv>
<tuv xml:lang="en">
<seg>Faithful noble sons and daughters who engage in this seal will gain uninterrupted eloquence.”</seg>
</tuv>
</tu>
<tu id="UT22084-051-006-TU-22">
<prop type="location-id">UT22084-051-006-28</prop>
<tuv xml:lang="bo">
<seg>བཅོམ་ལྡན་འདས་བདག་སྤོབས་ལགས་སོ།</seg>
</tuv>
<tuv xml:lang="en">
<seg>
<tei:milestone xml:id="UT22084-051-006-28"/>“Blessed One, I have something to say.</seg>
</tuv>
</tu>
<tu id="UT22084-051-006-TU-23">
<prop type="location-id">UT22084-051-006-28</prop>
<tuv xml:lang="bo">
<seg>།བདེ་བར་གཤེགས་པ་སྤོབས་ལགས་སོ།</seg>
</tuv>
<tuv xml:lang="en">
<seg>Well-Gone One, I have something to say.”</seg>
</tuv>
</tu>
<tu id="UT22084-051-006-TU-24">
<prop type="location-id">UT22084-051-006-28</prop>
<tuv xml:lang="bo">
<seg>།བཀའ་སྩལ་པ། འཇམ་དཔལ་ཁྱོད་སྤོབས་པར་གྱིས་ཤིག །གསོལ་པ།</seg>
</tuv>
<tuv xml:lang="en">
<seg>“Then speak, Mañjuśrī.”</seg>
</tuv>
</tu>
<tu id="UT22084-051-006-TU-25">
<prop type="location-id">UT22084-051-006-30</prop>
<tuv xml:lang="bo">
<seg>བཅོམ་ལྡན་འདས་དཔེར་བགྱི་ན་ནོར་བུ་རིན་པོ་ཆེ་དེ་ཉིད་ངོས་གང་དང་གང་ཁོ་ནས་ཕབ་སྟེ་གཞག་པའི་རིན་པོ་ཆེའི་ངོས་དེ་དང་དེ་ཁོ་ན་འབབ་ཅིང་གནས་<tei:ref folio="F.291.b"/>པར་འགྱུར་ལགས་སོ། །བཅོམ་ལྡན་འདས་དེ་བཞིན་དུ་ཆོས་ཐམས་ཅད་ནི་ཡང་དག་པའི་མཐའ་ཁོ་ནས་གནས་ལགས་སོ།</seg>
</tuv>
<tuv xml:lang="en">
<seg>
<tei:milestone xml:id="UT22084-051-006-30"/>“Blessed One, take as an analogy that very same precious jewel. Whatever facet it is set down upon, it will rest on precisely that facet of the precious jewel.<tei:note xml:id="UT22084-051-006-31"/> Blessed One, in the same way, all phenomena abide only as the limit of reality.”</seg>
</tuv>
</tu>
<tu id="UT22084-051-006-TU-26">
<prop type="location-id">UT22084-051-006-32</prop>
<tuv xml:lang="bo">
<seg>།བཀའ་སྩལ་པ། འཇམ་དཔལ་ཁྱོད་ཀྱིས་ཡང་དག་པའི་མཐའ་ཤེས་སམ། གསོལ་པ།</seg>
</tuv>
<tuv xml:lang="en">
<seg>
<tei:milestone xml:id="UT22084-051-006-32"/>“Mañjuśrī, do you know the limit of reality?”</seg>
</tuv>
</tu>
<tu id="UT22084-051-006-TU-27">
<prop type="location-id">UT22084-051-006-32</prop>
<tuv xml:lang="bo">
<seg>བཅོམ་ལྡན་འདས་འཚལ་ལགས་སོ།</seg>
</tuv>
<tuv xml:lang="en">
<seg>“I do, Blessed One.”</seg>
</tuv>
</tu>
<tu id="UT22084-051-006-TU-28">
<prop type="location-id">UT22084-051-006-34</prop>
<tuv xml:lang="bo">
<seg>།བཀའ་སྩལ་པ། འཇམ་དཔལ་འོ་ན་ཡང་དག་པའི་མཐའ་གང་ན་འདུག །གསོལ་པ།</seg>
</tuv>
<tuv xml:lang="en">
<seg>
<tei:milestone xml:id="UT22084-051-006-34"/>“Well then, Mañjuśrī, where is the limit of reality?”</seg>
</tuv>
</tu>
<tu id="UT22084-051-006-TU-29">
<prop type="location-id">UT22084-051-006-34</prop>
<tuv xml:lang="bo">
<seg>བཅོམ་ལྡན་འདས་ཡང་དག་པའི་མཐའ་ནི་བདག་གི་མཐའ་གང་ན་མཆིས་པ་དེ་ན་མཆིས་ལགས་སོ།</seg>
</tuv>
<tuv xml:lang="en">
<seg>“Blessed One, the limit of reality is wherever my limit is.</seg>
</tuv>
</tu>
<tu id="UT22084-051-006-TU-30">
<prop type="location-id">UT22084-051-006-34</prop>
<tuv xml:lang="bo">
<seg>།ཡང་དག་པའི་མཐའ་ནི་སོ་སོའི་སྐྱེ་བོའི་ཆོས་རྣམས་གང་ན་མ་མཆིས་པ་དེ་ན་མཆིས་ལགས་སོ།</seg>
</tuv>
<tuv xml:lang="en">
<seg>The limit of reality is wherever the phenomena of ordinary beings are not.</seg>
</tuv>
</tu>
<tu id="UT22084-051-006-TU-31">
<prop type="location-id">UT22084-051-006-34</prop>
<tuv xml:lang="bo">
<seg>།ཡང་དག་པའི་མཐའ་ནི་ལས་སམ། རྣམ་པར་སྨིན་པ་ཡང་མ་ལགས་ལ་ཆོས་ཐམས་ཅད་ཀྱི་མཐའ་ཡང་དེ་ཁོ་ན་ལགས་སོ།</seg>
</tuv>
<tuv xml:lang="en">
<seg>The limit of reality is not karma or ripening but only the limit of all phenomena.</seg>
</tuv>
</tu>
<tu id="UT22084-051-006-TU-32">
<prop type="location-id">UT22084-051-006-34</prop>
<tuv xml:lang="bo">
<seg>།བཅོམ་ལྡན་འདས་གང་དག་དེ་ལྟར་མོས་པ་དེ་དག་ནི་གང་ལས་ཀྱང་རྣམ་པར་གྲོལ་བ་མ་མཆིས་ལགས་སོ།</seg>
</tuv>
<tuv xml:lang="en">
<seg>Blessed One, those who have such conviction are not liberated from anything at all.</seg>
</tuv>
</tu>
<tu id="UT22084-051-006-TU-33">
<prop type="location-id">UT22084-051-006-34</prop>
<tuv xml:lang="bo">
<seg>།གང་དག་གང་ལས་ཀྱང་གྲོལ་བ་མ་མཆིས་པ་དེ་དག་ནི་ལོག་པ་ལས་རྣམ་པར་གྲོལ་བ་ལགས་སོ།</seg>
</tuv>
<tuv xml:lang="en">
<seg>Those who are not liberated from anything at all are liberated from being mistaken.</seg>
</tuv>
</tu>
<tu id="UT22084-051-006-TU-34">
<prop type="location-id">UT22084-051-006-34</prop>
<tuv xml:lang="bo">
<seg>།གང་དག་ལོག་པ་ལས་རྣམ་པར་གྲོལ་བ་དེ་དག་ནི་ཡང་དག་པར་རྣམ་པར་གྲོལ་བ་ལགས་སོ།</seg>
</tuv>
<tuv xml:lang="en">
<seg>Those who are liberated from being mistaken are truly liberated.</seg>
</tuv>
</tu>
<tu id="UT22084-051-006-TU-35">
<prop type="location-id">UT22084-051-006-34</prop>
<tuv xml:lang="bo">
<seg>།གང་དག་ཡང་དག་པར་རྣམ་པར་གྲོལ་བ་དེ་དག་ནི་སྤྱོད་ཡུལ་མ་ལགས་པ་ལ་ཞུགས་པ་ལགས་སོ། །གང་དག་སྤྱོད་ཡུལ་མ་ལགས་པ་ལ་ཞུགས་པ་དེ་དག་ནི་ཡང་དག་པར་ཞུགས་པ་ལགས་སོ། །དེ་ཅིའི་སླད་དུ་ཞེ་ན།</seg>
</tuv>
<tuv xml:lang="en">
<seg>Those who are truly liberated have entered what is not an objective world.<tei:note xml:id="UT22084-051-006-36"/> Those who have entered what is not an objective world have entered into reality. And why?</seg>
</tuv>
</tu>
<tu id="UT22084-051-006-TU-36">
<prop type="location-id">UT22084-051-006-34</prop>
<tuv xml:lang="bo">
<seg>བཅོམ་ལྡན་འདས་སྤྱོད་ཡུལ་མ་ལགས་པ་ཞེས་བགྱི་བ་ནི་སྤྱོད་ཡུལ་དེས་བགྱིས་ལགས་པ་སྟེ། དེའི་སླད་དུ་སྤྱོད་ཡུལ་མ་ལགས་པ་ཞེས་འདོགས་ལགས་སོ།</seg>
</tuv>
<tuv xml:lang="en">
<seg>Blessed One, when one thinks, ‘It is not an objective world,’ then one has already made it an objective world.<tei:note xml:id="UT22084-051-006-37"/> It is on account of that that we label it not an objective world.”</seg>
</tuv>
</tu>
<tu id="UT22084-051-006-TU-37">
<prop type="location-id">UT22084-051-006-38</prop>
<tuv xml:lang="bo">
<seg>།བཀའ་སྩལ་པ། འཇམ་དཔལ་སྤྱོད་ཡུལ་མ་ཡིན་པ་ཞེས་བྱ་བ་དེ་གང་གི་ཚིག་བླ་དགས་ཡིན།</seg>
</tuv>
<tuv xml:lang="en">
<seg>
<tei:milestone xml:id="UT22084-051-006-38"/>“Mañjuśrī, what does not an objective world refer to?”</seg>
</tuv>
</tu>
<tu id="UT22084-051-006-TU-38">
<prop type="location-id">UT22084-051-006-38</prop>
<tuv xml:lang="bo">
<seg>གསོལ་པ། བཅོམ་ལྡན་འདས་སྤྱོད་ཡུལ་མ་ལགས་པ་ཞེས་བགྱི་བ་དེ་ནི་ཡང་དག་པའི་མཐའི་ཚིག་བླ་དགས་ལགས་སོ།</seg>
</tuv>
<tuv xml:lang="en">
<seg>“Blessed One, not an objective world refers to the limit of reality.”</seg>
</tuv>
</tu>
<tu id="UT22084-051-006-TU-39">
<prop type="location-id">UT22084-051-006-40</prop>
<tuv xml:lang="bo">
<seg>།བཀའ་སྩལ་པ། འཇམ་དཔལ་ལམ་སྒོམ་པ་ཞེས་བྱ་བ་དེ་གང་གི་ཚིག་བླ་དགས་ཡིན།</seg>
</tuv>
<tuv xml:lang="en">
<seg>
<tei:milestone xml:id="UT22084-051-006-40"/>“Mañjuśrī, what does cultivating the path refer to?”</seg>
</tuv>
</tu>
<tu id="UT22084-051-006-TU-40">
<prop type="location-id">UT22084-051-006-40</prop>
<tuv xml:lang="bo">
<seg>གསོལ་པ། བཅོམ་ལྡན་འདས་ལམ་བསྒོམ་པ་ཞེས་བགྱི་བ་དེ་ནི་ལམ་སྒོམ་པ་མ་མཆིས་པའི་ཚིག་བླ་དགས་ལགས་སོ།</seg>
</tuv>
<tuv xml:lang="en">
<seg>“Blessed One, cultivating the path refers to not cultivating the path.”</seg>
</tuv>
</tu>
<tu id="UT22084-051-006-TU-41">
<prop type="location-id">UT22084-051-006-42</prop>
<tuv xml:lang="bo">
<seg>།བཀའ་སྩལ་པ། འཇམ་དཔལ་<tei:ref folio="F.292.a"/>ཁྱོད་ལས་དང་པོ་པའི་རིགས་ཀྱི་བུ་རྣམས་དང་། རིགས་ཀྱི་བུ་མོ་རྣམས་ལ་ཆོས་ཇི་ལྟར་སྟོན། གསོལ་པ།</seg>
</tuv>
<tuv xml:lang="en">
<seg>
<tei:milestone xml:id="UT22084-051-006-42"/>“Mañjuśrī, how do you teach the Dharma to noble sons and daughters who are beginners?”</seg>
</tuv>
</tu>
<tu id="UT22084-051-006-TU-42">
<prop type="location-id">UT22084-051-006-42</prop>
<tuv xml:lang="bo">
<seg>བཅོམ་ལྡན་འདས་བདག་ནི་ལས་དང་པོ་པའི་རིགས་ཀྱི་བུ་རྣམས་དང་། རིགས་ཀྱི་བུ་མོ་རྣམས་ལ་འཇིག་ཚོགས་དོར་དུ་མ་མཆིས་པར་ཆོས་སྟོན་ལགས་སོ།</seg>
</tuv>
<tuv xml:lang="en">
<seg>“Blessed One, I teach the Dharma to noble sons and daughters who are beginners by teaching that the composite person should not be discarded.</seg>
</tuv>
</tu>
<tu id="UT22084-051-006-TU-43">
<prop type="location-id">UT22084-051-006-42</prop>
<tuv xml:lang="bo">
<seg>།བདག་ནི་འདོད་ཆགས་དང་། ཞེ་སྡང་དང་། གཏི་མུག་རྣམས་སྤང་དུ་མ་མཆིས་པར་ཆོས་སྟོན་པ་ལགས་སོ།</seg>
</tuv>
<tuv xml:lang="en">
<seg>When I teach the Dharma, I teach that attachment, aversion, and delusion are not to be abandoned.</seg>
</tuv>
</tu>
<tu id="UT22084-051-006-TU-44">
<prop type="location-id">UT22084-051-006-42</prop>
<tuv xml:lang="bo">
<seg>།དེ་ཅིའི་སླད་དུ་ཞེ་ན།</seg>
</tuv>
<tuv xml:lang="en">
<seg>Why is this?</seg>
</tuv>
</tu>
<tu id="UT22084-051-006-TU-45">
<prop type="location-id">UT22084-051-006-42</prop>
<tuv xml:lang="bo">
<seg>བཅོམ་ལྡན་འདས་ཆོས་འདི་རྣམས་ཀྱི་རང་བཞིན་གང་ལགས་པ་དེ་ནི་སྤང་བར་རྔོ་མི་ཐོགས་པའི་སླད་དུ་ལགས་སོ།</seg>
</tuv>
<tuv xml:lang="en">
<seg>Because, Blessed One, it is impossible to abandon whatever is the nature of these phenomena.</seg>
</tuv>
</tu>
<tu id="UT22084-051-006-TU-46">
<prop type="location-id">UT22084-051-006-42</prop>
<tuv xml:lang="bo">
<seg>།བཅོམ་ལྡན་འདས་འཇིག་ཚོགས་སམ། འཇིག་ཚོགས་ཀུན་འབྱུང་བ་སྤོང་བར་འཚལ་བ་དེ་ནི་ཡང་དག་པའི་མཐའ་སྤོང་བར་བས་ཏེ།</seg>
</tuv>
<tuv xml:lang="en">
<seg>Blessed One, to seek to abandon the composite person or the origin of the composite person would amount to abandoning the limit of reality.</seg>
</tuv>
</tu>
<tu id="UT22084-051-006-TU-47">
<prop type="location-id">UT22084-051-006-42</prop>
<tuv xml:lang="bo">
<seg>བཅོམ་ལྡན་འདས་བདག་ནི་ལས་དང་པོ་པའི་རིགས་ཀྱི་བུ་རྣམས་དང་། རིགས་ཀྱི་བུ་མོ་རྣམས་ལ་མངོན་པར་ཞེན་པ་མ་མཆིས་པའི་ཚུལ་གྱིས་སངས་རྒྱས་ཀྱི་ཆོས་རྣམས་གཟུང་བར་མི་བགྱི་བའམ། མངོན་སུམ་དུ་མི་བགྱི་བ་དང་། སོ་སོའི་སྐྱེ་བོའི་ཆོས་རྣམས་ལྷག་པར་མི་དམིགས་པའམ།</seg>
</tuv>
<tuv xml:lang="en">
<seg>Rather, Blessed One, to noble sons and daughters who are beginners I teach that, in a manner free from clinging, the Buddha’s attributes are not to be taken up or actualized, and the attributes of ordinary beings should not be grasped or abandoned.</seg>
</tuv>
</tu>
<tu id="UT22084-051-006-TU-48">
<prop type="location-id">UT22084-051-006-42</prop>
<tuv xml:lang="bo">
<seg>སྤང་བར་མི་བགྱི་བ་དེ་ལྟ་བུར་ཆོས་སྟོན་ལགས་ན་གདུལ་བ་ལས་དང་པོ་པ་རྣམས་ལ་བཅོམ་ལྡན་འདས་ཇི་ལྟར་ཆོས་སྟོན་པར་མཛད་ལགས།</seg>
</tuv>
<tuv xml:lang="en">
<seg>Blessed One, how do you teach the Dharma to those who are beginners?”</seg>
</tuv>
</tu>
<tu id="UT22084-051-006-TU-49">
<prop type="location-id">UT22084-051-006-45</prop>
<tuv xml:lang="bo">
<seg>བཀའ་སྩལ་པ། འཇམ་དཔལ་ང་ནི་གཟུགས་རྣམ་པར་འཇིག་པ་མེད་པ་དང་། སྐྱེ་བ་མེད་པར་ཆོས་སྟོན་ཏོ།</seg>
</tuv>
<tuv xml:lang="en">
<seg>
<tei:milestone xml:id="UT22084-051-006-45"/>“Mañjuśrī, I teach the Dharma whereby form does not disintegrate and is unborn.</seg>
</tuv>
</tu>
<tu id="UT22084-051-006-TU-50">
<prop type="location-id">UT22084-051-006-45</prop>
<tuv xml:lang="bo">
<seg>།ཚོར་བ་དང་། འདུ་ཤེས་དང་། འདུ་བྱེད་རྣམས་དང་། རྣམ་པར་ཤེས་པ་རྣམ་པར་འཇིག་པ་མེད་པ་དང་། སྐྱེ་བ་མེད་པར་ཆོས་སྟོན་ཏོ།</seg>
</tuv>
<tuv xml:lang="en">
<seg>I teach that feelings, perceptions, and formations, as well as consciousness, do not disintegrate and are unborn.</seg>
</tuv>
</tu>
<tu id="UT22084-051-006-TU-51">
<prop type="location-id">UT22084-051-006-45</prop>
<tuv xml:lang="bo">
<seg>།འདོད་ཆགས་དང་། ཞེ་སྡང་དང་། གཏི་མུག་རྣམས་རྣམ་པར་འཇིག་པ་མེད་པ་དང་། སྐྱེ་བ་མེད་པ་དང་། བསམ་གྱིས་མི་ཁྱབ་པའི་ཆོས་རྣམས་ཀྱང་ཐོབ་པ་མེད་པར་ཆོས་སྟོན་ཏོ།</seg>
</tuv>
<tuv xml:lang="en">
<seg>I teach the Dharma whereby attachment, aversion, and delusion do not disintegrate and are unborn, and I also teach that the inconceivable attributes are unattainable.</seg>
</tuv>
</tu>
<tu id="UT22084-051-006-TU-52">
<prop type="location-id">UT22084-051-006-45</prop>
<tuv xml:lang="bo">
<seg>།ངས་ནི་འདི་ལྟར་ཆོས་གང་ཡང་མ་བཤིག་མ་བསྐྱེད་པ་དེ་ལྟར་བླ་ན་མེད་པ་ཡང་དག་པར་རྫོགས་པའི་བྱང་ཆུབ་མངོན་པར་རྫོགས་པར་སངས་རྒྱས་སོ།</seg>
</tuv>
<tuv xml:lang="en">
<seg>It is in this way, without destroying or producing any attribute whatsoever, that I awakened to unsurpassed and perfect buddhahood.</seg>
</tuv>
</tu>
<tu id="UT22084-051-006-TU-53">
<prop type="location-id">UT22084-051-006-45</prop>
<tuv xml:lang="bo">
<seg>།འཇམ་དཔལ་སངས་རྒྱས་ཉིད་ཅེས་བྱ་བ་དེ་ནི་ཆོས་ཀྱི་དབྱིངས་ཀྱི་ཚིག་བླ་དགས་ལགས་སོ།</seg>
</tuv>
<tuv xml:lang="en">
<seg>Mañjuśrī, buddhahood is a term for the realm of phenomena.</seg>
</tuv>
</tu>
<tu id="UT22084-051-006-TU-54">
<prop type="location-id">UT22084-051-006-45</prop>
<tuv xml:lang="bo">
<seg>།སྟོབས་རྣམས་དང་། མི་འཇིགས་པ་རྣམས་དང་། མ་འདྲེས་པ་<tei:ref folio="F.292.b"/>ལ་ཐུག་པའི་སངས་རྒྱས་ཀྱི་ཆོས་གང་དག་ཡིན་པ་དེ་དག་ཀྱང་ཆོས་ཀྱི་དབྱིངས་ཁོ་ན་ཡིན་པར་ཁོང་དུ་ཆུད་པར་བྱའོ། །ངས་ནི་ཆོས་ཀྱི་དབྱིངས་ལ་འདི་ལྟ་སྟེ།</seg>
</tuv>
<tuv xml:lang="en">
<seg>One should understand that the attributes of a buddha, such as the powers, fearlessnesses, and the unique attributes, are also nothing but the realm of phenomena.</seg>
</tuv>
</tu>
<tu id="UT22084-051-006-TU-55">
<prop type="location-id">UT22084-051-006-45</prop>
<tuv xml:lang="bo">
<seg>སོ་སོའི་སྐྱེ་བོའི་ཆོས་རྣམས་སམ། དགྲ་བཅོམ་པའི་ཆོས་རྣམས་སམ། རང་སངས་རྒྱས་ཀྱི་ཆོས་རྣམས་སམ། སངས་རྒྱས་ཀྱི་ཆོས་རྣམས་ཀྱང་རུང་སྟེ། དེ་དག་ཐ་དད་པར་ཡང་དག་པར་རྗེས་སུ་མི་མཐོང་ངོ་།</seg>
</tuv>
<tuv xml:lang="en">
<seg>With regard to the realm of phenomena, I do not see any distinct attributes of ordinary beings, worthy ones, solitary buddhas, or buddhas.</seg>
</tuv>
</tu>
<tu id="UT22084-051-006-TU-56">
<prop type="location-id">UT22084-051-006-45</prop>
<tuv xml:lang="bo">
<seg>།དེ་ཅིའི་ཕྱིར་ཞེ་ན།</seg>
</tuv>
<tuv xml:lang="en">
<seg>How is this so?</seg>
</tuv>
</tu>
<tu id="UT22084-051-006-TU-57">
<prop type="location-id">UT22084-051-006-45</prop>
<tuv xml:lang="bo">
<seg>འཇམ་དཔལ་དབྱིངས་དེ་ལ་ནི་བྱེ་བྲག་མེད་དེ།</seg>
</tuv>
<tuv xml:lang="en">
<seg>Mañjuśrī, in that realm there are no distinctions;</seg>
</tuv>
</tu>
<tu id="UT22084-051-006-TU-58">
<prop type="location-id">UT22084-051-006-45</prop>
<tuv xml:lang="bo">
<seg>འདི་ལྟ་སྟེ། ཆོས་ཀྱི་དབྱིངས་སོ།</seg>
</tuv>
<tuv xml:lang="en">
<seg>such is the realm of phenomena.</seg>
</tuv>
</tu>
<tu id="UT22084-051-006-TU-59">
<prop type="location-id">UT22084-051-006-45</prop>
<tuv xml:lang="bo">
<seg>།ཆོས་ཀྱི་དབྱིངས་ནི་མ་འདྲེས་པའི་དབྱིངས་སོ།</seg>
</tuv>
<tuv xml:lang="en">
<seg>The realm of phenomena is an unadulterated realm.</seg>
</tuv>
</tu>
<tu id="UT22084-051-006-TU-60">
<prop type="location-id">UT22084-051-006-46</prop>
<tuv xml:lang="bo">
<seg>།འཇམ་དཔལ་འདི་ལྟ་སྟེ། དཔེར་ན་ཆུ་ཀླུང་མིང་ཐ་དད་པ་དང་། ཁ་དོག་ཐ་དད་པ་དང་། རོ་ཐ་དད་པ་རྒྱ་མཚོའི་ནང་དུ་བབ་པ་རྣམས་ལ་ནི་འདི་ལྟ་སྟེ། འདི་ནི་གང་གཱའོ་ཞེའམ་སི་ཏའོ་ཞེའམ།</seg>
</tuv>
<tuv xml:lang="en">
<seg>
<tei:milestone xml:id="UT22084-051-006-46"/>“As an analogy, Mañjuśrī, consider rivers that have distinct names, colors, and waters.</seg>
</tuv>
</tu>
<tu id="UT22084-051-006-TU-61">
<prop type="location-id">UT22084-051-006-46</prop>
<tuv xml:lang="bo">
<seg>ཡ་མུ་ནའོ་ཞེས་བྱེ་བྲག་ཏུ་དབྱེ་བའམ་ཐ་དད་དུ་བྱར་མི་ནུས་སོ། །འཇམ་དཔལ་དེ་བཞིན་དུ་མིང་ཐ་དད་པའི་ཆོས་རྣམས་ཀྱང་ཆོས་ཀྱི་དབྱིངས་ལ་འདི་ནི་སོ་སོའི་སྐྱེ་བོའི་ཆོས་རྣམས་སོ་ཞེའམ། ཉན་ཐོས་དང་། རང་སངས་རྒྱས་དང་། བྱང་ཆུབ་སེམས་དཔའ་དང་། སངས་རྒྱས་ཀྱི་ཆོས་རྣམས་སོ་ཞེས་ཐ་དད་པར་གདགས་པར་མི་ནུས་སོ།</seg>
</tuv>
<tuv xml:lang="en">
<seg>When they flow into the ocean it becomes impossible to differentiate them or identify them, saying, ‘This is the Ganges,’ ‘This is the Sītā,’ or ‘This is the Yamunā.’ Similarly, Mañjuśrī, within the realm of phenomena, all those phenomena that have different names cannot be distinctly labeled, saying, ‘These are the attributes of ordinary beings, and here are those of the hearers, solitary buddhas, bodhisattvas, and buddhas.’</seg>
</tuv>
</tu>
<tu id="UT22084-051-006-TU-62">
<prop type="location-id">UT22084-051-006-47</prop>
<tuv xml:lang="bo">
<seg>།འཇམ་དཔལ་འདི་ལྟ་སྟེ།</seg>
</tuv>
<tuv xml:lang="en">
<seg>
<tei:milestone xml:id="UT22084-051-006-47"/>“Mañjuśrī, consider this analogy.</seg>
</tuv>
</tu>
<tu id="UT22084-051-006-TU-63">
<prop type="location-id">UT22084-051-006-47</prop>
<tuv xml:lang="bo">
<seg>དཔེར་ན་འབྲུའི་ཕུང་པོ་སྣ་ཚོགས་ལ་ནི་འདི་ནི་འབྲུ་ཆེ་གེ་མོ་ཞིག་གི་ཕུང་པོའོ། །འདི་ནི་ཆེ་གེ་མོ་ཞིག་གོ་ཞེས་གདགས་སུ་ཡོད་པ་བཞིན་དུ་ཆོས་ཀྱི་དབྱིངས་ལ་ནི་འདི་དག་སོ་སོའི་སྐྱེ་བོའི་ཆོས་རྣམས་སོ་ཞེའམ། ཉན་ཐོས་དང་། རང་སངས་རྒྱས་དང་། བྱང་ཆུབ་སེམས་དཔའ་དང་། སངས་རྒྱས་ཀྱི་ཆོས་རྣམས་སོ་ཞེས་ཐ་དད་པར་གདགས་པར་མི་ནུས་སོ།</seg>
</tuv>
<tuv xml:lang="en">
<seg>If you have different heaps of grain, you can label them, saying, ‘This is a heap of such-and-such a grain, and this is such-and-such.’ However, within the realm of phenomena you cannot make such distinctions and point out the individual attributes of ordinary beings, hearers, solitary buddhas, bodhisattvas, and buddhas.</seg>
</tuv>
</tu>
<tu id="UT22084-051-006-TU-64">
<prop type="location-id">UT22084-051-006-48</prop>
<tuv xml:lang="bo">
<seg>།འཇམ་དཔལ་འདི་ལྟ་སྟེ།</seg>
</tuv>
<tuv xml:lang="en">
<seg>
<tei:milestone xml:id="UT22084-051-006-48"/>“Mañjuśrī, consider this analogy.</seg>
</tuv>
</tu>
<tu id="UT22084-051-006-TU-65">
<prop type="location-id">UT22084-051-006-48</prop>
<tuv xml:lang="bo">
<seg>དཔེར་ན་འབྲུའི་ཕུང་པོ་སྣ་ཚོགས་ལ་ནི་འདི་ནི་འབྲུ་ཆེ་གེ་མོ་ཞིག་གི་ཕུང་པོའོ། །འདི་ནི་ཆེ་གེ་མོ་ཞིག་གོ་ཞེས་གདགས་སུ་ཡོད་པ་བཞིན་དུ་ཆོས་ཀྱི་དབྱིངས་ལ་ནི་འདི་དག་ནི་སོ་སོའི་སྐྱེ་བོའི་ཆོས་རྣམས་སོ། །འདི་དག་ནི་དགྲ་བཅོམ་པའི་ཆོས་རྣམས་སོ། །འདི་དག་ནི་རང་སངས་རྒྱས་ཀྱི་ཆོས་རྣམས་སོ། །འདི་དག་ནི་བྱང་ཆུབ་སེམས་དཔའི་ཆོས་རྣམས་སོ། །འདི་དག་<tei:ref folio="F.293.a"/>ནི་སངས་རྒྱས་ཀྱི་ཆོས་རྣམས་སོ་ཞེས་ཐ་དད་པར་གདགས་པར་མི་ནུས་སོ།</seg>
</tuv>
<tuv xml:lang="en">
<seg>If you have different heaps of grain, you can label them, saying, ‘This is a heap of such-and-such a grain, and this is such-and-such.’ However, within the realm of phenomena you cannot make such distinctions, saying, ‘These are the attributes of ordinary beings, these are the attributes of worthy ones, these are the attributes of solitary buddhas, these are the attributes of bodhisattvas, and these are the attributes of buddhas.’ It cannot be pointed out or labeled, as by saying, ‘This is the realm of phenomena;</seg>
</tuv>
</tu>
<tu id="UT22084-051-006-TU-66">
<prop type="location-id">UT22084-051-006-48</prop>
<tuv xml:lang="bo">
<seg>།འདི་ནི་ཆོས་ཀྱི་དབྱིངས་ཏེ་དེ་ནི་འདི་ན་འདུག་གོ་ཞེའམ།</seg>
</tuv>
<tuv xml:lang="en">
<seg>this is where it is’ or ‘It is in such-and-such a location.’ And why not?</seg>
</tuv>
</tu>
<tu id="UT22084-051-006-TU-67">
<prop type="location-id">UT22084-051-006-48</prop>
<tuv xml:lang="bo">
<seg>ག་གེ་མོ་ཞིག་ན་འདུག་གོ་ཞེས་དེ་ལྟར་བསྟན་པའམ་གདགས་པར་མི་ནུས་སོ། །དེ་ཅིའི་ཕྱིར་ཞེ་ན། འདི་ལྟར་ཆོས་ཀྱི་དབྱིངས་ནི་བལྟར་མི་མཐོང་ཞིང་བསྟན་དུ་མེད་དེ།</seg>
</tuv>
<tuv xml:lang="en">
<seg>Because the realm of phenomena cannot be seen and cannot be shown.</seg>
</tuv>
</tu>
<tu id="UT22084-051-006-TU-68">
<prop type="location-id">UT22084-051-006-48</prop>
<tuv xml:lang="bo">
<seg>གདགས་པར་བྱ་བ་མ་ཡིན་ཞིང་གདགས་པ་ལས་ཡང་དག་པར་འདས་པའི་ཕྱིར་རོ།</seg>
</tuv>
<tuv xml:lang="en">
<seg>It is not something that can be labeled; it is beyond being labeled.</seg>
</tuv>
</tu>
<tu id="UT22084-051-006-TU-69">
<prop type="location-id">UT22084-051-006-49</prop>
<tuv xml:lang="bo">
<seg>།འགྲོ་བ་འདི་དེ་ལྟ་བུའི་དབྱིངས་ཡིན་པར་ངས་ཇི་སྐད་བསྟན་པ་ལ་གལ་ཏེ་མཚམས་མེད་པ་བྱེད་པ་དེ་ལྟར་མོས་ཏེ།</seg>
</tuv>
<tuv xml:lang="en">
<seg>
<tei:milestone xml:id="UT22084-051-006-49"/>“I have taught that beings are this realm.</seg>
</tuv>
</tu>
<tu id="UT22084-051-006-TU-70">
<prop type="location-id">UT22084-051-006-49</prop>
<tuv xml:lang="bo">
<seg>མཚམས་མེད་པ་ཡང་དེ་ལྟ་བུའི་དབྱིངས་ཡིན་པར་ཤེས་ན། དེ་ཀུན་ནས་ཉོན་མོངས་པ་ཅན་དུ་མི་འགྱུར་རོ།</seg>
</tuv>
<tuv xml:lang="en">
<seg>If one commits an act of immediate retribution yet has conviction in this teaching and understands that acts of immediate retribution are also this realm, then one will not become defiled.</seg>
</tuv>
</tu>
<tu id="UT22084-051-006-TU-71">
<prop type="location-id">UT22084-051-006-49</prop>
<tuv xml:lang="bo">
<seg>།དེ་ཅིའི་ཕྱིར་ཞེ་ན།</seg>
</tuv>
<tuv xml:lang="en">
<seg>And why not?</seg>
</tuv>
</tu>
<tu id="UT22084-051-006-TU-72">
<prop type="location-id">UT22084-051-006-49</prop>
<tuv xml:lang="bo">
<seg>འཇམ་དཔལ་མཚམས་མེད་པ་ནི་ཆོས་ཀྱི་དབྱིངས་དང་མཚུངས་པར་མཉམ་པའི་ཕྱིར་ཏེ།</seg>
</tuv>
<tuv xml:lang="en">
<seg>Because, Mañjuśrī, the acts of immediate retribution are equivalent to the realm of phenomena.</seg>
</tuv>
</tu>
<tu id="UT22084-051-006-TU-73">
<prop type="location-id">UT22084-051-006-49</prop>
<tuv xml:lang="bo">
<seg>འདི་ལྟར་མཚམས་མེད་པའི་དབྱིངས་དང་། ཆོས་ཀྱི་དབྱིངས་འདི་ནི་གཉིས་སུ་མེད་ཅིང་གཉིས་སུ་དབྱེར་མེད་དེ།</seg>
</tuv>
<tuv xml:lang="en">
<seg>In this way, the realm of the acts of immediate retribution and the realm of phenomena are nondual and inseparable.</seg>
</tuv>
</tu>
<tu id="UT22084-051-006-TU-74">
<prop type="location-id">UT22084-051-006-49</prop>
<tuv xml:lang="bo">
<seg>འདི་ལ་ནི་འོང་བའམ། འགྲོ་བའམ། ཀུན་ནས་ལྡང་བ་མི་དམིགས་སོ།</seg>
</tuv>
<tuv xml:lang="en">
<seg>Here, coming, going, or appearing are not apprehended.”</seg>
</tuv>
</tu>
<tu id="UT22084-051-006-TU-75">
<prop type="location-id">UT22084-051-006-50</prop>
<tuv xml:lang="bo">
<seg>།བཅོམ་ལྡན་འདས་ཀྱིས་དེ་སྐད་ཅེས་བཀའ་སྩལ་པ་དང་། འཇམ་དཔལ་གཞོན་ནུར་གྱུར་པས་བཅོམ་ལྡན་འདས་ལ་འདི་སྐད་ཅེས་གསོལ་ཏོ། །བཅོམ་ལྡན་འདས་བདག་གིས་ཀྱང་ཆོས་ཀྱི་དབྱིངས་ངན་སོང་དུ་མཆི་བའམ། མཐོ་རིས་སུ་མཆི་བའམ། མྱ་ངན་ལས་འདས་པར་མཆི་བར་མ་མཐོང་ལགས་སོ། །བཀའ་སྩལ་པ།</seg>
</tuv>
<tuv xml:lang="en">
<seg>
<tei:milestone xml:id="UT22084-051-006-50"/>Then Youthful Mañjuśrī said to the Blessed One, “Blessed One, I also do not see the realm of phenomena going to the lower realms, the higher realms, or nirvāṇa.”</seg>
</tuv>
</tu>
<tu id="UT22084-051-006-TU-76">
<prop type="location-id">UT22084-051-006-51</prop>
<tuv xml:lang="bo">
<seg>འཇམ་དཔལ་གལ་ཏེ། ལ་ལ་ཞིག་ཁྱོད་ལ་འདི་སྐད་དུ་འདྲི་སྟེ། ཁྱོད་ཀྱི་སྟོན་པ་འགྲོ་བ་དྲུག་དང་ལྡན་པའི་འཁོར་བ་ཇི་ལྟར་འདོགས་ཞེས་དེ་སྐད་དྲིས་ན་འཇམ་དཔལ་ཁྱོད་ཀྱིས་ཇི་སྐད་ལན་གདབ།</seg>
</tuv>
<tuv xml:lang="en">
<seg>
<tei:milestone xml:id="UT22084-051-006-51"/>“Mañjuśrī, suppose someone were to ask how your teacher designates saṃsāra with its six classes of beings. What would you answer?”</seg>
</tuv>
</tu>
<tu id="UT22084-051-006-TU-77">
<prop type="location-id">UT22084-051-006-52</prop>
<tuv xml:lang="bo">
<seg>གསོལ་པ། བཅོམ་ལྡན་འདས་དེ་སྐད་དུ་སྨྲས་ན་བདག་གིས་འདི་སྐད་དུ་ལན་གདབ་པར་བགྱི་སྟེ།</seg>
</tuv>
<tuv xml:lang="en">
<seg>
<tei:milestone xml:id="UT22084-051-006-52"/>“Blessed One, if I were asked such a question this would be my reply:</seg>
</tuv>
</tu>
<tu id="UT22084-051-006-TU-78">
<prop type="location-id">UT22084-051-006-52</prop>
<tuv xml:lang="bo">
<seg>དཔེར་ན་མི་གཉིད་ཀྱིས་ལོག་པའི་རྨི་ལམ་དུ་སེམས་ཅན་དམྱལ་བའམ། དུད་འགྲོའི་སྐྱེ་གནས་སམ། ཡི་དགས་ཀྱི་ཡུལ་ལམ། ལྷ་མ་ཡིན་གྱི་རིས་སམ། ལྷ་རྣམས་སམ།</seg>
</tuv>
<tuv xml:lang="en">
<seg>Consider the analogy of a sleeping person who in dreams sees hell beings, animal realms, lands of hungry ghosts, classes of asuras, gods, or people.</seg>
</tuv>
</tu>
<tu id="UT22084-051-006-TU-79">
<prop type="location-id">UT22084-051-006-52</prop>
<tuv xml:lang="bo">
<seg>མི་རྣམས་མཐོང་ན། བཅོམ་ལྡན་འདས་ཇི་ལྟར་གཡར་ལམ་རྨི་བའི་མིས་སྣ་ཚོགས་མཐོང་ཡང་གཡར་ལམ་སྣ་ཚོགས་<tei:ref folio="F.293.b"/>མ་མཆིས་པ་དེ་བཞིན་དུ་བདག་གིས་འགྲོ་བ་ཐ་དད་པ་བསྟན་ཀྱང་ཆོས་ཀྱི་དབྱིངས་ཀྱི་ངོ་བོ་ཉིད་ཐ་དད་པ་གདགས་པར་རྔོ་མི་ཐོགས་ཏེ།</seg>
</tuv>
<tuv xml:lang="en">
<seg>Blessed One, although the dreaming person sees myriad things, all the myriad things dreamed are not there. In the same way, although I teach distinct types of beings, it is impossible to designate distinct essences within the realm of phenomena.</seg>
</tuv>
</tu>
<tu id="UT22084-051-006-TU-80">
<prop type="location-id">UT22084-051-006-52</prop>
<tuv xml:lang="bo">
<seg>དེ་ལྟ་ལགས་པས་བཅོམ་ལྡན་འདས་བདག་གིས་ནི་དེ་སྐད་འདྲི་བ་ལ་དེ་སྐད་ཅེས་ལན་གདབ་པར་བགྱི་ལགས་སོ།</seg>
</tuv>
<tuv xml:lang="en">
<seg>That being so, Blessed One, that is how I would answer such a question.</seg>
</tuv>
</tu>
<tu id="UT22084-051-006-TU-81">
<prop type="location-id">UT22084-051-006-53</prop>
<tuv xml:lang="bo">
<seg>།བཅོམ་ལྡན་འདས་དེ་བཞིན་དུ་སངས་རྒྱས་རྣམས་དང་། བྱང་ཆུབ་སེམས་དཔའ་རྣམས་དང་། རང་སངས་རྒྱས་རྣམས་དང་། ཉན་ཐོས་ཀྱི་ཡོངས་སུ་མྱ་ངན་ལས་འདས་པ་ཡང་ཐ་དད་པར་གདགས་པར་རྔོ་མི་ཐོགས་ལགས་སོ།</seg>
</tuv>
<tuv xml:lang="en">
<seg>
<tei:milestone xml:id="UT22084-051-006-53"/>“Similarly, Blessed One, the parinirvāṇa of the buddhas, bodhisattvas, solitary buddhas, and hearers cannot be distinctly labeled.</seg>
</tuv>
</tu>
<tu id="UT22084-051-006-TU-82">
<prop type="location-id">UT22084-051-006-53</prop>
<tuv xml:lang="bo">
<seg>།བཅོམ་ལྡན་འདས་དེ་དག་གིས་གནས་པ་དག་ཀྱང་ཐ་དད་པར་གདགས་པར་རྔོ་མི་ཐོགས་ལགས་སོ།</seg>
</tuv>
<tuv xml:lang="en">
<seg>Blessed One, their ways of abiding also cannot be distinctly labeled.</seg>
</tuv>
</tu>
<tu id="UT22084-051-006-TU-83">
<prop type="location-id">UT22084-051-006-53</prop>
<tuv xml:lang="bo">
<seg>།དེ་ཅིའི་སླད་དུ་ཞེ་ན།</seg>
</tuv>
<tuv xml:lang="en">
<seg>And why not?</seg>
</tuv>
</tu>
<tu id="UT22084-051-006-TU-84">
<prop type="location-id">UT22084-051-006-53</prop>
<tuv xml:lang="bo">
<seg>འདི་ལྟར་ཆོས་ཀྱི་དབྱིངས་ལས་ཐ་མི་དད་པའི་སླད་དུ་ལགས་སོ།</seg>
</tuv>
<tuv xml:lang="en">
<seg>Because they are not distinct from the realm of phenomena.</seg>
</tuv>
</tu>
<tu id="UT22084-051-006-TU-85">
<prop type="location-id">UT22084-051-006-53</prop>
<tuv xml:lang="bo">
<seg>།བཅོམ་ལྡན་འདས་དཔེར་བགྱི་ན་རྒྱ་མཚོ་ཆེན་པོའི་རིན་པོ་ཆེ་སྣ་ཚོགས་དུང་དང་། མན་ཤེལ་དང་། བྱི་རུ་ལ་སོགས་པ་ཐ་མ་དང་། འབྲིང་དང་། མཆོག་རྣམས་ལ་འདི་ནི་རིན་པོ་ཆེ་ཆེ་གེ་མོ་ཞིག་གོ།</seg>
</tuv>
<tuv xml:lang="en">
<seg>To give an analogy, Blessed One, there are various precious substances in the sea—conch shells, crystal, coral, and the like—of lesser, middling, or superior quality. These can all be distinctly labeled, saying, ‘This is such-and-such precious substance;</seg>
</tuv>
</tu>
<tu id="UT22084-051-006-TU-86">
<prop type="location-id">UT22084-051-006-53</prop>
<tuv xml:lang="bo">
<seg>།འདི་ནི་རིན་པོ་ཆེ་ཆེ་གེ་མོ་ཞིག་གོ་ཞེས་ཐ་དད་པར་གདགས་སུ་མཆིས་ལགས་ཀྱི། ཆོས་ཀྱི་དབྱིངས་ལ་ནི་དེ་ལྟར་ཐ་དད་པར་གདགས་པའི་རྔོ་མི་ཐོགས་ལ། གདགས་པ་དེ་ལ་ཡང་ཐ་དད་པར་དབྱེར་མ་མཆིས་ལགས་སོ།</seg>
</tuv>
<tuv xml:lang="en">
<seg>this is such-and-such precious substance.’ However, such distinct labeling cannot be applied to the realm of phenomena, where such labeled distinctions cannot be differentiated.</seg>
</tuv>
</tu>
<tu id="UT22084-051-006-TU-87">
<prop type="location-id">UT22084-051-006-53</prop>
<tuv xml:lang="bo">
<seg>།དེ་ལ་ནི་འཆི་འཕོ་བ་དང་། སྐྱེ་བ་ཐ་དད་པར་གདགས་པའི་རྔོ་མི་ཐོགས་ལགས་སོ།</seg>
</tuv>
<tuv xml:lang="en">
<seg>Therein, death, transmigration, and birth cannot be distinctly labeled.</seg>
</tuv>
</tu>
<tu id="UT22084-051-006-TU-88">
<prop type="location-id">UT22084-051-006-53</prop>
<tuv xml:lang="bo">
<seg>།དེ་ཅིའི་སླད་དུ་ཞེ་ན།</seg>
</tuv>
<tuv xml:lang="en">
<seg>Why is that?</seg>
</tuv>
</tu>
<tu id="UT22084-051-006-TU-89">
<prop type="location-id">UT22084-051-006-53</prop>
<tuv xml:lang="bo">
<seg>ཆོས་ཀྱི་དབྱིངས་ལ་ནི་འཆི་འཕོའམ། སྐྱེ་བའམ། ཀུན་ནས་ཉོན་མོངས་པའམ། རྣམ་པར་བྱང་བ་མ་མཆིས་པའི་སླད་དུ་ལགས་སོ།</seg>
</tuv>
<tuv xml:lang="en">
<seg>Because the realm of phenomena is without death, transmigration, birth, pollution, and purification.</seg>
</tuv>
</tu>
<tu id="UT22084-051-006-TU-90">
<prop type="location-id">UT22084-051-006-53</prop>
<tuv xml:lang="bo">
<seg>།ཆོས་ཀྱི་དབྱིངས་ནི་ཀུན་ནས་ཉོན་མོངས་པ་ཅན་མ་ལགས།</seg>
</tuv>
<tuv xml:lang="en">
<seg>The realm of phenomena is not polluted.</seg>
</tuv>
</tu>
<tu id="UT22084-051-006-TU-91">
<prop type="location-id">UT22084-051-006-53</prop>
<tuv xml:lang="bo">
<seg>ཆོས་ཀྱི་དབྱིངས་ནི་འདྲེས་པ་མ་ལགས་ཏེ།</seg>
</tuv>
<tuv xml:lang="en">
<seg>The realm of phenomena is not adulterated.</seg>
</tuv>
</tu>
<tu id="UT22084-051-006-TU-92">
<prop type="location-id">UT22084-051-006-53</prop>
<tuv xml:lang="bo">
<seg>ཆོས་ཀྱི་དབྱིངས་ལ་ནི་གང་དག་སྤང་བར་བགྱི་བའམ། བསྐྱེད་པར་བགྱི་བའི་ཆོས་དེ་དག་མ་མཆིས་ལགས་སོ།</seg>
</tuv>
<tuv xml:lang="en">
<seg>Within the realm of phenomena there are no attributes to be relinquished or generated.”</seg>
</tuv>
</tu>
<tu id="UT22084-051-006-TU-93">
<prop type="location-id">UT22084-051-006-54</prop>
<tuv xml:lang="bo">
<seg>།དེ་ནས་བཅོམ་ལྡན་འདས་ཀྱིས་མཁྱེན་བཞིན་དུ་འཇམ་དཔལ་གཞོན་ནུར་གྱུར་པ་ལ་འདི་སྐད་ཅེས་བཀའ་སྩལ་ཏོ། །འཇམ་དཔལ་ཁྱོད་ཀྱིས་ཆོས་ཀྱི་དབྱིངས་ཤེས་སམ། གསོལ་པ།</seg>
</tuv>
<tuv xml:lang="en">
<seg>
<tei:milestone xml:id="UT22084-051-006-54"/>Then the Blessed One, though he already knew, asked Youthful Mañjuśrī, “Mañjuśrī, do you know the realm of phenomena?”</seg>
</tuv>
</tu>
<tu id="UT22084-051-006-TU-94">
<prop type="location-id">UT22084-051-006-54</prop>
<tuv xml:lang="bo">
<seg>གལ་ཏེ་དམིགས་ན་བདག་གིས་འཚལ་ལགས་སོ། །བཀའ་སྩལ་པ།</seg>
</tuv>
<tuv xml:lang="en">
<seg>“If I were to apprehend it, I would know it.”</seg>
</tuv>
</tu>
<tu id="UT22084-051-006-TU-95">
<prop type="location-id">UT22084-051-006-56</prop>
<tuv xml:lang="bo">
<seg>འཇམ་དཔལ་འཇིག་རྟེན་གང་ལ་སྤྱོད་ཤེས་སམ། གསོལ་པ།</seg>
</tuv>
<tuv xml:lang="en">
<seg>
<tei:milestone xml:id="UT22084-051-006-56"/>“Mañjuśrī, do you know the world that is experienced?”</seg>
</tuv>
</tu>
<tu id="UT22084-051-006-TU-96">
<prop type="location-id">UT22084-051-006-56</prop>
<tuv xml:lang="bo">
<seg>བཅོམ་ལྡན་འདས་འཇིག་རྟེན་ནི་སྒྱུ་མ་སྤྲུལ་པའི་མི་གང་ཁོ་ན་ལ་སྤྱོད་པ་དེ་ལ་སྤྱོད་ལགས་སོ།</seg>
</tuv>
<tuv xml:lang="en">
<seg>“Blessed One, the world is merely that which is experienced by people who are illusory apparitions.</seg>
</tuv>
</tu>
<tu id="UT22084-051-006-TU-97">
<prop type="location-id">UT22084-051-006-56</prop>
<tuv xml:lang="bo">
<seg>།བཅོམ་ལྡན་འདས་འཇིག་རྟེན་ཞེས་བགྱི་བ་དེ་ནི་མིང་ཙམ་དུ་བས་ཏེ།<tei:ref folio="F.294.a"/>
</seg>
</tuv>
<tuv xml:lang="en">
<seg>Blessed One, what is called world is no more than a mere name.</seg>
</tuv>
</tu>
<tu id="UT22084-051-006-TU-98">
<prop type="location-id">UT22084-051-006-56</prop>
<tuv xml:lang="bo">
<seg>བདག་གིས་ནི་གང་བསྟན་པར་བགྱི་བའི་འཇིག་རྟེན་གྱི་དངོས་པོ་དང་། འཇིག་རྟེན་གང་ལ་སྤྱོད་པ་ཡང་ཡང་དག་པར་རྗེས་སུ་མ་མཐོང་ལགས་ཏེ།</seg>
</tuv>
<tuv xml:lang="en">
<seg>Apart from that I do not see any world that can be pointed out, or a world to experience.</seg>
</tuv>
</tu>
<tu id="UT22084-051-006-TU-99">
<prop type="location-id">UT22084-051-006-56</prop>
<tuv xml:lang="bo">
<seg>བདག་གིས་ནི་འཇིག་རྟེན་གྱི་ཆོས་ཀྱི་དབྱིངས་ལས་ཐ་དད་པར་ཡང་དག་པར་རྗེས་སུ་མ་མཐོང་ལགས་སོ།</seg>
</tuv>
<tuv xml:lang="en">
<seg>I do not see anything distinct from the world’s realm of phenomena.</seg>
</tuv>
</tu>
<tu id="UT22084-051-006-TU-100">
<prop type="location-id">UT22084-051-006-56</prop>
<tuv xml:lang="bo">
<seg>།དེ་ཅིའི་སླད་དུ་ཞེ་ན།</seg>
</tuv>
<tuv xml:lang="en">
<seg>And why not?</seg>
</tuv>
</tu>
<tu id="UT22084-051-006-TU-101">
<prop type="location-id">UT22084-051-006-56</prop>
<tuv xml:lang="bo">
<seg>མ་མཆིས་པའི་སླད་དུ་ལགས་སོ།</seg>
</tuv>
<tuv xml:lang="en">
<seg>Because there isn’t any.</seg>
</tuv>
</tu>
<tu id="UT22084-051-006-TU-102">
<prop type="location-id">UT22084-051-006-56</prop>
<tuv xml:lang="bo">
<seg>།བཅོམ་ལྡན་འདས་ཀྱིས་འཇིག་རྟེན་གང་ལ་སྤྱོད་ཅེས་བཀའ་སྩལ་པ་དེ་ཡང་། གཟུགས་ཀྱི་ངོ་བོ་ཉིད་གང་ལགས་པ་དེ་ལ་ནི་འཆི་འཕོ་དང་། སྐྱེ་བ་ཡང་མ་མཆིས།</seg>
</tuv>
<tuv xml:lang="en">
<seg>Regarding the Blessed One’s statement about ‘the world that is experienced,’ the essence of form is without death, transmigration, or birth;</seg>
</tuv>
</tu>
<tu id="UT22084-051-006-TU-103">
<prop type="location-id">UT22084-051-006-56</prop>
<tuv xml:lang="bo">
<seg>དེ་ལ་ནི་འཇིག་པའམ།</seg>
</tuv>
<tuv xml:lang="en">
<seg>it does not disintegrate or perish.</seg>
</tuv>
</tu>
<tu id="UT22084-051-006-TU-104">
<prop type="location-id">UT22084-051-006-56</prop>
<tuv xml:lang="bo">
<seg>རབ་ཏུ་འཇིག་པ་ཡང་མ་མཆིས་ན་གང་ལ་སྤྱོད་པར་འགྱུར་ལགས།</seg>
</tuv>
<tuv xml:lang="en">
<seg>This being the case, what is there to experience?</seg>
</tuv>
</tu>
<tu id="UT22084-051-006-TU-105">
<prop type="location-id">UT22084-051-006-56</prop>
<tuv xml:lang="bo">
<seg>དེ་བཞིན་དུ་ཚོར་བ་དང་། འདུ་ཤེས་དང་། འདུ་བྱེད་དང་། རྣམ་པར་ཤེས་པ་རྣམས་ཀྱི་ངོ་བོ་ཉིད་གང་ལགས་པ་དེ་ནི་གཏན་མ་མཆིས་པའི་སླད་དུ་སྐྱེ་བའམ་འགག་པ་མ་མཆིས་ལ།</seg>
</tuv>
<tuv xml:lang="en">
<seg>Likewise, since the essence of feeling, perception, formation, and consciousness does not exist, there is no arising or ceasing.</seg>
</tuv>
</tu>
<tu id="UT22084-051-006-TU-106">
<prop type="location-id">UT22084-051-006-56</prop>
<tuv xml:lang="bo">
<seg>མཚན་ཉིད་གཅིག་ལས་མི་འདའ་སྟེ།</seg>
</tuv>
<tuv xml:lang="en">
<seg>These things do not go beyond the single characteristic;</seg>
</tuv>
</tu>
<tu id="UT22084-051-006-TU-107">
<prop type="location-id">UT22084-051-006-56</prop>
<tuv xml:lang="bo">
<seg>འདི་ལྟ་སྟེ་མཚན་ཉིད་གཅིག་པ་ལགས་སོ།</seg>
</tuv>
<tuv xml:lang="en">
<seg>indeed, their characteristic is identical.”</seg>
</tuv>
</tu>
<tu id="UT22084-051-006-TU-108">
<prop type="location-id">UT22084-051-006-58</prop>
<tuv xml:lang="bo">
<seg>།བཀའ་སྩལ་པ། འཇམ་དཔལ་འདི་ཇི་སྙམ་དུ་སེམས། ང་ད་ལྟར་དེ་བཞིན་གཤེགས་པ་དགྲ་བཅོམ་པ་ཡང་དག་པར་རྫོགས་པའི་སངས་རྒྱས་སུ་འགྱུར་བ་འདི་ལ་ཁྱོད་འདི་སྙམ་དུ་འདི་ཡོངས་སུ་མྱ་ངན་ལས་འདས་པར་འགྱུར་བའམ། མི་སྣང་བར་འགྱུར་རོ་སྙམ་དུ་སེམས་སམ།</seg>
</tuv>
<tuv xml:lang="en">
<seg>