-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathtoh114-v1.tmx
More file actions
6175 lines (6163 loc) · 377 KB
/
Copy pathtoh114-v1.tmx
File metadata and controls
6175 lines (6163 loc) · 377 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">
<header creationtool="84000-translation-memory" creationtoolversion="1.0.0.0" datatype="PlainText" segtype="block" adminlang="en-us" srclang="bo" o-tmf="TEI" eft:text-id="UT22084-051-002" eft:text-version="v-1.8.4-2020"/>
<body>
<tu id="UT22084-051-002-TU-1">
<prop type="folio">F.181.a</prop>
<prop type="position">10</prop>
<prop type="revision">v-1.8.24-2023</prop>
<prop type="location-id">UT22084-051-002-14</prop>
<tuv xml:lang="bo">
<seg>སངས་རྒྱས་དང་བྱང་ཆུབ་སེམས་དཔའ་ཐམས་ཅད་ལ་ཕྱག་འཚལ་ལོ། །འདི་སྐད་བདག་གིས་ཐོས་པའི་དུས་གཅིག་ན།</seg>
</tuv>
<tuv xml:lang="en">
<seg>Homage to all buddhas and bodhisattvas! Thus did I hear at one time.</seg>
</tuv>
</tu>
<tu id="UT22084-051-002-TU-3">
<prop type="folio">F.181.a</prop>
<prop type="position">79</prop>
<prop type="location-id">UT22084-051-002-14</prop>
<prop type="revision">v-1.8.24-2023</prop>
<tuv xml:lang="bo">
<seg>བཅོམ་ལྡན་འདས་རྒྱལ་པོའི་ཁབ་ན་འོད་མའི་ཚལ་བྱ་ཀ་ལན་ད་ཀ་གནས་པ་ན།</seg>
</tuv>
<tuv xml:lang="en">
<seg>The Blessed One was dwelling in the Bamboo Grove, in the Kalandakanivāpa near Rājagṛha,</seg>
</tuv>
</tu>
<tu id="UT22084-051-002-TU-4">
<prop type="folio">F.181.a</prop>
<prop type="position">168</prop>
<prop type="location-id">UT22084-051-002-14</prop>
<prop type="revision">v-1.8.24-2023</prop>
<tuv xml:lang="bo">
<seg>དགེ་སློང་ལྔ་བརྒྱ་ཐམ་པའི་དགེ་སློང་གི་དགེ་འདུན་ཆེན་པོ་དང་། བྱང་ཆུབ་སེམས་དཔའ་སྟོང་ཉིས་བརྒྱ་ཐམས་ཅད་ཀྱང་གཟུངས་ཐོབ་པ།</seg>
</tuv>
<tuv xml:lang="en">
<seg>together with a great saṅgha of five hundred monks and with twelve hundred bodhisattvas, all of whom had obtained dhāraṇīs.</seg>
</tuv>
</tu>
<tu id="UT22084-051-002-TU-5">
<prop type="folio">F.181.a</prop>
<prop type="position">295</prop>
<prop type="location-id">UT22084-051-002-14</prop>
<prop type="revision">v-1.8.24-2023</prop>
<tuv xml:lang="bo">
<seg>ཆགས་པ་མེད་པའི་ཡེ་ཤེས་མཐོང་བ། སྤྱོད་ཡུལ་ཆགས་པ་མེད་པ།</seg>
</tuv>
<tuv xml:lang="en">
<seg>They had unimpeded wisdom and were unhindered in their sphere of activity.</seg>
</tuv>
</tu>
<tu id="UT22084-051-002-TU-6">
<prop type="folio">F.181.a</prop>
<prop type="position">370</prop>
<prop type="location-id">UT22084-051-002-14</prop>
<prop type="revision">v-1.8.24-2023</prop>
<tuv xml:lang="bo">
<seg>ཐབས་མཁས་པ། ཁམས་གསུམ་ཐམས་ཅད་ལ་སེམས་སྙོམས་པ།</seg>
</tuv>
<tuv xml:lang="en">
<seg>They were skilled in means, had developed equanimity toward everything in the three realms,</seg>
</tuv>
</tu>
<tu id="UT22084-051-002-TU-7">
<prop type="folio">F.181.a</prop>
<prop type="position">462</prop>
<prop type="location-id">UT22084-051-002-14</prop>
<prop type="revision">v-1.8.24-2023</prop>
<tuv xml:lang="bo">
<seg>ཕན་པ་དང་སྙིང་རྗེའི་ལྷག་པའི་བསམ་པ་ལ་ཞུགས་པ།</seg>
</tuv>
<tuv xml:lang="en">
<seg>and possessed an altruistic mindset of compassion and benevolence.</seg>
</tuv>
</tu>
<tu id="UT22084-051-002-TU-8">
<prop type="folio">F.181.a</prop>
<prop type="position">529</prop>
<prop type="location-id">UT22084-051-002-14</prop>
<prop type="revision">v-1.8.24-2023</prop>
<tuv xml:lang="bo">
<seg>དེ་བཞིན་གཤེགས་པའི་ཆོས་ཀྱི་འབེལ་བའི་གཏམ་འདྲི་བ་ཤ་སྟག་ལ་འདི་ལྟ་སྟེ།</seg>
</tuv>
<tuv xml:lang="en">
<seg>All of them were there to request Dharma teachings from the Thus-Gone One.</seg>
</tuv>
</tu>
<tu id="UT22084-051-002-TU-9">
<prop type="folio">F.181.a</prop>
<prop type="position">604</prop>
<prop type="location-id">UT22084-051-002-16</prop>
<prop type="revision">v-1.8.24-2023</prop>
<tuv xml:lang="bo">
<seg>དེ་དག་ལ་སོགས་པ་བྱང་ཆུབ་སེམས་དཔའ་སྟོང་ཉིས་བརྒྱ་དང་།</seg>
</tuv>
<tuv xml:lang="en">
<seg>The twelve hundred bodhisattvas in attendance included</seg>
</tuv>
</tu>
<tu id="UT22084-051-002-TU-10">
<prop type="folio">F.181.a</prop>
<prop type="position">659</prop>
<prop type="location-id">UT22084-051-002-16</prop>
<prop type="revision">v-1.8.24-2023</prop>
<tuv xml:lang="bo">
<seg>བྱང་ཆུབ་སེམས་དཔའ་སེམས་དཔའ་ཆེན་པོ་བྱམས་པ་དང་།</seg>
</tuv>
<tuv xml:lang="en">
<seg>the bodhisattva great being Maitreya,</seg>
</tuv>
</tu>
<tu id="UT22084-051-002-TU-11">
<prop type="folio">F.181.a</prop>
<prop type="position">697</prop>
<prop type="location-id">UT22084-051-002-16</prop>
<prop type="revision">v-1.8.24-2023</prop>
<tuv xml:lang="bo">
<seg>བྱང་ཆུབ་སེམས་དཔའ་སེམས་དཔའ་ཆེན་པོ་རྟག་ཏུ་བརྩོན་དང་། བྱང་ཆུབ་སེམས་དཔའ་སེམས་དཔའ་ཆེན་པོ་མཉམ་པ་ཉིད་ལ་གནས་པ་དང་།</seg>
</tuv>
<tuv xml:lang="en">
<seg>the bodhisattva great being Nityodyukta, the bodhisattva great being Samatāvihārin,</seg>
</tuv>
</tu>
<tu id="UT22084-051-002-TU-12">
<prop type="folio">F.181.a</prop>
<prop type="position">793</prop>
<prop type="location-id">UT22084-051-002-16</prop>
<prop type="revision">v-1.8.24-2023</prop>
<tuv xml:lang="bo">
<seg>བྱང་ཆུབ་སེམས་དཔའ་སེམས་དཔའ་ཆེན་པོ་མི་གཡོ་བ་དང་། བྱང་ཆུབ་སེམས་དཔའ་སེམས་དཔའ་ཆེན་པོ་བློ་གྲོས་བཟང་པོ་དང་།</seg>
</tuv>
<tuv xml:lang="en">
<seg>the bodhisattva great being Aniñjya, the bodhisattva great being Sumati,</seg>
</tuv>
</tu>
<tu id="UT22084-051-002-TU-13">
<prop type="folio">F.181.a</prop>
<prop type="position">866</prop>
<prop type="location-id">UT22084-051-002-16</prop>
<prop type="revision">v-1.8.24-2023</prop>
<tuv xml:lang="bo">
<seg>བྱང་ཆུབ་སེམས་དཔའ་སེམས་དཔའ་ཆེན་པོ་བློ་གྲོས་ཆེན་པོ་དང་། བྱང་ཆུབ་སེམས་དཔའ་སེམས་དཔའ་ཆེན་པོ་སྤོབས་པ་མཐའ་ཡས་དང་།</seg>
</tuv>
<tuv xml:lang="en">
<seg>the bodhisattva great being Mahāmati, the bodhisattva great being Anantapratibhāna,</seg>
</tuv>
</tu>
<tu id="UT22084-051-002-TU-14">
<prop type="folio">F.181.a</prop>
<prop type="position">953</prop>
<prop type="location-id">UT22084-051-002-16</prop>
<prop type="revision">v-1.8.24-2023</prop>
<tuv xml:lang="bo">
<seg>བྱང་ཆུབ་སེམས་དཔའ་སེམས་དཔའ་ཆེན་པོ་རབ་གནོན་བློ་གྲོས་དང་། བྱང་ཆུབ་སེམས་དཔའ་སེམས་དཔའ་ཆེན་པོ་སྤྱན་རས་གཟིགས་དབང་ཕྱུག་དང་།</seg>
</tuv>
<tuv xml:lang="en">
<seg>the bodhisattva great being Suvikrāntamati, and the bodhisattva great being Avalokiteśvara.</seg>
</tuv>
</tu>
<tu id="UT22084-051-002-TU-15">
<prop type="folio">F.181.a</prop>
<prop type="position">1049</prop>
<prop type="location-id">UT22084-051-002-16</prop>
<prop type="revision">v-1.8.24-2023</prop>
<tuv xml:lang="bo">
<seg>ཏུ་བཞུགས་ཏེ།</seg>
</tuv>
<tuv xml:lang="en">
<seg>Also present were</seg>
</tuv>
</tu>
<tu id="UT22084-051-002-TU-16">
<prop type="folio">F.181.a</prop>
<prop type="position">1067</prop>
<prop type="location-id">UT22084-051-002-16</prop>
<prop type="revision">v-1.8.24-2023</prop>
<tuv xml:lang="bo">
<seg>བརྒྱ་བྱིན་དང་། ཚངས་པ་དང་། འཇིག་རྟེན་སྐྱོང་བ་རྣམས་དང་། ཀླུའི་རྒྱལ་པོ་རྣམས་དང་།</seg>
</tuv>
<tuv xml:lang="en">
<seg>Śakra, Brahmā, the guardians of the world, the nāga kings,</seg>
</tuv>
</tu>
<tu id="UT22084-051-002-TU-17">
<prop type="folio">F.181.a</prop>
<prop type="position">1127</prop>
<prop type="location-id">UT22084-051-002-16</prop>
<prop type="revision">v-1.8.24-2023</prop>
<tuv xml:lang="bo">
<seg>སྲིན་པོའི་བདག་པོ་ཐམས་ཅད་དང་། གནོད་སྦྱིན་མོ་སུམ་བརྒྱ་དང་།</seg>
</tuv>
<tuv xml:lang="en">
<seg>the lords of the rākṣasas, and three hundred yakṣiṇīs.</seg>
</tuv>
</tu>
<tu id="UT22084-051-002-TU-18">
<prop type="folio">F.181.a</prop>
<prop type="position">1184</prop>
<prop type="location-id">UT22084-051-002-16</prop>
<prop type="revision">v-1.8.24-2023</prop>
<tuv xml:lang="bo">
<seg>གཞན་མུ་སྟེགས་ཅན་སྤྱོད་པ་པ་དང་། ཀུན་ཏུ་རྒྱུ་དང་། གཅེར་བུ་པ་དྲུག་སྟོང་དང་། ནམ་མཁའ་ལྡིང་གི་རྒྱལ་པོ་བདུན་དང་ཐབས་ཅིག་</seg>
</tuv>
<tuv xml:lang="en">
<seg>There were also six thousand caraka, parivrājaka, and nirgrantha non-Buddhists, as well as the seven lords of the garuḍas.</seg>
</tuv>
</tu>
<tu id="UT22084-051-002-TU-19">
<prop type="folio">F.181.a</prop>
<prop type="position">1308</prop>
<prop type="location-id">UT22084-051-002-16</prop>
<prop type="revision">v-1.8.24-2023</prop>
<tuv xml:lang="bo">
<seg>དེ་དག་ཐམས་ཅད་ཀྱིས་དེ་བཞིན་གཤེགས་པ་ལ་བསྐོར་བ་བྱས་ནས།</seg>
</tuv>
<tuv xml:lang="en">
<seg>The whole assembly, while circumambulating the Thus-Gone One,</seg>
</tuv>
</tu>
<tu id="UT22084-051-002-TU-20">
<prop type="folio">F.181.b</prop>
<prop type="position">767</prop>
<prop type="location-id">UT22084-051-002-16</prop>
<prop type="revision">v-1.8.24-2023</prop>
<tuv xml:lang="bo">
<seg>དེ་བཞིན་གཤེགས་པ་ལ་མཆོད་པའི་ལས་བྱ་བའི་ཕྱིར་ལྷའི་མེ་ཏོག་གི་ཆར་མངོན་པར་ཕབ་བོ། །ཙན་དན་གྱི་ཕྱེ་མའི་ཆར་ཡང་མངོན་པར་ཕབ་བོ། །ལྷའི་སིལ་སྙན་དང་ཕེག་རྡོབ་པ་དག་ཀྱང་དེ་བཞིན་གཤེགས་པ་ལ་མཆོད་པའི་ལས་བྱ་བའི་ཕྱིར་བསྒྲགས་སོ། །</seg>
</tuv>
<tuv xml:lang="en">
<seg>worshiped him by scattering a rain of celestial flowers and sandalwood powder, and playing divine cymbals and drums.</seg>
</tuv>
</tu>
<tu id="UT22084-051-002-TU-21">
<prop type="folio">F.181.b</prop>
<prop type="position">884</prop>
<prop type="location-id">UT22084-051-002-16</prop>
<prop type="revision">v-1.8.24-2023</prop>
<tuv xml:lang="bo">
<seg>གང་དག་དེ་བཞིན་གཤེགས་པའི་བསྟན་པ་ལ་མངོན་པར་དད་པ་དེ་དག་ཐམས་ཅད་ཀྱིས་ཀྱང་ཚིག་འདི་སྐད་ཅེས་གསོལ་ཏོ། །</seg>
</tuv>
<tuv xml:lang="en">
<seg>With manifest faith in the teaching of the Thus-Gone One, they exclaimed,</seg>
</tuv>
</tu>
<tu id="UT22084-051-002-TU-22">
<prop type="folio">F.181.b</prop>
<prop type="position">958</prop>
<prop type="location-id">UT22084-051-002-16</prop>
<prop type="revision">v-1.8.24-2023</prop>
<tuv xml:lang="bo">
<seg>བཅོམ་ལྡན་འདས་ལེགས་སོ་ལེགས་སོ། །</seg>
</tuv>
<tuv xml:lang="en">
<seg>“Blessed One, excellent, excellent!</seg>
</tuv>
</tu>
<tu id="UT22084-051-002-TU-23">
<prop type="folio">F.181.b</prop>
<prop type="position">994</prop>
<prop type="location-id">UT22084-051-002-16</prop>
<prop type="revision">v-1.8.24-2023</prop>
<tuv xml:lang="bo">
<seg>བཅོམ་ལྡན་འདས་དེ་བཞིན་གཤེགས་པའི་བསྟན་པ་ཉོན་མོངས་པ་ཐམས་ཅད་ཟད་པར་བགྱིད་པ་འདི་ནི་རྫུ་འཕྲུལ་ཆེ་སྟེ་</seg>
</tuv>
<tuv xml:lang="en">
<seg>Blessed One, the teaching of the Thus-Gone One that extinguishes all disturbing emotions is a great miracle!</seg>
</tuv>
</tu>
<tu id="UT22084-051-002-TU-24">
<prop type="folio">F.181.b</prop>
<prop type="position">1103</prop>
<prop type="location-id">UT22084-051-002-16</prop>
<prop type="revision">v-1.8.24-2023</prop>
<tuv xml:lang="bo">
<seg>ལེགས་སོ་ལེགས་སོ། །</seg>
</tuv>
<tuv xml:lang="en">
<seg>It is excellent, excellent!”</seg>
</tuv>
</tu>
<tu id="UT22084-051-002-TU-25">
<prop type="folio">F.181.b</prop>
<prop type="position">1132</prop>
<prop type="location-id">UT22084-051-002-19</prop>
<prop type="revision">v-1.8.24-2023</prop>
<tuv xml:lang="bo">
<seg>དེ་ནས་བཅོམ་ལྡན་འདས་དེའི་ཚེ་ཉོན་མོངས་པ་ཐམས་ཅད་རྣམ་པར་འཇོམས་པ་རྡུལ་མེད་པའི་རྒྱལ་མཚན་ཞེས་བྱ་བའི་ཏིང་ངེ་འཛིན་ལ་སྙོམས་པར་ཞུགས་ནས།</seg>
</tuv>
<tuv xml:lang="en">
<seg>At that moment the Blessed One entered the absorption known as the stainless victory banner that completely subdues all disturbing emotions</seg>
</tuv>
</tu>
<tu id="UT22084-051-002-TU-26">
<prop type="folio">F.181.b</prop>
<prop type="position">1273</prop>
<prop type="location-id">UT22084-051-002-19</prop>
<prop type="revision">v-1.8.24-2023</prop>
<tuv xml:lang="bo">
<seg>ཏིང་ངེ་འཛིན་དེའི་མཐུས་ས་ཆེན་པོ་འདི་མཐོ་བ་དང་དམའ་བར་བྱས་ཏེ། འགུལ། རབ་ཏུ་འགུལ། ཀུན་ཏུ་རབ་ཏུ་འགུལ།</seg>
</tuv>
<tuv xml:lang="en">
<seg>Through the power of that absorption, the earth shook violently, causing it to rise and sink. It quivered, trembled, and quaked;</seg>
</tuv>
</tu>
<tu id="UT22084-051-002-TU-27">
<prop type="folio">F.181.b</prop>
<prop type="position">1402</prop>
<prop type="location-id">UT22084-051-002-19</prop>
<prop type="revision">v-1.8.24-2023</prop>
<tuv xml:lang="bo">
<seg>གཡོས། རབ་ཏུ་གཡོས། ཀུན་ཏུ་རབ་ཏུ་གཡོས། ལྡེག་རབ་ཏུ་ལྡེག །ཀུན་ཏུ་རབ་ཏུ་ལྡེག །</seg>
</tuv>
<tuv xml:lang="en">
<seg>wobbled, rocked, and swayed; vibrated, shuddered, and reeled;</seg>
</tuv>
</tu>
<tu id="UT22084-051-002-TU-28">
<prop type="folio">F.181.b</prop>
<prop type="position">1464</prop>
<prop type="location-id">UT22084-051-002-19</prop>
<prop type="revision">v-1.8.24-2023</prop>
<tuv xml:lang="bo">
<seg>འཁྲུགས། རབ་ཏུ་འཁྲུགས། ཀུན་ཏུ་རབ་ཏུ་འཁྲུགས། འུར་འུར། རབ་ཏུ་འུར་འུར། ཀུན་ཏུ་རབ་ཏུ་འུར་འུར། ཆེམ་ཆེམ། རབ་ཏུ་ཆེམ་ཆེམ། ཀུན་ཏུ་རབ་ཏུ་ཆེམ་ཆེམ་མོ། །</seg>
</tuv>
<tuv xml:lang="en">
<seg>convulsed, rattled, and shook; clattered, rattled, and clanged; and boomed, thundered, and roared.</seg>
</tuv>
</tu>
<tu id="UT22084-051-002-TU-29">
<prop type="folio">F.181.b</prop>
<prop type="position">1572</prop>
<prop type="location-id">UT22084-051-002-19</prop>
<prop type="revision">v-1.8.24-2023</prop>
<tuv xml:lang="bo">
<seg>ལྷའི་ཙན་དན་གྱི་ཕྱེ་མའི་ཆར་ཡང་བབ་བོ། །ལྷའི་མེ་ཏོག་གི་ཆར་ཡང་བབ་བོ། །ལྷའི་འོད་ཀྱི་སྣང་བ་ཡང་བྱུང་ངོ་།</seg>
</tuv>
<tuv xml:lang="en">
<seg>A rain of sandalwood powder and celestial flowers fell from the sky, and divine light shone throughout the world.</seg>
</tuv>
</tu>
<tu id="UT22084-051-002-TU-30">
<prop type="folio">F.181.b</prop>
<prop type="position">1686</prop>
<prop type="location-id">UT22084-051-002-19</prop>
<prop type="revision">v-1.8.24-2023</prop>
<tuv xml:lang="bo">
<seg>སྟོང་གསུམ་གྱི་སྟོང་ཆེན་པོའི་འཇིག་རྟེན་གྱི་ཁམས་འདིར་སེམས་ཅན་གང་སུ་དག་ངན་སོང་དུ་སྐྱེས་པ་དེ་དག་ཐམས་ཅད་ཀྱང་ངན་སོང་རྣམས་ལས་ཡོངས་སུ་གྲོལ་བར་གྱུར་ཏོ། །</seg>
</tuv>
<tuv xml:lang="en">
<seg>All the beings in this great trichiliocosm who had taken birth in the lower realms were instantly freed.</seg>
</tuv>
</tu>
<tu id="UT22084-051-002-TU-31">
<prop type="folio">F.181.b</prop>
<prop type="position">1791</prop>
<prop type="location-id">UT22084-051-002-19</prop>
<prop type="revision">v-1.8.24-2023</prop>
<tuv xml:lang="bo">
<seg>ལྷའི་དབང་པོ་དང་། ཀླུའི་དབང་པོ་དང་། གནོད་སྦྱིན་གྱི་དབང་པོ་དང་། སྲིན་པོའི་དབང་པོ་དང་། མིའི་དབང་པོ་དེ་དག་ཐམས་ཅད་ཀྱི་གནས་རྣམས་ཀྱང་སྣང་བར་གྱུར་ཏོ། །</seg>
</tuv>
<tuv xml:lang="en">
<seg>The homes of the lords of the gods, nāgas, yakṣas, rākṣasas, and humans were illuminated.</seg>
</tuv>
</tu>
<tu id="UT22084-051-002-TU-32">
<prop type="folio">F.181.b</prop>
<prop type="position">1882</prop>
<prop type="location-id">UT22084-051-002-19</prop>
<prop type="revision">v-1.8.24-2023</prop>
<tuv xml:lang="bo">
<seg>ལྷའི་སིལ་སྙན་གྱི་སྒྲ་དག་ཀྱང་གྲག་གོ། །</seg>
</tuv>
<tuv xml:lang="en">
<seg>The sound of celestial cymbals resounded,</seg>
</tuv>
</tu>
<tu id="UT22084-051-002-TU-33">
<prop type="folio">F.181.b</prop>
<prop type="position">1924</prop>
<prop type="location-id">UT22084-051-002-19</prop>
<prop type="revision">v-1.8.24-2023</prop>
<tuv xml:lang="bo">
<seg>ལྷའི་འོད་དག་ཀྱང་སྣང་བར་གྱུར་ཏོ། །ལྷའི་སྤོས་ཀྱི་ངད་ཀྱང་ལྡང་བར་གྱུར་ཏོ། །</seg>
</tuv>
<tuv xml:lang="en">
<seg>and divine lights and fragrances manifested everywhere.</seg>
</tuv>
</tu>
<tu id="UT22084-051-002-TU-34">
<prop type="folio">F.181.b</prop>
<prop type="position">1980</prop>
<prop type="location-id">UT22084-051-002-20</prop>
<prop type="revision">v-1.8.24-2023</prop>
<tuv xml:lang="bo">
<seg>དེ་ནས་དེ་དག་ཐམས་ཅད་ཀྱང་ཆོ་འཕྲུལ་ཆེན་པོ་དེ་མཐོང་ནས་ཡ་མཚན་དུ་གྱུར་ཏེ་འདི་སྙམ་དུ་སེམས་སོ། །</seg>
</tuv>
<tuv xml:lang="en">
<seg>Everyone was amazed at the sight of this great miraculous display and wondered,</seg>
</tuv>
</tu>
<tu id="UT22084-051-002-TU-35">
<prop type="folio">F.181.b</prop>
<prop type="position">2060</prop>
<prop type="location-id">UT22084-051-002-20</prop>
<prop type="revision">v-1.8.24-2023</prop>
<tuv xml:lang="bo">
<seg>གནས་འདི་དག་སྣང་བར་གྱུར་པ་འདི་དང་།</seg>
</tuv>
<tuv xml:lang="en">
<seg>“Whose power is causing this illumination of our homes,</seg>
</tuv>
</tu>
<tu id="UT22084-051-002-TU-36">
<prop type="folio">F.181.b</prop>
<prop type="position">2116</prop>
<prop type="location-id">UT22084-051-002-20</prop>
<prop type="revision">v-1.8.24-2023</prop>
<tuv xml:lang="bo">
<seg>ཆོ་འཕྲུལ་ཆེན་པོ་སྣང་བར་གྱུར་པ་འདི་དང་། ས་ཆེན་པོ་གཡོས་པ་འདི་དང་། མེ་ཏོག་གི་ཆར་ཆེན་པོ་བབ་པ་འདི་སུའི་མཐུ་ཡིན། །</seg>
</tuv>
<tuv xml:lang="en">
<seg>the manifestation of this great miracle, these earthquakes, and this great rain of flowers?</seg>
</tuv>
</tu>
<tu id="UT22084-051-002-TU-37">
<prop type="folio">F.182.a</prop>
<prop type="position">197</prop>
<prop type="revision">v-1.8.24-2023</prop>
<prop type="location-id">UT22084-051-002-20</prop>
<tuv xml:lang="bo">
<seg>སུའི་བྱིན་གྱིས་བརླབས་ཡིན་ཞིག་གུ་སྙམ་ནས།</seg>
</tuv>
<tuv xml:lang="en">
<seg>Whose blessings are causing all of this?”</seg>
</tuv>
</tu>
<tu id="UT22084-051-002-TU-38">
<prop type="folio">F.182.a</prop>
<prop type="position">271</prop>
<prop type="location-id">UT22084-051-002-20</prop>
<prop type="revision">v-1.8.24-2023</prop>
<tuv xml:lang="bo">
<seg>དེ་དག་ཐང་ཅིག་ཅང་མི་ཟེར་སེམས་ནས་གཅིག་ལ་གཅིག་འདི་སྐད་དུ་འདི་ནི་དེ་བཞིན་གཤེགས་པའི་མཐུ་ཡིན་ནོ། །</seg>
</tuv>
<tuv xml:lang="en">
<seg>Having reflected on this silently for a moment, they said to each other, “This is the power of the Thus-Gone One!</seg>
</tuv>
</tu>
<tu id="UT22084-051-002-TU-39">
<prop type="folio">F.182.a</prop>
<prop type="position">385</prop>
<prop type="location-id">UT22084-051-002-20</prop>
<prop type="revision">v-1.8.24-2023</prop>
<tuv xml:lang="bo">
<seg>འདི་ནི་དེ་བཞིན་གཤེགས་པའི་རྣམ་པར་འཕྲུལ་པ་ཡིན་ནོ་ཞེས་སྨྲས་སོ། །</seg>
</tuv>
<tuv xml:lang="en">
<seg>These are the miracles of the Thus-Gone One!”</seg>
</tuv>
</tu>
<tu id="UT22084-051-002-TU-40">
<prop type="folio">F.182.a</prop>
<prop type="position">431</prop>
<prop type="location-id">UT22084-051-002-21</prop>
<prop type="revision">v-1.8.24-2023</prop>
<tuv xml:lang="bo">
<seg>དེ་ནས་རྒྱལ་པོ་ཆེན་པོ་བཞི་འདི་སྙམ་དུ་སེམས་ཏེ། བདག་ཅག་དེ་བཞིན་གཤེགས་པ་ལ་བལྟ་བ་དང་།</seg>
</tuv>
<tuv xml:lang="en">
<seg>At that time the Four Great Kings thought, “Let us go to where the Blessed One resides so we can meet,</seg>
</tuv>
</tu>
<tu id="UT22084-051-002-TU-41">
<prop type="folio">F.182.a</prop>
<prop type="position">534</prop>
<prop type="location-id">UT22084-051-002-21</prop>
<prop type="revision">v-1.8.24-2023</prop>
<tuv xml:lang="bo">
<seg>ཕྱག་བྱ་བ་དང་། མཆོད་པ་དང་། ཆོས་ཉན་པའི་ཕྱིར་བཅོམ་ལྡན་འདས་ག་ལ་བ་དེར་འདོང་གོར་མ་ཆག་སྙམ་མོ། །</seg>
</tuv>
<tuv xml:lang="en">
<seg>pay homage to, and worship the Thus-Gone One, and listen to the Dharma.”</seg>
</tuv>
</tu>
<tu id="UT22084-051-002-TU-42">
<prop type="folio">F.182.a</prop>
<prop type="position">607</prop>
<prop type="location-id">UT22084-051-002-22</prop>
<prop type="revision">v-1.8.24-2023</prop>
<tuv xml:lang="bo">
<seg>དེ་ནས་ལྷའི་དབང་པོ་དང་། ཀླུའི་དབང་པོ་དང་། གནོད་སྦྱིན་གྱི་དབང་པོ་དང་། སྲིན་པོའི་དབང་པོ་རྫུ་འཕྲུལ་ཆེ་ཞིང་མཐུ་ཆེ་བ་དེ་དག་ཐམས་ཅད་ཀྱིས་</seg>
</tuv>
<tuv xml:lang="en">
<seg>So the lords of the gods, nāgas, yakṣas, and rākṣasas, all these powerful beings endowed with great supernatural powers,</seg>
</tuv>
</tu>
<tu id="UT22084-051-002-TU-43">
<prop type="folio">F.182.a</prop>
<prop type="position">729</prop>
<prop type="location-id">UT22084-051-002-22</prop>
<prop type="revision">v-1.8.24-2023</prop>
<tuv xml:lang="bo">
<seg>འོད་མའི་ཚལ་བྱ་ཀ་ལན་ད་ཀ་གནས་པ་ག་ལ་བ་དང་། བཅོམ་ལྡན་འདས་ག་ལ་བ་དེར་དོང་སྟེ་ལྷགས་ནས།</seg>
</tuv>
<tuv xml:lang="en">
<seg>then proceeded to the Bamboo Grove, in the Kalandakanivāpa where the Blessed One was residing, carrying</seg>
</tuv>
</tu>
<tu id="UT22084-051-002-TU-44">
<prop type="folio">F.182.a</prop>
<prop type="position">834</prop>
<prop type="location-id">UT22084-051-002-22</prop>
<prop type="revision">v-1.8.24-2023</prop>
<tuv xml:lang="bo">
<seg>ལྷའི་མེ་ཏོག་ཨུད་པལ་དང་། པད་མ་དང་། ཀུ་མུ་ད་དང་། པད་མ་དཀར་པོ་དང་། དྲི་མཆོག་དང་། མན་དཱ་ར་བ་དང་། མན་དཱ་ར་བ་ཆེན་པོ་དག་ཁྱེར་ནས་</seg>
</tuv>
<tuv xml:lang="en">
<seg>with them blue lotus flowers, pink lotus flowers, water lilies, and white lotus flowers, as well as jasmine, mandārava, and mahāmandārava flowers.</seg>
</tuv>
</tu>
<tu id="UT22084-051-002-TU-45">
<prop type="folio">F.182.a</prop>
<prop type="position">981</prop>
<prop type="location-id">UT22084-051-002-22</prop>
<prop type="revision">v-1.8.24-2023</prop>
<tuv xml:lang="bo">
<seg>བཅོམ་ལྡན་འདས་ལ་མངོན་པར་མཆོད་དེ་ཕྱག་བྱས་སོ། །</seg>
</tuv>
<tuv xml:lang="en">
<seg>Once there, they worshiped the Blessed One and paid homage to him.</seg>
</tuv>
</tu>
<tu id="UT22084-051-002-TU-46">
<prop type="folio">F.182.a</prop>
<prop type="position">1048</prop>
<prop type="location-id">UT22084-051-002-22</prop>
<prop type="revision">v-1.8.24-2023</prop>
<tuv xml:lang="bo">
<seg>མེ་ཏོག་གི་ཆར་ཆེན་པོ་དེས་ཀྱང་ས་ཆེན་པོ་འདི་པུས་མོ་ནུབ་ཙམ་དུ་ཁྱབ་པར་འདུག་གོ། །</seg>
</tuv>
<tuv xml:lang="en">
<seg>Their downpour of flowers covered the wide earth up to knee height.</seg>
</tuv>
</tu>
<tu id="UT22084-051-002-TU-47">
<prop type="folio">F.182.a</prop>
<prop type="position">1116</prop>
<prop type="location-id">UT22084-051-002-22</prop>
<prop type="revision">v-1.8.24-2023</prop>
<tuv xml:lang="bo">
<seg>དེ་ནས་བྱང་ཆུབ་སེམས་དཔའ་སེམས་དཔའ་ཆེན་པོ་དེ་དག་ཐམས་ཅད་ཆོས་མཉན་པའི་ཕྱིར་བཅོམ་ལྡན་འདས་ལ་ལན་གསུམ་བསྐོར་བ་བྱས་ནས་ཕྱོགས་གཅིག་ཏུ་འཁོད་དོ། །</seg>
</tuv>
<tuv xml:lang="en">
<seg>All the bodhisattva great beings then circumambulated the Blessed One three times and sat to one side to listen to the Dharma.</seg>
</tuv>
</tu>
<tu id="UT22084-051-002-TU-48">
<prop type="folio">F.182.a</prop>
<prop type="position">1252</prop>
<prop type="location-id">UT22084-051-002-23</prop>
<prop type="revision">v-1.8.24-2023</prop>
<tuv xml:lang="bo">
<seg>དེ་ནས་བྱང་ཆུབ་སེམས་དཔའ་སེམས་དཔའ་ཆེན་པོ་ལག་ན་རྡོ་རྗེ་བྱང་ཆུབ་སེམས་དཔའ་བྱེ་བ་ཕྲག་དུ་མས་བསྐོར་ཅིང་།</seg>
</tuv>
<tuv xml:lang="en">
<seg>The bodhisattva great being Vajrapāṇi was surrounded by millions of bodhisattvas</seg>
</tuv>
</tu>
<tu id="UT22084-051-002-TU-49">
<prop type="folio">F.182.a</prop>
<prop type="position">1335</prop>
<prop type="location-id">UT22084-051-002-23</prop>
<prop type="revision">v-1.8.24-2023</prop>
<tuv xml:lang="bo">
<seg>ལྷ་བྱེ་བ་ཕྲག་དུ་མས་བསྐོར་ཏེ། རིག་སྔགས་འཆང་བརྒྱ་ཕྲག་དུ་མས་མདུན་དུ་བདར་བས་རྫུ་འཕྲུལ་དང་མཐུ་ཆེན་པོ་དང་།</seg>
</tuv>
<tuv xml:lang="en">
<seg>and millions of gods, and there were many hundreds of vidyādharas present before him.</seg>
</tuv>
</tu>
<tu id="UT22084-051-002-TU-50">
<prop type="folio">F.182.a</prop>
<prop type="position">1421</prop>
<prop type="location-id">UT22084-051-002-23</prop>
<prop type="revision">v-1.8.24-2023</prop>
<tuv xml:lang="bo">
<seg>བཀོད་པ་ཆེན་པོ་དང་།</seg>
</tuv>
<tuv xml:lang="en">
<seg>Through the great power of their supernatural abilities,</seg>
</tuv>
</tu>
<tu id="UT22084-051-002-TU-51">
<prop type="folio">F.182.a</prop>
<prop type="position">1478</prop>
<prop type="location-id">UT22084-051-002-23</prop>
<prop type="revision">v-1.8.24-2023</prop>
<tuv xml:lang="bo">
<seg>དེ་བཞིན་གཤེགས་པ་དགེ་སློང་གི་དགེ་འདུན་དང་། བྱང་ཆུབ་སེམས་དཔའི་ཚོགས་དང་བཅས་པ་ལ་མངོན་པར་མཆོད་དོ། །</seg>
</tuv>
<tuv xml:lang="en">
<seg>they worshiped the Thus-Gone One, his saṅgha of monks, and the gathering of bodhisattvas</seg>
</tuv>
</tu>
<tu id="UT22084-051-002-TU-52">
<prop type="folio">F.182.a</prop>
<prop type="position">1567</prop>
<prop type="location-id">UT22084-051-002-23</prop>
<prop type="revision">v-1.8.24-2023</prop>
<tuv xml:lang="bo">
<seg>མེ་ཏོག་དང་། སྤོས་དང་། མེ་ཏོག་ཕྲེང་དང་། བདུག་པ་དང་། རོལ་མོའི་སྒྲ་དང་། སིལ་སྙན་དང་། ཕེག་རྡོབ་པ་ཆེན་པོས་</seg>
</tuv>
<tuv xml:lang="en">
<seg>with a great array of flowers, perfumes, flower garlands, incense, cymbals, and great drums.</seg>
</tuv>
</tu>
<tu id="UT22084-051-002-TU-53">
<prop type="folio">F.182.a</prop>
<prop type="position">1660</prop>
<prop type="location-id">UT22084-051-002-24</prop>
<prop type="revision">v-1.8.24-2023</prop>
<tuv xml:lang="bo">
<seg>དེ་ནས་དེའི་ཚེ་བྱང་ཆུབ་སེམས་དཔའ་བཀོད་པའི་རྒྱལ་པོས་ལྷའི་བཀོད་པ་དང་། བཀོད་པའི་མཐུ་དང་། མེ་ཏོག་གི་ཆར་ཆེན་པོས་དེ་བཞིན་གཤེགས་པ་ལ་མཆོད་པ་ཆེན་པོ་བྱས་སོ། །</seg>
</tuv>
<tuv xml:lang="en">
<seg>Then the bodhisattva Vyūharāja made offerings to the Thus-Gone One in the form of displays both mighty and divine, as well as a great rain of flowers.</seg>
</tuv>
</tu>
<tu id="UT22084-051-002-TU-54">
<prop type="folio">F.182.b</prop>
<prop type="position">152</prop>
<prop type="location-id">UT22084-051-002-24</prop>
<prop type="revision">v-1.8.24-2023</prop>
<tuv xml:lang="bo">
<seg>དེ་ནས་བྱང་ཆུབ་སེམས་དཔའ་སེམས་དཔའ་ཆེན་པོ་དེ་དག་གིས་འདུས་པ་ཆེན་པོ་དེ་མཐོང་ནས། ཆོས་ཀྱི་འབེལ་བའི་གཏམ་འདོད་པར་གྱུར་ཏོ། །</seg>
</tuv>
<tuv xml:lang="en">
<seg>Seeing that vast assembly, the bodhisattva great beings longed for a Dharma discourse.</seg>
</tuv>
</tu>
<tu id="UT22084-051-002-TU-55">
<prop type="folio">F.182.b</prop>
<prop type="position">239</prop>
<prop type="location-id">UT22084-051-002-24</prop>
<prop type="revision">v-1.8.24-2023</prop>
<tuv xml:lang="bo">
<seg>དེ་ནས་བཅོམ་ལྡན་འདས་ཀྱིས་བྱང་ཆུབ་སེམས་དཔའ་དེ་དག་གི་སེམས་ཐུགས་ཀྱིས་མཁྱེན་ནས། བྱང་ཆུབ་སེམས་དཔའ་བཀོད་པའི་རྒྱལ་པོ་དེ་ལ་འདི་སྐད་ཅེས་བཀའ་སྩལ་ཏོ། །</seg>
</tuv>
<tuv xml:lang="en">
<seg>In his mind, the Blessed One knew the bodhisattvas’ wish, and so spoke to the bodhisattva Vyūharāja, saying,</seg>
</tuv>
</tu>
<tu id="UT22084-051-002-TU-56">
<prop type="folio">F.182.b</prop>
<prop type="position">348</prop>
<prop type="location-id">UT22084-051-002-24</prop>
<prop type="revision">v-1.8.24-2023</prop>
<tuv xml:lang="bo">
<seg>རིགས་ཀྱི་བུ་སོང་ལ་ས་ཆེན་པོ་འདི་ལྟོས་ཤིག །</seg>
</tuv>
<tuv xml:lang="en">
<seg>“Noble son, go and survey the wide earth.”</seg>
</tuv>
</tu>
<tu id="UT22084-051-002-TU-57">
<prop type="folio">F.182.b</prop>
<prop type="position">391</prop>
<prop type="location-id">UT22084-051-002-215</prop>
<prop type="revision">v-1.8.24-2023</prop>
<tuv xml:lang="bo">
<seg>དེ་ནས་བྱང་ཆུབ་སེམས་དཔའ་བཀོད་པའི་རྒྱལ་པོས་ས་ཆེན་པོ་བལྟས་སོ། །བལྟས་ནས་ཀྱང་བཅོམ་ལྡན་འདས་ལ་འདི་སྐད་ཅེས་གསོལ་ཏོ། །</seg>
</tuv>
<tuv xml:lang="en">
<seg>The bodhisattva Vyūharāja surveyed the wide earth and replied,</seg>
</tuv>
</tu>
<tu id="UT22084-051-002-TU-58">
<prop type="folio">F.182.b</prop>
<prop type="position">454</prop>
<prop type="location-id">UT22084-051-002-215</prop>
<prop type="revision">v-1.8.24-2023</prop>
<tuv xml:lang="bo">
<seg>བཅོམ་ལྡན་འདས་བདག་གིས་ས་ཆེན་པོ་བལྟས་ལགས་ཏེ།</seg>
</tuv>
<tuv xml:lang="en">
<seg>“Blessed One, I have surveyed the wide earth.</seg>
</tuv>
</tu>
<tu id="UT22084-051-002-TU-59">
<prop type="folio">F.182.b</prop>
<prop type="position">500</prop>
<prop type="location-id">UT22084-051-002-215</prop>
<prop type="revision">v-1.8.24-2023</prop>
<tuv xml:lang="bo">
<seg>བཅོམ་ལྡན་འདས་བཅོམ་ལྡན་འདས་ཀྱིས་སེམས་ཅན་ཐམས་ཅད་ལ་བདེ་བའི་འདུས་པ་ཆེན་པོ་མཛད་པ་མཐོང་ལགས་སོ། །</seg>
</tuv>
<tuv xml:lang="en">
<seg>Blessed One, I see the great assembly you brought about for the happiness of all beings.”</seg>
</tuv>
</tu>
<tu id="UT22084-051-002-TU-60">
<prop type="folio">F.182.b</prop>
<prop type="position">590</prop>
<prop type="location-id">UT22084-051-002-216</prop>
<prop type="revision">v-1.8.24-2023</prop>
<tuv xml:lang="bo">
<seg>བཅོམ་ལྡན་འདས་ཀྱིས་བཀའ་སྩལ་པ། བཀོད་པའི་རྒྱལ་པོ་སྲོག་ཆགས་དྲུག་ཁྲི་བཞི་སྟོང་བླ་ན་མེད་པ་ཡང་དག་པར་རྫོགས་པའི་བྱང་ཆུབ་ཏུ་དེང་ཁོ་ན་ལུང་བསྟན་པར་འགྱུར་རོ། །</seg>
</tuv>
<tuv xml:lang="en">
<seg>“Vyūharāja,” declared the Blessed One, “on this very day the attainment of unsurpassed and perfect awakening will be prophesied for sixty-four thousand beings.”</seg>
</tuv>
</tu>
<tu id="UT22084-051-002-TU-61">
<prop type="folio">F.182.b</prop>
<prop type="position">751</prop>
<prop type="location-id">UT22084-051-002-28</prop>
<prop type="revision">v-1.8.24-2023</prop>
<tuv xml:lang="bo">
<seg>དེ་ནས་བྱང་ཆུབ་སེམས་དཔའ་སེམས་དཔའ་ཆེན་པོ་ལག་ན་རྡོ་རྗེས་བཅོམ་ལྡན་འདས་ཀྱི་ཞབས་གཉིས་ལ་གཏུགས་ནས། བཅོམ་ལྡན་འདས་ལ་འདི་སྐད་ཅེས་གསོལ་ཏོ། །</seg>
</tuv>
<tuv xml:lang="en">
<seg>The bodhisattva great being Vajrapāṇi then fell at the feet of the Blessed One and said,</seg>
</tuv>
</tu>
<tu id="UT22084-051-002-TU-62">
<prop type="folio">F.182.b</prop>
<prop type="position">842</prop>
<prop type="location-id">UT22084-051-002-28</prop>
<prop type="revision">v-1.8.24-2023</prop>
<tuv xml:lang="bo">
<seg>བཅོམ་ལྡན་འདས་ལྷ་དང་། ཀླུ་དང་། གནོད་སྦྱིན་དང་། སྲིན་པོ་དང་། མི་དང་། སྤྱོད་པ་པ་དང་། ཀུན་ཏུ་རྒྱུ་མང་པོ་འདུས་ལགས་སོ། །</seg>
</tuv>
<tuv xml:lang="en">
<seg>“Blessed One, many gods, nāgas, yakṣas, rākṣasas, humans, carakas, and parivrājakas have gathered here.</seg>
</tuv>
</tu>
<tu id="UT22084-051-002-TU-63">
<prop type="folio">F.182.b</prop>
<prop type="position">947</prop>
<prop type="revision">v-1.8.24-2023</prop>
<prop type="location-id">UT22084-051-002-28</prop>
<tuv xml:lang="bo">
<seg>བདེ་བར་གཤེགས་པ་སེམས་ཅན་མང་པོ་འདུས་ལགས་སོ། །</seg>
</tuv>
<tuv xml:lang="en">
<seg>Well-Gone One, many beings have gathered here.</seg>
</tuv>
</tu>
<tu id="UT22084-051-002-TU-64">
<prop type="folio">F.182.b</prop>
<prop type="position">993</prop>
<prop type="revision">v-1.8.24-2023</prop>
<prop type="location-id">UT22084-051-002-28</prop>
<tuv xml:lang="bo">
<seg>བཅོམ་ལྡན་འདས་ཆོས་མཉན་པའི་དུས་ནི་འདི་ལགས་སོ། །</seg>
</tuv>
<tuv xml:lang="en">
<seg>Blessed One, this is the time for hearing the Dharma.</seg>
</tuv>
</tu>
<tu id="UT22084-051-002-TU-65">
<prop type="folio">F.182.b</prop>
<prop type="position">1056</prop>
<prop type="revision">v-1.8.24-2023</prop>
<prop type="location-id">UT22084-051-002-28</prop>
<tuv xml:lang="bo">
<seg>བདེ་བར་གཤེགས་པ་ཆོས་མཉན་པའི་དུས་ནི་འདི་ལགས་སོ། །</seg>
</tuv>
<tuv xml:lang="en">
<seg>Well-Gone One, this is the time for hearing the Dharma.”</seg>
</tuv>
</tu>
<tu id="UT22084-051-002-TU-66">
<prop type="folio">F.182.b</prop>
<prop type="position">1112</prop>
<prop type="location-id">UT22084-051-002-217</prop>
<prop type="revision">v-1.8.24-2023</prop>
<tuv xml:lang="bo">
<seg>དེ་ནས་བཅོམ་ལྡན་འདས་ཅང་མི་གསུང་བར་གྱུར་ནས།</seg>
</tuv>
<tuv xml:lang="en">
<seg>But the Blessed One remained silent.</seg>
</tuv>
</tu>
<tu id="UT22084-051-002-TU-67">
<prop type="folio">F.182.b</prop>
<prop type="position">1149</prop>
<prop type="location-id">UT22084-051-002-217</prop>
<prop type="revision">v-1.8.24-2023</prop>
<tuv xml:lang="bo">
<seg>བྱང་ཆུབ་སེམས་དཔའ་ལག་ན་རྡོ་རྗེས་ལན་གཉིས་ལན་གསུམ་གྱི་བར་དུ་དེ་བཞིན་གཤེགས་པ་ལ་གསོལ་བ་བཏབ་སྟེ།</seg>
</tuv>
<tuv xml:lang="en">
<seg>So the bodhisattva Vajrapāṇi then supplicated the Thus-Gone One a second time, and a third time:</seg>
</tuv>
</tu>
<tu id="UT22084-051-002-TU-68">
<prop type="folio">F.182.b</prop>
<prop type="position">1248</prop>
<prop type="revision">v-1.8.24-2023</prop>
<prop type="location-id">UT22084-051-002-29</prop>
<tuv xml:lang="bo">
<seg>བཅོམ་ལྡན་འདས་བསྟན་དུ་གསོལ། བདེ་བར་གཤེགས་པ་བསྟན་དུ་གསོལ།</seg>
</tuv>
<tuv xml:lang="en">
<seg>“Blessed One, I request you to teach the Dharma! Well-Gone One, I request you to teach the Dharma!</seg>
</tuv>
</tu>
<tu id="UT22084-051-002-TU-69">
<prop type="folio">F.182.b</prop>
<prop type="position">1346</prop>
<prop type="location-id">UT22084-051-002-29</prop>
<prop type="revision">v-1.8.24-2023</prop>
<tuv xml:lang="bo">
<seg>སེམས་ཅན་ཐམས་ཅད་ཀྱི་བསམ་པ་གྲུབ་པར་མཛད་དུ་གསོལ།</seg>
</tuv>
<tuv xml:lang="en">
<seg>I request you to fulfill the aspirations of all beings!</seg>
</tuv>
</tu>
<tu id="UT22084-051-002-TU-70">
<prop type="folio">F.182.b</prop>
<prop type="position">1402</prop>
<prop type="location-id">UT22084-051-002-29</prop>
<prop type="revision">v-1.8.24-2023</prop>
<tuv xml:lang="bo">
<seg>བཅོམ་ལྡན་འདས་འགྱོད་པ་བསལ་བ་དང་།</seg>
</tuv>
<tuv xml:lang="en">
<seg>Blessed One, I request you to dispel their remorse!</seg>
</tuv>
</tu>
<tu id="UT22084-051-002-TU-71">
<prop type="folio">F.182.b</prop>
<prop type="position">1454</prop>
<prop type="location-id">UT22084-051-002-29</prop>
<prop type="revision">v-1.8.24-2023</prop>
<tuv xml:lang="bo">
<seg>སེམས་ཅན་ཐམས་ཅད་ལ་སྨན་པ་དང་བདེ་བའི་སླད་དུ་ཆོས་ཐམས་ཅད་ཀྱི་ཡོན་ཏན་བཀོད་པའི་རྒྱལ་པོ་ཞེས་བགྱི་བའི་མདོ། །</seg>
</tuv>
<tuv xml:lang="en">
<seg>For the welfare and happiness of all beings, I request you to teach the sūtra called The King of the Array of All Dharma Qualities</seg>
</tuv>
</tu>
<tu id="UT22084-051-002-TU-72">
<prop type="folio">F.182.b</prop>
<prop type="position">1587</prop>
<prop type="location-id">UT22084-051-002-29</prop>
<prop type="revision">v-1.8.24-2023</prop>
<tuv xml:lang="bo">
<seg>ཉོན་མོངས་པ་ཐམས་ཅད་ཟད་པར་བགྱིད་པ།</seg>
</tuv>
<tuv xml:lang="en">
<seg>It extinguishes all disturbing emotions,</seg>
</tuv>
</tu>
<tu id="UT22084-051-002-TU-73">
<prop type="folio">F.183.a</prop>
<prop type="position">381</prop>
<prop type="location-id">UT22084-051-002-29</prop>
<prop type="revision">v-1.8.24-2023</prop>
<tuv xml:lang="bo">
<seg>བདུད་ཐམས་ཅད་ཡང་དག་པར་འཇོམས་པ། སྡིག་པ་ཐམས་ཅད་ཟད་པར་བགྱིད་པ།</seg>
</tuv>
<tuv xml:lang="en">
<seg>overcomes all demons, brings an end to all evil deeds,</seg>
</tuv>
</tu>
<tu id="UT22084-051-002-TU-74">
<prop type="folio">F.183.a</prop>
<prop type="position">436</prop>
<prop type="location-id">UT22084-051-002-29</prop>
<prop type="revision">v-1.8.24-2023</prop>
<tuv xml:lang="bo">
<seg>སེམས་ཅན་མ་དད་པ་རྣམས་དད་པར་བགྱིད་པ། མུ་གེའི་གནོད་པ་ཞི་བར་བགྱིད་པ།</seg>
</tuv>
<tuv xml:lang="en">
<seg>generates faith in those who lack faith, quells the torments caused by famines,</seg>
</tuv>
</tu>
<tu id="UT22084-051-002-TU-75">
<prop type="folio">F.183.a</prop>
<prop type="position">516</prop>
<prop type="location-id">UT22084-051-002-29</prop>
<prop type="revision">v-1.8.24-2023</prop>
<tuv xml:lang="bo">
<seg>ནད་ཐམས་ཅད་ཞི་བར་བགྱིད་པ། དུས་མ་ལགས་པར་འཆི་བ་ཐམས་ཅད་ཟློག་པ།</seg>
</tuv>
<tuv xml:lang="en">
<seg>cures all sicknesses, and wards off untimely death.</seg>
</tuv>
</tu>
<tu id="UT22084-051-002-TU-76">
<prop type="folio">F.183.a</prop>
<prop type="position">568</prop>
<prop type="location-id">UT22084-051-002-29</prop>
<prop type="revision">v-1.8.24-2023</prop>
<tuv xml:lang="bo">
<seg>བདག་གིས་དེ་བཞིན་གཤེགས་པ་གློག་སྣང་བ་ལས་ཐོས་ནས།</seg>
</tuv>
<tuv xml:lang="en">
<seg>The very moment I heard it from the Thus-Gone One Vidyuprabhāsa,</seg>
</tuv>
</tu>
<tu id="UT22084-051-002-TU-77">
<prop type="folio">F.183.a</prop>
<prop type="position">634</prop>
<prop type="location-id">UT22084-051-002-29</prop>
<prop type="revision">v-1.8.24-2023</prop>
<tuv xml:lang="bo">
<seg>ཐོས་པའི་མོད་ལ་ཆོས་ཐམས་ཅད་མངོན་སུམ་དུ་གྱུར་ཅིང་། ངན་སོང་ཐམས་ཅད་ཡང་དག་པར་ཆད་དེ།</seg>
</tuv>
<tuv xml:lang="en">
<seg>all phenomena became immediately apparent to me, the gates to the lower realms closed completely,</seg>
</tuv>
</tu>
<tu id="UT22084-051-002-TU-78">
<prop type="folio">F.183.a</prop>
<prop type="position">732</prop>
<prop type="location-id">UT22084-051-002-29</prop>
<prop type="revision">v-1.8.24-2023</prop>
<tuv xml:lang="bo">
<seg>ལས་ཀྱི་སྒྲིབ་པ་ཐམས་ཅད་ཡང་དག་པར་ཆད་པ་གང་ལགས་པ་དེ་བསྟན་པར་གསོལ།</seg>
</tuv>
<tuv xml:lang="en">
<seg>and all karmic obscurations were eliminated. Please teach this sūtra!”</seg>
</tuv>
</tu>
<tu id="UT22084-051-002-TU-79">
<prop type="folio">F.183.a</prop>
<prop type="position">804</prop>
<prop type="location-id">UT22084-051-002-30</prop>
<prop type="revision">v-1.8.24-2023</prop>
<tuv xml:lang="bo">
<seg>དེ་ནས་བཅོམ་ལྡན་འདས་ཀྱིས་བྱང་ཆུབ་སེམས་དཔའ་ལག་ན་རྡོ་རྗེ་ལ་འདི་སྐད་ཅེས་བཀའ་སྩལ་ཏོ། །</seg>
</tuv>
<tuv xml:lang="en">
<seg>But in response, the Blessed One told the bodhisattva great being Vajrapāṇi,</seg>
</tuv>
</tu>
<tu id="UT22084-051-002-TU-80">
<prop type="folio">F.183.a</prop>
<prop type="position">883</prop>
<prop type="location-id">UT22084-051-002-30</prop>
<prop type="revision">v-1.8.24-2023</prop>
<tuv xml:lang="bo">
<seg>རིགས་ཀྱི་བུ་ཕྱི་མའི་དུས་ཕྱི་མའི་ཚེ་སེམས་ཅན་ངའི་བསྟན་པ་ལ་མ་དད་པ་དང་།</seg>
</tuv>
<tuv xml:lang="en">
<seg>“Noble son, in the future there will be beings who have no faith in my teaching,</seg>
</tuv>
</tu>
<tu id="UT22084-051-002-TU-81">
<prop type="folio">F.183.a</prop>
<prop type="position">964</prop>
<prop type="location-id">UT22084-051-002-30</prop>
<prop type="revision">v-1.8.24-2023</prop>
<tuv xml:lang="bo">
<seg>དེ་བཞིན་གཤེགས་པས་གསུངས་པའི་མདོ་སྡེ་དག་ལ་མངོན་པར་མ་དད་ཅིང་ཡིད་མི་ཆེས་ལ།</seg>
</tuv>
<tuv xml:lang="en">
<seg>who have no genuine faith or trust in the sūtras spoken by the Thus-Gone One.</seg>
</tuv>
</tu>
<tu id="UT22084-051-002-TU-82">
<prop type="folio">F.183.a</prop>
<prop type="position">1043</prop>
<prop type="location-id">UT22084-051-002-30</prop>
<prop type="revision">v-1.8.24-2023</prop>
<tuv xml:lang="bo">
<seg>ཚིག་འདི་སྐད་དུ་འདི་ནི་དེ་བཞིན་གཤེགས་པས་གསུངས་པའི་མདོ་སྡེ་མ་ཡིན་ནོ། །</seg>
</tuv>
<tuv xml:lang="en">
<seg>They will claim, ‘This is not a sūtra taught by the Thus-Gone One,’</seg>
</tuv>
</tu>
<tu id="UT22084-051-002-TU-83">
<prop type="folio">F.183.a</prop>
<prop type="position">1112</prop>
<prop type="location-id">UT22084-051-002-30</prop>
<prop type="revision">v-1.8.24-2023</prop>
<tuv xml:lang="bo">
<seg>འདི་ལ་ནི་ལེགས་པར་བྱས་པ་དང་། ཉེས་པར་བྱས་པའི་ལས་ཀྱི་འབྲས་བུ་རྣམ་པར་སྨིན་པ་ཅི་ཡང་མེད་དོ་ཞེས་ཟེར་བ་དག་འབྱུང་བར་འགྱུར་ཏེ།</seg>
</tuv>
<tuv xml:lang="en">
<seg>or, ‘According to this teaching there is no karmic maturation of either good or bad actions.’</seg>
</tuv>
</tu>
<tu id="UT22084-051-002-TU-84">
<prop type="folio">F.183.a</prop>
<prop type="position">1206</prop>
<prop type="location-id">UT22084-051-002-30</prop>
<prop type="revision">v-1.8.24-2023</prop>
<tuv xml:lang="bo">
<seg>དེ་དག་ནི་ཆགས་པས་ཟིལ་གྱིས་ནོན་ནས། མཆོད་པ་ཡང་མངོན་པར་འདུ་བྱེད་པར་མི་འགྱུར་ལ། ཆོས་སྨྲ་བ་དེ་དག་ལ་ཡང་མཆོད་པ་བྱེད་པར་མི་འགྱུར་ཏེ།</seg>
</tuv>
<tuv xml:lang="en">
<seg>Overwhelmed by greed, they will not engage in activities of worship, not even toward those who teach the Dharma.</seg>
</tuv>