Browse Source

Merge pull request #310 from visuddhinanda:master

圣典样式微调
visuddhinanda 5 years ago
parent
commit
d1bb1754ea

+ 15 - 6
app/install/db_update_toc.php

@@ -29,10 +29,10 @@ File: <input type="text" name="file" value="title"><br>
 Author: <input type="text" name="author" value=""><br>
 Author: <input type="text" name="author" value=""><br>
 Language:
 Language:
 <select name="lang">
 <select name="lang">
-<option value="1">pali</option>
-<option value="2">English</option>
-<option value="3">简体中文</option>
-<option value="4">繁体中文</option>
+<option value="pali">pali</option>
+<option value="en">English</option>
+<option value="zh-hans">简体中文</option>
+<option value="zh-hant">繁体中文</option>
 </select>
 </select>
 <br>
 <br>
 <input type="submit">
 <input type="submit">
@@ -125,13 +125,22 @@ $PDO->query($query);
 $PDO->beginTransaction();
 $PDO->beginTransaction();
 $query="INSERT INTO 'index' ('id','book','paragraph','title','title_en' ,'level','type','language','author','share','create_time','update_time' ) VALUES ( NULL , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? )";
 $query="INSERT INTO 'index' ('id','book','paragraph','title','title_en' ,'level','type','language','author','share','create_time','update_time' ) VALUES ( NULL , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? )";
 $stmt = $PDO->prepare($query);
 $stmt = $PDO->prepare($query);
-if($_lang=="1"){
+if($_lang=="pali"){
     $type=1;
     $type=1;
 }
 }
 else{
 else{
     $type=2;
     $type=2;
 }
 }
 foreach($arrInserString as $title){
 foreach($arrInserString as $title){
+	if(isset($title[7])){
+		$author = $title[7];
+	}
+	else if(isset($_author)){
+		$author = $_author;
+	}
+	else{
+		$author = "";
+	}
 	$newData=array(
 	$newData=array(
         $book,
         $book,
         $title[2],
         $title[2],
@@ -140,7 +149,7 @@ foreach($arrInserString as $title){
         $title[3],
         $title[3],
 		$type,
 		$type,
 	    $_lang,
 	    $_lang,
-        $_author,
+        $author,
 	   1,
 	   1,
 	   mTime(),
 	   mTime(),
        mTime()
        mTime()

+ 4 - 4
app/pali_sent/pali_sent_list.php

@@ -21,11 +21,11 @@ foreach ($paraList as $key => $value) {
     # code...
     # code...
     $stmt->execute(array($value->book,$value->para));
     $stmt->execute(array($value->book,$value->para));
     $Fetch = $stmt->fetchAll(PDO::FETCH_ASSOC);
     $Fetch = $stmt->fetchAll(PDO::FETCH_ASSOC);
-         $sent["info"]=array("book"=>$value->book,"para"=>$value->para);
-        $sent["data"]=$Fetch;
-        $output[] = $sent;  
+    $sent["info"]=array("book"=>$value->book,"para"=>$value->para);
+    $sent["data"]=$Fetch;
+    $output[] = $sent;  
 }
 }
 
 
-    echo json_encode($output, JSON_UNESCAPED_UNICODE);
+echo json_encode($output, JSON_UNESCAPED_UNICODE);
 
 
 ?>
 ?>

+ 53 - 0
app/palicanon/book_tag.php

@@ -16,5 +16,58 @@ foreach ($arrBookTag as $bookkey => $bookvalue) {
         $output[] = array($bookvalue);
         $output[] = array($bookvalue);
     }
     }
 }
 }
+
+
+$dns = "sqlite:"._FILE_DB_PALI_TOC_;
+$dbh_toc = new PDO($dns, "", "",array(PDO::ATTR_PERSISTENT=>true));
+$dbh_toc->setAttribute(PDO::ATTR_ERRMODE, PDO::ERRMODE_WARNING);  
+
+$dns = "sqlite:"._FILE_DB_PALITEXT_;
+$dbh_pali_text = new PDO($dns, "", "",array(PDO::ATTR_PERSISTENT=>true));
+$dbh_pali_text->setAttribute(PDO::ATTR_ERRMODE, PDO::ERRMODE_WARNING);
+
+$dns = "sqlite:"._FILE_DB_RESRES_INDEX_;
+$dbh_res = new PDO($dns, "", "",array(PDO::ATTR_PERSISTENT=>true));
+$dbh_res->setAttribute(PDO::ATTR_ERRMODE, PDO::ERRMODE_WARNING);
+
+
+
+
+foreach ($output as $key => $value) {
+	# code...
+		$book = (int)$value[0]->book;
+		$para = (int)$value[0]->para;
+		$level = (int)$value[0]->level;
+	if(count($output)<100 || (count($output)>100 && $level==1)){
+		$query = "SELECT * FROM pali_text WHERE book = ? and paragraph = ?";
+		$stmt = $dbh_pali_text->prepare($query);
+		$stmt->execute(array($book,$para));
+		$paraInfo = $stmt->fetch(PDO::FETCH_ASSOC);
+		if($paraInfo){	
+			# 查进度
+			$query = "SELECT lang, all_trans from progress_chapter where book=? and para=?";
+			$stmt = $dbh_toc->prepare($query);
+			$sth_toc = $dbh_toc->prepare($query);
+			$sth_toc->execute(array($book,$para));
+			$paraProgress = $sth_toc->fetchAll(PDO::FETCH_ASSOC);
+			$output[$key][0]->progress=$paraProgress;
+		
+			#查标题
+			if(isset($_GET["lang"])){
+				$query = "SELECT title from 'index' where book=? and paragraph=? and language=?";
+				$stmt = $dbh_res->prepare($query);
+				$sth_title = $dbh_res->prepare($query);
+				$sth_title->execute(array($book,$para,$_GET["lang"]));
+				$trans_title = $sth_title->fetch(PDO::FETCH_ASSOC);
+				if($trans_title){
+					$output[$key][0]->trans_title=$trans_title['title'];
+				}
+			}
+		}
+
+	}
+	
+}
+
 echo json_encode($output, JSON_UNESCAPED_UNICODE);
 echo json_encode($output, JSON_UNESCAPED_UNICODE);
 ?>
 ?>

+ 21 - 5
app/palicanon/get_chapter_children.php

@@ -9,11 +9,15 @@ $dns = "sqlite:"._FILE_DB_PALITEXT_;
 $dbh_pali_text = new PDO($dns, "", "",array(PDO::ATTR_PERSISTENT=>true));
 $dbh_pali_text = new PDO($dns, "", "",array(PDO::ATTR_PERSISTENT=>true));
 $dbh_pali_text->setAttribute(PDO::ATTR_ERRMODE, PDO::ERRMODE_WARNING);
 $dbh_pali_text->setAttribute(PDO::ATTR_ERRMODE, PDO::ERRMODE_WARNING);
 
 
+$dns = "sqlite:"._FILE_DB_RESRES_INDEX_;
+$dbh_res = new PDO($dns, "", "",array(PDO::ATTR_PERSISTENT=>true));
+$dbh_res->setAttribute(PDO::ATTR_ERRMODE, PDO::ERRMODE_WARNING);
+
 if(isset($_GET["book"])){
 if(isset($_GET["book"])){
-	$book = $_GET["book"];
+	$book = (int)$_GET["book"];
 }
 }
 if(isset($_GET["para"])){
 if(isset($_GET["para"])){
-	$para = $_GET["para"];
+	$para = (int)$_GET["para"];
 }
 }
 
 
 $query = "SELECT chapter_len FROM pali_text WHERE book = ? and paragraph = ?";
 $query = "SELECT chapter_len FROM pali_text WHERE book = ? and paragraph = ?";
@@ -23,10 +27,10 @@ $paraInfo = $stmt->fetch(PDO::FETCH_ASSOC);
 if($paraInfo){
 if($paraInfo){
 	$query = "SELECT level FROM pali_text WHERE book = ? and (paragraph between ? and ?) and level<8 order by level ASC limit 0,1";
 	$query = "SELECT level FROM pali_text WHERE book = ? and (paragraph between ? and ?) and level<8 order by level ASC limit 0,1";
 	$stmt = $dbh_pali_text->prepare($query);
 	$stmt = $dbh_pali_text->prepare($query);
-	$stmt->execute(array($book,$para+1,$para+$paraInfo["chapter_len"]));
+	$stmt->execute(array($book,$para+1,$para+(int)$paraInfo["chapter_len"]-1));
 	$paraMax = $stmt->fetch(PDO::FETCH_ASSOC);
 	$paraMax = $stmt->fetch(PDO::FETCH_ASSOC);
 	if($paraMax){
 	if($paraMax){
-		$query = "SELECT book, paragraph, level , toc as title FROM pali_text WHERE book = ? and (paragraph between ? and ?) and level = ?  limit 0,1000";
+		$query = "SELECT book, paragraph as para, level , toc as title FROM pali_text WHERE book = ? and (paragraph between ? and ?) and level = ?  limit 0,1000";
 		$stmt = $dbh_pali_text->prepare($query);
 		$stmt = $dbh_pali_text->prepare($query);
 		$stmt->execute(array($book,$para,$para+$paraInfo["chapter_len"],$paraMax["level"]));
 		$stmt->execute(array($book,$para,$para+$paraInfo["chapter_len"],$paraMax["level"]));
 		$paraList = $stmt->fetchAll(PDO::FETCH_ASSOC);	
 		$paraList = $stmt->fetchAll(PDO::FETCH_ASSOC);	
@@ -35,9 +39,21 @@ if($paraInfo){
 			$query = "SELECT lang, all_trans from progress_chapter where book=? and para=?";
 			$query = "SELECT lang, all_trans from progress_chapter where book=? and para=?";
 			$stmt = $dbh_toc->prepare($query);
 			$stmt = $dbh_toc->prepare($query);
 			$sth_toc = $dbh_toc->prepare($query);
 			$sth_toc = $dbh_toc->prepare($query);
-			$sth_toc->execute(array($book,$para));
+			$sth_toc->execute(array($value["book"],$value["para"]));
 			$paraProgress = $sth_toc->fetchAll(PDO::FETCH_ASSOC);
 			$paraProgress = $sth_toc->fetchAll(PDO::FETCH_ASSOC);
 			$paraList[$key]["progress"]=$paraProgress;
 			$paraList[$key]["progress"]=$paraProgress;
+
+			#查标题
+			if(isset($_GET["lang"])){
+				$query = "SELECT title from 'index' where book=? and paragraph=? and language=?";
+				$stmt = $dbh_res->prepare($query);
+				$sth_title = $dbh_res->prepare($query);
+				$sth_title->execute(array($value["book"],$value["para"],$_GET["lang"]));
+				$trans_title = $sth_title->fetch(PDO::FETCH_ASSOC);
+				if($trans_title){
+					$paraList[$key]["trans_title"]=$trans_title['title'];
+				}
+			}
 		}
 		}
 		echo json_encode($paraList, JSON_UNESCAPED_UNICODE);
 		echo json_encode($paraList, JSON_UNESCAPED_UNICODE);
 	}
 	}

+ 54 - 0
app/palicanon/get_chapter_info.php

@@ -0,0 +1,54 @@
+<?php
+require_once '../path.php';
+
+$dns = "sqlite:"._FILE_DB_PALI_TOC_;
+$dbh_toc = new PDO($dns, "", "",array(PDO::ATTR_PERSISTENT=>true));
+$dbh_toc->setAttribute(PDO::ATTR_ERRMODE, PDO::ERRMODE_WARNING);  
+
+$dns = "sqlite:"._FILE_DB_PALITEXT_;
+$dbh_pali_text = new PDO($dns, "", "",array(PDO::ATTR_PERSISTENT=>true));
+$dbh_pali_text->setAttribute(PDO::ATTR_ERRMODE, PDO::ERRMODE_WARNING);
+
+$dns = "sqlite:"._FILE_DB_RESRES_INDEX_;
+$dbh_res = new PDO($dns, "", "",array(PDO::ATTR_PERSISTENT=>true));
+$dbh_res->setAttribute(PDO::ATTR_ERRMODE, PDO::ERRMODE_WARNING);
+
+if(isset($_GET["book"])){
+	$book = (int)$_GET["book"];
+}
+if(isset($_GET["para"])){
+	$para = (int)$_GET["para"];
+}
+
+$query = "SELECT * FROM pali_text WHERE book = ? and paragraph = ?";
+$stmt = $dbh_pali_text->prepare($query);
+$stmt->execute(array($book,$para));
+$paraInfo = $stmt->fetch(PDO::FETCH_ASSOC);
+if($paraInfo){	
+	# 查进度
+	$query = "SELECT lang, all_trans from progress_chapter where book=? and para=?";
+	$stmt = $dbh_toc->prepare($query);
+	$sth_toc = $dbh_toc->prepare($query);
+	$sth_toc->execute(array($book,$para));
+	$paraProgress = $sth_toc->fetchAll(PDO::FETCH_ASSOC);
+	$paraInfo["progress"]=$paraProgress;
+
+	#查标题
+	if(isset($_GET["lang"])){
+		$query = "SELECT title from 'index' where book=? and paragraph=? and language=?";
+		$stmt = $dbh_res->prepare($query);
+		$sth_title = $dbh_res->prepare($query);
+		$sth_title->execute(array($book,$para,$_GET["lang"]));
+		$trans_title = $sth_title->fetch(PDO::FETCH_ASSOC);
+		if($trans_title){
+			$paraInfo["trans_title"]=$trans_title['title'];
+		}
+	}
+	echo json_encode($paraInfo, JSON_UNESCAPED_UNICODE);
+}
+else{
+	echo json_encode(array(), JSON_UNESCAPED_UNICODE);
+}
+
+
+?>

+ 84 - 40
app/palicanon/index.php

@@ -11,10 +11,7 @@ require_once "../pcdl/html_head.php";
     ?>
     ?>
 
 
     <style>
     <style>
-        #main_video_win iframe {
-            width: 100%;
-            height: 100%;
-        }
+
 
 
         #main_tag {
         #main_tag {
             font-size: 150%;
             font-size: 150%;
@@ -132,6 +129,12 @@ require_once "../pcdl/html_head.php";
 		.parent_chapter .chapter_book,.parent_chapter .chapter_progress{
 		.parent_chapter .chapter_book,.parent_chapter .chapter_progress{
 			display:none;
 			display:none;
 		}
 		}
+
+		#select_bar {
+			display: flex;
+			justify-content: space-between;
+		}
+
         @media screen and (max-width:800px) {
         @media screen and (max-width:800px) {
             .sutta_row {
             .sutta_row {
                 grid-template-columns: 100px 1fr 1fr;
                 grid-template-columns: 100px 1fr 1fr;
@@ -141,7 +144,9 @@ require_once "../pcdl/html_head.php";
                 grid-column: 1 / 4;
                 grid-column: 1 / 4;
             }
             }
         }
         }
-    </style>
+	</style>
+	<link type="text/css" rel="stylesheet" href="../palicanon/style.css" />
+	
     <script>
     <script>
         var tag_level = <?php echo file_get_contents("../public/book_tag/tag_list.json"); ?>;
         var tag_level = <?php echo file_get_contents("../public/book_tag/tag_list.json"); ?>;
     </script>
     </script>
@@ -152,45 +157,84 @@ require_once "../pcdl/html_head.php";
     require_once "../public/_pdo.php";
     require_once "../public/_pdo.php";
     require_once '../media/function.php';
     require_once '../media/function.php';
     require_once '../public/function.php';
     require_once '../public/function.php';
-
-    echo "<div id='course_head_bar' style='background-color:var(--tool-bg-color1);padding:1em 10px 10px 10px;'>";
-    echo "<div class='index_inner '>";
-    echo "<div style='font-size:140%'>";
-    echo "</div>";
-    echo '<div id="main_tag"  style="">';
-    echo '<span tag="sutta" title="sutta"></span>';
-    echo '<span tag="vinaya"  title="vinaya"></span>';
-    echo '<span tag="abhidhamma" title="abhidhamma"></span>';
-    echo '<span tag="mūla" title="mūla"></span>';
-    echo '<span tag="aṭṭhakathā" title="aṭṭhakathā"></span>';
-    echo '<span tag="ṭīkā" title="ṭīkā"></span>';
-    echo '<span tag="añña" title="añña"></span>';
-    echo '</div>';
-    echo '<div id="tag_selected"></div>';
-    echo '<div level="0" class="tag_others"></div>';
-    echo '<div level="1" class="tag_others"></div>';
-    echo '<div level="2" class="tag_others"></div>';
-    echo '<div level="3" class="tag_others"></div>';
-    echo '<div level="4" class="tag_others"></div>';
-    echo '<div level="5" class="tag_others"></div>';
-    echo '<div level="100" class="tag_others"></div>';
-    echo '<div level="8" class="tag_others"></div>';
-    echo "</div>";
-    echo '</div>';
-    ?>
-	<div class='index_inner'>
-	<div id="chapter_shell" style="display:flex;" >
-
-    <div id="book_list" class="chapter_list" list="1" >
+   ?>
+    <div id='course_head_bar' style='background-color:var(--tool-bg-color1);padding:1em 10px 10px 10px;'>
+    <div class='index_inner '>
+    <div style='font-size:140%'>
     </div>
     </div>
-
-    <div id="chapter_list_1" class="chapter_list"  >
-    </div>
-    <div id="chapter_list_2" class="chapter_list" >
+    <div id="main_tag"  style="">
+    <span tag="sutta" title="sutta"></span>
+    <span tag="vinaya"  title="vinaya"></span>
+    <span tag="abhidhamma" title="abhidhamma"></span>
+    <span tag="mūla" title="mūla"></span>
+    <span tag="aṭṭhakathā" title="aṭṭhakathā"></span>
+    <span tag="ṭīkā" title="ṭīkā"></span>
+    <span tag="añña" title="añña"></span>
+	</div>
+	
+	<div id="select_bar" >
+		<div id="tag_selected"></div>
+		<div><button onclick="tag_list_slide_toggle()">展开</button></div>
+	</div>
+	<div>
+		
+		<div id="tag_list">
+			<div level="0" class="tag_others"></div>
+			<div level="1" class="tag_others"></div>
+			<div level="2" class="tag_others"></div>
+			<div level="3" class="tag_others"></div>
+			<div level="4" class="tag_others"></div>
+			<div level="5" class="tag_others"></div>
+			<div level="100" class="tag_others"></div>
+			<div level="8" class="tag_others"></div>
+		</div>
+	</div>
     </div>
     </div>
-    <div id="chapter_list_3" class="chapter_list" >
     </div>
     </div>
+ 
+	<div class='index_inner'>
 
 
+	<div id="chapter_shell" class="chapter_list" >
+	<div id="list_shell_1" class="show" level="1">
+		<ul id="list-1" class="grid" level="1" >
+		</ul>
+	</div>
+
+	<div id="list_shell_2" level="2">
+		<ul id="list-2" class="hidden" level="2"  >
+		</ul>
+	</div>
+
+	<div id="list_shell_3" level="3">
+		<ul id="list-3" class="hidden" level="3" >
+		</ul>
+	</div>
+
+	<div id="list_shell_4" level="4">
+		<ul id="list-4" class="hidden" level="4" >
+		</ul>
+	</div>
+
+	<div id="list_shell_5" level="5">
+		<ul id="list-5" class="hidden" level="5" >
+		</ul>
+	</div>
+
+	<div id="list_shell_6" level="6">
+		<ul id="list-6" class="hidden" level="6" >
+		</ul>
+	</div>
+
+	<div id="list_shell_7" level="7">
+		<ul id="list-7" class="hidden" level="7" >
+		</ul>
+	</div>
+
+	<div id="list_shell_8" level="8">
+		<ul id="list-8" class="hidden" level="8" >
+		</ul>
+	</div>
+	
     </div>
     </div>
     </div>
     </div>
 
 

+ 162 - 33
app/palicanon/palicanon.js

@@ -58,11 +58,14 @@ function tag_changed() {
 		"book_tag.php",
 		"book_tag.php",
 		{
 		{
 			tag: strTags,
 			tag: strTags,
+			lang: "zh-hant",
 		},
 		},
 		function (data, status) {
 		function (data, status) {
 			let arrBookList = JSON.parse(data);
 			let arrBookList = JSON.parse(data);
 			let html = "";
 			let html = "";
 			allTags = new Array();
 			allTags = new Array();
+			let arrChapter = new Array();
+
 			for (const iterator of arrBookList) {
 			for (const iterator of arrBookList) {
 				let tag0 = "";
 				let tag0 = "";
 				let tags = iterator[0].tag.split("::");
 				let tags = iterator[0].tag.split("::");
@@ -90,23 +93,15 @@ function tag_changed() {
 					}
 					}
 				}
 				}
 
 
-				let level_class = "c_level_" + iterator[0].level;
-				//html += "<div style='width:100%;'>";
-				html += "<div class='sutta_row  " + level_class + "' >";
-				html += "<div class='sutta_box'>" + tag0 + "</div>";
-
-				html +=
-					"<div class='chapter_title'><a href='../reader/?view=chapter&book=" +
-					iterator[0].book +
-					"&para=" +
-					iterator[0].para +
-					"' target = '_blank'>" +
-					iterator[0].title +
-					"</a></div>";
-				html += "<div class='chapter_book'>book:" + iterator[0].book + " para:" + iterator[0].para + "</div>";
-				html += "<div class='chapter_progress'>tag=" + iterator[0].tag + "</div>";
-				html += "</div>";
-				//html += "</div>";
+				if (arrBookList.length < 100 || (arrBookList.length > 100 && iterator[0].level == 1)) {
+					arrChapter.push({
+						book: iterator[0].book,
+						para: iterator[0].para,
+						level: iterator[0].level,
+						title: iterator[0].title,
+						progress: [],
+					});
+				}
 			}
 			}
 
 
 			let newTags = new Array();
 			let newTags = new Array();
@@ -118,43 +113,171 @@ function tag_changed() {
 			allTags = newTags;
 			allTags = newTags;
 			allTags.sort(sortNumber);
 			allTags.sort(sortNumber);
 			tag_render_others();
 			tag_render_others();
-			$("#book_list").html(html);
+			palicanon_chapter_list_apply(arrChapter, 0);
 		}
 		}
 	);
 	);
 }
 }
 
 
-function palicanon_load_chapter(book, para) {
+function palicanon_load_chapter(book, para, div_index = 1) {
 	$.get(
 	$.get(
 		"get_chapter_children.php",
 		"get_chapter_children.php",
 		{
 		{
 			book: book,
 			book: book,
 			para: para,
 			para: para,
+			lang: "zh-hant",
 		},
 		},
 		function (data, status) {
 		function (data, status) {
 			let arrChapterList = JSON.parse(data);
 			let arrChapterList = JSON.parse(data);
-			let html = "";
-			for (const iterator of arrChapterList) {
-				html += palicanon_render_chapter_row(iterator);
-			}
-			$("#chapter_list_1").html(html);
-			$("#chapter_list_1").show();
-			$("#book_list").addClass("parent_chapter");
+			palicanon_chapter_list_apply(arrChapterList, div_index);
+			$.get(
+				"get_chapter_info.php",
+				{
+					book: book,
+					para: para,
+					lang: "zh-hant",
+				},
+				function (data, status) {
+					let arrChapterInfo = JSON.parse(data);
+					let html = render_chapter_head(arrChapterInfo, div_index + 1);
+					$("#chapter_head_" + (parseInt(div_index) + 1)).html(html);
+				}
+			);
 		}
 		}
 	);
 	);
 }
 }
+
+function render_chapter_head(chapter_info, level) {
+	let html = "";
+	let link = "../reader/?view=chapter&book=" + chapter_info.book + "&para=" + chapter_info.paragraph;
+	html += "<div class='title'>";
+	if (typeof chapter_info.trans_title == "undefined") {
+		html += "	<div class='title_1'><a href='" + link + "' target='_blank'>" + chapter_info.text + "</a></div>";
+	} else {
+		html +=
+			"	<div class='title_1'><a href='" + link + "' target='_blank'>" + chapter_info.trans_title + "</a></div>";
+	}
+	html += "<div class='title_2'>" + chapter_info.text + "</div>";
+	html += "</div>";
+	html += "<div class='info res_more'>";
+	html += "<div class='progress'>";
+	if (chapter_info.progress && chapter_info.progress.length > 0) {
+		let r = 12;
+		let perimeter = 2 * Math.PI * r;
+		for (const iterator of chapter_info.progress) {
+			let stroke1 = parseInt(perimeter * iterator.all_trans);
+			let stroke2 = perimeter - stroke1;
+			html += '	<div class="item">';
+			html += '<svg class="progress_circle" width="30" height="30" viewbox="0,0,30,30">';
+			html += '<circle class="progress_bg" cx="15" cy="15" r="12" stroke-width="5"  fill="none"></circle>';
+			html +=
+				'<circle class="progress_color" cx="15" cy="15" r="12" stroke-width="5" fill="none"  stroke-dasharray="' +
+				stroke1 +
+				" " +
+				stroke2 +
+				'"></circle>';
+			html += "</svg>";
+
+			html += "<div>" + iterator.lang + "-" + parseInt(iterator.all_trans * 100) + "%</div>";
+			html += "	</div>";
+		}
+	} else {
+		html += "无译文";
+	}
+	html += "</div>";
+
+	html += "</div>";
+
+	return html;
+}
+
+function palicanon_chapter_list_apply(chapterList, div_index) {
+	let iDiv = parseInt(div_index);
+	let html = "";
+	html += "<div id='chapter_head_" + (iDiv + 1) + "' class='chapter_head'></div>";
+	html += "<ul id='list-" + (iDiv + 1) + "' class='grid' level='" + (iDiv + 1) + "'>";
+	for (const iterator of chapterList) {
+		html += palicanon_render_chapter_row(iterator);
+	}
+	html += "</ul>";
+
+	$("#list_shell_" + (iDiv + 1)).html(html);
+	$("#list_shell_" + (iDiv + 1)).removeClass();
+	$("#list_shell_" + (iDiv + 1)).addClass("show");
+	//隐藏之后的列表
+	for (let index = iDiv + 2; index <= 8; index++) {
+		$("#list_shell_" + index).removeClass();
+		$("#list_shell_" + index).addClass("hidden");
+	}
+	//收缩当前的
+	$("#list-" + iDiv).removeClass();
+	$("#list-" + iDiv).addClass("list");
+
+	$("#list_shell_" + iDiv).removeClass();
+	$("#list_shell_" + iDiv).addClass("list");
+}
+
+function chapter_onclick(obj) {
+	let book = $(obj).attr("book");
+	let para = $(obj).attr("para");
+	let level = $(obj).parent().attr("level");
+	$(obj).siblings().removeClass("selected");
+	$(obj).addClass("selected");
+	$("#tag_list").slideUp();
+	palicanon_load_chapter(book, para, level);
+}
+
 function palicanon_render_chapter_row(chapter) {
 function palicanon_render_chapter_row(chapter) {
 	let html = "";
 	let html = "";
-	html += "<div class='sutta_row' >";
-	html += "<div class='chapter_title'><a>" + chapter.title + "</a></div>";
-	html += "<div class='chapter_book'>book:" + chapter.book + " para:" + chapter.para + "</div>";
-	html += "<div class='chapter_progress'>";
-	if (chapter.progress) {
+	let levelClass = "";
+	if (chapter.level == 1) {
+		levelClass = " level_1";
+	}
+	html +=
+		'<li class="' +
+		levelClass +
+		'" book="' +
+		chapter.book +
+		'" para="' +
+		chapter.para +
+		'" onclick="chapter_onclick(this)">';
+	html += '<div class="title">';
+
+	if (typeof chapter.trans_title == "undefined") {
+		html += "	<div class='title_1'>" + chapter.title + "</div>";
+	} else {
+		html += "	<div class='title_1'>" + chapter.trans_title + "</div>";
+	}
+
+	html += '	<div class="title_2" lang="pali">' + chapter.title + "</div>";
+	html += "</div>";
+	html += '<div class="resource">';
+	if (chapter.progress && chapter.progress.length > 0) {
+		let r = 12;
+		let perimeter = 2 * Math.PI * r;
+		let stroke1 = parseInt(perimeter * chapter.progress[0].all_trans);
+		let stroke2 = perimeter - stroke1;
+		html += '<svg class="progress_circle" width="30" height="30" viewbox="0,0,30,30">';
+		html += '<circle class="progress_bg" cx="15" cy="15" r="12" stroke-width="5"  fill="none"></circle>';
+		html +=
+			'<circle class="progress_color" cx="15" cy="15" r="12" stroke-width="5" fill="none"  stroke-dasharray="' +
+			stroke1 +
+			" " +
+			stroke2 +
+			'"></circle>';
+		html += "</svg>";
+		/*
 		for (const iterator of chapter.progress) {
 		for (const iterator of chapter.progress) {
-			html += "<div>" + iterator.lang + "-" + iterator.all_trans + "</div>";
+			html += '	<div class="item">';
+			html += "<div>" + iterator.lang + "-" + parseInt(iterator.all_trans * 100) + "%</div>";
+			html += "	</div>";
 		}
 		}
+		*/
 	}
 	}
+	html += '	<div class="res_more">';
+	html += "		更多";
+	html += "	</div>";
 	html += "</div>";
 	html += "</div>";
-	html += "</div>";
+	html += "</li>";
 	return html;
 	return html;
 }
 }
 function tag_get_local_word(word) {
 function tag_get_local_word(word) {
@@ -212,6 +335,8 @@ function tag_click(tag) {
 }
 }
 
 
 function render_tag_list() {
 function render_tag_list() {
+	$("#tag_list").slideDown();
+
 	let strListTag = gLocal.gui.selected + ":";
 	let strListTag = gLocal.gui.selected + ":";
 	for (const iterator of list_tag) {
 	for (const iterator of list_tag) {
 		strListTag += '<tag><span class="textt" title="' + iterator + '">' + tag_get_local_word(iterator) + "</span>";
 		strListTag += '<tag><span class="textt" title="' + iterator + '">' + tag_get_local_word(iterator) + "</span>";
@@ -237,3 +362,7 @@ function tag_remove(tag) {
 function sortNumber(a, b) {
 function sortNumber(a, b) {
 	return b - a;
 	return b - a;
 }
 }
+
+function tag_list_slide_toggle() {
+	$("#tag_list").slideToggle();
+}

+ 103 - 0
app/palicanon/style.css

@@ -0,0 +1,103 @@
+.chapter_list {
+	display: flex;
+}
+.chapter_list .grid {
+	width: 400px;
+	max-width: 100%;
+}
+.chapter_list .list {
+	width: 200px;
+}
+.chapter_list .list .res_more {
+	display: none;
+}
+
+.chapter_list .show {
+	display: block;
+}
+
+.chapter_list .hidden {
+	display: none;
+}
+.chapter_list .list .resource .item {
+	display: none;
+}
+.chapter_list ul {
+	background-color: antiquewhite;
+	border-left: 1px solid brown;
+	border-right: 1px solid brown;
+	padding: 0;
+}
+.chapter_list ul li {
+	display: flex;
+	justify-content: space-between;
+	padding: 8px;
+	white-space: nowrap;
+	overflow-x: hidden;
+}
+.chapter_list ul li:hover {
+	background-color: darkorange;
+}
+.chapter_list .resource {
+	display: flex;
+	margin-top: auto;
+	margin-bottom: auto;
+}
+.chapter_list .title .title_1 {
+	font-weight: 700;
+	font-size: 110%;
+}
+.chapter_list .title .title_2 {
+	font-size: 80%;
+	color: var(--main-color1);
+}
+.selected .title_2 {
+	font-size: 80%;
+	color: unset;
+}
+.chapter_list .title div:lang(pali) {
+	font-size: 80%;
+}
+
+.chapter_list .selected {
+	background-color: chocolate;
+	color: whitesmoke;
+}
+
+.chapter_list .level_1 {
+	background: linear-gradient(45deg, brown 20%, transparent 90%);
+	color: whitesmoke;
+}
+.progress_circle {
+	transform-origin: center;
+	transform: rotateZ(-90deg);
+}
+.progress_color {
+	stroke: mediumseagreen;
+}
+.progress_bg {
+	stroke: lightgrey;
+}
+
+.chapter_head {
+	border-bottom: 1px solid var(--border-line-color);
+}
+.chapter_head .title {
+	text-align: center;
+}
+.chapter_head .title .title_1 {
+	font-size: 120%;
+	padding: 1em 0 0.5em 0;
+	font-weight: 700;
+}
+.chapter_head .title .title_1 {
+	font-size: 120%;
+	padding: 1em 0 0.5em 0;
+	font-weight: 700;
+}
+.chapter_head .title .title_2 {
+	padding: 0 0 0.5em 0;
+}
+.progress .item {
+	display: flex;
+}

+ 3 - 0
app/studio/js/common.js

@@ -8,10 +8,13 @@ function debugOutput(str, level = 0) {
 	console.log(str);
 	console.log(str);
 }
 }
 function var_dump(str) {
 function var_dump(str) {
+	ntf_show(str);
+	/*
 	getStyleClass("debug_info").style.display = "-webkit-flex";
 	getStyleClass("debug_info").style.display = "-webkit-flex";
 	getStyleClass("debug_info").style.animation = "viewbug 2s";
 	getStyleClass("debug_info").style.animation = "viewbug 2s";
 	document.getElementById("debug").innerHTML = str;
 	document.getElementById("debug").innerHTML = str;
 	var t = setTimeout("clearDebugMsg()", 2000);
 	var t = setTimeout("clearDebugMsg()", 2000);
+	*/
 }
 }
 function clearDebugMsg() {
 function clearDebugMsg() {
 	document.getElementById("debug").innerHTML = "";
 	document.getElementById("debug").innerHTML = "";

+ 7 - 2
app/studio/js/editor.js

@@ -3635,17 +3635,22 @@ function getWordMeaningList(word) {
 	return arrOM;
 	return arrOM;
 }
 }
 
 
+//删除连音词
 function edit_un_remove(parentId) {
 function edit_un_remove(parentId) {
 	edit_un_RemoveHtmlNode(parentId);
 	edit_un_RemoveHtmlNode(parentId);
 
 
-	var xWord = gXmlBookDataBody.getElementsByTagName("word");
+	let xWord = gXmlBookDataBody.getElementsByTagName("word");
 	var count = 0;
 	var count = 0;
+	//移除内存数据
+
 	for (iWord = xWord.length - 1; iWord >= 0; iWord--) {
 	for (iWord = xWord.length - 1; iWord >= 0; iWord--) {
-		if (getNodeText(xWord[iWord], "un") == parentId) {
+		let id = getNodeText(xWord[iWord], "id");
+		if (id.indexOf(parentId) == 0 && id != parentId) {
 			xWord[iWord].parentNode.removeChild(xWord[iWord]);
 			xWord[iWord].parentNode.removeChild(xWord[iWord]);
 			count++;
 			count++;
 		}
 		}
 	}
 	}
+	//移除根单词的类标志
 	var parentElement = document.getElementById("wb" + parentId);
 	var parentElement = document.getElementById("wb" + parentId);
 	if (parentElement) {
 	if (parentElement) {
 		parentElement.classList.remove("un_parent");
 		parentElement.classList.remove("un_parent");

+ 3 - 3
app/studio/js/render.js

@@ -1,4 +1,4 @@
-var gRenderPageLimit = 1000; //不限制 设为1000
+var gRenderPageLimit = 1; //限制 1 不限制 设为1000
 
 
 var gDisplayCapacity = 20 * gRenderPageLimit;
 var gDisplayCapacity = 20 * gRenderPageLimit;
 var gCurrTopParagraph = 0;
 var gCurrTopParagraph = 0;
@@ -1622,7 +1622,7 @@ function sent_show_rel_map(book, para, begin, end) {
 				} else {
 				} else {
 					dest = iterator.dest_id + "[" + dest + "]";
 					dest = iterator.dest_id + "[" + dest + "]";
 				}
 				}
-/*
+				/*
 				if (strRel.indexOf("SV") >= 0 || strRel.indexOf("-P") >= 0) {
 				if (strRel.indexOf("SV") >= 0 || strRel.indexOf("-P") >= 0) {
 					memind += wid + "(" + pali + ")" + " ==> |" + strRel + "|" + dest + "\n";
 					memind += wid + "(" + pali + ")" + " ==> |" + strRel + "|" + dest + "\n";
 				} else if (strRel.indexOf("OV") >= 0 || strRel.indexOf("-S") >= 0) {
 				} else if (strRel.indexOf("OV") >= 0 || strRel.indexOf("-S") >= 0) {
@@ -1630,7 +1630,7 @@ function sent_show_rel_map(book, para, begin, end) {
 				} else {
 				} else {
 				}
 				}
 */
 */
-					memind += wid + "(" + pali + ")" + " -- " + strRel + " --> " + dest + "\n";
+				memind += wid + "(" + pali + ")" + " -- " + strRel + " --> " + dest + "\n";
 			}
 			}
 		}
 		}
 	}
 	}

+ 789 - 823
app/studio/js/xml.js

@@ -1,1188 +1,1154 @@
-var nWord=0;
+var nWord = 0;
 
 
-var suttaWordList=new Array();
-var tranParagraph=new Array();
+var suttaWordList = new Array();
+var tranParagraph = new Array();
 var g_useMode;
 var g_useMode;
-var g_countWordList=0;
-var g_wordListOrderby="count";
-var g_wordListOrder=false;
-var g_isDictFavo=false;
-var g_autoUpdataDB=true;
-
-var gTextEditMediaType="";
-var gSutta=0;
-var gPar=0;
-var gTran=0;
-var g_bookMark_array=['a','x','1','2','3','4','5'];
+var g_countWordList = 0;
+var g_wordListOrderby = "count";
+var g_wordListOrder = false;
+var g_isDictFavo = false;
+var g_autoUpdataDB = true;
+
+var gTextEditMediaType = "";
+var gSutta = 0;
+var gPar = 0;
+var gTran = 0;
+var g_bookMark_array = ["a", "x", "1", "2", "3", "4", "5"];
 
 
 var wordList = new Array();
 var wordList = new Array();
 
 
-function getNodeText(inNode,subTagName){
-	try{
-		if(inNode && inNode.getElementsByTagName(subTagName).length>0){
-			if(inNode.getElementsByTagName(subTagName)[0].childNodes.length>0){
+function getNodeText(inNode, subTagName) {
+	try {
+		if (inNode && inNode.getElementsByTagName(subTagName).length > 0) {
+			if (inNode.getElementsByTagName(subTagName)[0].childNodes.length > 0) {
 				var mValue = inNode.getElementsByTagName(subTagName)[0].childNodes[0].nodeValue;
 				var mValue = inNode.getElementsByTagName(subTagName)[0].childNodes[0].nodeValue;
-				mValue = mValue.replace('&lt;','<');
-				mValue = mValue.replace('&gt;','>');
-				return(mValue); 
+				mValue = mValue.replace("&lt;", "<");
+				mValue = mValue.replace("&gt;", ">");
+				return mValue;
+			} else {
+				return "";
 			}
 			}
-			else{
-				return("");
-			}
-		}
-		else{
-			return("");
+		} else {
+			return "";
 		}
 		}
-	}
-	catch(error){
+	} catch (error) {
 		console.warn(error);
 		console.warn(error);
-		return("");
+		return "";
 	}
 	}
-	return("");
+	return "";
 }
 }
 
 
-function setNodeText(inNode,subTagName,strValue){
-	if(strValue==null){
+function setNodeText(inNode, subTagName, strValue) {
+	if (strValue == null) {
 		return;
 		return;
 	}
 	}
 	var mValue = strValue.toString();
 	var mValue = strValue.toString();
-	mValue = mValue.replace('<','&lt;');
-	mValue = mValue.replace('>','&gt;');
-	try{
-		if(inNode && inNode.getElementsByTagName(subTagName).length==0){
-			var newNode=gXmlBookData.createElement(subTagName);
-			var textnode=gXmlBookData.createTextNode(" ");
+	mValue = mValue.replace("<", "&lt;");
+	mValue = mValue.replace(">", "&gt;");
+	try {
+		if (inNode && inNode.getElementsByTagName(subTagName).length == 0) {
+			var newNode = gXmlBookData.createElement(subTagName);
+			var textnode = gXmlBookData.createTextNode(" ");
 			newNode.appendChild(textnode);
 			newNode.appendChild(textnode);
 			inNode.appendChild(newNode);
 			inNode.appendChild(newNode);
 		}
 		}
-		if(inNode.getElementsByTagName(subTagName).length>0){
-			if(inNode.getElementsByTagName(subTagName)[0].childNodes.length==0){
-				var textnode=gXmlBookData.createTextNode(" ");
+		if (inNode.getElementsByTagName(subTagName).length > 0) {
+			if (inNode.getElementsByTagName(subTagName)[0].childNodes.length == 0) {
+				var textnode = gXmlBookData.createTextNode(" ");
 				inNode.getElementsByTagName(subTagName)[0].appendChild(textnode);
 				inNode.getElementsByTagName(subTagName)[0].appendChild(textnode);
 			}
 			}
-			if(inNode.getElementsByTagName(subTagName)[0].childNodes.length>0){
-				inNode.getElementsByTagName(subTagName)[0].childNodes[0].nodeValue=strValue;
-			}
-			else{
+			if (inNode.getElementsByTagName(subTagName)[0].childNodes.length > 0) {
+				inNode.getElementsByTagName(subTagName)[0].childNodes[0].nodeValue = strValue;
+			} else {
 				throw "can't accese text node";
 				throw "can't accese text node";
 			}
 			}
+		} else {
+			throw subTagName + ":not a sub Taget";
 		}
 		}
-		else{
-			throw subTagName+ ":not a sub Taget";
-		}
-	}
-	catch(error){
+	} catch (error) {
 		var_dump(error);
 		var_dump(error);
-		return(false);
+		return false;
 	}
 	}
-	return(true);
-
-
+	return true;
 }
 }
 
 
-function getNodeAttr(inNode,subTagName,attr){
-	try{
-		return(inNode.getElementsByTagName(subTagName)[0].getAttribute(attr));
-	}
-	catch(error){
+function getNodeAttr(inNode, subTagName, attr) {
+	try {
+		return inNode.getElementsByTagName(subTagName)[0].getAttribute(attr);
+	} catch (error) {
 		console.warn(error);
 		console.warn(error);
-		return("");
+		return "";
 	}
 	}
 }
 }
 
 
-function setNodeAttr(inNode,subTagName,attr,strValue){
-	if(!inNode || !strValue || !attr || attr==""){
+function setNodeAttr(inNode, subTagName, attr, strValue) {
+	if (!inNode || !strValue || !attr || attr == "") {
 		return;
 		return;
 	}
 	}
 	let mValue = strValue.toString();
 	let mValue = strValue.toString();
-	try{
-		if(inNode.getElementsByTagName(subTagName).length==0){
-			var newNode=gXmlBookData.createElement(subTagName);
-			var textnode=gXmlBookData.createTextNode(" ");
+	try {
+		if (inNode.getElementsByTagName(subTagName).length == 0) {
+			var newNode = gXmlBookData.createElement(subTagName);
+			var textnode = gXmlBookData.createTextNode(" ");
 			newNode.appendChild(textnode);
 			newNode.appendChild(textnode);
 			inNode.appendChild(newNode);
 			inNode.appendChild(newNode);
-		}		
-		try{
-			inNode.getElementsByTagName(subTagName)[0].setAttribute(attr,mValue);
 		}
 		}
-		catch(e){
-			newatt=gXmlBookData.createAttribute(attr);
-			newatt.nodeValue=mValue;
+		try {
+			inNode.getElementsByTagName(subTagName)[0].setAttribute(attr, mValue);
+		} catch (e) {
+			newatt = gXmlBookData.createAttribute(attr);
+			newatt.nodeValue = mValue;
 			inNode.getElementsByTagName(subTagName)[0].setAttributeNode(newatt);
 			inNode.getElementsByTagName(subTagName)[0].setAttributeNode(newatt);
-			return(mValue);			
+			return mValue;
 		}
 		}
-
-	}
-	catch(error){
+	} catch (error) {
 		console.error(error);
 		console.error(error);
-		return(false);
+		return false;
 	}
 	}
-	return(true);
-
-
+	return true;
 }
 }
 //根据xmlDocument 对象中的单词序号和单词节点创建单词块
 //根据xmlDocument 对象中的单词序号和单词节点创建单词块
 //返回 字符串
 //返回 字符串
-function createWordBlockByNode(id,wordNode){
-}
-
+function createWordBlockByNode(id, wordNode) {}
 
 
-function pushNewToList(inArray,strNew){
+function pushNewToList(inArray, strNew) {
 	//var isExist=false;
 	//var isExist=false;
-	for(x in inArray){
-		if(inArray[x]==strNew){
+	for (x in inArray) {
+		if (inArray[x] == strNew) {
 			return;
 			return;
 		}
 		}
 	}
 	}
 	inArray.push(strNew);
 	inArray.push(strNew);
 }
 }
-function findFirstCaseInDict(inWord){
-	var output="?";
-	var pali=com_getPaliReal(inWord);
-	if(mDict[pali]){
-		for(var iWord in mDict[pali]){
+function findFirstCaseInDict(inWord) {
+	var output = "?";
+	var pali = com_getPaliReal(inWord);
+	if (mDict[pali]) {
+		for (var iWord in mDict[pali]) {
 			{
 			{
-				if(mDict[pali][iWord].parts){
-					if(mDict[pali][iWord].parts.length>0){
-						return(mDict[pali][iWord].type+"#"+mDict[pali][iWord].gramma);
+				if (mDict[pali][iWord].parts) {
+					if (mDict[pali][iWord].parts.length > 0) {
+						return mDict[pali][iWord].type + "#" + mDict[pali][iWord].gramma;
 					}
 					}
 				}
 				}
 			}
 			}
 		}
 		}
 	}
 	}
-	return(output);
+	return output;
 }
 }
 
 
-function findFirstPartInDict(inWord){
-	var output="?";
-	var pali=com_getPaliReal(inWord);
-	if(mDict[pali]){
-		for(var iWord in mDict[pali]){
+function findFirstPartInDict(inWord) {
+	var output = "?";
+	var pali = com_getPaliReal(inWord);
+	if (mDict[pali]) {
+		for (var iWord in mDict[pali]) {
 			{
 			{
-				if(mDict[pali][iWord].parts){
-					if(mDict[pali][iWord].parts.length>0){
-						return(mDict[pali][iWord].parts);
+				if (mDict[pali][iWord].parts) {
+					if (mDict[pali][iWord].parts.length > 0) {
+						return mDict[pali][iWord].parts;
 					}
 					}
 				}
 				}
 			}
 			}
 		}
 		}
 	}
 	}
-	return(output);
+	return output;
 }
 }
-function findFirstPartMeanInDict(inWord){
-	var output="?";
-	var pali=com_getPaliReal(inWord);
-	if(mDict[pali]){
-		for(var iWord in mDict[pali]){
-			if(dict_language_enable.indexOf(mDict[pali][iWord].language)>=0){
-				if(mDict[pali][iWord].partmean){
-					if(mDict[pali][iWord].partmean.length>0){
-						return(mDict[pali][iWord].partmean);
+function findFirstPartMeanInDict(inWord) {
+	var output = "?";
+	var pali = com_getPaliReal(inWord);
+	if (mDict[pali]) {
+		for (var iWord in mDict[pali]) {
+			if (dict_language_enable.indexOf(mDict[pali][iWord].language) >= 0) {
+				if (mDict[pali][iWord].partmean) {
+					if (mDict[pali][iWord].partmean.length > 0) {
+						return mDict[pali][iWord].partmean;
 					}
 					}
 				}
 				}
 			}
 			}
 		}
 		}
 	}
 	}
-	return(output);
+	return output;
 }
 }
-function findFirstMeanInDict(inWord){
-	var output="?";
-	var pali=com_getPaliReal(inWord);
-	if(mDict[pali]){
-		for(var iWord in mDict[pali]){
+function findFirstMeanInDict(inWord) {
+	var output = "?";
+	var pali = com_getPaliReal(inWord);
+	if (mDict[pali]) {
+		for (var iWord in mDict[pali]) {
 			//if(dict_language_enable.indexOf(mDict[pali][iWord].language)>=0)
 			//if(dict_language_enable.indexOf(mDict[pali][iWord].language)>=0)
 			{
 			{
-				if(mDict[pali][iWord].mean){
-					if(mDict[pali][iWord].mean.length>0){
-						return(mDict[pali][iWord].mean.split("$")[0]);
+				if (mDict[pali][iWord].mean) {
+					if (mDict[pali][iWord].mean.length > 0) {
+						return mDict[pali][iWord].mean.split("$")[0];
 					}
 					}
 				}
 				}
 			}
 			}
 		}
 		}
 	}
 	}
-	return(output);
+	return output;
 }
 }
 
 
-function findAllMeanInDict(inWord,limit){
-	output=new Array();
-	for(var iCurrWord=0;iCurrWord<g_DictWordList.length;iCurrWord++){
-		if(g_DictWordList[iCurrWord].Pali==inWord){
-			meanList=g_DictWordList[iCurrWord].Mean.split("$");
-			for(iMean in meanList){
-				if(meanList[iMean].length>0){
+function findAllMeanInDict(inWord, limit) {
+	output = new Array();
+	for (var iCurrWord = 0; iCurrWord < g_DictWordList.length; iCurrWord++) {
+		if (g_DictWordList[iCurrWord].Pali == inWord) {
+			meanList = g_DictWordList[iCurrWord].Mean.split("$");
+			for (iMean in meanList) {
+				if (meanList[iMean].length > 0) {
 					output.push(meanList[iMean]);
 					output.push(meanList[iMean]);
-					if(output.length>limit){
-						return(output);
+					if (output.length > limit) {
+						return output;
 					}
 					}
 				}
 				}
 			}
 			}
 		}
 		}
 	}
 	}
-	return(output);
+	return output;
 }
 }
 
 
-
 //确认对单个词的修改
 //确认对单个词的修改
-function modifyApply(sWordId,update_user_dict){
-	let wordIndex=getWordIndex(sWordId);
-	
+function modifyApply(sWordId, update_user_dict) {
+	let wordIndex = getWordIndex(sWordId);
+
 	let arr_id_word = sWordId.split("-");
 	let arr_id_word = sWordId.split("-");
-	let book=arr_id_word[0].slice(1);
+	let book = arr_id_word[0].slice(1);
 	let paragraph = arr_id_word[1];
 	let paragraph = arr_id_word[1];
 	let wId = arr_id_word[2];
 	let wId = arr_id_word[2];
-	
+
 	let strApplyTo;
 	let strApplyTo;
-	if(document.getElementById("checkbox_apply_same").checked){
+	if (document.getElementById("checkbox_apply_same").checked) {
 		strApplyTo = "all";
 		strApplyTo = "all";
-	}
-	else{
+	} else {
 		strApplyTo = "current";
 		strApplyTo = "current";
 	}
 	}
-	
-	let wordCurrStatus=9;//草稿
-	if(update_user_dict){
-		wordCurrStatus=7;//保存为正式
+
+	let wordCurrStatus = 9; //草稿
+	if (update_user_dict) {
+		wordCurrStatus = 7; //保存为正式
 	}
 	}
-	
+
 	//关闭单词修改窗口
 	//关闭单词修改窗口
 	closeModifyWindow();
 	closeModifyWindow();
 	let x = gXmlBookDataBody.getElementsByTagName("word");
 	let x = gXmlBookDataBody.getElementsByTagName("word");
-	
-	
+
 	let msg_data = new Object();
 	let msg_data = new Object();
-	msg_data.id=sWordId;
-	
+	msg_data.id = sWordId;
+
 	//原来的值
 	//原来的值
-	let sPaliReal = getNodeText(x[wordIndex],"real");
-	let sPaliParent = getNodeText(x[wordIndex],"parent");	
-	
+	let sPaliReal = getNodeText(x[wordIndex], "real");
+	let sPaliParent = getNodeText(x[wordIndex], "parent");
+
 	//new value
 	//new value
 	let sPali = document.getElementById("id_text_pali").value;
 	let sPali = document.getElementById("id_text_pali").value;
-	let oldPali = getNodeText(x[wordIndex],"pali");
-	if(sPali!=oldPali){
-		setNodeText(x[wordIndex],"pali",sPali);
+	let oldPali = getNodeText(x[wordIndex], "pali");
+	if (sPali != oldPali) {
+		setNodeText(x[wordIndex], "pali", sPali);
 		msg_data.pali = sPali;
 		msg_data.pali = sPali;
 	}
 	}
-	setNodeAttr(x[wordIndex],"pali","status",wordCurrStatus);
-	
+	setNodeAttr(x[wordIndex], "pali", "status", wordCurrStatus);
+
 	let sReal = document.getElementById("id_text_real").value;
 	let sReal = document.getElementById("id_text_real").value;
-	let oldReal = getNodeText(x[wordIndex],"real");
-	if(sReal != oldReal){
-		setNodeText(x[wordIndex],"real",sReal);
-		msg_data.real=sReal;
+	let oldReal = getNodeText(x[wordIndex], "real");
+	if (sReal != oldReal) {
+		setNodeText(x[wordIndex], "real", sReal);
+		msg_data.real = sReal;
 	}
 	}
-	setNodeAttr(x[wordIndex],"real","status",wordCurrStatus);
-	
+	setNodeAttr(x[wordIndex], "real", "status", wordCurrStatus);
+
 	let sMeaning = document.getElementById("input_meaning").value;
 	let sMeaning = document.getElementById("input_meaning").value;
-	let oldMean = getNodeText(x[wordIndex],"mean");
-	if(sMeaning != oldMean){
-		setNodeText(x[wordIndex],"mean",sMeaning);
-		msg_data.mean=sMeaning;
-	}	
-	setNodeAttr(x[wordIndex],"mean","status",wordCurrStatus);
-	
+	let oldMean = getNodeText(x[wordIndex], "mean");
+	if (sMeaning != oldMean) {
+		setNodeText(x[wordIndex], "mean", sMeaning);
+		msg_data.mean = sMeaning;
+	}
+	setNodeAttr(x[wordIndex], "mean", "status", wordCurrStatus);
+
 	let sParent = document.getElementById("id_text_parent").value;
 	let sParent = document.getElementById("id_text_parent").value;
-	let oldParent = getNodeText(x[wordIndex],"parent");
-	if(sParent != oldParent){
-		setNodeText(x[wordIndex],"parent",sParent);	
-		msg_data.parent=sParent;
+	let oldParent = getNodeText(x[wordIndex], "parent");
+	if (sParent != oldParent) {
+		setNodeText(x[wordIndex], "parent", sParent);
+		msg_data.parent = sParent;
 	}
 	}
-	setNodeAttr(x[wordIndex],"parent","status",wordCurrStatus);
+	setNodeAttr(x[wordIndex], "parent", "status", wordCurrStatus);
 
 
 	let sParentGrammar = document.getElementById("parent_grammar").innerHTML;
 	let sParentGrammar = document.getElementById("parent_grammar").innerHTML;
-	let oldParentGrammar = getNodeText(x[wordIndex],"pg");
-	if(sParentGrammar != oldParentGrammar){
-		setNodeText(x[wordIndex],"pg",sParentGrammar);	
-		msg_data.pg=sParentGrammar;
+	let oldParentGrammar = getNodeText(x[wordIndex], "pg");
+	if (sParentGrammar != oldParentGrammar) {
+		setNodeText(x[wordIndex], "pg", sParentGrammar);
+		msg_data.pg = sParentGrammar;
 	}
 	}
-	setNodeAttr(x[wordIndex],"pg","status",wordCurrStatus);
-	
+	setNodeAttr(x[wordIndex], "pg", "status", wordCurrStatus);
+
 	let sParentParent = document.getElementById("id_text_prt_prt").value;
 	let sParentParent = document.getElementById("id_text_prt_prt").value;
-	let oldParentParent = getNodeText(x[wordIndex],"parent2");
-	if(sParentParent != oldParentParent){
-		setNodeText(x[wordIndex],"parent2",sParentParent);	
-		msg_data.parent2=sParentParent;
+	let oldParentParent = getNodeText(x[wordIndex], "parent2");
+	if (sParentParent != oldParentParent) {
+		setNodeText(x[wordIndex], "parent2", sParentParent);
+		msg_data.parent2 = sParentParent;
 	}
 	}
-	setNodeAttr(x[wordIndex],"parent2","status",wordCurrStatus);
-	
+	setNodeAttr(x[wordIndex], "parent2", "status", wordCurrStatus);
+
 	let sOrg = document.getElementById("input_org").value;
 	let sOrg = document.getElementById("input_org").value;
-	let oldOrg = getNodeText(x[wordIndex],"org");
-	if(sOrg != oldOrg){
-		setNodeText(x[wordIndex],"org",sOrg);	
-		msg_data.org=sOrg;
+	let oldOrg = getNodeText(x[wordIndex], "org");
+	if (sOrg != oldOrg) {
+		setNodeText(x[wordIndex], "org", sOrg);
+		msg_data.org = sOrg;
 	}
 	}
-	setNodeAttr(x[wordIndex],"org","status",wordCurrStatus);
-	
+	setNodeAttr(x[wordIndex], "org", "status", wordCurrStatus);
+
 	let sOm = document.getElementById("input_om").value;
 	let sOm = document.getElementById("input_om").value;
-	let oldOm = getNodeText(x[wordIndex],"om");
-	if(oldOm != sOm){
-		setNodeText(x[wordIndex],"om",sOm);	
-		msg_data.om=sOm;
+	let oldOm = getNodeText(x[wordIndex], "om");
+	if (oldOm != sOm) {
+		setNodeText(x[wordIndex], "om", sOm);
+		msg_data.om = sOm;
 	}
 	}
-	setNodeAttr(x[wordIndex],"om","status",wordCurrStatus);
-	
+	setNodeAttr(x[wordIndex], "om", "status", wordCurrStatus);
+
 	let sCase = document.getElementById("input_case").value;
 	let sCase = document.getElementById("input_case").value;
-	let oldCase = getNodeText(x[wordIndex],"case");
-	if(oldCase != sCase){
-		setNodeText(x[wordIndex],"case",sCase);	
-		msg_data.case=sCase;
+	let oldCase = getNodeText(x[wordIndex], "case");
+	if (oldCase != sCase) {
+		setNodeText(x[wordIndex], "case", sCase);
+		msg_data.case = sCase;
 	}
 	}
-	setNodeAttr(x[wordIndex],"case","status",wordCurrStatus);
-	
+	setNodeAttr(x[wordIndex], "case", "status", wordCurrStatus);
+
 	let bLocked = document.getElementById("input_lock").checked;
 	let bLocked = document.getElementById("input_lock").checked;
-	let oldLock = getNodeText(x[wordIndex],"lock");
-	if(bLocked != oldLock){
-		setNodeText(x[wordIndex],"lock",bLocked);	
-		msg_data.lock=bLocked;
-	}	
-	setNodeAttr(x[wordIndex],"lock","status",wordCurrStatus);
-	
-	let txtBookMark=document.getElementById("id_text_bookmark").value;
-	let oldBookMarkText = getNodeText(x[wordIndex],"bmt");
-	if(oldBookMarkText != txtBookMark){
-		setNodeText(x[wordIndex],"bmt",txtBookMark);
-		msg_data.bmt=txtBookMark;
-	}
-	setNodeAttr(x[wordIndex],"bmt","status",wordCurrStatus);
-	
-	let oldBookMarkColor = getNodeText(x[wordIndex],"bmc");
-	if(oldBookMarkColor==""){
-		oldBookMarkColor="bmc0";
-	}
-	if(oldBookMarkColor!=g_currBookMarkColor){
-		setNodeText(x[wordIndex],"bmc",g_currBookMarkColor);
-		msg_data.bmc=g_currBookMarkColor;
-		g_currBookMarkColor="";
-	}
-	setNodeAttr(x[wordIndex],"bmc","status",wordCurrStatus);
-	
-	let updateNoteNum=false;
-	let txtNote=document.getElementById("id_text_note").value;
-	let prevNote=getNodeText(x[wordIndex],"note");
-	if(prevNote!=txtNote){
-		setNodeText(x[wordIndex],"note",txtNote);
+	let oldLock = getNodeText(x[wordIndex], "lock");
+	if (bLocked != oldLock) {
+		setNodeText(x[wordIndex], "lock", bLocked);
+		msg_data.lock = bLocked;
+	}
+	setNodeAttr(x[wordIndex], "lock", "status", wordCurrStatus);
+
+	let txtBookMark = document.getElementById("id_text_bookmark").value;
+	let oldBookMarkText = getNodeText(x[wordIndex], "bmt");
+	if (oldBookMarkText != txtBookMark) {
+		setNodeText(x[wordIndex], "bmt", txtBookMark);
+		msg_data.bmt = txtBookMark;
+	}
+	setNodeAttr(x[wordIndex], "bmt", "status", wordCurrStatus);
+
+	let oldBookMarkColor = getNodeText(x[wordIndex], "bmc");
+	if (oldBookMarkColor == "") {
+		oldBookMarkColor = "bmc0";
+	}
+	if (oldBookMarkColor != g_currBookMarkColor) {
+		setNodeText(x[wordIndex], "bmc", g_currBookMarkColor);
+		msg_data.bmc = g_currBookMarkColor;
+		g_currBookMarkColor = "";
+	}
+	setNodeAttr(x[wordIndex], "bmc", "status", wordCurrStatus);
+
+	let updateNoteNum = false;
+	let txtNote = document.getElementById("id_text_note").value;
+	let prevNote = getNodeText(x[wordIndex], "note");
+	if (prevNote != txtNote) {
+		setNodeText(x[wordIndex], "note", txtNote);
 		//refreshWordNote(x[wordIndex].parentNode.parentNode);
 		//refreshWordNote(x[wordIndex].parentNode.parentNode);
-		msg_data.note=txtNote;
+		msg_data.note = txtNote;
 		//updateWordNote(x[wordIndex]);
 		//updateWordNote(x[wordIndex]);
-		updateNoteNum=true;
-	}
-	
-	let sRalation=$("#id_relation_text").val();
-	let oldRalation=getNodeText(x[wordIndex],"rala");
-	if(oldRalation!=sRalation){
-		setNodeText(x[wordIndex],"rela",sRalation);
-		msg_data.rela=sRalation;
+		updateNoteNum = true;
+	}
+
+	let sRalation = $("#id_relation_text").val();
+	let oldRalation = getNodeText(x[wordIndex], "rala");
+	if (oldRalation != sRalation) {
+		setNodeText(x[wordIndex], "rela", sRalation);
+		msg_data.rela = sRalation;
 		//updateWordRelation(x[wordIndex]);
 		//updateWordRelation(x[wordIndex]);
-		updateNoteNum=true;
+		updateNoteNum = true;
 	}
 	}
-	
+
 	{
 	{
-		setNodeText(x[wordIndex],"status",wordCurrStatus);//自己手动 或 草稿
-		msg_data.status=wordCurrStatus;
+		setNodeText(x[wordIndex], "status", wordCurrStatus); //自己手动 或 草稿
+		msg_data.status = wordCurrStatus;
 	}
 	}
 
 
 	user_wbw_push_word(sWordId);
 	user_wbw_push_word(sWordId);
-	
+
 	modifyWordDetailByWordIndex(wordIndex);
 	modifyWordDetailByWordIndex(wordIndex);
 	updataWordHeadByIndex(wordIndex);
 	updataWordHeadByIndex(wordIndex);
-	if(updateNoteNum){
+	if (updateNoteNum) {
 		refreshWordNoteDiv(x[wordIndex].parentNode.parentNode);
 		refreshWordNoteDiv(x[wordIndex].parentNode.parentNode);
 		refreshNoteNumber();
 		refreshNoteNumber();
 	}
 	}
 
 
 	//send message
 	//send message
-	let d=new Date();
+	let d = new Date();
 	let msg_doc_id;
 	let msg_doc_id;
-	if(doc_info.sendmsg){
-		if(doc_info.parent_id!=""){
-			msg_doc_id=doc_info.parent_id;
-		}
-		else{
-			msg_doc_id=doc_info.doc_id;
+	if (doc_info.sendmsg) {
+		if (doc_info.parent_id != "") {
+			msg_doc_id = doc_info.parent_id;
+		} else {
+			msg_doc_id = doc_info.doc_id;
 		}
 		}
 
 
-		msg_push(1,JSON.stringify(msg_data),msg_doc_id,d.getTime(),book,paragraph);	
+		msg_push(1, JSON.stringify(msg_data), msg_doc_id, d.getTime(), book, paragraph);
 	}
 	}
 	//The end of send message
 	//The end of send message
-	
-	
-	
+
 	let objWord = new Object();
 	let objWord = new Object();
-	objWord.Pali=getNodeText(x[wordIndex],"real");
-	sCase= getNodeText(x[wordIndex],"case");
-	let mGramma=sCase.split("#");
-	if(mGramma.length>=2){
-		mType=sCase.split("#")[0];
-		mGramma=sCase.split("#")[1];
-	}
-	else{
-		mType="";
-		mGramma=sCase.split("#")[0];
-	}
-	
+	objWord.Pali = getNodeText(x[wordIndex], "real");
+	sCase = getNodeText(x[wordIndex], "case");
+	let mGramma = sCase.split("#");
+	if (mGramma.length >= 2) {
+		mType = sCase.split("#")[0];
+		mGramma = sCase.split("#")[1];
+	} else {
+		mType = "";
+		mGramma = sCase.split("#")[0];
+	}
+
 	//将单词加入内存字典
 	//将单词加入内存字典
-	var objDictItem=new Object();/*一个字典元素*/
-	objDictItem.id=0;
-	objDictItem.guid="";
-	objDictItem.pali=getNodeText(x[wordIndex],"pali");
-	objDictItem.type=mType;
-	objDictItem.gramma=mGramma;
-	objDictItem.parent=getNodeText(x[wordIndex],"parent");
-	objDictItem.mean=getNodeText(x[wordIndex],"mean");
-	objDictItem.note=getNodeText(x[wordIndex],"note");
-	objDictItem.parts=getNodeText(x[wordIndex],"org");
-	objDictItem.partmean=getNodeText(x[wordIndex],"om");
-	objDictItem.status=0
-	objDictItem.dict_name="Memo";
-	objDictItem.language="zh";
-	objDictItem.confidence=100;
-	if(objDictItem.type=="" || objDictItem.type.indexOf("?")!=-1){
-		objDictItem.confidence=objDictItem.confidence*0.9;
-	}
-	if(objDictItem.type!=".un." && objDictItem.type!=".comp."){
-		if(objDictItem.gramma=="" || objDictItem.gramma.indexOf("?")!=-1 || objDictItem.gramma.indexOf("$")!=0){
-			objDictItem.confidence=objDictItem.confidence*0.9;
+	var objDictItem = new Object(); /*一个字典元素*/
+	objDictItem.id = 0;
+	objDictItem.guid = "";
+	objDictItem.pali = getNodeText(x[wordIndex], "pali");
+	objDictItem.type = mType;
+	objDictItem.gramma = mGramma;
+	objDictItem.parent = getNodeText(x[wordIndex], "parent");
+	objDictItem.mean = getNodeText(x[wordIndex], "mean");
+	objDictItem.note = getNodeText(x[wordIndex], "note");
+	objDictItem.parts = getNodeText(x[wordIndex], "org");
+	objDictItem.partmean = getNodeText(x[wordIndex], "om");
+	objDictItem.status = 0;
+	objDictItem.dict_name = "Memo";
+	objDictItem.language = "zh";
+	objDictItem.confidence = 100;
+	if (objDictItem.type == "" || objDictItem.type.indexOf("?") != -1) {
+		objDictItem.confidence = objDictItem.confidence * 0.9;
+	}
+	if (objDictItem.type != ".un." && objDictItem.type != ".comp.") {
+		if (objDictItem.gramma == "" || objDictItem.gramma.indexOf("?") != -1 || objDictItem.gramma.indexOf("$") != 0) {
+			objDictItem.confidence = objDictItem.confidence * 0.9;
 		}
 		}
-		if(objDictItem.mean=="" || objDictItem.mean.indexOf("?")!=-1){
-			objDictItem.confidence=objDictItem.confidence*0.9;
+		if (objDictItem.mean == "" || objDictItem.mean.indexOf("?") != -1) {
+			objDictItem.confidence = objDictItem.confidence * 0.9;
 		}
 		}
-		if(objDictItem.partmean=="" || objDictItem.partmean.indexOf("?")!=-1){
-			objDictItem.confidence=objDictItem.confidence*0.9;
+		if (objDictItem.partmean == "" || objDictItem.partmean.indexOf("?") != -1) {
+			objDictItem.confidence = objDictItem.confidence * 0.9;
 		}
 		}
 	}
 	}
-	if(objDictItem.parts=="" || objDictItem.parts.indexOf("?")!=-1){
-		objDictItem.confidence=objDictItem.confidence*0.9;
+	if (objDictItem.parts == "" || objDictItem.parts.indexOf("?") != -1) {
+		objDictItem.confidence = objDictItem.confidence * 0.9;
 	}
 	}
-	if(!mDict[objDictItem.pali]){
-		mDict[objDictItem.pali]=new Array();
+	if (!mDict[objDictItem.pali]) {
+		mDict[objDictItem.pali] = new Array();
 	}
 	}
 	//insert to top of memory dict
 	//insert to top of memory dict
 	mDict[objDictItem.pali].unshift(objDictItem);
 	mDict[objDictItem.pali].unshift(objDictItem);
 
 
-	let parts=getNodeText(x[wordIndex],"org");
-	let partmean=getNodeText(x[wordIndex],"om");
-	
+	let parts = getNodeText(x[wordIndex], "org");
+	let partmean = getNodeText(x[wordIndex], "om");
+
 	//add parent infomation
 	//add parent infomation
 
 
-	switch(mType){
+	switch (mType) {
 		case ".n.":
 		case ".n.":
-			mType=".n:base.";
-			mGramma=mGramma.split("$")[0];
-			if(mGramma==".m." || mGramma==".f." || mGramma==".nt."){
+			mType = ".n:base.";
+			mGramma = mGramma.split("$")[0];
+			if (mGramma == ".m." || mGramma == ".f." || mGramma == ".nt.") {
+			} else {
+				mGramma = "";
 			}
 			}
-			else{
-				mGramma="";
-			}				
 			break;
 			break;
 		case ".adj.":
 		case ".adj.":
-			mType=".adj:base.";
-			mGramma="";
+			mType = ".adj:base.";
+			mGramma = "";
 			break;
 			break;
 		case ".ti.":
 		case ".ti.":
-			mType=".ti:base.";
-			mGramma="";
+			mType = ".ti:base.";
+			mGramma = "";
 			break;
 			break;
 		case ".pron.":
 		case ".pron.":
-			d_parentType=".pron:base.";
-			d_parentGramma="";
+			d_parentType = ".pron:base.";
+			d_parentGramma = "";
 			break;
 			break;
 		case ".num.":
 		case ".num.":
-			d_parentType=".num:base.";
-			d_parentGramma="";
+			d_parentType = ".num:base.";
+			d_parentGramma = "";
 			break;
 			break;
 		case ".v.":
 		case ".v.":
-			mType=".v:base.";
-			mGramma="";
+			mType = ".v:base.";
+			mGramma = "";
 			break;
 			break;
 	}
 	}
 
 
 	//将单词base加入内存字典
 	//将单词base加入内存字典
-if(getNodeText(x[wordIndex],"parent")!=""){
-	var objDictItem=new Object();/*一个字典元素*/
-	objDictItem.id=0;
-	objDictItem.guid="";
-	objDictItem.pali=getNodeText(x[wordIndex],"parent");
-	objDictItem.type=mType;
-	objDictItem.gramma=mGramma;
-	objDictItem.parent="";
-	objDictItem.mean = removeFormulaB(getNodeText(x[wordIndex],"mean"),'[',']');
-	objDictItem.mean = removeFormulaB(objDictItem.mean,'{','}');
-	objDictItem.note=getNodeText(x[wordIndex],"note");
-	
-	//remove the "[***]" in the end
-	let d_factors = getNodeText(x[wordIndex],"org");
-	let fc=d_factors.split("+");
-	if(fc.length>0 && (fc[fc.length-1].slice(0,1)=="[" && fc[fc.length-1].slice(-1)=="]")){
-		fc.pop();
-	}
-	objDictItem.parts=fc.join("+")
-	let fm=getNodeText(x[wordIndex],"om").split("+");
-	fm.length=fc.length;
-	objDictItem.partmean=fm.join("+");
-	
-	objDictItem.status=0;
-	objDictItem.confidence=100;
-	if(objDictItem.type=="" || objDictItem.gramma.indexOf("?")!=-1){
-		objDictItem.confidence=objDictItem.confidence*0.9;
-	}
-	if(objDictItem.gramma=="" || objDictItem.gramma.indexOf("?")!=-1 || objDictItem.gramma.indexOf("$")!=0){
-		objDictItem.confidence=objDictItem.confidence*0.9;
-	}
-	if(objDictItem.mean=="" || objDictItem.gramma.indexOf("?")!=-1){
-		objDictItem.confidence=objDictItem.confidence*0.9;
-	}
-	if(objDictItem.parts=="" || objDictItem.gramma.indexOf("?")!=-1){
-		objDictItem.confidence=objDictItem.confidence*0.9;
-	}
-	if(objDictItem.partmean=="" || objDictItem.gramma.indexOf("?")!=-1){
-		objDictItem.confidence=objDictItem.confidence*0.9;
-	}
-	if(!mDict[objDictItem.pali]){
-		mDict[objDictItem.pali]=new Array();
-	}
-	objDictItem.dict_name="Memo";
-	objDictItem.language="zh";
-	if(!mDict[objDictItem.pali]){
-		mDict[objDictItem.pali]=new Array();
+	if (getNodeText(x[wordIndex], "parent") != "") {
+		var objDictItem = new Object(); /*一个字典元素*/
+		objDictItem.id = 0;
+		objDictItem.guid = "";
+		objDictItem.pali = getNodeText(x[wordIndex], "parent");
+		objDictItem.type = mType;
+		objDictItem.gramma = mGramma;
+		objDictItem.parent = "";
+		objDictItem.mean = removeFormulaB(getNodeText(x[wordIndex], "mean"), "[", "]");
+		objDictItem.mean = removeFormulaB(objDictItem.mean, "{", "}");
+		objDictItem.note = getNodeText(x[wordIndex], "note");
+
+		//remove the "[***]" in the end
+		let d_factors = getNodeText(x[wordIndex], "org");
+		let fc = d_factors.split("+");
+		if (fc.length > 0 && fc[fc.length - 1].slice(0, 1) == "[" && fc[fc.length - 1].slice(-1) == "]") {
+			fc.pop();
+		}
+		objDictItem.parts = fc.join("+");
+		let fm = getNodeText(x[wordIndex], "om").split("+");
+		fm.length = fc.length;
+		objDictItem.partmean = fm.join("+");
+
+		objDictItem.status = 0;
+		objDictItem.confidence = 100;
+		if (objDictItem.type == "" || objDictItem.gramma.indexOf("?") != -1) {
+			objDictItem.confidence = objDictItem.confidence * 0.9;
+		}
+		if (objDictItem.gramma == "" || objDictItem.gramma.indexOf("?") != -1 || objDictItem.gramma.indexOf("$") != 0) {
+			objDictItem.confidence = objDictItem.confidence * 0.9;
+		}
+		if (objDictItem.mean == "" || objDictItem.gramma.indexOf("?") != -1) {
+			objDictItem.confidence = objDictItem.confidence * 0.9;
+		}
+		if (objDictItem.parts == "" || objDictItem.gramma.indexOf("?") != -1) {
+			objDictItem.confidence = objDictItem.confidence * 0.9;
+		}
+		if (objDictItem.partmean == "" || objDictItem.gramma.indexOf("?") != -1) {
+			objDictItem.confidence = objDictItem.confidence * 0.9;
+		}
+		if (!mDict[objDictItem.pali]) {
+			mDict[objDictItem.pali] = new Array();
+		}
+		objDictItem.dict_name = "Memo";
+		objDictItem.language = "zh";
+		if (!mDict[objDictItem.pali]) {
+			mDict[objDictItem.pali] = new Array();
+		}
+		mDict[objDictItem.pali].unshift(objDictItem);
 	}
 	}
-	mDict[objDictItem.pali].unshift(objDictItem);
+	// The end of memory dictionary
 
 
-}
-// The end of memory dictionary 
-	
 	//apply all
 	//apply all
-	let searchBegin=0;
-	let searchEnd=0;
-	switch(strApplyTo){
+	let searchBegin = 0;
+	let searchEnd = 0;
+	switch (strApplyTo) {
 		case "all":
 		case "all":
-			searchBegin=0;
-			searchEnd=x.length;
+			searchBegin = 0;
+			searchEnd = x.length;
 			break;
 			break;
 		case "up":
 		case "up":
-			searchBegin=0;
-			searchEnd=wordIndex;
+			searchBegin = 0;
+			searchEnd = wordIndex;
 			break;
 			break;
 		case "down":
 		case "down":
-			searchBegin=wordIndex;
-			searchEnd=x.length;
+			searchBegin = wordIndex;
+			searchEnd = x.length;
 			break;
 			break;
 	}
 	}
-	if(strApplyTo!="current"){
-		
+	if (strApplyTo != "current") {
 		//sPaliWord = x[sWordId].getElementsByTagName("pali")[0].childNodes[0].nodeValue;
 		//sPaliWord = x[sWordId].getElementsByTagName("pali")[0].childNodes[0].nodeValue;
 		let iSameWordCount = 0;
 		let iSameWordCount = 0;
-		setNodeText(x[wordIndex],"pali",sPali);//拼寫顯示修改僅僅應用當前詞——Kosalla
-						
-		for (iSearch=searchBegin;iSearch<searchEnd;iSearch++){
-			if(sWordId!=iSearch){
+		setNodeText(x[wordIndex], "pali", sPali); //拼寫顯示修改僅僅應用當前詞——Kosalla
+
+		for (iSearch = searchBegin; iSearch < searchEnd; iSearch++) {
+			if (sWordId != iSearch) {
 				//xmlNotePali = x[i].getElementsByTagName("pali")[0].childNodes[0].nodeValue;
 				//xmlNotePali = x[i].getElementsByTagName("pali")[0].childNodes[0].nodeValue;
-				xmlNotePali = getNodeText(x[iSearch],"real");
-				if(xmlNotePali==sPaliReal ){
-					if(getNodeText(x[iSearch],"lock")!="true"){
-						setNodeText(x[iSearch],"real",sReal);
-						setNodeText(x[iSearch],"parent",sParent);	
-						setNodeText(x[iSearch],"mean",sMeaning);
-						setNodeText(x[iSearch],"org",sOrg);
-						setNodeText(x[iSearch],"om",sOm);
-						setNodeText(x[iSearch],"case",sCase);
-						setNodeText(x[iSearch],"bmc",g_currBookMarkColor);
+				xmlNotePali = getNodeText(x[iSearch], "real");
+				if (xmlNotePali == sPaliReal) {
+					if (getNodeText(x[iSearch], "lock") != "true") {
+						setNodeText(x[iSearch], "real", sReal);
+						setNodeText(x[iSearch], "parent", sParent);
+						setNodeText(x[iSearch], "mean", sMeaning);
+						setNodeText(x[iSearch], "org", sOrg);
+						setNodeText(x[iSearch], "om", sOm);
+						setNodeText(x[iSearch], "case", sCase);
+						setNodeText(x[iSearch], "bmc", g_currBookMarkColor);
 						setNodeText(x[iSearch], "note", txtNote);
 						setNodeText(x[iSearch], "note", txtNote);
-						switch(editor_word_status(x[iSearch])){
+						switch (editor_word_status(x[iSearch])) {
 							case 0:
 							case 0:
 							case 1:
 							case 1:
 							case 2:
 							case 2:
 							case 3:
 							case 3:
 							case 4:
 							case 4:
 							case 6:
 							case 6:
-							editor_word_status(x[iSearch],5);
-							break;
+								editor_word_status(x[iSearch], 5);
+								break;
 						}
 						}
 						user_wbw_push_word(getNodeText(x[iSearch], "id"));
 						user_wbw_push_word(getNodeText(x[iSearch], "id"));
 						modifyWordDetailByWordIndex(iSearch);
 						modifyWordDetailByWordIndex(iSearch);
 						updataWordHeadByIndex(iSearch);
 						updataWordHeadByIndex(iSearch);
-						console.log("updata:"+iSearch+"<br />",0);
-						iSameWordCount = iSameWordCount+1;
+						console.log("updata:" + iSearch + "<br />", 0);
+						iSameWordCount = iSameWordCount + 1;
 					}
 					}
 				}
 				}
-				xmlNoteParent = getNodeText(x[iSearch],"parent");
-				if(xmlNotePali!=sPaliReal && xmlNoteParent==sPaliParent && xmlNoteParent!="" && xmlNoteParent!=" " ){
-					if(getNodeText(x[iSearch],"lock")!="true"){
-						setNodeText(x[iSearch],"mean",sMeaning);
+				xmlNoteParent = getNodeText(x[iSearch], "parent");
+				if (
+					xmlNotePali != sPaliReal &&
+					xmlNoteParent == sPaliParent &&
+					xmlNoteParent != "" &&
+					xmlNoteParent != " "
+				) {
+					if (getNodeText(x[iSearch], "lock") != "true") {
+						setNodeText(x[iSearch], "mean", sMeaning);
 						user_wbw_push_word(getNodeText(x[iSearch], "id"));
 						user_wbw_push_word(getNodeText(x[iSearch], "id"));
 						modifyWordDetailByWordIndex(iSearch);
 						modifyWordDetailByWordIndex(iSearch);
 						updataWordHeadByIndex(iSearch);
 						updataWordHeadByIndex(iSearch);
-						iSameWordCount = iSameWordCount+1;
+						iSameWordCount = iSameWordCount + 1;
 					}
 					}
 				}
 				}
 			}
 			}
 		}
 		}
-		var_dump("same word:"+(iSameWordCount-1));
+		var_dump("same word:" + (iSameWordCount - 1));
 	}
 	}
 	refreshBookMark();
 	refreshBookMark();
 	user_wbw_commit();
 	user_wbw_commit();
-	
+
 	//上传到用户字典
 	//上传到用户字典
-	if(update_user_dict){
+	if (update_user_dict) {
 		upload_to_my_dict();
 		upload_to_my_dict();
 	}
 	}
 }
 }
 
 
-
-function getWordIndex(GUID){
-	var xAllWord = gXmlBookDataBody.getElementsByTagName("word");	
-	for(var iWord=0; iWord<xAllWord.length; iWord++){
-		if(getNodeText(xAllWord[iWord],"id")==GUID){
-			return(iWord);
+function getWordIndex(GUID) {
+	var xAllWord = gXmlBookDataBody.getElementsByTagName("word");
+	for (var iWord = 0; iWord < xAllWord.length; iWord++) {
+		if (getNodeText(xAllWord[iWord], "id") == GUID) {
+			return iWord;
 		}
 		}
 	}
 	}
-	return(-1);
+	return -1;
 }
 }
 
 
-
-
-function addFavorite(){
+function addFavorite() {
 	g_isDictFavo = !g_isDictFavo;
 	g_isDictFavo = !g_isDictFavo;
-	if(g_isDictFavo){
+	if (g_isDictFavo) {
 		document.getElementById("temp").innerHTML = "★";
 		document.getElementById("temp").innerHTML = "★";
-	}
-	else{
+	} else {
 		document.getElementById("temp").innerHTML = "☆";
 		document.getElementById("temp").innerHTML = "☆";
 	}
 	}
 }
 }
 //用单词表中的一个记录更改经文中的单词
 //用单词表中的一个记录更改经文中的单词
-function updataWord(id){
-	var debugstr;		
-	try{
-	sPali = document.getElementById("wlpali"+id).value;
-	sReal = document.getElementById("wlreal"+id).value;
-	sOrg = document.getElementById("wlorg"+id).value;
-	sMean = document.getElementById("wlmean"+id).value;
-	sCase = document.getElementById("wlcase"+id).value;
-	
-	var m_WordIdList=new Array();
-	m_WordIdList = wordList[id].wordid.toString().split("$");
-	var xAllWord = gXmlBookDataBody.getElementsByTagName("word");	
-
-	for(indexWordList=0;indexWordList<m_WordIdList.length;indexWordList++){
-		//将修改结果保存到xml DOM中
-		if(m_WordIdList[indexWordList]>=0){
-			setNodeText(xAllWord[m_WordIdList[indexWordList]],"pali",sPali);
-			setNodeText(xAllWord[m_WordIdList[indexWordList]],"real",sReal);
-			setNodeText(xAllWord[m_WordIdList[indexWordList]],"org",sOrg);
-			setNodeText(xAllWord[m_WordIdList[indexWordList]],"mean",sMean);
-			setNodeText(xAllWord[m_WordIdList[indexWordList]],"case",sCase);
-			var sId = getNodeText(xAllWord[m_WordIdList[indexWordList]],"id");
-			var wordDetail = renderWordDetailById(sId);
-			var strDetailName="detail" + sId;
-			document.getElementById(strDetailName).innerHTML = wordDetail;
-			updataWordHeadById(sId);
+function updataWord(id) {
+	var debugstr;
+	try {
+		sPali = document.getElementById("wlpali" + id).value;
+		sReal = document.getElementById("wlreal" + id).value;
+		sOrg = document.getElementById("wlorg" + id).value;
+		sMean = document.getElementById("wlmean" + id).value;
+		sCase = document.getElementById("wlcase" + id).value;
+
+		var m_WordIdList = new Array();
+		m_WordIdList = wordList[id].wordid.toString().split("$");
+		var xAllWord = gXmlBookDataBody.getElementsByTagName("word");
+
+		for (indexWordList = 0; indexWordList < m_WordIdList.length; indexWordList++) {
+			//将修改结果保存到xml DOM中
+			if (m_WordIdList[indexWordList] >= 0) {
+				setNodeText(xAllWord[m_WordIdList[indexWordList]], "pali", sPali);
+				setNodeText(xAllWord[m_WordIdList[indexWordList]], "real", sReal);
+				setNodeText(xAllWord[m_WordIdList[indexWordList]], "org", sOrg);
+				setNodeText(xAllWord[m_WordIdList[indexWordList]], "mean", sMean);
+				setNodeText(xAllWord[m_WordIdList[indexWordList]], "case", sCase);
+				var sId = getNodeText(xAllWord[m_WordIdList[indexWordList]], "id");
+				var wordDetail = renderWordDetailById(sId);
+				var strDetailName = "detail" + sId;
+				document.getElementById(strDetailName).innerHTML = wordDetail;
+				updataWordHeadById(sId);
+			}
 		}
 		}
+		var_dump("" + m_WordIdList.length + "");
+		document.getElementById("wlApply" + id).disabled = true;
+	} catch (e) {
+		var_dump(e);
 	}
 	}
-		var_dump(""+m_WordIdList.length+"");
-		document.getElementById("wlApply"+id).disabled=true;
-	}
-	catch(e){
-	var_dump(e);
-	}
-
 }
 }
 
 
 //比较两个词是否一样
 //比较两个词是否一样
-function compareWordInList(word1,word2){
-	var sItems1=new Array();
+function compareWordInList(word1, word2) {
+	var sItems1 = new Array();
 	sItem1 = word1.split(";");
 	sItem1 = word1.split(";");
-	var sItems2=new Array();
+	var sItems2 = new Array();
 	sItem2 = word2.split(";");
 	sItem2 = word2.split(";");
-	var sConcat1=sItem1[0]+sItem1[1]+sItem1[2]+sItem1[3];
-	var sConcat2=sItem2[0]+sItem1[1]+sItem1[2]+sItem1[3];
-	if(sConcat1==sConcat2){
-		return(true);
-	}
-	else{
-		return(false);
+	var sConcat1 = sItem1[0] + sItem1[1] + sItem1[2] + sItem1[3];
+	var sConcat2 = sItem2[0] + sItem1[1] + sItem1[2] + sItem1[3];
+	if (sConcat1 == sConcat2) {
+		return true;
+	} else {
+		return false;
 	}
 	}
 }
 }
 
 
-function sortWordList(strOrderby){
+function sortWordList(strOrderby) {
 	g_wordListOrderby = strOrderby;
 	g_wordListOrderby = strOrderby;
 	g_wordListOrder = !g_wordListOrder;
 	g_wordListOrder = !g_wordListOrder;
 	refreshWordList();
 	refreshWordList();
 }
 }
-function CountVocabulary(){
-	var sPali = "";	
+function CountVocabulary() {
+	var sPali = "";
 	var sOrg = "";
 	var sOrg = "";
 	var sMean = "";
 	var sMean = "";
-	var sCase ="";
-	var wordList1=new Array();
-	var arrCombinWord=new Array();
-	var arrCombinWordOrder=new Array();
-	
-	var arrCount=new Array();
+	var sCase = "";
+	var wordList1 = new Array();
+	var arrCombinWord = new Array();
+	var arrCombinWordOrder = new Array();
+
+	var arrCount = new Array();
 	var iCount = 0;
 	var iCount = 0;
-    var sTableWordList="";
-	var arrowCount="";
-	var arrowPali="";
-	var arrowReal="";	
+	var sTableWordList = "";
+	var arrowCount = "";
+	var arrowPali = "";
+	var arrowReal = "";
 
 
-	
 	//提取所有词
 	//提取所有词
-	var xAllWord = gXmlBookDataBody.getElementsByTagName("word");	
-	if(xAllWord.length==0){
-		return("no word data.");
-	}
-	var outWordList="";
-	for(iword=0;iword<xAllWord.length;iword++)
-	{
-		var objWord = new Object;
-		objWord.id = getNodeText(xAllWord[iword],"id");
-		objWord.pali = getNodeText(xAllWord[iword],"pali");
-		objWord.real = getNodeText(xAllWord[iword],"real");
-		objWord.mean = getNodeText(xAllWord[iword],"mean");		
-		objWord.org = getNodeText(xAllWord[iword],"org");
-		objWord.om = getNodeText(xAllWord[iword],"om");
-		objWord.case = getNodeText(xAllWord[iword],"case");
-		objWord.index=iword;
-		objWord.count=1;
-		objWord.wordid=iword;
-		if(objWord.real!=""){
-			addWordToWordList(wordList1,objWord);
+	var xAllWord = gXmlBookDataBody.getElementsByTagName("word");
+	if (xAllWord.length == 0) {
+		return "no word data.";
+	}
+	var outWordList = "";
+	for (iword = 0; iword < xAllWord.length; iword++) {
+		var objWord = new Object();
+		objWord.id = getNodeText(xAllWord[iword], "id");
+		objWord.pali = getNodeText(xAllWord[iword], "pali");
+		objWord.real = getNodeText(xAllWord[iword], "real");
+		objWord.mean = getNodeText(xAllWord[iword], "mean");
+		objWord.org = getNodeText(xAllWord[iword], "org");
+		objWord.om = getNodeText(xAllWord[iword], "om");
+		objWord.case = getNodeText(xAllWord[iword], "case");
+		objWord.index = iword;
+		objWord.count = 1;
+		objWord.wordid = iword;
+		if (objWord.real != "") {
+			addWordToWordList(wordList1, objWord);
 		}
 		}
-
 	}
 	}
-	return(wordList1.length);
+	return wordList1.length;
 }
 }
 //生成单词列表
 //生成单词列表
-function makeWordList(){
-	var sPali = "";	
+function makeWordList() {
+	var sPali = "";
 	var sOrg = "";
 	var sOrg = "";
 	var sMean = "";
 	var sMean = "";
-	var sCase ="";
+	var sCase = "";
+
+	var arrCombinWord = new Array();
+	var arrCombinWordOrder = new Array();
 
 
-	var arrCombinWord=new Array();
-	var arrCombinWordOrder=new Array();
-	
-	var arrCount=new Array();
+	var arrCount = new Array();
 	var iCount = 0;
 	var iCount = 0;
-    var sTableWordList="";
-	var arrowCount="";
-	var arrowPali="";
-	var arrowReal="";	
+	var sTableWordList = "";
+	var arrowCount = "";
+	var arrowPali = "";
+	var arrowReal = "";
 
 
-	
 	//提取所有词
 	//提取所有词
-	var xAllWord = gXmlBookDataBody.getElementsByTagName("word");	
-	if(xAllWord.length==0){
-		return("no word data.");
-	}
-	var outWordList="";
-	for(iword=0;iword<xAllWord.length;iword++)
-	{
-		var objWord = new Object;
-		objWord.id = getNodeText(xAllWord[iword],"id");
-		objWord.pali = getNodeText(xAllWord[iword],"pali");
-		objWord.real = getNodeText(xAllWord[iword],"real");
-		objWord.mean = getNodeText(xAllWord[iword],"mean");		
-		objWord.org = getNodeText(xAllWord[iword],"org");
-		objWord.om = getNodeText(xAllWord[iword],"om");
-		objWord.case = getNodeText(xAllWord[iword],"case");
-		objWord.index=iword;
-		objWord.count=1;
-		objWord.wordid=iword;
-		if(objWord.real!=""){
-			addWordToWordList(wordList,objWord)
+	var xAllWord = gXmlBookDataBody.getElementsByTagName("word");
+	if (xAllWord.length == 0) {
+		return "no word data.";
+	}
+	var outWordList = "";
+	for (iword = 0; iword < xAllWord.length; iword++) {
+		var objWord = new Object();
+		objWord.id = getNodeText(xAllWord[iword], "id");
+		objWord.pali = getNodeText(xAllWord[iword], "pali");
+		objWord.real = getNodeText(xAllWord[iword], "real");
+		objWord.mean = getNodeText(xAllWord[iword], "mean");
+		objWord.org = getNodeText(xAllWord[iword], "org");
+		objWord.om = getNodeText(xAllWord[iword], "om");
+		objWord.case = getNodeText(xAllWord[iword], "case");
+		objWord.index = iword;
+		objWord.count = 1;
+		objWord.wordid = iword;
+		if (objWord.real != "") {
+			addWordToWordList(wordList, objWord);
 		}
 		}
-
 	}
 	}
-	switch(g_wordListOrderby){
+	switch (g_wordListOrderby) {
 		case "count":
 		case "count":
-			if(g_wordListOrder){
-				wordList.sort(sortCountDesc)
-				arrowCount="↓";
-			}
-			else{
-				wordList.sort(sortCountAsc)
-				arrowCount="↑";
+			if (g_wordListOrder) {
+				wordList.sort(sortCountDesc);
+				arrowCount = "↓";
+			} else {
+				wordList.sort(sortCountAsc);
+				arrowCount = "↑";
 			}
 			}
 			break;
 			break;
 		case "pali":
 		case "pali":
-			if(g_wordListOrder){
-				wordList.sort(sortPaliDesc)
-				arrowPali="↓";
-			}else{
-				wordList.sort(sortPaliAsc)
-				arrowPali="↑";
+			if (g_wordListOrder) {
+				wordList.sort(sortPaliDesc);
+				arrowPali = "↓";
+			} else {
+				wordList.sort(sortPaliAsc);
+				arrowPali = "↑";
 			}
 			}
 			break;
 			break;
 		case "real":
 		case "real":
-			if(g_wordListOrder){
-				wordList.sort(sortRealDesc)
-				arrowReal="↓";
-			}else{
-				wordList.sort(sortRealAsc)
-				arrowReal="↑";
+			if (g_wordListOrder) {
+				wordList.sort(sortRealDesc);
+				arrowReal = "↓";
+			} else {
+				wordList.sort(sortRealAsc);
+				arrowReal = "↑";
 			}
 			}
-		break;
-	}
-	
-	sTableWordList =  sTableWordList + "<table border='0' cellpadding='3' ><tr  class='h'>";
-	sTableWordList =  sTableWordList + "<th>序号</th>";
-	sTableWordList =  sTableWordList + "<th><a herf=\"\" onclick=\"sortWordList('count')\">计数"+arrowCount+"</a></th>";
-	sTableWordList =  sTableWordList + "<th><a herf=\"\" onclick=\"sortWordList('pali')\">Pali"+arrowPali+"</a></th>";
-		sTableWordList =  sTableWordList + "<th><a herf=\"\" onclick=\"sortWordList('real')\">Real"+arrowReal+"</a></th>";
-	sTableWordList =  sTableWordList + "<th>原型</th>";
-	sTableWordList =  sTableWordList + "<th>译文</th>";
-	sTableWordList =  sTableWordList + "<th>语法</th>";
-	sTableWordList =  sTableWordList + "<th><button type='button' id='btnApplyAll' onclick=\"applyAllWordInList(this)\" disabled>Apply All</button></th></tr>";
-
-	
-	for(var i=0; i<wordList.length;i++){
-			objWord=wordList[i];
-			sTableWordList +=  "<tr><td>"+i+"</td>"
-			sTableWordList += "<td id='tablepali"+i+"'>"+objWord.count+"</td>"
-			//sTableWordList += "<td>" +objWord.pali + "</td>";
-			//sTableWordList += "<td>" +objWord.real + "</td>";
-			sTableWordList +=  "<td><input id=\"wlpali"+i+"\" onkeyup=\"wordListItemChanged('wlApply"+i+"')\" value = '" + objWord.pali + "' />";
-			sTableWordList +=  "<td><input id=\"wlreal"+i+"\" onkeyup=\"wordListItemChanged('wlApply"+i+"')\" value = '" + objWord.real + "' /></td>";
-			sTableWordList +=  "<td><input id=\"wlorg"+i+"\" onkeyup=\"wordListItemChanged('wlApply"+i+"')\" value = '" + objWord.org + "' />";
-			sTableWordList +=  "<td><input id=\"wlmean"+i+"\" onkeyup=\"wordListItemChanged('wlApply"+i+"')\" value = '" + objWord.mean + "' /></td>";
-			sTableWordList +=  "<td><input id=\"wlcase"+i+"\" onkeyup=\"wordListItemChanged('wlApply"+i+"')\" value = '" + objWord.case + "' /></td>";
-			sTableWordList +=  "<td><button id=\"wlApply"+i+"\" onclick=\"updataWord('"+i+"')\" type='button' disabled >Apply</button></td></tr>";
-	}
-	
+			break;
+	}
+
+	sTableWordList = sTableWordList + "<table border='0' cellpadding='3' ><tr  class='h'>";
+	sTableWordList = sTableWordList + "<th>序号</th>";
+	sTableWordList =
+		sTableWordList + '<th><a herf="" onclick="sortWordList(\'count\')">计数' + arrowCount + "</a></th>";
+	sTableWordList = sTableWordList + '<th><a herf="" onclick="sortWordList(\'pali\')">Pali' + arrowPali + "</a></th>";
+	sTableWordList = sTableWordList + '<th><a herf="" onclick="sortWordList(\'real\')">Real' + arrowReal + "</a></th>";
+	sTableWordList = sTableWordList + "<th>原型</th>";
+	sTableWordList = sTableWordList + "<th>译文</th>";
+	sTableWordList = sTableWordList + "<th>语法</th>";
+	sTableWordList =
+		sTableWordList +
+		"<th><button type='button' id='btnApplyAll' onclick=\"applyAllWordInList(this)\" disabled>Apply All</button></th></tr>";
+
+	for (var i = 0; i < wordList.length; i++) {
+		objWord = wordList[i];
+		sTableWordList += "<tr><td>" + i + "</td>";
+		sTableWordList += "<td id='tablepali" + i + "'>" + objWord.count + "</td>";
+		//sTableWordList += "<td>" +objWord.pali + "</td>";
+		//sTableWordList += "<td>" +objWord.real + "</td>";
+		sTableWordList +=
+			'<td><input id="wlpali' +
+			i +
+			'" onkeyup="wordListItemChanged(\'wlApply' +
+			i +
+			"')\" value = '" +
+			objWord.pali +
+			"' />";
+		sTableWordList +=
+			'<td><input id="wlreal' +
+			i +
+			'" onkeyup="wordListItemChanged(\'wlApply' +
+			i +
+			"')\" value = '" +
+			objWord.real +
+			"' /></td>";
+		sTableWordList +=
+			'<td><input id="wlorg' +
+			i +
+			'" onkeyup="wordListItemChanged(\'wlApply' +
+			i +
+			"')\" value = '" +
+			objWord.org +
+			"' />";
+		sTableWordList +=
+			'<td><input id="wlmean' +
+			i +
+			'" onkeyup="wordListItemChanged(\'wlApply' +
+			i +
+			"')\" value = '" +
+			objWord.mean +
+			"' /></td>";
+		sTableWordList +=
+			'<td><input id="wlcase' +
+			i +
+			'" onkeyup="wordListItemChanged(\'wlApply' +
+			i +
+			"')\" value = '" +
+			objWord.case +
+			"' /></td>";
+		sTableWordList +=
+			'<td><button id="wlApply' +
+			i +
+			'" onclick="updataWord(\'' +
+			i +
+			"')\" type='button' disabled >Apply</button></td></tr>";
+	}
+
 	sTableWordList = sTableWordList + "</table>";
 	sTableWordList = sTableWordList + "</table>";
-	g_countWordList=wordList.length;
-	return(sTableWordList);
+	g_countWordList = wordList.length;
+	return sTableWordList;
 }
 }
-function sortCountDesc(a,b)
-{
-	return a.count - b.count
+function sortCountDesc(a, b) {
+	return a.count - b.count;
 }
 }
-function sortCountAsc(a,b)
-{
-	return b.count - a.count
+function sortCountAsc(a, b) {
+	return b.count - a.count;
 }
 }
 
 
-function sortPaliDesc(a,b)
-{
-	return a.pali.localeCompare(b.pali)
+function sortPaliDesc(a, b) {
+	return a.pali.localeCompare(b.pali);
 }
 }
-function sortPaliAsc(a,b)
-{
-	return b.pali.localeCompare(a.pali)
+function sortPaliAsc(a, b) {
+	return b.pali.localeCompare(a.pali);
 }
 }
 
 
-function sortRealDesc(a,b)
-{
-	return a.real.localeCompare(b.real)
+function sortRealDesc(a, b) {
+	return a.real.localeCompare(b.real);
 }
 }
-function sortRealAsc(a,b)
-{
-	return b.real.localeCompare(a.real)
+function sortRealAsc(a, b) {
+	return b.real.localeCompare(a.real);
 }
 }
 
 
-function addWordToWordList(wordArray,newWord){
-	var index=-1;
-	
-	for(var i=0;i<wordArray.length;i++){
-		if(wordArray[i].pali==newWord.pali){
-			if(wordArray[i].real==newWord.real){
-				if(wordArray[i].mean==newWord.mean){
-					if(wordArray[i].org==newWord.org){
-						if(wordArray[i].om==newWord.om){
-							if(wordArray[i].case==newWord.case){
-			index=i;
-			break;
-			}
-			}
-			}
-			}
+function addWordToWordList(wordArray, newWord) {
+	var index = -1;
+
+	for (var i = 0; i < wordArray.length; i++) {
+		if (wordArray[i].pali == newWord.pali) {
+			if (wordArray[i].real == newWord.real) {
+				if (wordArray[i].mean == newWord.mean) {
+					if (wordArray[i].org == newWord.org) {
+						if (wordArray[i].om == newWord.om) {
+							if (wordArray[i].case == newWord.case) {
+								index = i;
+								break;
+							}
+						}
+					}
+				}
 			}
 			}
-			
-			
 		}
 		}
 	}
 	}
-	if(index>=0){
+	if (index >= 0) {
 		wordArray[index].count++;
 		wordArray[index].count++;
-		wordArray[index].wordid+="$"+newWord.index
-	}
-	else{
-		wordArray.push(newWord)
+		wordArray[index].wordid += "$" + newWord.index;
+	} else {
+		wordArray.push(newWord);
 	}
 	}
 }
 }
 
 
-function refreshWordList(){
+function refreshWordList() {
 	document.getElementById("word_table_inner").innerHTML = makeWordList();
 	document.getElementById("word_table_inner").innerHTML = makeWordList();
 }
 }
 
 
-function wordListItemChanged(btnApplyId){
-	try{
-	document.getElementById(btnApplyId).disabled=false;
-	document.getElementById("btnApplyAll").disabled=false;
-	}
-	catch(e){
+function wordListItemChanged(btnApplyId) {
+	try {
+		document.getElementById(btnApplyId).disabled = false;
+		document.getElementById("btnApplyAll").disabled = false;
+	} catch (e) {
 		alert(e);
 		alert(e);
 	}
 	}
 }
 }
 
 
-function applyAllWordInList(){
-	for(var i=0;i<g_countWordList;i++){
-		if(document.getElementById("wlApply"+i).disabled==false){
+function applyAllWordInList() {
+	for (var i = 0; i < g_countWordList; i++) {
+		if (document.getElementById("wlApply" + i).disabled == false) {
 			updataWord(i);
 			updataWord(i);
 		}
 		}
 	}
 	}
-	document.getElementById("btnApplyAll").disabled=true;
+	document.getElementById("btnApplyAll").disabled = true;
 }
 }
 
 
-
-function tran_edit(iSutta,iPar,iTran){
-	gTextEditMediaType="translate";
-	gSutta=iSutta;
-	gPar=iPar;
-	gTran=iTran;
-	var tranText = getTranText(iSutta,iPar,iTran);
-	document.getElementById("id_text_edit_area").value=tranText;
-	document.getElementById("id_text_edit_form").style.display="block";
+function tran_edit(iSutta, iPar, iTran) {
+	gTextEditMediaType = "translate";
+	gSutta = iSutta;
+	gPar = iPar;
+	gTran = iTran;
+	var tranText = getTranText(iSutta, iPar, iTran);
+	document.getElementById("id_text_edit_area").value = tranText;
+	document.getElementById("id_text_edit_form").style.display = "block";
 }
 }
 
 
-
-
 /*make book mark*/
 /*make book mark*/
-function bookMark(){
-	var colorStyle="";
-	var strBookMark="";
-	var iWordCount=0;
+function bookMark() {
+	var colorStyle = "";
+	var strBookMark = "";
+	var iWordCount = 0;
 
 
-
-		xWord = gXmlBookDataBody.getElementsByTagName("word");
-		/*遍历所有单词*/
+	xWord = gXmlBookDataBody.getElementsByTagName("word");
+	/*遍历所有单词*/
 	var xBlock = gXmlBookDataBody.getElementsByTagName("block");
 	var xBlock = gXmlBookDataBody.getElementsByTagName("block");
-	var iWordCount=0;
-	for(iBlock=0;iBlock<xBlock.length;iBlock++){
-		var xData=xBlock[iBlock].getElementsByTagName("data")[0]
+	var iWordCount = 0;
+	for (iBlock = 0; iBlock < xBlock.length; iBlock++) {
+		var xData = xBlock[iBlock].getElementsByTagName("data")[0];
 		parInfo = xBlock[iBlock].getElementsByTagName("info")[0];
 		parInfo = xBlock[iBlock].getElementsByTagName("info")[0];
-		book=getNodeText(parInfo,"book");
-		parNo=getNodeText(parInfo,"paragraph");
-		
+		book = getNodeText(parInfo, "book");
+		parNo = getNodeText(parInfo, "paragraph");
+
 		xWord = xData.getElementsByTagName("word");
 		xWord = xData.getElementsByTagName("word");
-		for(k=0;k<xWord.length;k++)
-		{
-			strWordPali = getNodeText(xWord[k],"pali");
-			strWordMean = getNodeText(xWord[k],"mean");
-			strWordId  = getNodeText(xWord[k],"id");
-			strWordBookMarkColor = getNodeText(xWord[k],"bmc");
-			if(strWordBookMarkColor.length>0){
-				if(strWordBookMarkColor.substr(3,1)!=0){/*屏蔽显示注释的Bug*/
-				var markString = strWordBookMarkColor.substr(3,1);
-					colorStyle = "bookmarkcolor"+markString;
-				var bookMarkId = "w"+strWordId;
-					strBookMark +=  "<p class=\"bm"+markString+"\"><span class='bookmarkcolorblock , "+colorStyle+"'>"+markString+"</span>";
+		for (k = 0; k < xWord.length; k++) {
+			strWordPali = getNodeText(xWord[k], "pali");
+			strWordMean = getNodeText(xWord[k], "mean");
+			strWordId = getNodeText(xWord[k], "id");
+			strWordBookMarkColor = getNodeText(xWord[k], "bmc");
+			if (strWordBookMarkColor.length > 0) {
+				if (strWordBookMarkColor.substr(3, 1) != 0) {
+					/*屏蔽显示注释的Bug*/
+					var markString = strWordBookMarkColor.substr(3, 1);
+					colorStyle = "bookmarkcolor" + markString;
+					var bookMarkId = "w" + strWordId;
+					strBookMark +=
+						'<p class="bm' +
+						markString +
+						"\"><span class='bookmarkcolorblock , " +
+						colorStyle +
+						"'>" +
+						markString +
+						"</span>";
 					//strBookMark += "<a href=\"#"+bookMarkId+"\">"+strWordPali+":"+strWordMean.substr(3,10)+"</a></p>";
 					//strBookMark += "<a href=\"#"+bookMarkId+"\">"+strWordPali+":"+strWordMean.substr(3,10)+"</a></p>";
-					strBookMark += "<a onclick=\"editor_goto_link('"+book+"',"+parNo+",'"+bookMarkId+"')\">"+strWordPali+":"+strWordMean.substr(3,10)+"</a></p>";
+					strBookMark +=
+						"<a onclick=\"editor_goto_link('" +
+						book +
+						"'," +
+						parNo +
+						",'" +
+						bookMarkId +
+						"')\">" +
+						strWordPali +
+						":" +
+						strWordMean.substr(3, 10) +
+						"</a></p>";
 				}
 				}
 			}
 			}
 			iWordCount++;
 			iWordCount++;
 		}
 		}
 	}
 	}
 
 
-	return(strBookMark);
+	return strBookMark;
 }
 }
-function setBookmarkVisibility_all(){
-	var book_MarkId_array=new Array();
-	var book_MarkClass_array=new Array();
-	for(bookMark_i in g_bookMark_array){
-		book_MarkId_array.push("B_Bookmark_"+g_bookMark_array[bookMark_i]);
-		book_MarkClass_array.push("bm"+g_bookMark_array[bookMark_i]);
-	}
-	var isVisible = document.getElementById('B_Bookmark_All').checked;
-	for(bookMark_j in book_MarkId_array){
-		eval("document.getElementById('"+book_MarkId_array[bookMark_j]+"').checked=isVisible");
-		getStyleClass(book_MarkClass_array[bookMark_j]).style.display = (isVisible ? 'block' : 'none');
-		var book_mark_spanId="";
-		book_mark_spanId=book_MarkId_array[bookMark_j]+"_span"
-		if(isVisible==true){
-			eval("lock_key("+book_mark_spanId+".id,'on','"+book_MarkId_array[bookMark_j]+"','bookmark')");
-		}
-		else{
-			eval("lock_key("+book_mark_spanId+".id,'off','"+book_MarkId_array[bookMark_j]+"','bookmark')");
+function setBookmarkVisibility_all() {
+	var book_MarkId_array = new Array();
+	var book_MarkClass_array = new Array();
+	for (bookMark_i in g_bookMark_array) {
+		book_MarkId_array.push("B_Bookmark_" + g_bookMark_array[bookMark_i]);
+		book_MarkClass_array.push("bm" + g_bookMark_array[bookMark_i]);
+	}
+	var isVisible = document.getElementById("B_Bookmark_All").checked;
+	for (bookMark_j in book_MarkId_array) {
+		eval("document.getElementById('" + book_MarkId_array[bookMark_j] + "').checked=isVisible");
+		getStyleClass(book_MarkClass_array[bookMark_j]).style.display = isVisible ? "block" : "none";
+		var book_mark_spanId = "";
+		book_mark_spanId = book_MarkId_array[bookMark_j] + "_span";
+		if (isVisible == true) {
+			eval("lock_key(" + book_mark_spanId + ".id,'on','" + book_MarkId_array[bookMark_j] + "','bookmark')");
+		} else {
+			eval("lock_key(" + book_mark_spanId + ".id,'off','" + book_MarkId_array[bookMark_j] + "','bookmark')");
 		}
 		}
 	}
 	}
 }
 }
-function setBookmarkVisibility(className,controlID){
+function setBookmarkVisibility(className, controlID) {
 	var isVisible = document.getElementById(controlID).checked;
 	var isVisible = document.getElementById(controlID).checked;
-	getStyleClass(className).style.display = (isVisible ? 'flex' : 'none');
+	getStyleClass(className).style.display = isVisible ? "flex" : "none";
 }
 }
 /*刷新书签*/
 /*刷新书签*/
-function refreshBookMark(){
+function refreshBookMark() {
 	document.getElementById("navi_bookmark_inner").innerHTML = bookMark();
 	document.getElementById("navi_bookmark_inner").innerHTML = bookMark();
 }
 }
 /*Apply all system match words*/
 /*Apply all system match words*/
-function applyAllSysMatch(){
-
-	var iWordCount=0;
-	var iModified=0;
+function applyAllSysMatch() {
+	var iWordCount = 0;
+	var iModified = 0;
 
 
-		xWord = gXmlBookDataBody.getElementsByTagName("word");
-		/*遍历此经中所有单词*/
-		for(k=0;k<xWord.length;k++)
+	xWord = gXmlBookDataBody.getElementsByTagName("word");
+	/*遍历此经中所有单词*/
+	for (k = 0; k < xWord.length; k++) {
 		{
 		{
-			{
-				if(getNodeText(xWord[k],"bmc")=="bmca"){
-					setNodeText(xWord[k],"bmc","bmc0")
-					updataWordBodyByElement(xWord[k]);
-					iModified++;					
-				}
+			if (getNodeText(xWord[k], "bmc") == "bmca") {
+				setNodeText(xWord[k], "bmc", "bmc0");
+				updataWordBodyByElement(xWord[k]);
+				iModified++;
 			}
 			}
-			iWordCount++;
 		}
 		}
-	
-	if(iWordCount>0){
-		document.getElementById("navi_bookmark_inner").innerHTML = bookMark();
+		iWordCount++;
 	}
 	}
-	var_dump(iModified+"个单词被确认。")
-}
-
-function setUseMode(strUseMode){
-	var multi_trans_strUseMode=gLocal.gui.edit
-	if(strUseMode=="Read"){
-			multi_trans_strUseMode="<svg class=\"icon\"><use xmlns:xlink=\"http://www.w3.org/1999/xlink\" xlink:href=\"svg/icon.svg#ic_reader_mode\"></use></svg>"
 
 
+	if (iWordCount > 0) {
+		document.getElementById("navi_bookmark_inner").innerHTML = bookMark();
 	}
 	}
-	else{
-			multi_trans_strUseMode="<svg class=\"icon\"><use xmlns:xlink=\"http://www.w3.org/1999/xlink\" xlink:href=\"svg/icon.svg#ic_mode_edit\"></use></svg>"
+	var_dump(iModified + "个单词被确认。");
+}
 
 
-	}
-	document.getElementById("use_mode").innerHTML = multi_trans_strUseMode+"<svg class=\"small_icon\"><use xlink:href=\"svg/icon.svg#ic_down\"></use></svg>";
-	switch(strUseMode){
+function setUseMode(strUseMode) {
+	var multi_trans_strUseMode = gLocal.gui.edit;
+	if (strUseMode == "Read") {
+		multi_trans_strUseMode =
+			'<svg class="icon"><use xmlns:xlink="http://www.w3.org/1999/xlink" xlink:href="svg/icon.svg#ic_reader_mode"></use></svg>';
+	} else {
+		multi_trans_strUseMode =
+			'<svg class="icon"><use xmlns:xlink="http://www.w3.org/1999/xlink" xlink:href="svg/icon.svg#ic_mode_edit"></use></svg>';
+	}
+	document.getElementById("use_mode").innerHTML =
+		multi_trans_strUseMode + '<svg class="small_icon"><use xlink:href="svg/icon.svg#ic_down"></use></svg>';
+	switch (strUseMode) {
 		case "Read":
 		case "Read":
-			g_useMode="read";
-			getStyleClass('edit_tran_button').style.display = "none";
-			getStyleClass('edit_tool').style.display = "none";
-			getStyleClass('tran_input').style.display = "none";
+			g_useMode = "read";
+			getStyleClass("edit_tran_button").style.display = "none";
+			getStyleClass("edit_tool").style.display = "none";
+			getStyleClass("tran_input").style.display = "none";
 			break;
 			break;
 		case "Edit":
 		case "Edit":
-			g_useMode="edit";
-			getStyleClass('edit_tran_button').style.display = "inline";
-			getStyleClass('edit_tool').style.display = "inline";
-			getStyleClass('tran_input').style.display = "none";
+			g_useMode = "edit";
+			getStyleClass("edit_tran_button").style.display = "inline";
+			getStyleClass("edit_tool").style.display = "inline";
+			getStyleClass("tran_input").style.display = "none";
 			break;
 			break;
 		case "Translate":
 		case "Translate":
-			g_useMode="translate";
-			getStyleClass('edit_tran_button').style.display = "inline";
-			getStyleClass('tran_input').style.display = "block";
+			g_useMode = "translate";
+			getStyleClass("edit_tran_button").style.display = "inline";
+			getStyleClass("tran_input").style.display = "block";
 			break;
 			break;
-
 	}
 	}
 
 
-
-	if(gXmlBookDataBody!=null){
+	if (gXmlBookDataBody != null) {
 		var mWordNode = gXmlBookDataBody.getElementsByTagName("word");
 		var mWordNode = gXmlBookDataBody.getElementsByTagName("word");
 		/*遍历所有单词*/
 		/*遍历所有单词*/
-		for(k=0;k<mWordNode.length;k++)
-		{
+		for (k = 0; k < mWordNode.length; k++) {
 			modifyWordDetailByWordIndex(k);
 			modifyWordDetailByWordIndex(k);
 		}
 		}
 	}
 	}
 
 
-	document.getElementById('menuUseMode').style.display = "none";
+	document.getElementById("menuUseMode").style.display = "none";
 }
 }
 
 
-
-function setUseMode_Static(strUseMode){
-	if(strUseMode=="chanting"){
+function setUseMode_Static(strUseMode) {
+	if (strUseMode == "chanting") {
 		document.getElementById("use_mode").innerHTML = "Chanting";
 		document.getElementById("use_mode").innerHTML = "Chanting";
-		g_useMode="chanting";
-		getStyleClass('chanting_enter').style.display = "block";
-	}	
-	else{
+		g_useMode = "chanting";
+		getStyleClass("chanting_enter").style.display = "block";
+	} else {
 		document.getElementById("use_mode").innerHTML = "Read";
 		document.getElementById("use_mode").innerHTML = "Read";
-		g_useMode="read";
-		getStyleClass('chanting_enter').style.display = "none";
+		g_useMode = "read";
+		getStyleClass("chanting_enter").style.display = "none";
 	}
 	}
-	
+
 	dropbtnClick("menu01");
 	dropbtnClick("menu01");
-			
 }
 }
 
 
-function hiddenMenu(){
-	getStyleClass('dropdown-content').style.display = 'none';
+function hiddenMenu() {
+	getStyleClass("dropdown-content").style.display = "none";
 }
 }
 
 
-
-function splitAll(){
-var un_Dict = gXmlBookDataBody.getElementsByTagName("word");//拿到數組
-		var un_count=0
-		for(i_un=0;i_un<un_Dict.length;i_un++)
-		{
-			un_case=getNodeText(un_Dict[i_un],"case");
-			un_id=getNodeText(un_Dict[i_un],"id");
-			if(un_case.lastIndexOf(".un.")!=-1)
-				{//un_case.indexOf("#")>=0;
-				//nextElement=com_get_nextsibling(xmlElement);
-				//if(getNodeText(un_Dict[i_un+1],"case")!=null){//若不為空
-					/*if(getNodeText(nextElement,"un")==getNodeText(wordNode,"id")){//若孩子則——
-					//}
-					//else{//無kid展開按鈕*/
-						edit_un_split(un_id);
-						un_count=un_count+1
-					}
-				/*}
-				else{//無標點,拆
-					edit_un_split(un_id);
-					un_count=un_count+1
-				}*/
-			}	
-		var_dump(un_count+" "+gLocal.gui.allsplit);
-		
-		}
-
-
-//getNodeText(xDict[iword],"case");返回case信息,.indexOf("#")>=0檢查#,用split拆,取[0]==.un.,
-
-
-
-
-function sortMeanByDictOrder(wa, wb)
-{
-	var w1=wa.split('$')[0];
-	var w2=wb.split('$')[0];
-	var index1=wa.split('$')[1];
-	var index2=wb.split('$')[1];
+function sortMeanByDictOrder(wa, wb) {
+	var w1 = wa.split("$")[0];
+	var w2 = wb.split("$")[0];
+	var index1 = wa.split("$")[1];
+	var index2 = wb.split("$")[1];
 	//order by dictionary index
 	//order by dictionary index
-	order=w1-w2;
-	if(order==0){
+	order = w1 - w2;
+	if (order == 0) {
 		//if dictionay is same order by index of meaning array
 		//if dictionay is same order by index of meaning array
-		order=index1-index2;
+		order = index1 - index2;
 	}
 	}
 
 
-	return order
+	return order;
 }
 }
 
 
-function sortMeanByLanguageOrder(wa, wb)
-{
-	var w1=wa.split('$')[4];
-	var w2=wb.split('$')[4];
+function sortMeanByLanguageOrder(wa, wb) {
+	var w1 = wa.split("$")[4];
+	var w2 = wb.split("$")[4];
 	//order by dictionary index
 	//order by dictionary index
-	order=w1-w2;
-	return order
+	order = w1 - w2;
+	return order;
 }
 }
 
 
-function removeSameWordInArray(wordList){
+function removeSameWordInArray(wordList) {
 	var output = new Array();
 	var output = new Array();
-	
-	for(indexWord in wordList){
-		oneWord=wordList[indexWord].split("$");
-		var isExist=false;
-		for(x in output){
-			if(output[x].word==oneWord[3]){
-				isExist=true;
+
+	for (indexWord in wordList) {
+		oneWord = wordList[indexWord].split("$");
+		var isExist = false;
+		for (x in output) {
+			if (output[x].word == oneWord[3]) {
+				isExist = true;
 			}
 			}
 		}
 		}
-		if(!isExist){
+		if (!isExist) {
 			var objWord = new Object();
 			var objWord = new Object();
-			objWord.word=oneWord[3];
-			objWord.parent=oneWord[2];
+			objWord.word = oneWord[3];
+			objWord.parent = oneWord[2];
 			output.push(objWord);
 			output.push(objWord);
 		}
 		}
 	}
 	}
-	return(output);
-}
+	return output;
+}

+ 0 - 17
app/studio/plugin/system_tools/gui.html

@@ -6,20 +6,3 @@
 	</svg>
 	</svg>
 	</button>
 	</button>
 </div>
 </div>
-
-<div>
-	<button type="button" style="color: var(--btn-color);" onclick="splitAll()">
-		<?php echo $module_gui_str['editor']['1106']; //拆詞神器?>
-		<svg class="icon">
-			<use xmlns:xlink="http://www.w3.org/1999/xlink" xlink:href="svg/icon.svg#ic_content_cut"></use>
-		</svg>
-	</button>
-</div>
-<div>
-	<button type="button" style="color: var(--btn-color);" onclick="magic_sentence_cut()">
-		<?php echo $module_gui_str['editor']['1105']; //切句神器?>
-		<svg class="icon">
-			<use xmlns:xlink="http://www.w3.org/1999/xlink" xlink:href="svg/icon.svg#ic_content_cut"></use>
-		</svg>
-	</button>
-</div>

+ 3 - 3
app/ucenter/active_get.php

@@ -23,11 +23,11 @@ if(isset($userid)){
 	$last = 0;
 	$last = 0;
 	while($row = $sth->fetch(PDO::FETCH_ASSOC)){
 	while($row = $sth->fetch(PDO::FETCH_ASSOC)){
 		$curr = $last+$row["duration"]/3600000;
 		$curr = $last+$row["duration"]/3600000;
-		$output[]=array($row["date"],number_format($last,3,".",""),number_format($curr,3,".",""),number_format($last,3,".",""),number_format($curr,3,".",""),$row["hit"]);
+		$output[]=array($row["date"],round($last,3),round($curr,3),round($last,3),round($curr,3),$row["hit"]);
 		$last = $curr;
 		$last = $curr;
 	}
 	}
 
 
-	$json =  json_encode($output);
-	echo str_replace('"','',$json);
+	echo  json_encode($output);
+	//echo str_replace('"','',$json);
 }
 }
 ?>
 ?>

+ 2 - 2
app/upgrade/upgrade_pali_toc.php

@@ -113,7 +113,7 @@ foreach ($valid_book as $key => $book) {
 		# 查询巴利字符数
 		# 查询巴利字符数
 		$query = "SELECT sum(strlen) as pali_strlen from pali_sent_index where book = ? and para between ? and ? ";
 		$query = "SELECT sum(strlen) as pali_strlen from pali_sent_index where book = ? and para between ? and ? ";
 		$stmt = $dbh_pali_sent->prepare($query);
 		$stmt = $dbh_pali_sent->prepare($query);
-		$stmt->execute(array($book["book"],$chapter["paragraph"],$chapter["paragraph"]+$chapter["chapter_len"]));
+		$stmt->execute(array($book["book"],$chapter["paragraph"],(int)$chapter["paragraph"]+(int)$chapter["chapter_len"]-1));
 		$result_chapter_strlen = $stmt->fetch(PDO::FETCH_ASSOC);
 		$result_chapter_strlen = $stmt->fetch(PDO::FETCH_ASSOC);
 		if($result_chapter_strlen){
 		if($result_chapter_strlen){
 			$pali_strlen = (int)$result_chapter_strlen["pali_strlen"];
 			$pali_strlen = (int)$result_chapter_strlen["pali_strlen"];
@@ -121,7 +121,7 @@ foreach ($valid_book as $key => $book) {
 			foreach ($result_lang as $lang) {
 			foreach ($result_lang as $lang) {
 				$query = "SELECT sum(all_strlen) as all_strlen from progress where book = ? and (para between ? and ? )and lang = ?";
 				$query = "SELECT sum(all_strlen) as all_strlen from progress where book = ? and (para between ? and ? )and lang = ?";
 				$stmt = $dbh_toc->prepare($query);
 				$stmt = $dbh_toc->prepare($query);
-				$stmt->execute(array($book["book"],$chapter["paragraph"],$chapter["paragraph"]+$chapter["chapter_len"],$lang["language"]));
+				$stmt->execute(array($book["book"],$chapter["paragraph"],(int)$chapter["paragraph"]+(int)$chapter["chapter_len"]-1,$lang["language"]));
 				$result_chapter_trans_strlen = $stmt->fetch(PDO::FETCH_ASSOC);
 				$result_chapter_trans_strlen = $stmt->fetch(PDO::FETCH_ASSOC);
 				if($result_chapter_trans_strlen){
 				if($result_chapter_trans_strlen){
 					$tran_strlen = (int)$result_chapter_trans_strlen["all_strlen"];
 					$tran_strlen = (int)$result_chapter_trans_strlen["all_strlen"];

File diff suppressed because it is too large
+ 137 - 137
pali_title/130_title.csv


+ 60 - 0
pali_title/130_zh-hant.csv

@@ -0,0 +1,60 @@
+id,book,par_num,level,class,title,text,author
+NULL,130,3,1,title,(MN) Mūlapaṇṇāsa-aṭṭhakathā,第一篇 根本五十經注,system
+NULL,130,5,2,title,Ganthārambhakathā,發文引論,system
+NULL,130,6,3,title,Ganthārambhakathā,發文引論,system
+NULL,130,39,3,title,Nidānakathā,序論,system
+NULL,130,47,2,title,1. Mūlapariyāyavaggo,初品 根本法門品注,system
+NULL,130,48,3,title,1. Mūlapariyāyasuttavaṇṇanā,第一 根本法門經注,system
+NULL,130,357,3,title,2. Sabbāsavasuttavaṇṇanā,第二 一切漏經注,system
+NULL,130,494,3,title,3. Dhammadāyādasuttavaṇṇanā,第三 法嗣經注,system
+NULL,130,575,3,title,4. Bhayabheravasuttavaṇṇanā,第四 怖駭經注,system
+NULL,130,726,3,title,5. Anaṅgaṇasuttavaṇṇanā,第五 無穢經注,system
+NULL,130,794,3,title,6. Ākaṅkheyyasuttavaṇṇanā,第六 願經注,system
+NULL,130,836,3,title,7. Vatthasuttavaṇṇanā,第七 布喻經注,system
+NULL,130,888,3,title,8. Sallekhasuttavaṇṇanā,第八 削減經注,system
+NULL,130,934,3,title,9. Sammādiṭṭhisuttavaṇṇanā,第九 正見經注,system
+NULL,130,1083,3,title,10. Satipaṭṭhānasuttavaṇṇanā,第一〇 念處經注,system
+NULL,130,1445,2,title,2. Sīhanādavaggo,第二品 獅子吼品注,system
+NULL,130,1446,3,title,1. Cūḷasīhanādasuttavaṇṇanā,第一一 獅子吼小經注,system
+NULL,130,1544,3,title,2. Mahāsīhanādasuttavaṇṇanā,第一二 師子吼大經注,system
+NULL,130,1693,3,title,3. Mahādukkhakkhandhasuttavaṇṇanā,第一三 苦蘊大經注,system
+NULL,130,1715,3,title,4. Cūḷadukkhakkhandhasuttavaṇṇanā,第一四 苦蘊小經注,system
+NULL,130,1731,3,title,5. Anumānasuttavaṇṇanā,第一五 思量經注,system
+NULL,130,1743,3,title,6. Cetokhilasuttavaṇṇanā,第一六 心荒蕪經注,system
+NULL,130,1756,3,title,7. Vanapatthapariyāyasuttavaṇṇanā,第一七 林藪經注,system
+NULL,130,1766,3,title,8. Madhupiṇḍikasuttavaṇṇanā,第一八 蜜丸經注,system
+NULL,130,1786,3,title,9. Dvedhāvitakkasuttavaṇṇanā,第一九 雙想經注,system
+NULL,130,1809,3,title,10. Vitakkasaṇṭhānasuttavaṇṇanā,第二〇 想念止息經注,system
+NULL,130,1849,2,title,3. Opammavaggo,第三品 譬喻法品注,system
+NULL,130,1850,3,title,1. Kakacūpamasuttavaṇṇanā,第二一 鋸喻經注,system
+NULL,130,1879,3,title,2. Alagaddūpamasuttavaṇṇanā,第二二 蛇喻經注,system
+NULL,130,1933,3,title,3. Vammikasuttavaṇṇanā,第二三 蟻垤經注,system
+NULL,130,1975,3,title,4. Rathavinītasuttavaṇṇanā,第二四 傳車經注,system
+NULL,130,2063,3,title,5. Nivāpasuttavaṇṇanā,第二五 撒餌經注,system
+NULL,130,2076,3,title,6. Pāsarāsisuttavaṇṇanā,第二六 聖求經注,system
+NULL,130,2167,3,title,7. Cūḷahatthipadopamasuttavaṇṇanā,第二七 象跡喻小經注,system
+NULL,130,2236,3,title,8. Mahāhatthipadopamasuttavaṇṇanā,第二八 象跡喻大經注,system
+NULL,130,2276,3,title,9. Mahāsāropamasuttavaṇṇanā,第二九 心材喻大經注,system
+NULL,130,2285,3,title,10. Cūḷasāropamasuttavaṇṇanā,第三〇 心材喻小經注,system
+NULL,130,2296,2,title,4. Mahāyamakavaggo,第四品 雙大品注,system
+NULL,130,2297,3,title,1. Cūḷagosiṅgasuttavaṇṇanā,第三一 牛角林小經注,system
+NULL,130,2321,3,title,2. Mahāgosiṅgasuttavaṇṇanā,第三二 牛角林大經注,system
+NULL,130,2359,3,title,3. Mahāgopālakasuttavaṇṇanā,第三三 牧牛者大經注,system
+NULL,130,2386,3,title,4. Cūḷagopālakasuttavaṇṇanā,第三四 牧牛者小經注,system
+NULL,130,2395,3,title,5. Cūḷasaccakasuttavaṇṇanā,第三五 薩遮迦小經注,system
+NULL,130,2448,3,title,6. Mahāsaccakasutavaṇṇanā,第三六 薩遮迦大經注,system
+NULL,130,2482,3,title,7. Cūḷataṇhāsaṅkhayasuttavaṇṇanā,第三七 愛盡小經注,system
+NULL,130,2502,3,title,8. Mahātaṇhāsaṅkhayasuttavaṇṇanā,第三八 愛盡大經注,system
+NULL,130,2524,3,title,9. Mahāassapurasuttavaṇṇanā,第三九 馬邑大經注,system
+NULL,130,2564,3,title,10. Cūḷaassapurasuttavaṇṇanā,第四〇 馬邑小經注,system
+NULL,130,2572,2,title,5. Cūḷayamakavaggo,第五品 雙小品注,system
+NULL,130,2573,3,title,1. Sāleyyakasuttavaṇṇanā,第四一 薩羅村婆羅門經注,system
+NULL,130,2596,3,title,2. Verañjakasuttavaṇṇanā,第四二 鞞蘭若村婆羅門經注,system
+NULL,130,2600,3,title,3. Mahāvedallasuttavaṇṇanā,第四三 有明大經注,system
+NULL,130,2660,3,title,4. Cūḷavedallasuttavaṇṇanā,第四四 有明小經注,system
+NULL,130,2699,3,title,5. Cūḷadhammasamādānasuttavaṇṇanā,第四五 得法小經注,system
+NULL,130,2716,3,title,6. Mahādhammasamādānasuttavaṇṇanā,第四六 得法大經注,system
+NULL,130,2734,3,title,7. Vīmaṃsakasuttavaṇṇanā,第四七 思察經注,system
+NULL,130,2787,3,title,8. Kosambiyasuttavaṇṇanā,第四八 憍賞彌經注,system
+NULL,130,2828,3,title,9. Brahmanimantanikasuttavaṇṇanā,第四九 梵天請經注,system
+NULL,130,2884,3,title,10. Māratajjanīyasuttavaṇṇanā,第五〇 魔訶責經注,system

File diff suppressed because it is too large
+ 246 - 246
pali_title/131_title.csv


+ 57 - 0
pali_title/131_zh-hant.csv

@@ -0,0 +1,57 @@
+id,book,par_num,level,class,title,text,author
+NULL,131,3,1,title,(MN) Majjhimapaṇṇāsa-aṭṭhakathā,第二篇 中分五十經篇注,元亨寺
+NULL,131,4,2,title,1. Gahapativaggo,初品 居士品,元亨寺
+NULL,131,5,4,title,1. Kandarakasuttavaṇṇanā,第五一 乾達羅迦經注,元亨寺
+NULL,131,26,4,title,2. Aṭṭhakanāgarasuttavaṇṇanā,第五二 八城經注,元亨寺
+NULL,131,40,4,title,3. Sekhasuttavaṇṇanā,第五三 有學經注,元亨寺
+NULL,131,121,4,title,4. Potaliyasuttavaṇṇanā,第五四 哺多利經注,元亨寺
+NULL,131,148,4,title,5. Jīvakasuttavaṇṇanā,第五五 耆婆迦經注,元亨寺
+NULL,131,165,4,title,6. Upālisuttavaṇṇanā,第五六 優波離經注,元亨寺
+NULL,131,334,4,title,7. Kukkuravatikasuttavaṇṇanā,第五七 狗行者經注,元亨寺
+NULL,131,356,4,title,8. Abhayarājakumārasuttavaṇṇanā,第五八 無畏王子經注,元亨寺
+NULL,131,371,4,title,9. Bahuvedanīyasuttavaṇṇanā,第五九 多受經注,元亨寺
+NULL,131,379,4,title,10. Apaṇṇakasuttavaṇṇanā,第六〇 無戲論經注,元亨寺
+NULL,131,404,2,title,2. Bhikkhuvaggo,第二品 比丘品,元亨寺
+NULL,131,405,4,title,1. Ambalaṭṭhikarāhulovādasuttavaṇṇanā,第六一 菴婆蘖林教誡羅睺羅經注,元亨寺
+NULL,131,421,4,title,2. Mahārāhulovādasuttavaṇṇanā,第六二 教誡羅睺羅大經注,元亨寺
+NULL,131,461,4,title,3. Cūḷamālukyasuttavaṇṇanā,第六三 摩羅迦小經注,元亨寺
+NULL,131,469,4,title,4. Mahāmālukyasuttavaṇṇanā,第六四 摩羅迦大經注,元亨寺
+NULL,131,481,4,title,5. Bhaddālisuttavaṇṇanā,第六五 跋陀利經注,元亨寺
+NULL,131,521,4,title,6. Laṭukikopamasuttavaṇṇanā,第六六 鶉喻經注,元亨寺
+NULL,131,541,4,title,7. Cātumasuttavaṇṇanā,第六七 車頭聚落經注,元亨寺
+NULL,131,555,4,title,8. Naḷakapānasuttavaṇṇanā,第六八 那羅伽波寧村經注,元亨寺
+NULL,131,573,4,title,9. Goliyānisuttavaṇṇanā,第六九 瞿尼師經注,元亨寺
+NULL,131,581,4,title,10. Kīṭāgirisuttavaṇṇanā,第七〇 枳吒山邑經注,元亨寺
+NULL,131,603,2,title,3. Paribbājakavaggo,第三品上 普行者品上,元亨寺
+NULL,131,604,4,title,1. Tevijjavacchasuttavaṇṇanā,第七一 婆蹉衢多三明經注,元亨寺
+NULL,131,611,4,title,2. Aggivacchasuttavaṇṇanā,第七二 婆蹉衢多火〔喻〕經注,元亨寺
+NULL,131,621,4,title,3. Mahāvacchasuttavaṇṇanā,第七三 婆蹉衢多大經注,元亨寺
+NULL,131,637,4,title,4. Dīghanakhasuttavaṇṇanā,第七四 長爪經注,元亨寺
+NULL,131,663,4,title,5. Māgaṇḍiyasuttavaṇṇanā,第七五 摩犍提經注,元亨寺
+NULL,131,700,4,title,6. Sandakasuttavaṇṇanā,第七六 刪陀迦經注,元亨寺
+NULL,131,732,4,title,7. Mahāsakuludāyisuttavaṇṇanā,第七七 善生優陀夷大經注,元亨寺
+NULL,131,792,4,title,8. Samaṇamuṇḍikasuttavaṇṇanā,第七八 沙門文祁子經注,元亨寺
+NULL,131,811,4,title,9. Cūḷasakuludāyisuttavaṇṇanā,第七九 善生優陀夷小經注,元亨寺
+NULL,131,831,4,title,10. Vekhanasasuttavaṇṇanā,第八〇 鞞摩那修經注,元亨寺
+NULL,131,839,2,title,4. Rājavaggo,第四品 王品,元亨寺
+NULL,131,840,4,title,1. Ghaṭikārasuttavaṇṇanā,第八一 陶師經注,元亨寺
+NULL,131,862,4,title,2. Raṭṭhapālasuttavaṇṇanā,第八二 賴吒惒羅經注,元亨寺
+NULL,131,916,4,title,3. Maghadevasuttavaṇṇanā,第八三 大天㮈林經注,元亨寺
+NULL,131,974,4,title,4. Madhurasuttavaṇṇanā,第八四 摩偷羅經注,元亨寺
+NULL,131,981,4,title,5. Bodhirājakumārasuttavaṇṇanā,第八五 菩提王子經注,元亨寺
+NULL,131,996,4,title,6. Aṅgulimālasuttavaṇṇanā,第八六 鴦掘摩經注,元亨寺
+NULL,131,1035,4,title,7. Piyajātikasuttavaṇṇanā,第八七 愛生經注,元亨寺
+NULL,131,1045,4,title,8. Bāhitikasuttavaṇṇanā,第八八 鞞訶提經注,元亨寺
+NULL,131,1054,4,title,9. Dhammacetiyasuttavaṇṇanā,第八九 法莊嚴經注,元亨寺
+NULL,131,1072,4,title,10. Kaṇṇakatthalasuttavaṇṇanā,第九〇 普棘刺林經注,元亨寺
+NULL,131,1085,2,title,5. Brāhmaṇavaggo,第五品 婆羅門品,元亨寺
+NULL,131,1086,4,title,1. Brahmāyusuttavaṇṇanā,第九一 梵摩經注,元亨寺
+NULL,131,1169,4,title,2. Selasuttavaṇṇanā,第九二 施羅經注,元亨寺
+NULL,131,1190,4,title,3. Assalāyanasuttavaṇṇanā,第九三 阿攝惒經〔阿攝羅耶那〕注,元亨寺
+NULL,131,1205,4,title,4. Ghoṭamukhasuttavaṇṇanā,第九四 瞿哆牟伽經注,元亨寺
+NULL,131,1212,4,title,5. Caṅkīsuttavaṇṇanā,第九五 商伽經注,元亨寺
+NULL,131,1245,4,title,6. Esukārīsuttavaṇṇanā,第九六 鬱瘦歌邏經注,元亨寺
+NULL,131,1250,4,title,7. Dhanañjānisuttavaṇṇanā,第九七 陀然經注,元亨寺
+NULL,131,1257,4,title,8. Vāseṭṭhasuttavaṇṇanā,第九八 婆私吒經注,元亨寺
+NULL,131,1308,4,title,9. Subhasuttavaṇṇanā,第九九 須婆經注,元亨寺
+NULL,131,1324,4,title,10. Saṅgāravasuttavaṇṇanā,第一〇〇 傷歌邏經注,元亨寺

File diff suppressed because it is too large
+ 267 - 267
pali_title/132_title.csv


+ 59 - 0
pali_title/132_zh-hant.csv

@@ -0,0 +1,59 @@
+id,book,par_num,level,class,title,text,author
+NULL,132,3,1,title,(MN) Uparipaṇṇāsa-aṭṭhakathā,第三篇 後分五十經篇注,system
+NULL,132,4,2,title,1. Devadahavaggo,初品 天臂品注,system
+NULL,132,5,3,title,1. Devadahasuttavaṇṇanā,第一〇一 天臂經注,system
+NULL,132,34,3,title,2. Pañcattayasuttavaṇṇanā,第一〇二 五三經注,system
+NULL,132,67,3,title,3. Kintisuttavaṇṇanā,第一〇三 如何經注,system
+NULL,132,81,3,title,4. Sāmagāmasuttavaṇṇanā,第一〇四 舍彌村經注,system
+NULL,132,129,3,title,5. Sunakkhattasuttavaṇṇanā,第一〇五 善星經注,system
+NULL,132,145,3,title,6. Āneñjasappāyasuttavaṇṇanā,第一〇六 不動利益經注,system
+NULL,132,168,3,title,7. Gaṇakamoggallānasuttavaṇṇanā,第一〇七 算數家目犍連經注,system
+NULL,132,177,3,title,8. Gopakamoggallānasuttavaṇṇanā,第一〇八 瞿默目犍連經注,system
+NULL,132,188,3,title,9. Mahāpuṇṇamasuttavaṇṇanā,第一〇九 滿月大經注,system
+NULL,132,204,3,title,10. Cūḷapuṇṇamasuttavaṇṇanā,第一一〇 滿月小經注,system
+NULL,132,212,2,title,2. Anupadavaggo,第二品 不斷品注,system
+NULL,132,213,3,title,1. Anupadasuttavaṇṇanā,第一一一 不斷經注,system
+NULL,132,239,3,title,2. Chabbisodhanasuttavaṇṇanā,第一一二 六淨經注,system
+NULL,132,258,3,title,3. Sappurisadhammasuttavaṇṇanā,第一一三 善士經注,system
+NULL,132,267,3,title,4. Sevitabbāsevitabbasuttavaṇṇanā,第一一四 應習不應習經注,system
+NULL,132,278,3,title,5. Bahudhātukasuttavaṇṇanā,第一一五 多界經注,system
+NULL,132,352,3,title,6. Isigilisuttavaṇṇanā,第一一六 仙吞經注,system
+NULL,132,369,3,title,7. Mahācattārīsakasuttavaṇṇanā,第一一七 大四十經注,system
+NULL,132,388,3,title,8. Ānāpānassatisuttavaṇṇanā,第一一八 入出息念經注,system
+NULL,132,406,3,title,9. Kāyagatāsatisuttavaṇṇanā,第一一九 身行念經注,system
+NULL,132,416,3,title,10. Saṅkhārupapattisuttavaṇṇanā,第一二〇 行生經注,system
+NULL,132,429,2,title,3. Suññatavaggo,第三品 空 品注,system
+NULL,132,430,3,title,1. Cūḷasuññatasuttavaṇṇanā,第一二一 空小經注,system
+NULL,132,443,3,title,2. Mahāsuññatasuttavaṇṇanā,第一二二 空大經注,system
+NULL,132,477,3,title,3. Acchariyaabbhutasuttavaṇṇanā,第一二三 希有未曾有法經注,system
+NULL,132,538,3,title,4. Bākulasuttavaṇṇanā,第一二四 薄拘羅經注,system
+NULL,132,556,3,title,5. Dantabhūmisuttavaṇṇanā,第一二五 調御地經注,system
+NULL,132,571,3,title,6. Bhūmijasuttavaṇṇanā,第一二六 浮彌經注,system
+NULL,132,575,3,title,7. Anuruddhasuttavaṇṇanā,第一二七 阿那律經注,system
+NULL,132,589,3,title,8. Upakkilesasuttavaṇṇanā,第一二八 隨煩惱經注,system
+NULL,132,617,3,title,9. Bālapaṇḍitasuttavaṇṇanā,第一二九 賢愚經注,system
+NULL,132,680,3,title,10. Devadūtasuttavaṇṇanā,第一三〇 天使經注,system
+NULL,132,711,2,title,4. Vibhaṅgavaggo,第四品 分別品注,system
+NULL,132,712,3,title,1. Bhaddekarattasuttavaṇṇanā,第一三一 一夜賢者經注,system
+NULL,132,725,3,title,2. Ānandabhaddekarattasuttavaṇṇanā,第一三二 阿難一夜賢者經注,system
+NULL,132,730,3,title,3. Mahākaccānabhaddekarattasuttavaṇṇanā,第一三三 大迦旃延一夜賢者經注,system
+NULL,132,738,3,title,4. Lomasakaṅgiyabhaddekarattasuttavaṇṇanā,第一三四 盧夷強耆一夜賢者經注,system
+NULL,132,745,3,title,5. Cūḷakammavibhaṅgasuttavaṇṇanā,第一三五 小業分別經注,system
+NULL,132,771,3,title,6. Mahākammavibhaṅgasuttavaṇṇanā,第一三六 大業分別經注,system
+NULL,132,789,3,title,7. Saḷāyatanavibhaṅgasuttavaṇṇanā,第一三七 六處分別經注,system
+NULL,132,818,3,title,8. Uddesavibhaṅgasuttavaṇṇanā,第一三八 總說分別經注,system
+NULL,132,827,3,title,9. Araṇavibhaṅgasuttavaṇṇanā,第一三九 無諍分別經注,system
+NULL,132,840,3,title,10. Dhātuvibhaṅgasuttavaṇṇanā,第一四〇 界分別經注,system
+NULL,132,929,3,title,11. Saccavibhaṅgasuttavaṇṇanā,第一四一 諦分別經注,system
+NULL,132,935,3,title,12. Dakkhiṇāvibhaṅgasuttavaṇṇanā,第一四二 施分別經注,system
+NULL,132,970,2,title,5. Saḷāyatanavaggo,第五品 六處品注,system
+NULL,132,971,3,title,1. Anāthapiṇḍikovādasuttavaṇṇanā,第一四三 教給孤獨經注,system
+NULL,132,985,3,title,2. Channovādasuttavaṇṇanā,第一四四 教闡陀經注,system
+NULL,132,993,3,title,3. Puṇṇovādasuttavaṇṇanā,第一四五 教富樓那經注,system
+NULL,132,1015,3,title,4. Nandakovādasuttavaṇṇanā,第一四六 教難陀迦經注,system
+NULL,132,1030,3,title,5. Rāhulovādasuttavaṇṇanā,第一四七 教羅睺羅小經注,system
+NULL,132,1037,3,title,6. Chachakkasuttavaṇṇanā,第一四八 六六經注,system
+NULL,132,1051,3,title,7. Mahāsaḷāyatanikasuttavaṇṇanā,第一四九 大六處經注,system
+NULL,132,1061,3,title,8. Nagaravindeyyasuttavaṇṇanā,第一五〇 頻頭城經注,system
+NULL,132,1066,3,title,9. Piṇḍapātapārisuddhisuttavaṇṇanā,第一五一 乞食清淨經注,system
+NULL,132,1072,3,title,10. Indriyabhāvanāsuttavaṇṇanā,第一五二 根修習經注,system

+ 96 - 0
pali_title/160_zh-hant.csv

@@ -0,0 +1,96 @@
+id,book,par_num,level,class,title,text,author
+NULL,160,3,1,title,Vimānavatthupāḷi,天宮事經,元亨寺
+NULL,160,4,2,title,1. Itthivimānaṃ,一、 女人天宫,visuddhinanda
+NULL,160,5,3,title,1. Pīṭhavaggo,一 椅子品,元亨寺
+NULL,160,6,4,title,1. Paṭhamapīṭhavimānavatthu,一 椅子天宮,元亨寺
+NULL,160,29,4,title,2. Dutiyapīṭhavimānavatthu,二 椅子天宮,元亨寺
+NULL,160,52,4,title,3. Tatiyapīṭhavimānavatthu,三 椅子天宮,元亨寺
+NULL,160,78,4,title,4. Catutthapīṭhavimānavatthu,四 椅子天宮,元亨寺
+NULL,160,104,4,title,5. Kuñjaravimānavatthu,五 象天宮,元亨寺
+NULL,160,142,4,title,6. Paṭhamanāvāvimānavatthu,六 船天宮,元亨寺
+NULL,160,174,4,title,7. Dutiyanāvāvimānavatthu,七 船天宮,元亨寺
+NULL,160,206,4,title,8. Tatiyanāvāvimānavatthu,八 船天宮,元亨寺
+NULL,160,245,4,title,9. Dīpavimānavatthu,九 燈火天宮,元亨寺
+NULL,160,277,4,title,10. Tiladakkhiṇavimānavatthu,一〇 胡麻供養天宮,元亨寺
+NULL,160,303,4,title,11. Paṭhamapatibbatāvimānavatthu,一一 貞淑女天宮,元亨寺
+NULL,160,329,4,title,12. Dutiyapatibbatāvimānavatthu,一二 第二貞淑女天宮,元亨寺
+NULL,160,353,4,title,13. Paṭhamasuṇisāvimānavatthu,一三 嫁婦天宮,元亨寺
+NULL,160,379,4,title,14. Dutiyasuṇisāvimānavatthu,一四 嫁婦天宮,元亨寺
+NULL,160,405,4,title,15. Uttarāvimānavatthu,一五 欝多羅女天宮,元亨寺
+NULL,160,444,4,title,16. Sirimāvimānavatthu,一六 師利摩女天宮,元亨寺
+NULL,160,489,4,title,17. Kesakārīvimānavatthu,一七 結髮女天宮,元亨寺
+NULL,160,518,3,title,2. Cittalatāvaggo,二 茲他拉他園品,元亨寺
+NULL,160,519,4,title,1. Dāsivimānavatthu,一八 下婢天宮,元亨寺
+NULL,160,569,4,title,2. Lakhumāvimānavatthu,一九 拉庫馬女天宮,元亨寺
+NULL,160,604,4,title,3. Ācāmadāyikāvimānavatthu,二〇 飯泡施者天宮,元亨寺
+NULL,160,639,4,title,4. Caṇḍālivimānavatthu,二一 旃陀羅女天宮,元亨寺
+NULL,160,674,4,title,5. Bhadditthivimānavatthu,二二 巴第蒂伽女天宮,元亨寺
+NULL,160,711,4,title,6. Soṇadinnāvimānavatthu,二三 蘇娜汀那女天宮,元亨寺
+NULL,160,746,4,title,7. Uposathāvimānavatthu,二四 烏婆薩他女天宮,元亨寺
+NULL,160,793,4,title,8. Niddāvimānavatthu,二五 蘇尼陀女天宮,元亨寺
+NULL,160,823,4,title,9. Suniddāvimānavatthu,二六 蘇第因娜女天宮,元亨寺
+NULL,160,841,4,title,10. Paṭhamabhikkhādāyikāvimānavatthu,二七 食施女天宮,元亨寺
+NULL,160,858,4,title,11. Dutiyabhikkhādāyikāvimānavatthu,二八 二食施女天宮,元亨寺
+NULL,160,881,3,title,3. Pāricchattakavaggo,三 晝度樹品,元亨寺
+NULL,160,882,4,title,1. Uḷāravimānavatthu,二九 優天宮,元亨寺
+NULL,160,914,4,title,2. Ucchudāyikāvimānavatthu,三〇 甘蔗天宮,元亨寺
+NULL,160,950,4,title,3. Pallaṅkavimānavatthu,三一 臥臺天宮,元亨寺
+NULL,160,981,4,title,4. Latāvimānavatthu,三二 拉達天女天宮,元亨寺
+NULL,160,1016,4,title,5. Guttilavimānaṃ,三三 固蒂拉天宮,元亨寺
+NULL,160,1301,4,title,6. Daddallavimānavatthu,三四 光輝天宮,元亨寺
+NULL,160,1383,4,title,7. Pesavatīvimānavatthu,三五 闍沙瓦蒂女天宮,元亨寺
+NULL,160,1421,4,title,8. Mallikāvimānavatthu,三六 摩利迦女天宮,元亨寺
+NULL,160,1447,4,title,9. Visālakkhivimānavatthu,三七 廣目天宮,元亨寺
+NULL,160,1492,4,title,10. Pāricchattakavimānavatthu,三八 晝度樹天宮,元亨寺
+NULL,160,1526,3,title,4. Mañjiṭṭhakavaggo,四 深紅品,元亨寺
+NULL,160,1527,4,title,1. Mañjiṭṭhakavimānavatthu,三九 深紅天宮,元亨寺
+NULL,160,1553,4,title,2. Pabhassaravimānavatthu,四〇 極光天宮,元亨寺
+NULL,160,1580,4,title,3. Nāgavimānavatthu,四一 象天宮,元亨寺
+NULL,160,1600,4,title,4. Alomavimānavatthu,四二 阿羅瑪女天宮,元亨寺
+NULL,160,1618,4,title,5. Kañjikadāyikāvimānavatthu,四三 酸粥施者天宮,元亨寺
+NULL,160,1647,4,title,6. Vihāravimānavatthu,四四 精舍天宮,元亨寺
+NULL,160,1728,4,title,7. Caturitthivimānavatthu,四五 四女人天宮,元亨寺
+NULL,160,1768,4,title,8. Ambavimānavatthu,四六 菴婆天宮,元亨寺
+NULL,160,1797,4,title,9. Pītavimānavatthu,四七 金色天宮,元亨寺
+NULL,160,1838,4,title,10. Ucchuvimānavatthu,四八 甘蔗天宮,元亨寺
+NULL,160,1874,4,title,11. Vandanavimānavatthu,四九 禮拜天宮,元亨寺
+NULL,160,1889,4,title,12. Rajjumālāvimānavatthu,五〇 拉鳩瑪拉女天宮,元亨寺
+NULL,160,1992,2,title,2. Purisavimānaṃ,二、男人天宫,visuddhinanda
+NULL,160,1993,3,title,5. Mahārathavaggo,五 大事品,元亨寺
+NULL,160,1994,4,title,1. Maṇḍūkadevaputtavimānavatthu,五一 蛙天宮,元亨寺
+NULL,160,2008,4,title,2. Revatīvimānavatthu,五二 雷瓦提女天宮,元亨寺
+NULL,160,2088,4,title,3. Chattamāṇavakavimānavatthu,五三 洽答青年天宮,元亨寺
+NULL,160,2165,4,title,4. Kakkaṭakarasadāyakavimānavatthu,五四 蟹味施者天宮,元亨寺
+NULL,160,2192,4,title,5. Dvārapālavimānavatthu,五五 守門者天宮,元亨寺
+NULL,160,2210,4,title,6. Paṭhamakaraṇīyavimānavatthu,五六 所應作天宮,元亨寺
+NULL,160,2231,4,title,7. Dutiyakaraṇīyavimānavatthu,五七 第二所應作天宮,元亨寺
+NULL,160,2252,4,title,8. Paṭhamasūcivimānavatthu,五八 針天宮,元亨寺
+NULL,160,2270,4,title,9. Dutiyasūcivimānavatthu,五九 第二針天宮,元亨寺
+NULL,160,2289,4,title,10. Paṭhamanāgavimānavatthu,六〇 象天宮,元亨寺
+NULL,160,2308,4,title,11. Dutiyanāgavimānavatthu,六一 第二象天宮,元亨寺
+NULL,160,2327,4,title,12. Tatiyanāgavimānavatthu,六二 第三象天宮,元亨寺
+NULL,160,2344,4,title,13. Cūḷarathavimānavatthu,六三 小車天宮,元亨寺
+NULL,160,2448,4,title,14. Mahārathavimānavatthu,六四 大車天宮,元亨寺
+NULL,160,2556,3,title,6. Pāyāsivaggo,六 帕耶西品,元亨寺
+NULL,160,2557,4,title,1. Paṭhamaagāriyavimānavatthu,六五 在家天宮,元亨寺
+NULL,160,2573,4,title,2. Dutiyaagāriyavimānavatthu,六六 第二在家天宮,元亨寺
+NULL,160,2588,4,title,3. Phaladāyakavimānavatthu,六七 果實施者天宮,元亨寺
+NULL,160,2613,4,title,4. Paṭhamaupassayadāyakavimānavatthu,六八 住家施者天宮,元亨寺
+NULL,160,2628,4,title,5. Dutiyaupassayadāyakavimānavatthu,六九 第二住家施者天宮,元亨寺
+NULL,160,2635,4,title,6. Bhikkhādāyakavimānavatthu,七〇 食施者天宮,元亨寺
+NULL,160,2650,4,title,7. Yavapālakavimānavatthu,七一 麥番天宮,元亨寺
+NULL,160,2664,4,title,8. Paṭhamakuṇḍalīvimānavatthu,七二 耳環天宮,元亨寺
+NULL,160,2683,4,title,9. Dutiyakuṇḍalīvimānavatthu,七三 第二耳環天宮,元亨寺
+NULL,160,2702,4,title,10. (Uttara) pāyāsivimānavatthu,七四 鬱多羅天宮,元亨寺
+NULL,160,2723,3,title,7. Sunikkhittavaggo,七 整備天宮,元亨寺
+NULL,160,2724,4,title,1. Cittalatāvimānavatthu,七五 質多拉他天宮,元亨寺
+NULL,160,2740,4,title,2. Nandanavimānavatthu,七六 歡喜園天宮,元亨寺
+NULL,160,2756,4,title,3. Maṇithūṇavimānavatthu,七七 摩尼柱天宮,元亨寺
+NULL,160,2774,4,title,4. Suvaṇṇavimānavatthu,七八 黃金天宮,元亨寺
+NULL,160,2812,4,title,5. Ambavimānavatthu,七九 菴婆天宮,元亨寺
+NULL,160,2848,4,title,6. Gopālavimānavatthu,八〇 牧牛天宮,元亨寺
+NULL,160,2885,4,title,7. Kaṇḍakavimānavatthu,八一 犍陟天宮,元亨寺
+NULL,160,2970,4,title,8. Anekavaṇṇavimānavatthu,八二 種種色天宮,元亨寺
+NULL,160,2996,4,title,9. Maṭṭhakuṇḍalīvimānavatthu,八三 輝煌耳環天宮,元亨寺
+NULL,160,3061,4,title,10. Serīsakavimānavatthu,八四 樓閣天宮,元亨寺
+NULL,160,3243,4,title,11. Sunikkhittavimānavatthu,八五 整備天宮,元亨寺

+ 57 - 0
pali_title/164_zh-hant.csv

@@ -0,0 +1,57 @@
+id,book,par_num,level,class,title,text,author
+NULL,164,3,1,title,(MN)Mūlapaṇṇāsapāḷi,第一篇 根本五十經,元亨寺
+NULL,164,4,2,title,1. Mūlapariyāyavaggo,初品 根本法門品,元亨寺
+NULL,164,5,4,title,1. Mūlapariyāyasuttaṃ,第一 根本法門經,元亨寺
+NULL,164,55,4,title,2. Sabbāsavasuttaṃ,第二 一切漏經,元亨寺
+NULL,164,95,4,title,3. Dhammadāyādasuttaṃ,第三 法嗣經,元亨寺
+NULL,164,108,4,title,4. Bhayabheravasuttaṃ,第四 怖駭經,元亨寺
+NULL,164,134,4,title,5. Anaṅgaṇasuttaṃ,第五 無穢經,元亨寺
+NULL,164,165,4,title,6. Ākaṅkheyyasuttaṃ,第六 願經,元亨寺
+NULL,164,188,4,title,7. Vatthasuttaṃ,第七 布喻經,元亨寺
+NULL,164,213,4,title,8. Sallekhasuttaṃ,第八 削減經,元亨寺
+NULL,164,237,4,title,9. Sammādiṭṭhisuttaṃ,第九 正見經,元亨寺
+NULL,164,280,4,title,10. Mahāsatipaṭṭhānasuttaṃ,第一〇 念處經,元亨寺
+NULL,164,415,2,title,2. Sīhanādavaggo,第二品 獅子吼品,元亨寺
+NULL,164,416,4,title,1. Cūḷasīhanādasuttaṃ,第一一 獅子吼小經,元亨寺
+NULL,164,440,4,title,2. Mahāsīhanādasuttaṃ,第一二 師子吼大經,元亨寺
+NULL,164,505,4,title,3. Mahādukkhakkhandhasuttaṃ,第一三 苦蘊大經,元亨寺
+NULL,164,536,4,title,4. Cūḷadukkhakkhandhasuttaṃ,第一四 苦蘊小經,元亨寺
+NULL,164,559,4,title,5. Anumānasuttaṃ,第一五 思量經,元亨寺
+NULL,164,631,4,title,6. Cetokhilasuttaṃ,第一六 心荒蕪經,元亨寺
+NULL,164,658,4,title,7. Vanapatthasuttaṃ,第一七 林藪經,元亨寺
+NULL,164,670,4,title,8. Madhupiṇḍikasuttaṃ,第一八 蜜丸經,元亨寺
+NULL,164,688,4,title,9. Dvedhāvitakkasuttaṃ,第一九 雙想經,元亨寺
+NULL,164,706,4,title,10. Vitakkasaṇṭhānasuttaṃ,第二〇 想念止息經,元亨寺
+NULL,164,720,2,title,3. Opammavaggo,第三品 譬喻法品,元亨寺
+NULL,164,721,4,title,1. Kakacūpamasuttaṃ,第二一 鋸喻經,元亨寺
+NULL,164,747,4,title,2. Alagaddūpamasuttaṃ,第二二 蛇喻經,元亨寺
+NULL,164,799,4,title,3. Vammikasuttaṃ,第二三 蟻垤經,元亨寺
+NULL,164,818,4,title,4. Rathavinītasuttaṃ,第二四 傳車經,元亨寺
+NULL,164,869,4,title,5. Nivāpasuttaṃ,第二五 撒餌經,元亨寺
+NULL,164,899,4,title,6. Pāsarāsisuttaṃ,第二六 聖求經,元亨寺
+NULL,164,989,4,title,7. Cūḷahatthipadopamasuttaṃ,第二七 象跡喻小經,元亨寺
+NULL,164,1032,4,title,8. Mahāhatthipadopamasuttaṃ,第二八 象跡喻大經,元亨寺
+NULL,164,1056,4,title,9. Mahāsāropamasuttaṃ,第二九 心材喻大經,元亨寺
+NULL,164,1074,4,title,10. Cūḷasāropamasuttaṃ,第三〇 心材喻小經,元亨寺
+NULL,164,1103,2,title,4. Mahāyamakavaggo,第四品 雙大品,元亨寺
+NULL,164,1104,4,title,1. Cūḷagosiṅgasuttaṃ,第三一 牛角林小經,元亨寺
+NULL,164,1123,4,title,2. Mahāgosiṅgasuttaṃ,第三二 牛角林大經,元亨寺
+NULL,164,1140,4,title,3. Mahāgopālakasuttaṃ,第三三 牧牛者大經,元亨寺
+NULL,164,1170,4,title,4. Cūḷagopālakasuttaṃ,第三四 牧牛者小經,元亨寺
+NULL,164,1188,4,title,5. Cūḷasaccakasuttaṃ,第三五 薩遮迦小經,元亨寺
+NULL,164,1217,4,title,6. Mahāsaccakasuttaṃ,第三六 薩遮迦大經,元亨寺
+NULL,164,1259,4,title,7. Cūḷataṇhāsaṅkhayasuttaṃ,第三七 愛盡小經,元亨寺
+NULL,164,1273,4,title,8. Mahātaṇhāsaṅkhayasuttaṃ,第三八 愛盡大經,元亨寺
+NULL,164,1373,4,title,9. Mahāassapurasuttaṃ,第三九 馬邑大經,元亨寺
+NULL,164,1409,4,title,10. Cūḷaassapurasuttaṃ,第四〇 馬邑小經,元亨寺
+NULL,164,1424,2,title,5. Cūḷayamakavaggo,第五品 雙小品,元亨寺
+NULL,164,1425,4,title,1. Sāleyyakasuttaṃ,第四一 薩羅村婆羅門經,元亨寺
+NULL,164,1463,4,title,2. Verañjakasuttaṃ,第四二 鞞蘭若村婆羅門經,元亨寺
+NULL,164,1487,4,title,3. Mahāvedallasuttaṃ,第四三 有明大經,元亨寺
+NULL,164,1568,4,title,4. Cūḷavedallasuttaṃ,第四四 有明小經,元亨寺
+NULL,164,1630,4,title,5. Cūḷadhammasamādānasuttaṃ,第四五 得法小經,元亨寺
+NULL,164,1638,4,title,6. Mahādhammasamādānasuttaṃ,第四六 得法大經,元亨寺
+NULL,164,1662,4,title,7. Vīmaṃsakasuttaṃ,第四七 思察經,元亨寺
+NULL,164,1677,4,title,8. Kosambiyasuttaṃ,第四八 憍賞彌經,元亨寺
+NULL,164,1697,4,title,9. Brahmanimantanikasuttaṃ,第四九 梵天請經,元亨寺
+NULL,164,1723,4,title,10. Māratajjanīyasuttaṃ,第五〇 魔訶責經,元亨寺

File diff suppressed because it is too large
+ 7 - 7
pali_title/165_title.csv


+ 57 - 0
pali_title/165_zh-hant.csv

@@ -0,0 +1,57 @@
+id,book,par_num,level,class,title,text,author
+NULL,165,3,1,title,(MN)Majjhimapaṇṇāsapāḷi,第二篇 中分五十經篇,元亨寺
+NULL,165,4,2,title,1. Gahapativaggo,初品 居士品,元亨寺
+NULL,165,5,4,title,1. Kandarakasuttaṃ,第五一 乾達羅迦經,元亨寺
+NULL,165,29,4,title,2. Aṭṭhakanāgarasuttaṃ,第五二 八城經,元亨寺
+NULL,165,45,4,title,3. Sekhasuttaṃ,第五三 有學經,元亨寺
+NULL,165,68,4,title,4. Potaliyasuttaṃ,第五四 哺多利經,元亨寺
+NULL,165,109,4,title,5. Jīvakasuttaṃ,第五五 耆婆迦經,元亨寺
+NULL,165,123,4,title,6. Upālisuttaṃ,第五六 優波離經,元亨寺
+NULL,165,234,4,title,7. Kukkuravatikasuttaṃ,第五七 狗行者經,元亨寺
+NULL,165,248,4,title,8. Abhayarājakumārasuttaṃ,第五八 無畏王子經,元亨寺
+NULL,165,261,4,title,9. Bahuvedanīyasuttaṃ,第五九 多受經,元亨寺
+NULL,165,277,4,title,10. Apaṇṇakasuttaṃ,第六〇 無戲論經,元亨寺
+NULL,165,309,2,title,2. Bhikkhuvaggo,第二品 比丘品,元亨寺
+NULL,165,310,4,title,1. Ambalaṭṭhikarāhulovādasuttaṃ,第六一 菴婆蘖林教誡羅睺羅經,元亨寺
+NULL,165,325,4,title,2. Mahārāhulovādasuttaṃ,第六二 教誡羅睺羅大經,元亨寺
+NULL,165,346,4,title,3. Cūḷamālukyasuttaṃ,第六三 摩羅迦小經,元亨寺
+NULL,165,356,4,title,4. Mahāmālukyasuttaṃ,第六四 摩羅迦大經,元亨寺
+NULL,165,372,4,title,5. Bhaddālisuttaṃ,第六五 跋陀利經,元亨寺
+NULL,165,408,4,title,6. Laṭukikopamasuttaṃ,第六六 鶉喻經,元亨寺
+NULL,165,425,4,title,7. Cātumasuttaṃ,第六七 車頭聚落經,元亨寺
+NULL,165,437,4,title,8. Naḷakapānasuttaṃ,第六八 那羅伽波寧村經,元亨寺
+NULL,165,460,4,title,9. Goliyānisuttaṃ,第六九 瞿尼師經,元亨寺
+NULL,165,482,4,title,10. Kīṭāgirisuttaṃ,第七〇 枳吒山邑經,元亨寺
+NULL,165,508,2,title,3. Paribbājakavaggo,第三品上 普行者品上,元亨寺
+NULL,165,509,4,title,1. Tevijjavacchasuttaṃ,第七一 婆蹉衢多三明經,元亨寺
+NULL,165,520,4,title,2. Aggivacchasuttaṃ,第七二 婆蹉衢多火〔喻〕經,元亨寺
+NULL,165,550,4,title,3. Mahāvacchasuttaṃ,第七三 婆蹉衢多大經,元亨寺
+NULL,165,579,4,title,4. Dīghanakhasuttaṃ,第七四 長爪經,元亨寺
+NULL,165,588,4,title,5. Māgaṇḍiyasuttaṃ,第七五 摩犍提經,元亨寺
+NULL,165,615,4,title,6. Sandakasuttaṃ,第七六 刪陀迦經,元亨寺
+NULL,165,645,4,title,7. Mahāsakuludāyisuttaṃ,第七七 善生優陀夷大經,元亨寺
+NULL,165,702,4,title,8. Samaṇamuṇḍikasuttaṃ,第七八 沙門文祁子經,元亨寺
+NULL,165,733,4,title,9. Cūḷasakuludāyisuttaṃ,第七九 善生優陀夷小經,元亨寺
+NULL,165,780,4,title,10. Vekhanasasuttaṃ,第八〇 鞞摩那修經,元亨寺
+NULL,165,801,2,title,4. Rājavaggo,第四品 王品,元亨寺
+NULL,165,802,4,title,1. Ghaṭikārasuttaṃ,第八一 陶師經,元亨寺
+NULL,165,818,4,title,2. Raṭṭhapālasuttaṃ,第八二 賴吒惒羅經,元亨寺
+NULL,165,906,4,title,3. Maghadevasuttaṃ,第八三 大天㮈林經,元亨寺
+NULL,165,920,4,title,4. Madhurasuttaṃ,第八四 摩偷羅經,元亨寺
+NULL,165,941,4,title,5. Bodhirājakumārasuttaṃ,第八五 菩提王子經,元亨寺
+NULL,165,1018,4,title,6. Aṅgulimālasuttaṃ,第八六 鴦掘摩經,元亨寺
+NULL,165,1087,4,title,7. Piyajātikasuttaṃ,第八七 愛生經,元亨寺
+NULL,165,1103,4,title,8. Bāhitikasuttaṃ,第八八 鞞訶提經,元亨寺
+NULL,165,1137,4,title,9. Dhammacetiyasuttaṃ,第八九 法莊嚴經,元亨寺
+NULL,165,1151,4,title,10. Kaṇṇakatthalasuttaṃ,第九〇 普棘刺林經,元亨寺
+NULL,165,1170,2,title,5. Brāhmaṇavaggo,第五品 婆羅門品,元亨寺
+NULL,165,1171,4,title,1. Brahmāyusuttaṃ,第九一 梵摩經,元亨寺
+NULL,165,1254,4,title,2. Selasuttaṃ,第九二 施羅經,元亨寺
+NULL,165,1323,4,title,3. Assalāyanasuttaṃ,第九三 阿攝惒經〔阿攝羅耶那〕,元亨寺
+NULL,165,1352,4,title,4. Ghoṭamukhasuttaṃ,第九四 瞿哆牟伽經,元亨寺
+NULL,165,1386,4,title,5. Caṅkīsuttaṃ,第九五 商伽經,元亨寺
+NULL,165,1415,4,title,6. Esukārīsuttaṃ,第九六 鬱瘦歌邏經,元亨寺
+NULL,165,1436,4,title,7. Dhanañjānisuttaṃ,第九七 陀然經,元亨寺
+NULL,165,1466,4,title,8. Vāseṭṭhasuttaṃ,第九八 婆私吒經,元亨寺
+NULL,165,1608,4,title,9. Subhasuttaṃ,第九九 須婆經,元亨寺
+NULL,165,1653,4,title,10. Saṅgāravasuttaṃ,第一〇〇 傷歌邏經,元亨寺

+ 59 - 0
pali_title/166_zh-hant.csv

@@ -0,0 +1,59 @@
+id,book,par_num,level,class,title,text,author
+NULL,166,3,1,title,(MN)Uparipaṇṇāsapāḷi,第三篇 後分五十經篇,system
+NULL,166,4,2,title,1. Devadahavaggo,初品 天臂品,system
+NULL,166,5,4,title,1. Devadahasuttaṃ,第一〇一 天臂經,system
+NULL,166,49,4,title,2. Pañcattayasuttaṃ [pañcāyatanasutta (ka.)],第一〇二 五三經,system
+NULL,166,66,4,title,3. Kintisuttaṃ,第一〇三 如何經,system
+NULL,166,83,4,title,4. Sāmagāmasuttaṃ,第一〇四 舍彌村經,system
+NULL,166,111,4,title,5. Sunakkhattasuttaṃ,第一〇五 善星經,system
+NULL,166,130,4,title,6. Āneñjasappāyasuttaṃ,第一〇六 不動利益經,system
+NULL,166,143,4,title,7. Gaṇakamoggallānasuttaṃ,第一〇七 算數家目犍連經,system
+NULL,166,163,4,title,8. Gopakamoggallānasuttaṃ,第一〇八 瞿默目犍連經,system
+NULL,166,191,4,title,9. Mahāpuṇṇamasuttaṃ,第一〇九 滿月大經,system
+NULL,166,208,4,title,10. Cūḷapuṇṇamasuttaṃ,第一一〇 滿月小經,system
+NULL,166,235,2,title,2. Anupadavaggo,第二品 不斷品,system
+NULL,166,236,4,title,1. Anupadasuttaṃ,第一一一 不斷經,system
+NULL,166,251,4,title,2. Chabbisodhanasuttaṃ,第一一二 六淨經,system
+NULL,166,269,4,title,3. Sappurisasuttaṃ,第一一三 善士經,system
+NULL,166,292,4,title,4. Sevitabbāsevitabbasuttaṃ,第一一四 應習不應習經,system
+NULL,166,340,4,title,5. Bahudhātukasuttaṃ,第一一五 多界經,system
+NULL,166,361,4,title,6. Isigilisuttaṃ,第一一六 仙吞經,system
+NULL,166,420,4,title,7. Mahācattārīsakasuttaṃ,第一一七 大四十經,system
+NULL,166,439,4,title,8. Ānāpānassatisuttaṃ,第一一八 入出息念經,system
+NULL,166,473,4,title,9. Kāyagatāsatisuttaṃ,第一一九 身行念經,system
+NULL,166,507,4,title,10. Saṅkhārupapattisuttaṃ,第一二〇 行生經,system
+NULL,166,530,2,title,3. Suññatavaggo,第三品 空 品,system
+NULL,166,531,4,title,1. Cūḷasuññatasuttaṃ,第一二一 空小經,system
+NULL,166,543,4,title,2. Mahāsuññatasuttaṃ,第一二二 空大經,system
+NULL,166,569,4,title,3. Acchariyaabbhutasuttaṃ,第一二三 希有未曾有法經,system
+NULL,166,595,4,title,4. Bākulasuttaṃ,第一二四 薄拘羅經,system
+NULL,166,611,4,title,5. Dantabhūmisuttaṃ,第一二五 調御地經,system
+NULL,166,638,4,title,6. Bhūmijasuttaṃ,第一二六 浮彌經,system
+NULL,166,653,4,title,7. Anuruddhasuttaṃ,第一二七 阿那律經,system
+NULL,166,675,4,title,8. Upakkilesasuttaṃ,第一二八 隨煩惱經,system
+NULL,166,730,4,title,9. Bālapaṇḍitasuttaṃ,第一二九 賢愚經,system
+NULL,166,778,4,title,10. Devadūtasuttaṃ,第一三〇 天使經,system
+NULL,166,833,2,title,4. Vibhaṅgavaggo,第四品 分別品,system
+NULL,166,834,4,title,1. Bhaddekarattasuttaṃ,第一三一 一夜賢者經,system
+NULL,166,861,4,title,2. Ānandabhaddekarattasuttaṃ,第一三二 阿難一夜賢者經,system
+NULL,166,896,4,title,3. Mahākaccānabhaddekarattasuttaṃ,第一三三 大迦旃延一夜賢者經,system
+NULL,166,960,4,title,4. Lomasakaṅgiyabhaddekarattasuttaṃ,第一三四 盧夷強耆一夜賢者經,system
+NULL,166,996,4,title,5. Cūḷakammavibhaṅgasuttaṃ [subhasuttantipi vuccati],第一三五 小業分別經,system
+NULL,166,1018,4,title,6. Mahākammavibhaṅgasuttaṃ,第一三六 大業分別經,system
+NULL,166,1044,4,title,7. Saḷāyatanavibhaṅgasuttaṃ,第一三七 六處分別經,system
+NULL,166,1072,4,title,8. Uddesavibhaṅgasuttaṃ,第一三八 總說分別經,system
+NULL,166,1100,4,title,9. Araṇavibhaṅgasuttaṃ,第一三九 無諍分別經,system
+NULL,166,1134,4,title,10. Dhātuvibhaṅgasuttaṃ,第一四〇 界分別經,system
+NULL,166,1172,4,title,11. Saccavibhaṅgasuttaṃ,第一四一 諦分別經,system
+NULL,166,1203,4,title,12. Dakkhiṇāvibhaṅgasuttaṃ,第一四二 施分別經,system
+NULL,166,1247,2,title,5. Saḷāyatanavaggo,第五品 六處品,system
+NULL,166,1248,4,title,1. Anāthapiṇḍikovādasuttaṃ,第一四三 教給孤獨經,system
+NULL,166,1287,4,title,2. Channovādasuttaṃ,第一四四 教闡陀經,system
+NULL,166,1301,4,title,3. Puṇṇovādasuttaṃ,第一四五 教富樓那經,system
+NULL,166,1318,4,title,4. Nandakovādasuttaṃ,第一四六 教難陀迦經,system
+NULL,166,1343,4,title,5. Cūḷarāhulovādasuttaṃ,第一四七 教羅睺羅小經,system
+NULL,166,1351,4,title,6. Chachakkasuttaṃ,第一四八 六六經,system
+NULL,166,1385,4,title,7. Mahāsaḷāyatanikasuttaṃ,第一四九 大六處經,system
+NULL,166,1411,4,title,8. Nagaravindeyyasuttaṃ,第一五〇 頻頭城經,system
+NULL,166,1419,4,title,9. Piṇḍapātapārisuddhisuttaṃ,第一五一 乞食清淨經,system
+NULL,166,1438,4,title,10. Indriyabhāvanāsuttaṃ,第一五二 根修習經,system

File diff suppressed because it is too large
+ 28 - 28
pali_title/192_title.csv


+ 60 - 0
pali_title/192_zh-hant.csv

@@ -0,0 +1,60 @@
+id,book,par_num,level,class,title,text,author
+NULL,192,3,1,title,(MN)Mūlapaṇṇāsa-ṭīkā,根本五十經複注,system
+NULL,192,5,2,title,Ganthārambhakathāvaṇṇanā,發文引論注,system
+NULL,192,6,3,title,Ganthārambhakathāvaṇṇanā,發文引論注,system
+NULL,192,77,3,title,Nidānakathāvaṇṇanā,序論注,system
+NULL,192,90,2,title,1. Mūlapariyāyavaggo,初品 根本法門品注,system
+NULL,192,91,3,title,1. Mūlapariyāyasuttavaṇṇanā,第一 根本法門經注,system
+NULL,192,469,3,title,2. Sabbāsavasuttavaṇṇanā,第二 一切漏經注,system
+NULL,192,589,3,title,3. Dhammadāyādasuttavaṇṇanā,第三 法嗣經注,system
+NULL,192,661,3,title,4. Bhayabheravasuttavaṇṇanā,第四 怖駭經注,system
+NULL,192,785,3,title,5. Anaṅgaṇasuttavaṇṇanā,第五 無穢經注,system
+NULL,192,824,3,title,6. Ākaṅkheyyasuttavaṇṇanā,第六 願經注,system
+NULL,192,860,3,title,7. Vatthasuttavaṇṇanā,第七 布喻經注,system
+NULL,192,894,3,title,8. Sallekhasuttavaṇṇanā,第八 削減經注,system
+NULL,192,926,3,title,9. Sammādiṭṭhisuttavaṇṇanā,第九 正見經注,system
+NULL,192,1055,3,title,10. Satipaṭṭhānasuttavaṇṇanā,第一〇 念處經注,system
+NULL,192,1287,2,title,2. Sīhanādavaggo,第二品 獅子吼品注,system
+NULL,192,1288,3,title,1. Cūḷasīhanādasuttavaṇṇanā,第一一 獅子吼小經注,system
+NULL,192,1332,3,title,2. Mahāsīhanādasuttavaṇṇanā,第一二 師子吼大經注,system
+NULL,192,1425,3,title,3. Mahādukkhakkhandhasuttavaṇṇanā,第一三 苦蘊大經注,system
+NULL,192,1442,3,title,4. Cūḷadukkhakkhandhasuttavaṇṇanā,第一四 苦蘊小經注,system
+NULL,192,1454,3,title,5. Anumānasuttavaṇṇanā,第一五 思量經注,system
+NULL,192,1464,3,title,6. Cetokhilasuttavaṇṇanā,第一六 心荒蕪經注,system
+NULL,192,1478,3,title,7. Vanapatthapariyāyasuttavaṇṇanā,第一七 林藪經注,system
+NULL,192,1485,3,title,8. Madhupiṇḍikasuttavaṇṇanā,第一八 蜜丸經注,system
+NULL,192,1507,3,title,9. Dvedhāvitakkasuttavaṇṇanā,第一九 雙想經注,system
+NULL,192,1525,3,title,10. Vitakkasaṇṭhānasuttavaṇṇanā,第二〇 想念止息經注,system
+NULL,192,1551,2,title,3. Opammavaggo,第三品 譬喻法品注,system
+NULL,192,1552,3,title,1. Kakacūpamasuttavaṇṇanā,第二一 鋸喻經注,system
+NULL,192,1568,3,title,2. Alagaddūpamasuttavaṇṇanā,第二二 蛇喻經注,system
+NULL,192,1618,3,title,3. Vammikasuttavaṇṇanā,第二三 蟻垤經注,system
+NULL,192,1642,3,title,4. Rathavinītasuttavaṇṇanā,第二四 傳車經注,system
+NULL,192,1707,3,title,5. Nivāpasuttavaṇṇanā,第二五 撒餌經注,system
+NULL,192,1722,3,title,6. Pāsarāsisuttavaṇṇanā,第二六 聖求經注,system
+NULL,192,1791,3,title,7. Cūḷahatthipadopamasuttavaṇṇanā,第二七 象跡喻小經注,system
+NULL,192,1853,3,title,8. Mahāhatthipadopamasuttavaṇṇanā,第二八 象跡喻大經注,system
+NULL,192,1888,3,title,9. Mahāsāropamasuttavaṇṇanā,第二九 心材喻大經注,system
+NULL,192,1895,3,title,10. Cūḷasāropamasuttavaṇṇanā,第三〇 心材喻小經注,system
+NULL,192,1902,2,title,4. Mahāyamakavaggo,第四品 雙大品注,system
+NULL,192,1903,3,title,1. Cūḷagosiṅgasuttavaṇṇanā,第三一 牛角林小經注,system
+NULL,192,1927,3,title,2. Mahāgosiṅgasuttavaṇṇanā,第三二 牛角林大經注,system
+NULL,192,1950,3,title,3. Mahāgopālakasuttavaṇṇanā,第三三 牧牛者大經注,system
+NULL,192,1976,3,title,4. Cūḷagopālakasuttavaṇṇanā,第三四 牧牛者小經注,system
+NULL,192,1984,3,title,5. Cūḷasaccakasuttavaṇṇanā,第三五 薩遮迦小經注,system
+NULL,192,2012,3,title,6. Mahāsaccakasuttavaṇṇanā,第三六 薩遮迦大經注,system
+NULL,192,2044,3,title,7. Cūḷataṇhāsaṅkhayasuttavaṇṇanā,第三七 愛盡小經注,system
+NULL,192,2062,3,title,8. Mahātaṇhāsaṅkhayasuttavaṇṇanā,第三八 愛盡大經注,system
+NULL,192,2082,3,title,9. Mahāassapurasuttavaṇṇanā,第三九 馬邑大經注,system
+NULL,192,2117,3,title,10. Cūḷaassapurasuttavaṇṇanā,第四〇 馬邑小經注,system
+NULL,192,2124,2,title,5. Cūḷayamakavaggo,第五品 雙小品注,system
+NULL,192,2125,3,title,1. Sāleyyakasuttavaṇṇanā,第四一 薩羅村婆羅門經注,system
+NULL,192,2165,3,title,2. Verañjakasuttavaṇṇanā,第四二 鞞蘭若村婆羅門經注,system
+NULL,192,2168,3,title,3. Mahāvedallasuttavaṇṇanā,第四三 有明大經注,system
+NULL,192,2222,3,title,4. Cūḷavedallasuttavaṇṇanā,第四四 有明小經注,system
+NULL,192,2262,3,title,5. Cūḷadhammasamādānasuttavaṇṇanā,第四五 得法小經注,system
+NULL,192,2272,3,title,6. Mahādhammasamādānasuttavaṇṇanā,第四六 得法大經注,system
+NULL,192,2288,3,title,7. Vīmaṃsakasuttavaṇṇanā,第四七 思察經注,system
+NULL,192,2316,3,title,8. Kosambiyasuttavaṇṇanā,第四八 憍賞彌經注,system
+NULL,192,2341,3,title,9. Brahmanimantanikasuttavaṇṇanā,第四九 梵天請經注,system
+NULL,192,2370,3,title,10. Māratajjanīyasuttavaṇṇanā,第五〇 魔訶責經注,system

File diff suppressed because it is too large
+ 15 - 15
pali_title/193_title.csv


+ 57 - 0
pali_title/193_zh-hant.csv

@@ -0,0 +1,57 @@
+id,book,par_num,level,class,title,text,author
+NULL,193,3,1,title,(MN)Majjhimapaṇṇāsa-ṭīkā,第二篇 中分五十經篇複注,system
+NULL,193,4,2,title,1. Gahapativaggo,初品 居士品,system
+NULL,193,5,4,title,1. Kandarakasuttavaṇṇanā,第五一 乾達羅迦經注,system
+NULL,193,23,4,title,2. Aṭṭhakanāgarasuttavaṇṇanā,第五二 八城經注,system
+NULL,193,33,4,title,3. Sekhasuttavaṇṇanā,第五三 有學經注,system
+NULL,193,72,4,title,4. Potaliyasuttavaṇṇanā,第五四 哺多利經注,system
+NULL,193,90,4,title,5. Jīvakasuttavaṇṇanā,第五五 耆婆迦經注,system
+NULL,193,102,4,title,6. Upālisuttavaṇṇanā,第五六 優波離經注,system
+NULL,193,174,4,title,7. Kukkuravatikasuttavaṇṇanā,第五七 狗行者經注,system
+NULL,193,186,4,title,8. Abhayarājakumārasuttavaṇṇanā,第五八 無畏王子經注,system
+NULL,193,198,4,title,9. Bahuvedaniyasuttavaṇṇanā,第五九 多受經注,system
+NULL,193,205,4,title,10. Apaṇṇakasuttavaṇṇanā,第六〇 無戲論經注,system
+NULL,193,227,2,title,2. Bhikkhuvaggo,第二品 比丘品,system
+NULL,193,228,4,title,1. Ambalaṭṭhikarāhulovādasuttavaṇṇanā,第六一 菴婆蘖林教誡羅睺羅經注,system
+NULL,193,242,4,title,2. Mahārāhulovādasuttavaṇṇanā,第六二 教誡羅睺羅大經注,system
+NULL,193,259,4,title,3. Cūḷamālukyasuttavaṇṇanā,第六三 摩羅迦小經注,system
+NULL,193,267,4,title,4. Mahāmālukyasuttavaṇṇanā,第六四 摩羅迦大經注,system
+NULL,193,278,4,title,5. Bhaddālisuttavaṇṇanā,第六五 跋陀利經注,system
+NULL,193,305,4,title,6. Laṭukikopamasuttavaṇṇanā,第六六 鶉喻經注,system
+NULL,193,324,4,title,7. Cātumasuttavaṇṇanā,第六七 車頭聚落經注,system
+NULL,193,337,4,title,8. Naḷakapānasuttavaṇṇanā,第六八 那羅伽波寧村經注,system
+NULL,193,347,4,title,9. Goliyānisuttavaṇṇanā,第六九 瞿尼師經注,system
+NULL,193,354,4,title,10. Kīṭāgirisuttavaṇṇanā,第七〇 枳吒山邑經注,system
+NULL,193,381,2,title,3. Paribbājakavaggo,第三品上 普行者品上,system
+NULL,193,382,4,title,1. Tevijjavacchasuttavaṇṇanā,第七一 婆蹉衢多三明經注,system
+NULL,193,388,4,title,2. Aggivacchasuttavaṇṇanā,第七二 婆蹉衢多火〔喻〕經注,system
+NULL,193,397,4,title,3. Mahāvacchasuttavaṇṇanā,第七三 婆蹉衢多大經注,system
+NULL,193,409,4,title,4. Dīghanakhasuttavaṇṇanā,第七四 長爪經注,system
+NULL,193,425,4,title,5. Māgaṇḍiyasuttavaṇṇanā,第七五 摩犍提經注,system
+NULL,193,447,4,title,6. Sandakasuttavaṇṇanā,第七六 刪陀迦經注,system
+NULL,193,464,4,title,7. Mahāsakuludāyisuttavaṇṇanā,第七七 善生優陀夷大經注,system
+NULL,193,517,4,title,8. Samaṇamuṇḍikāputtasuttavaṇṇanā,第七八 沙門文祁子經注,system
+NULL,193,532,4,title,9. Cūḷasakuludāyisuttavaṇṇanā,第七九 善生優陀夷小經注,system
+NULL,193,545,4,title,10. Vekhanasasuttavaṇṇanā,第八〇 鞞摩那修經注,system
+NULL,193,550,2,title,4. Rājavaggo,第四品 王品,system
+NULL,193,551,4,title,1. Ghaṭikārasuttavaṇṇanā,第八一 陶師經注,system
+NULL,193,570,4,title,2. Raṭṭhapālasuttavaṇṇanā,第八二 賴吒惒羅經注,system
+NULL,193,605,4,title,3. Maghadevasuttavaṇṇanā,第八三 大天㮈林經注,system
+NULL,193,627,4,title,4. Madhurasuttavaṇṇanā,第八四 摩偷羅經注,system
+NULL,193,632,4,title,5. Bodhirājakumārasuttavaṇṇanā,第八五 菩提王子經注,system
+NULL,193,645,4,title,6. Aṅgulimālasuttavaṇṇanā,第八六 鴦掘摩經注,system
+NULL,193,669,4,title,7. Piyajātikasuttavaṇṇanā,第八七 愛生經注,system
+NULL,193,677,4,title,8. Bāhitikasuttavaṇṇanā,第八八 鞞訶提經注,system
+NULL,193,682,4,title,9. Dhammacetiyasuttavaṇṇanā,第八九 法莊嚴經注,system
+NULL,193,691,4,title,10. Kaṇṇakatthalasuttavaṇṇanā,第九〇 普棘刺林經注,system
+NULL,193,704,2,title,5. Brāhmaṇavaggo,第五品 婆羅門品,system
+NULL,193,705,4,title,1. Brahmāyusuttavaṇṇanā,第九一 梵摩經注,system
+NULL,193,772,4,title,2. Selasuttavaṇṇanā,第九二 施羅經注,system
+NULL,193,795,4,title,3. Assalāyanasuttavaṇṇanā,第九三 阿攝惒經〔阿攝羅耶那〕注,system
+NULL,193,806,4,title,4. Ghoṭamukhasuttavaṇṇanā,第九四 瞿哆牟伽經注,system
+NULL,193,811,4,title,5. Caṅkīsuttavaṇṇanā,第九五 商伽經注,system
+NULL,193,833,4,title,6. Esukārīsuttavaṇṇanā,第九六 鬱瘦歌邏經注,system
+NULL,193,838,4,title,7. Dhanañjānisuttavaṇṇanā,第九七 陀然經注,system
+NULL,193,844,4,title,8. Vāseṭṭhasuttavaṇṇanā,第九八 婆私吒經注,system
+NULL,193,879,4,title,9. Subhasuttavaṇṇanā,第九九 須婆經注,system
+NULL,193,896,4,title,10. Saṅgāravasuttavaṇṇanā,第一〇〇 傷歌邏經注,system

File diff suppressed because it is too large
+ 9 - 9
pali_title/194_title.csv


+ 59 - 0
pali_title/194_zh-hant.csv

@@ -0,0 +1,59 @@
+id,book,par_num,level,class,title,text,author
+NULL,194,3,1,title,(MN)Uparipaṇṇāsa-ṭīkā,第三篇 後分五十經篇複注,system
+NULL,194,4,2,title,1. Devadahavaggo,初品 天臂品注,system
+NULL,194,5,3,title,1. Devadahasuttavaṇṇanā,第一〇一 天臂經注,system
+NULL,194,29,3,title,2. Pañcattayasuttavaṇṇanā,第一〇二 五三經注,system
+NULL,194,67,3,title,3. Kintisuttavaṇṇanā,第一〇三 如何經注,system
+NULL,194,79,3,title,4. Sāmagāmasuttavaṇṇanā,第一〇四 舍彌村經注,system
+NULL,194,111,3,title,5. Sunakkhattasuttavaṇṇanā,第一〇五 善星經注,system
+NULL,194,126,3,title,6. Āneñjasappāyasuttavaṇṇanā,第一〇六 不動利益經注,system
+NULL,194,150,3,title,7. Gaṇakamoggallānasuttavaṇṇanā,第一〇七 算數家目犍連經注,system
+NULL,194,158,3,title,8. Gopakamoggallānasuttavaṇṇanā,第一〇八 瞿默目犍連經注,system
+NULL,194,166,3,title,9. Mahāpuṇṇamasuttavaṇṇanā,第一〇九 滿月大經注,system
+NULL,194,182,3,title,10. Cūḷapuṇṇamasuttavaṇṇanā,第一一〇 滿月小經注,system
+NULL,194,189,2,title,2. Anupadavaggo,第二品 不斷品注,system
+NULL,194,190,3,title,1. Anupadasuttavaṇṇanā,第一一一 不斷經注,system
+NULL,194,228,3,title,2. Chabbisodhanasuttavaṇṇanā,第一一二 六淨經注,system
+NULL,194,240,3,title,3. Sappurisadhammasuttavaṇṇanā,第一一三 善士經注,system
+NULL,194,246,3,title,4. Sevitabbāsevitabbasuttavaṇṇanā,第一一四 應習不應習經注,system
+NULL,194,253,3,title,5. Bahudhātukasuttavaṇṇanā,第一一五 多界經注,system
+NULL,194,305,3,title,6. Isigilisuttavaṇṇanā,第一一六 仙吞經注,system
+NULL,194,315,3,title,7. Mahācattārīsakasuttavaṇṇanā,第一一七 大四十經注,system
+NULL,194,333,3,title,8. Ānāpānassatisuttavaṇṇanā,第一一八 入出息念經注,system
+NULL,194,349,3,title,9. Kāyagatāsatisuttavaṇṇanā,第一一九 身行念經注,system
+NULL,194,357,3,title,10. Saṅkhārupapattisuttavaṇṇanā,第一二〇 行生經注,system
+NULL,194,370,2,title,3. Suññatavaggo,第三品 空品注,system
+NULL,194,371,3,title,1. Cūḷasuññatasuttavaṇṇanā,第一二一 空小經注,system
+NULL,194,382,3,title,2. Mahāsuññatasuttavaṇṇanā,第一二二 空大經注,system
+NULL,194,407,3,title,3. Acchariyabbhutasuttavaṇṇanā,第一二三 希有未曾有法經注,system
+NULL,194,449,3,title,4. Bākulasuttavaṇṇanā,第一二四 薄拘羅經注,system
+NULL,194,459,3,title,5. Dantabhūmisuttavaṇṇanā,第一二五 調御地經注,system
+NULL,194,469,3,title,6. Bhūmijasuttavaṇṇanā,第一二六 浮彌經注,system
+NULL,194,472,3,title,7. Anuruddhasuttavaṇṇanā,第一二七 阿那律經注,system
+NULL,194,480,3,title,8. Upakkilesasuttavaṇṇanā,第一二八 隨煩惱經注,system
+NULL,194,499,3,title,9. Bālapaṇḍitasuttavaṇṇanā,第一二九 賢愚經注,system
+NULL,194,540,3,title,10. Devadūtasuttavaṇṇanā,第一三〇 天使經注,system
+NULL,194,568,2,title,4. Vibhaṅgavaggo,第四品 分別品注,system
+NULL,194,569,3,title,1. Bhaddekarattasuttavaṇṇanā,第一三一 一夜賢者經注,system
+NULL,194,579,3,title,2. Ānandabhaddekarattasuttavaṇṇanā,第一三二 阿難一夜賢者經注,system
+NULL,194,583,3,title,3. Mahākaccānabhaddekarattasuttavaṇṇanā,第一三三 大迦旃延一夜賢者經注,system
+NULL,194,590,3,title,4. Lomasakakaṅgiyabhaddekarattasuttavaṇṇanā,第一三四 盧夷強耆一夜賢者經注,system
+NULL,194,596,3,title,5. Cūḷakammavibhaṅgasuttavaṇṇanā,第一三五 小業分別經注,system
+NULL,194,617,3,title,6. Mahākammavibhaṅgasuttavaṇṇanā,第一三六 大業分別經注,system
+NULL,194,633,3,title,7. Saḷāyatanavibhaṅgasuttavaṇṇanā,第一三七 六處分別經注,system
+NULL,194,656,3,title,8. Uddesavibhaṅgasuttavaṇṇanā,第一三八 總說分別經注,system
+NULL,194,664,3,title,9. Araṇavibhaṅgasuttavaṇṇanā,第一三九 無諍分別經注,system
+NULL,194,676,3,title,10. Dhātuvibhaṅgasuttavaṇṇanā,第一四〇 界分別經注,system
+NULL,194,722,3,title,11. Saccavibhaṅgasuttavaṇṇanā,第一四一 諦分別經注,system
+NULL,194,727,3,title,12. Dakkhiṇāvibhaṅgasuttavaṇṇanā,第一四二 施分別經注,system
+NULL,194,756,2,title,5. Saḷāyatanavaggo,第五品 六處品注,system
+NULL,194,757,3,title,1. Anāthapiṇḍikovādasuttavaṇṇanā,第一四三 教給孤獨經注,system
+NULL,194,768,3,title,2. Channovādasuttavaṇṇanā,第一四四 教闡陀經注,system
+NULL,194,776,3,title,3. Puṇṇovādasuttavaṇṇanā,第一四五 教富樓那經注,system
+NULL,194,792,3,title,4. Nandakovādasuttavaṇṇanā,第一四六 教難陀迦經注,system
+NULL,194,806,3,title,5. Rāhulovādasuttavaṇṇanā,第一四七 教羅睺羅小經注,system
+NULL,194,813,3,title,6. Chachakkasuttavaṇṇanā,第一四八 六六經注,system
+NULL,194,826,3,title,7. Mahāsaḷāyatanikasuttavaṇṇanā,第一四九 大六處經注,system
+NULL,194,834,3,title,8. Nagaravindeyyasuttavaṇṇanā,第一五〇 頻頭城經注,system
+NULL,194,839,3,title,9. Piṇḍapātapārisuddhisuttavaṇṇanā,第一五一 乞食清淨經注,system
+NULL,194,845,3,title,10. Indriyabhāvanāsuttavaṇṇanā,第一五二 根修習經注,system

+ 0 - 2674
pali_title/209_zh-cn.csv

@@ -1,2674 +0,0 @@
-id,book,par_num,100,class,title,text
-NULL,p209,1,100,centered,,
-NULL,p209,2,100,nikaya,,
-NULL,p209,3,1,book,Vajirabuddhi-ṭīkā,金刚觉-复注
-NULL,p209,4,5,subsubhead,Ganthārambhakathā,开题诗
-NULL,p209,5,100,gatha1,,
-NULL,p209,6,100,gatha2,,
-NULL,p209,7,100,gatha3,,
-NULL,p209,8,100,gathalast,,
-NULL,p209,9,100,gatha1,,
-NULL,p209,10,100,gatha2,,
-NULL,p209,11,100,gatha3,,
-NULL,p209,12,100,gathalast,,
-NULL,p209,13,100,gatha1,,
-NULL,p209,14,100,gatha2,,
-NULL,p209,15,100,gatha3,,
-NULL,p209,16,100,gathalast,,
-NULL,p209,17,100,gatha1,,
-NULL,p209,18,100,gathalast,,
-NULL,p209,19,100,unindented,,
-NULL,p209,20,100,bodytext,,
-NULL,p209,21,100,gatha1,,
-NULL,p209,22,100,gathalast,,
-NULL,p209,23,100,bodytext,,
-NULL,p209,24,100,bodytext,,
-NULL,p209,25,100,gatha1,,
-NULL,p209,26,100,gathalast,,
-NULL,p209,27,100,bodytext,,
-NULL,p209,28,100,gatha1,,
-NULL,p209,29,100,gathalast,,
-NULL,p209,30,100,gatha1,,
-NULL,p209,31,100,gatha1,,
-NULL,p209,32,100,gathalast,,
-NULL,p209,33,100,gatha1,,
-NULL,p209,34,100,bodytext,,
-NULL,p209,35,100,gatha1,,
-NULL,p209,36,100,gathalast,,
-NULL,p209,37,100,bodytext,,
-NULL,p209,38,100,indent,,
-NULL,p209,39,100,bodytext,,
-NULL,p209,40,5,subsubhead,Ganthārambhakathāvaṇṇanā,开题诗解释
-NULL,p209,41,100,bodytext,,
-NULL,p209,42,100,bodytext,,
-NULL,p209,43,100,gatha1,,
-NULL,p209,44,100,gathalast,,
-NULL,p209,45,100,bodytext,,
-NULL,p209,46,100,gatha1,,
-NULL,p209,47,100,gatha2,,
-NULL,p209,48,100,gatha3,,
-NULL,p209,49,100,gathalast,,
-NULL,p209,50,100,bodytext,,
-NULL,p209,51,100,gatha1,,
-NULL,p209,52,100,gathalast,,
-NULL,p209,53,100,unindented,,
-NULL,p209,54,100,gatha1,,
-NULL,p209,55,100,gathalast,,
-NULL,p209,56,100,bodytext,,
-NULL,p209,57,100,gatha1,,
-NULL,p209,58,100,gathalast,,
-NULL,p209,59,100,unindented,,
-NULL,p209,60,100,bodytext,,
-NULL,p209,61,100,bodytext,,
-NULL,p209,62,100,gatha1,,
-NULL,p209,63,100,gathalast,,
-NULL,p209,64,100,bodytext,,
-NULL,p209,65,100,gatha1,,
-NULL,p209,66,100,gathalast,,
-NULL,p209,67,100,bodytext,,
-NULL,p209,68,100,gatha1,,
-NULL,p209,69,100,gathalast,,
-NULL,p209,70,100,gatha1,,
-NULL,p209,71,100,gathalast,,
-NULL,p209,72,100,gatha1,,
-NULL,p209,73,100,gathalast,,
-NULL,p209,74,100,bodytext,,
-NULL,p209,75,100,gatha1,,
-NULL,p209,76,100,gathalast,,
-NULL,p209,77,100,gatha1,,
-NULL,p209,78,100,gathalast,,
-NULL,p209,79,100,bodytext,,
-NULL,p209,80,100,gatha1,,
-NULL,p209,81,100,gathalast,,
-NULL,p209,82,100,bodytext,,
-NULL,p209,83,100,gatha1,,
-NULL,p209,84,100,gatha2,,
-NULL,p209,85,100,gatha3,,
-NULL,p209,86,100,gathalast,,
-NULL,p209,87,100,unindented,,
-NULL,p209,88,100,bodytext,,
-NULL,p209,89,100,gatha1,,
-NULL,p209,90,100,gathalast,,
-NULL,p209,91,100,unindented,,
-NULL,p209,92,100,gatha1,,
-NULL,p209,93,100,gatha2,,
-NULL,p209,94,100,gatha3,,
-NULL,p209,95,100,gathalast,,
-NULL,p209,96,100,gatha1,,
-NULL,p209,97,100,gatha2,,
-NULL,p209,98,100,gatha3,,
-NULL,p209,99,100,gathalast,,
-NULL,p209,100,100,bodytext,,
-NULL,p209,101,100,bodytext,,
-NULL,p209,102,100,bodytext,,
-NULL,p209,103,100,bodytext,,
-NULL,p209,104,100,gatha1,,
-NULL,p209,105,100,gathalast,,
-NULL,p209,106,100,bodytext,,
-NULL,p209,107,100,gatha1,,
-NULL,p209,108,100,gathalast,,
-NULL,p209,109,100,gatha1,,
-NULL,p209,110,100,gathalast,,
-NULL,p209,111,100,bodytext,,
-NULL,p209,112,100,gatha1,,
-NULL,p209,113,100,gatha2,,
-NULL,p209,114,100,gatha3,,
-NULL,p209,115,100,gathalast,,
-NULL,p209,116,100,indent,,
-NULL,p209,117,100,gatha1,,
-NULL,p209,118,100,gathalast,,
-NULL,p209,119,100,bodytext,,
-NULL,p209,120,100,gatha1,,
-NULL,p209,121,100,gathalast,,
-NULL,p209,122,100,bodytext,,
-NULL,p209,123,100,bodytext,,
-NULL,p209,124,100,bodytext,,
-NULL,p209,125,100,bodytext,,
-NULL,p209,126,100,bodytext,,
-NULL,p209,127,100,bodytext,,
-NULL,p209,128,100,bodytext,,
-NULL,p209,129,100,bodytext,,
-NULL,p209,130,100,bodytext,,
-NULL,p209,131,100,bodytext,,
-NULL,p209,132,100,bodytext,,
-NULL,p209,133,100,centered,,
-NULL,p209,134,4,subhead,Bāhiranidānakathāvaṇṇanā,
-NULL,p209,135,100,bodytext,,
-NULL,p209,136,4,subhead,Paṭhamamahāsaṅgītikathāvaṇṇanā,
-NULL,p209,137,100,bodytext,,
-NULL,p209,138,100,gatha1,,
-NULL,p209,139,100,gathalast,,
-NULL,p209,140,100,bodytext,,
-NULL,p209,141,100,bodytext,,
-NULL,p209,142,100,bodytext,,
-NULL,p209,143,100,gatha1,,
-NULL,p209,144,100,gathalast,,
-NULL,p209,145,100,gatha1,,
-NULL,p209,146,100,gathalast,,
-NULL,p209,147,100,bodytext,,
-NULL,p209,148,100,centered,,
-NULL,p209,149,4,subhead,Dutiyasaṅgītikathāvaṇṇanā,
-NULL,p209,150,100,bodytext,,
-NULL,p209,151,100,centered,,
-NULL,p209,152,4,subhead,Tatiyasaṅgītikathāvaṇṇanā,
-NULL,p209,153,100,bodytext,,
-NULL,p209,154,100,gatha1,,
-NULL,p209,155,100,gathalast,,
-NULL,p209,156,100,bodytext,,
-NULL,p209,157,100,gatha1,,
-NULL,p209,158,100,gathalast,,
-NULL,p209,159,100,bodytext,,
-NULL,p209,160,100,centered,,
-NULL,p209,161,100,bodytext,,
-NULL,p209,162,100,bodytext,,
-NULL,p209,163,100,gatha1,,
-NULL,p209,164,100,gathalast,,
-NULL,p209,165,100,centered,,
-NULL,p209,166,2,chapter,Pārājikavaṇṇanā,巴拉基卡详解
-NULL,p209,167,4,subhead,Verañjakaṇḍo,
-NULL,p209,168,4,subhead,Verañjakaṇḍavaṇṇanā,
-NULL,p209,169,100,bodytext,,
-NULL,p209,170,100,bodytext,,
-NULL,p209,171,100,gatha1,,
-NULL,p209,172,100,gathalast,,
-NULL,p209,173,100,unindented,,
-NULL,p209,174,100,bodytext,,
-NULL,p209,175,100,bodytext,,
-NULL,p209,176,100,bodytext,,
-NULL,p209,177,100,bodytext,,
-NULL,p209,178,100,bodytext,,
-NULL,p209,179,100,bodytext,,
-NULL,p209,180,100,bodytext,,
-NULL,p209,181,100,bodytext,,
-NULL,p209,182,100,bodytext,,
-NULL,p209,183,100,bodytext,,
-NULL,p209,184,100,bodytext,,
-NULL,p209,185,100,bodytext,,
-NULL,p209,186,100,bodytext,,
-NULL,p209,187,100,bodytext,,
-NULL,p209,188,100,bodytext,,
-NULL,p209,189,100,bodytext,,
-NULL,p209,190,100,gatha1,,
-NULL,p209,191,100,gatha2,,
-NULL,p209,192,100,gatha3,,
-NULL,p209,193,100,gathalast,,
-NULL,p209,194,100,unindented,,
-NULL,p209,195,100,bodytext,,
-NULL,p209,196,100,bodytext,,
-NULL,p209,197,100,bodytext,,
-NULL,p209,198,100,centered,,
-NULL,p209,199,4,subhead,Pubbenivāsakathāvaṇṇanā,
-NULL,p209,200,100,bodytext,,
-NULL,p209,201,100,gatha1,,
-NULL,p209,202,100,gathalast,,
-NULL,p209,203,100,bodytext,,
-NULL,p209,204,100,bodytext,,
-NULL,p209,205,100,bodytext,,
-NULL,p209,206,100,bodytext,,
-NULL,p209,207,100,gatha1,,
-NULL,p209,208,100,gathalast,,
-NULL,p209,209,100,unindented,,
-NULL,p209,210,100,bodytext,,
-NULL,p209,211,100,centered,,
-NULL,p209,212,4,subhead,Dibbacakkhuñāṇakathāvaṇṇanā,
-NULL,p209,213,100,bodytext,,
-NULL,p209,214,100,bodytext,,
-NULL,p209,215,100,centered,,
-NULL,p209,216,4,subhead,Āsavakkhayañāṇakathāvaṇṇanā,
-NULL,p209,217,100,bodytext,,
-NULL,p209,218,100,centered,,
-NULL,p209,219,4,subhead,Upāsakattapaṭivedanākathāvaṇṇanā,
-NULL,p209,220,100,bodytext,,
-NULL,p209,221,100,bodytext,,
-NULL,p209,222,100,bodytext,,
-NULL,p209,223,100,bodytext,,
-NULL,p209,224,100,gatha1,,
-NULL,p209,225,100,gathalast,,
-NULL,p209,226,100,unindented,,
-NULL,p209,227,100,bodytext,,
-NULL,p209,228,100,bodytext,,
-NULL,p209,229,100,bodytext,,
-NULL,p209,230,100,gatha1,,
-NULL,p209,231,100,gatha2,,
-NULL,p209,232,100,gatha3,,
-NULL,p209,233,100,gathalast,,
-NULL,p209,234,100,gatha1,,
-NULL,p209,235,100,gatha2,,
-NULL,p209,236,100,gatha3,,
-NULL,p209,237,100,gathalast,,
-NULL,p209,238,100,gatha1,,
-NULL,p209,239,100,gatha2,,
-NULL,p209,240,100,gatha3,,
-NULL,p209,241,100,gathalast,,
-NULL,p209,242,100,gatha1,,
-NULL,p209,243,100,gatha2,,
-NULL,p209,244,100,gatha3,,
-NULL,p209,245,100,gathalast,,
-NULL,p209,246,100,gatha1,,
-NULL,p209,247,100,gatha2,,
-NULL,p209,248,100,gatha3,,
-NULL,p209,249,100,gathalast,,
-NULL,p209,250,100,bodytext,,
-NULL,p209,251,100,gatha1,,
-NULL,p209,252,100,gathalast,,
-NULL,p209,253,100,bodytext,,
-NULL,p209,254,100,bodytext,,
-NULL,p209,255,100,bodytext,,
-NULL,p209,256,100,bodytext,,
-NULL,p209,257,100,gatha1,,
-NULL,p209,258,100,gatha2,,
-NULL,p209,259,100,gatha3,,
-NULL,p209,260,100,gathalast,,
-NULL,p209,261,100,bodytext,,
-NULL,p209,262,100,gatha1,,
-NULL,p209,263,100,gatha2,,
-NULL,p209,264,100,gatha3,,
-NULL,p209,265,100,gathalast,,
-NULL,p209,266,100,bodytext,,
-NULL,p209,267,100,gatha1,,
-NULL,p209,268,100,gatha2,,
-NULL,p209,269,100,gatha3,,
-NULL,p209,270,100,gatha2,,
-NULL,p209,271,100,gatha3,,
-NULL,p209,272,100,gathalast,,
-NULL,p209,273,100,bodytext,,
-NULL,p209,274,100,gatha1,,
-NULL,p209,275,100,gathalast,,
-NULL,p209,276,100,bodytext,,
-NULL,p209,277,100,bodytext,,
-NULL,p209,278,100,centered,,
-NULL,p209,279,100,centered,,
-NULL,p209,280,4,subhead,1. Pārājikakaṇḍo,
-NULL,p209,281,3,title,1. Paṭhamapārājikaṃ,第一巴拉基卡
-NULL,p209,282,4,subhead,Sudinnabhāṇavāravaṇṇanā,
-NULL,p209,283,100,gatha1,,
-NULL,p209,284,100,gathalast,,
-NULL,p209,285,100,bodytext,,
-NULL,p209,286,100,gatha1,,
-NULL,p209,287,100,gathalast,,
-NULL,p209,288,100,gatha1,,
-NULL,p209,289,100,gathalast,,
-NULL,p209,290,100,gatha1,,
-NULL,p209,291,100,gathalast,,
-NULL,p209,292,100,gatha1,,
-NULL,p209,293,100,gathalast,,
-NULL,p209,294,100,gatha1,,
-NULL,p209,295,100,gathalast,,
-NULL,p209,296,100,gatha1,,
-NULL,p209,297,100,gathalast,,
-NULL,p209,298,100,bodytext,,
-NULL,p209,299,100,gatha1,,
-NULL,p209,300,100,gathalast,,
-NULL,p209,301,100,bodytext,,
-NULL,p209,302,100,bodytext,,
-NULL,p209,303,100,bodytext,,
-NULL,p209,304,100,gatha1,,
-NULL,p209,305,100,gathalast,,
-NULL,p209,306,100,bodytext,,
-NULL,p209,307,100,bodytext,,
-NULL,p209,308,100,bodytext,,
-NULL,p209,309,100,gatha1,,
-NULL,p209,310,100,gathalast,,
-NULL,p209,311,100,gatha1,,
-NULL,p209,312,100,gathalast,,
-NULL,p209,313,100,gatha1,,
-NULL,p209,314,100,gathalast,,
-NULL,p209,315,100,gatha1,,
-NULL,p209,316,100,gathalast,,
-NULL,p209,317,100,gatha1,,
-NULL,p209,318,100,gathalast,,
-NULL,p209,319,100,bodytext,,
-NULL,p209,320,100,gatha1,,
-NULL,p209,321,100,gatha2,,
-NULL,p209,322,100,gathalast,,
-NULL,p209,323,100,bodytext,,
-NULL,p209,324,100,gatha1,,
-NULL,p209,325,100,gathalast,,
-NULL,p209,326,100,bodytext,,
-NULL,p209,327,100,bodytext,,
-NULL,p209,328,100,bodytext,,
-NULL,p209,329,100,bodytext,,
-NULL,p209,330,100,centered,,
-NULL,p209,331,100,centered,,
-NULL,p209,332,4,subhead,Makkaṭīvatthukathāvaṇṇanā,
-NULL,p209,333,100,bodytext,,
-NULL,p209,334,100,bodytext,,
-NULL,p209,335,100,bodytext,,
-NULL,p209,336,100,centered,,
-NULL,p209,337,4,subhead,Vajjiputtakavatthuvaṇṇanā,
-NULL,p209,338,100,bodytext,,
-NULL,p209,339,100,gatha1,,
-NULL,p209,340,100,gathalast,,
-NULL,p209,341,100,unindented,,
-NULL,p209,342,100,bodytext,,
-NULL,p209,343,100,gatha1,,
-NULL,p209,344,100,gathalast,,
-NULL,p209,345,100,unindented,,
-NULL,p209,346,100,bodytext,,
-NULL,p209,347,100,bodytext,,
-NULL,p209,348,100,bodytext,,
-NULL,p209,349,100,bodytext,,
-NULL,p209,350,100,bodytext,,
-NULL,p209,351,100,bodytext,,
-NULL,p209,352,100,bodytext,,
-NULL,p209,353,100,bodytext,,
-NULL,p209,354,100,bodytext,,
-NULL,p209,355,100,centered,,
-NULL,p209,356,4,subhead,Catubbidhavinayakathāvaṇṇanā,
-NULL,p209,357,100,bodytext,,
-NULL,p209,358,100,bodytext,,
-NULL,p209,359,100,bodytext,,
-NULL,p209,360,100,bodytext,,
-NULL,p209,361,100,bodytext,,
-NULL,p209,362,100,gatha1,,
-NULL,p209,363,100,gathalast,,
-NULL,p209,364,100,unindented,,
-NULL,p209,365,100,bodytext,,
-NULL,p209,366,100,bodytext,,
-NULL,p209,367,100,bodytext,,
-NULL,p209,368,100,centered,,
-NULL,p209,369,4,subhead,Padabhājanīyavaṇṇanā,
-NULL,p209,370,100,bodytext,,
-NULL,p209,371,100,bodytext,,
-NULL,p209,372,100,bodytext,,
-NULL,p209,373,100,bodytext,,
-NULL,p209,374,100,bodytext,,
-NULL,p209,375,100,bodytext,,
-NULL,p209,376,100,bodytext,,
-NULL,p209,377,100,bodytext,,
-NULL,p209,378,100,bodytext,,
-NULL,p209,379,100,bodytext,,
-NULL,p209,380,4,subhead,Sājīvapadabhājanīyavaṇṇanā,
-NULL,p209,381,100,bodytext,,
-NULL,p209,382,100,bodytext,,
-NULL,p209,383,100,bodytext,,
-NULL,p209,384,4,subhead,Sikkhāpaccakkhānakathāvaṇṇanā,
-NULL,p209,385,100,bodytext,,
-NULL,p209,386,100,bodytext,,
-NULL,p209,387,100,bodytext,,
-NULL,p209,388,100,bodytext,,
-NULL,p209,389,100,bodytext,,
-NULL,p209,390,100,centered,,
-NULL,p209,391,4,subhead,Mūlapaññattikathāvaṇṇanā,
-NULL,p209,392,100,bodytext,,
-NULL,p209,393,100,bodytext,,
-NULL,p209,394,100,gatha1,,
-NULL,p209,395,100,gatha2,,
-NULL,p209,396,100,gatha3,,
-NULL,p209,397,100,gathalast,,
-NULL,p209,398,100,unindented,,
-NULL,p209,399,4,subhead,Paṭhamacatukkakathāvaṇṇanā,
-NULL,p209,400,100,bodytext,,
-NULL,p209,401,100,bodytext,,
-NULL,p209,402,100,indent,,
-NULL,p209,403,100,bodytext,,
-NULL,p209,404,100,centered,,
-NULL,p209,405,4,subhead,Ekūnasattatidvisatacatukkakathāvaṇṇanā,
-NULL,p209,406,100,bodytext,,
-NULL,p209,407,100,bodytext,,
-NULL,p209,408,100,bodytext,,
-NULL,p209,409,100,centered,,
-NULL,p209,410,4,subhead,Santhatacatukkabhedakakathāvaṇṇanā,
-NULL,p209,411,100,bodytext,,
-NULL,p209,412,100,centered,,
-NULL,p209,413,100,centered,,
-NULL,p209,414,4,subhead,Pakiṇṇakakathāvaṇṇanā,
-NULL,p209,415,100,bodytext,,
-NULL,p209,416,100,bodytext,,
-NULL,p209,417,100,bodytext,,
-NULL,p209,418,100,bodytext,,
-NULL,p209,419,100,bodytext,,
-NULL,p209,420,100,bodytext,,
-NULL,p209,421,4,subhead,Vinītavatthuvaṇṇanā,
-NULL,p209,422,100,bodytext,,
-NULL,p209,423,100,bodytext,,
-NULL,p209,424,100,bodytext,,
-NULL,p209,425,100,bodytext,,
-NULL,p209,426,100,bodytext,,
-NULL,p209,427,100,bodytext,,
-NULL,p209,428,100,bodytext,,
-NULL,p209,429,100,bodytext,,
-NULL,p209,430,100,bodytext,,
-NULL,p209,431,100,bodytext,,
-NULL,p209,432,100,bodytext,,
-NULL,p209,433,100,centered,,
-NULL,p209,434,3,title,2. Dutiyapārājikaṃ,第二巴拉基卡
-NULL,p209,435,4,subhead,Dhaniyavatthuvaṇṇanā,
-NULL,p209,436,100,bodytext,,
-NULL,p209,437,100,bodytext,,
-NULL,p209,438,4,subhead,Pāḷimuttakavinicchayavaṇṇanā,
-NULL,p209,439,100,bodytext,,
-NULL,p209,440,100,bodytext,,
-NULL,p209,441,100,bodytext,,
-NULL,p209,442,100,bodytext,,
-NULL,p209,443,100,bodytext,,
-NULL,p209,444,4,subhead,Padabhājanīyavaṇṇanā,
-NULL,p209,445,100,bodytext,,
-NULL,p209,446,100,bodytext,,
-NULL,p209,447,100,bodytext,,
-NULL,p209,448,4,subhead,Pañcavīsatiavahārakathāvaṇṇanā,
-NULL,p209,449,100,bodytext,,
-NULL,p209,450,4,subhead,Bhūmaṭṭhakathādivaṇṇanā,
-NULL,p209,451,100,bodytext,,
-NULL,p209,452,100,bodytext,,
-NULL,p209,453,100,bodytext,,
-NULL,p209,454,100,bodytext,,
-NULL,p209,455,100,bodytext,,
-NULL,p209,456,100,bodytext,,
-NULL,p209,457,100,bodytext,,
-NULL,p209,458,100,bodytext,,
-NULL,p209,459,100,bodytext,,
-NULL,p209,460,100,bodytext,,
-NULL,p209,461,100,bodytext,,
-NULL,p209,462,100,bodytext,,
-NULL,p209,463,100,bodytext,,
-NULL,p209,464,100,bodytext,,
-NULL,p209,465,100,bodytext,,
-NULL,p209,466,100,bodytext,,
-NULL,p209,467,100,bodytext,,
-NULL,p209,468,100,bodytext,,
-NULL,p209,469,100,bodytext,,
-NULL,p209,470,100,bodytext,,
-NULL,p209,471,100,bodytext,,
-NULL,p209,472,100,bodytext,,
-NULL,p209,473,100,bodytext,,
-NULL,p209,474,100,bodytext,,
-NULL,p209,475,100,bodytext,,
-NULL,p209,476,100,bodytext,,
-NULL,p209,477,100,bodytext,,
-NULL,p209,478,100,bodytext,,
-NULL,p209,479,100,centered,,
-NULL,p209,480,4,subhead,Āpattibhedavaṇṇanā,
-NULL,p209,481,100,bodytext,,
-NULL,p209,482,100,bodytext,,
-NULL,p209,483,100,centered,,
-NULL,p209,484,4,subhead,Anāpattibhedavaṇṇanā,
-NULL,p209,485,100,bodytext,,
-NULL,p209,486,100,centered,,
-NULL,p209,487,4,subhead,Pakiṇṇakakathāvaṇṇanā,
-NULL,p209,488,100,bodytext,,
-NULL,p209,489,100,bodytext,,
-NULL,p209,490,100,gatha1,,
-NULL,p209,491,100,gathalast,,
-NULL,p209,492,100,gatha1,,
-NULL,p209,493,100,gathalast,,
-NULL,p209,494,4,subhead,Vinītavatthuvaṇṇanā,
-NULL,p209,495,100,bodytext,,
-NULL,p209,496,100,gatha1,,
-NULL,p209,497,100,gathalast,,
-NULL,p209,498,100,bodytext,,
-NULL,p209,499,100,bodytext,,
-NULL,p209,500,4,subhead,Kusasaṅkāmanavatthukathāvaṇṇanā,
-NULL,p209,501,100,bodytext,,
-NULL,p209,502,100,bodytext,,
-NULL,p209,503,100,bodytext,,
-NULL,p209,504,100,bodytext,,
-NULL,p209,505,100,bodytext,,
-NULL,p209,506,100,bodytext,,
-NULL,p209,507,100,bodytext,,
-NULL,p209,508,100,centered,,
-NULL,p209,509,3,title,3. Tatiyapārājikaṃ,第三巴拉基卡
-NULL,p209,510,4,subhead,Paṭhamapaññattinidānavaṇṇanā,
-NULL,p209,511,100,bodytext,,
-NULL,p209,512,100,bodytext,,
-NULL,p209,513,100,bodytext,,
-NULL,p209,514,100,bodytext,,
-NULL,p209,515,100,bodytext,,
-NULL,p209,516,100,bodytext,,
-NULL,p209,517,100,bodytext,,
-NULL,p209,518,4,subhead,Ānāpānassatisamādhikathāvaṇṇanā,
-NULL,p209,519,100,bodytext,,
-NULL,p209,520,100,bodytext,,
-NULL,p209,521,100,bodytext,,
-NULL,p209,522,100,bodytext,,
-NULL,p209,523,100,bodytext,,
-NULL,p209,524,100,bodytext,,
-NULL,p209,525,100,bodytext,,
-NULL,p209,526,100,bodytext,,
-NULL,p209,527,100,bodytext,,
-NULL,p209,528,100,bodytext,,
-NULL,p209,529,100,bodytext,,
-NULL,p209,530,100,bodytext,,
-NULL,p209,531,100,bodytext,,
-NULL,p209,532,100,bodytext,,
-NULL,p209,533,100,bodytext,,
-NULL,p209,534,100,bodytext,,
-NULL,p209,535,100,bodytext,,
-NULL,p209,536,100,bodytext,,
-NULL,p209,537,100,bodytext,,
-NULL,p209,538,4,subhead,Padabhājanīyavaṇṇanā,
-NULL,p209,539,100,bodytext,,
-NULL,p209,540,100,gatha1,,
-NULL,p209,541,100,gatha2,,
-NULL,p209,542,100,gathalast,,
-NULL,p209,543,100,bodytext,,
-NULL,p209,544,100,bodytext,,
-NULL,p209,545,100,bodytext,,
-NULL,p209,546,100,bodytext,,
-NULL,p209,547,100,gatha1,,
-NULL,p209,548,100,gathalast,,
-NULL,p209,549,100,gatha1,,
-NULL,p209,550,100,gathalast,,
-NULL,p209,551,100,gatha1,,
-NULL,p209,552,100,gathalast,,
-NULL,p209,553,100,gatha1,,
-NULL,p209,554,100,gathalast,,
-NULL,p209,555,100,gatha1,,
-NULL,p209,556,100,gathalast,,
-NULL,p209,557,100,gatha1,,
-NULL,p209,558,100,gathalast,,
-NULL,p209,559,100,gatha1,,
-NULL,p209,560,100,gathalast,,
-NULL,p209,561,100,gatha1,,
-NULL,p209,562,100,gathalast,,
-NULL,p209,563,100,gatha1,,
-NULL,p209,564,100,gathalast,,
-NULL,p209,565,100,gatha1,,
-NULL,p209,566,100,gathalast,,
-NULL,p209,567,100,gatha1,,
-NULL,p209,568,100,gathalast,,
-NULL,p209,569,100,gatha1,,
-NULL,p209,570,100,gathalast,,
-NULL,p209,571,100,gatha1,,
-NULL,p209,572,100,gathalast,,
-NULL,p209,573,100,gatha1,,
-NULL,p209,574,100,gathalast,,
-NULL,p209,575,100,bodytext,,
-NULL,p209,576,100,bodytext,,
-NULL,p209,577,100,bodytext,,
-NULL,p209,578,100,bodytext,,
-NULL,p209,579,100,bodytext,,
-NULL,p209,580,100,bodytext,,
-NULL,p209,581,100,bodytext,,
-NULL,p209,582,100,bodytext,,
-NULL,p209,583,100,bodytext,,
-NULL,p209,584,100,bodytext,,
-NULL,p209,585,100,bodytext,,
-NULL,p209,586,100,bodytext,,
-NULL,p209,587,100,gatha1,,
-NULL,p209,588,100,gathalast,,
-NULL,p209,589,100,bodytext,,
-NULL,p209,590,100,bodytext,,
-NULL,p209,591,100,bodytext,,
-NULL,p209,592,100,centered,,
-NULL,p209,593,4,subhead,Vinītavatthuvaṇṇanā,
-NULL,p209,594,100,bodytext,,
-NULL,p209,595,100,bodytext,,
-NULL,p209,596,100,bodytext,,
-NULL,p209,597,100,bodytext,,
-NULL,p209,598,100,bodytext,,
-NULL,p209,599,100,bodytext,,
-NULL,p209,600,100,bodytext,,
-NULL,p209,601,100,bodytext,,
-NULL,p209,602,100,bodytext,,
-NULL,p209,603,100,bodytext,,
-NULL,p209,604,100,centered,,
-NULL,p209,605,3,title,4. Catutthapārājikaṃ,第四巴拉基卡
-NULL,p209,606,4,subhead,Vaggumudātīriyabhikkhuvatthuvaṇṇanā,
-NULL,p209,607,100,bodytext,,
-NULL,p209,608,100,bodytext,,
-NULL,p209,609,4,subhead,Savibhaṅgasikkhāpadavaṇṇanā,
-NULL,p209,610,100,bodytext,,
-NULL,p209,611,4,subhead,Padabhājanīyavaṇṇanā,
-NULL,p209,612,100,bodytext,,
-NULL,p209,613,100,bodytext,,
-NULL,p209,614,100,bodytext,,
-NULL,p209,615,100,bodytext,,
-NULL,p209,616,100,centered,,
-NULL,p209,617,4,subhead,Vattukāmavārakathāvaṇṇanā,
-NULL,p209,618,100,bodytext,,
-NULL,p209,619,100,centered,,
-NULL,p209,620,4,subhead,Anāpattibhedakathāvaṇṇanā,
-NULL,p209,621,100,bodytext,,
-NULL,p209,622,100,centered,,
-NULL,p209,623,4,subhead,Vinītavatthuvaṇṇanā,
-NULL,p209,624,100,bodytext,,
-NULL,p209,625,100,bodytext,,
-NULL,p209,626,100,bodytext,,
-NULL,p209,627,4,subhead,Nigamanavaṇṇanā,
-NULL,p209,628,100,bodytext,,
-NULL,p209,629,100,centered,,
-NULL,p209,630,100,centered,,
-NULL,p209,631,4,subhead,2. Saṅghādisesakaṇḍo,
-NULL,p209,632,4,subhead,1. Sukkavissaṭṭhisikkhāpadavaṇṇanā,
-NULL,p209,633,100,bodytext,,
-NULL,p209,634,100,bodytext,,
-NULL,p209,635,100,bodytext,,
-NULL,p209,636,100,bodytext,,
-NULL,p209,637,100,bodytext,,
-NULL,p209,638,100,bodytext,,
-NULL,p209,639,100,bodytext,,
-NULL,p209,640,100,bodytext,,
-NULL,p209,641,100,bodytext,,
-NULL,p209,642,100,bodytext,,
-NULL,p209,643,100,bodytext,,
-NULL,p209,644,100,centered,,
-NULL,p209,645,4,subhead,2. Kāyasaṃsaggasikkhāpadavaṇṇanā,
-NULL,p209,646,100,bodytext,,
-NULL,p209,647,100,bodytext,,
-NULL,p209,648,100,bodytext,,
-NULL,p209,649,4,subhead,Padabhājanīyavaṇṇanā,
-NULL,p209,650,100,bodytext,,
-NULL,p209,651,100,bodytext,,
-NULL,p209,652,100,bodytext,,
-NULL,p209,653,100,bodytext,,
-NULL,p209,654,100,bodytext,,
-NULL,p209,655,100,bodytext,,
-NULL,p209,656,4,subhead,Vinītavatthuvaṇṇanā,
-NULL,p209,657,100,bodytext,,
-NULL,p209,658,100,bodytext,,
-NULL,p209,659,100,indent,,
-NULL,p209,660,100,bodytext,,
-NULL,p209,661,100,centered,,
-NULL,p209,662,4,subhead,3. Duṭṭhullavācāsikkhāpadavaṇṇanā,
-NULL,p209,663,100,bodytext,,
-NULL,p209,664,4,subhead,Padabhājanīyavaṇṇanā,
-NULL,p209,665,100,bodytext,,
-NULL,p209,666,100,bodytext,,
-NULL,p209,667,4,subhead,Vinītavatthuvaṇṇanā,
-NULL,p209,668,100,bodytext,,
-NULL,p209,669,100,centered,,
-NULL,p209,670,4,subhead,4. Attakāmapāricariyasikkhāpadavaṇṇanā,
-NULL,p209,671,100,bodytext,,
-NULL,p209,672,100,bodytext,,
-NULL,p209,673,100,bodytext,,
-NULL,p209,674,100,centered,,
-NULL,p209,675,4,subhead,5. Sañcarittasikkhāpadavaṇṇanā,
-NULL,p209,676,100,bodytext,,
-NULL,p209,677,100,bodytext,,
-NULL,p209,678,4,subhead,Padabhājanīyavaṇṇanā,
-NULL,p209,679,100,bodytext,,
-NULL,p209,680,100,bodytext,,
-NULL,p209,681,100,bodytext,,
-NULL,p209,682,100,bodytext,,
-NULL,p209,683,4,subhead,Vinītavatthuvaṇṇanā,
-NULL,p209,684,100,bodytext,,
-NULL,p209,685,100,centered,,
-NULL,p209,686,4,subhead,6. Kuṭikārasikkhāpadavaṇṇanā,
-NULL,p209,687,100,bodytext,,
-NULL,p209,688,100,bodytext,,
-NULL,p209,689,100,bodytext,,
-NULL,p209,690,100,bodytext,,
-NULL,p209,691,100,bodytext,,
-NULL,p209,692,100,bodytext,,
-NULL,p209,693,100,bodytext,,
-NULL,p209,694,100,bodytext,,
-NULL,p209,695,100,centered,,
-NULL,p209,696,4,subhead,7. Vihārakārasikkhāpadavaṇṇanā,
-NULL,p209,697,100,bodytext,,
-NULL,p209,698,100,centered,,
-NULL,p209,699,4,subhead,8. Paṭhamaduṭṭhadosasikkhāpadavaṇṇanā,
-NULL,p209,700,100,bodytext,,
-NULL,p209,701,100,bodytext,,
-NULL,p209,702,100,bodytext,,
-NULL,p209,703,100,bodytext,,
-NULL,p209,704,100,bodytext,,
-NULL,p209,705,100,bodytext,,
-NULL,p209,706,100,bodytext,,
-NULL,p209,707,100,bodytext,,
-NULL,p209,708,100,bodytext,,
-NULL,p209,709,100,gatha1,,
-NULL,p209,710,100,gatha2,,
-NULL,p209,711,100,gatha3,,
-NULL,p209,712,100,gathalast,,
-NULL,p209,713,100,gatha1,,
-NULL,p209,714,100,gatha2,,
-NULL,p209,715,100,gatha3,,
-NULL,p209,716,100,gathalast,,
-NULL,p209,717,100,bodytext,,
-NULL,p209,718,100,bodytext,,
-NULL,p209,719,100,bodytext,,
-NULL,p209,720,100,centered,,
-NULL,p209,721,4,subhead,9. Dutiyaduṭṭhadosasikkhāpadavaṇṇanā,
-NULL,p209,722,100,bodytext,,
-NULL,p209,723,100,bodytext,,
-NULL,p209,724,100,bodytext,,
-NULL,p209,725,100,bodytext,,
-NULL,p209,726,100,bodytext,,
-NULL,p209,727,100,bodytext,,
-NULL,p209,728,100,bodytext,,
-NULL,p209,729,100,bodytext,,
-NULL,p209,730,100,bodytext,,
-NULL,p209,731,100,bodytext,,
-NULL,p209,732,100,centered,,
-NULL,p209,733,100,bodytext,,
-NULL,p209,734,100,centered,,
-NULL,p209,735,4,subhead,10. Paṭhamasaṅghabhedasikkhāpadavaṇṇanā,
-NULL,p209,736,100,bodytext,,
-NULL,p209,737,100,bodytext,,
-NULL,p209,738,100,bodytext,,
-NULL,p209,739,100,bodytext,,
-NULL,p209,740,100,bodytext,,
-NULL,p209,741,100,bodytext,,
-NULL,p209,742,100,centered,,
-NULL,p209,743,4,subhead,11. Dutiyasaṅghabhedasikkhāpadavaṇṇanā,
-NULL,p209,744,100,bodytext,,
-NULL,p209,745,100,centered,,
-NULL,p209,746,4,subhead,12. Dubbacasikkhāpadavaṇṇanā,
-NULL,p209,747,100,bodytext,,
-NULL,p209,748,100,bodytext,,
-NULL,p209,749,100,centered,,
-NULL,p209,750,4,subhead,13. Kuladūsakasikkhāpadavaṇṇanā,
-NULL,p209,751,100,bodytext,,
-NULL,p209,752,100,bodytext,,
-NULL,p209,753,100,bodytext,,
-NULL,p209,754,100,bodytext,,
-NULL,p209,755,100,bodytext,,
-NULL,p209,756,100,bodytext,,
-NULL,p209,757,100,centered,,
-NULL,p209,758,100,centered,,
-NULL,p209,759,4,subhead,3. Aniyatakaṇḍo,
-NULL,p209,760,4,subhead,1. Paṭhamaaniyatasikkhāpadavaṇṇanā,
-NULL,p209,761,100,bodytext,,
-NULL,p209,762,100,bodytext,,
-NULL,p209,763,100,centered,,
-NULL,p209,764,4,subhead,2. Dutiyaaniyatasikkhāpadavaṇṇanā,
-NULL,p209,765,100,bodytext,,
-NULL,p209,766,100,bodytext,,
-NULL,p209,767,100,centered,,
-NULL,p209,768,4,subhead,Pakiṇṇakavaṇṇanā,
-NULL,p209,769,100,bodytext,,
-NULL,p209,770,100,centered,,
-NULL,p209,771,100,centered,,
-NULL,p209,772,4,subhead,4. Nissaggiyakaṇḍo,
-NULL,p209,773,3,title,1. Cīvaravaggo,衣章
-NULL,p209,774,4,subhead,1. Paṭhamakathinasikkhāpadavaṇṇanā,
-NULL,p209,775,100,bodytext,,
-NULL,p209,776,100,bodytext,,
-NULL,p209,777,100,bodytext,,
-NULL,p209,778,100,bodytext,,
-NULL,p209,779,100,bodytext,,
-NULL,p209,780,100,bodytext,,
-NULL,p209,781,100,bodytext,,
-NULL,p209,782,100,bodytext,,
-NULL,p209,783,100,bodytext,,
-NULL,p209,784,100,bodytext,,
-NULL,p209,785,100,bodytext,,
-NULL,p209,786,100,bodytext,,
-NULL,p209,787,100,bodytext,,
-NULL,p209,788,100,bodytext,,
-NULL,p209,789,100,bodytext,,
-NULL,p209,790,100,bodytext,,
-NULL,p209,791,100,bodytext,,
-NULL,p209,792,100,bodytext,,
-NULL,p209,793,100,bodytext,,
-NULL,p209,794,100,bodytext,,
-NULL,p209,795,100,bodytext,,
-NULL,p209,796,100,bodytext,,
-NULL,p209,797,100,bodytext,,
-NULL,p209,798,100,gatha1,,
-NULL,p209,799,100,gatha2,,
-NULL,p209,800,100,gatha3,,
-NULL,p209,801,100,gathalast,,
-NULL,p209,802,100,bodytext,,
-NULL,p209,803,100,centered,,
-NULL,p209,804,4,subhead,2. Udositasikkhāpadavaṇṇanā,
-NULL,p209,805,100,bodytext,,
-NULL,p209,806,100,bodytext,,
-NULL,p209,807,100,bodytext,,
-NULL,p209,808,100,bodytext,,
-NULL,p209,809,100,bodytext,,
-NULL,p209,810,100,bodytext,,
-NULL,p209,811,100,bodytext,,
-NULL,p209,812,100,gatha1,,
-NULL,p209,813,100,gathalast,,
-NULL,p209,814,100,unindented,,
-NULL,p209,815,100,bodytext,,
-NULL,p209,816,100,bodytext,,
-NULL,p209,817,100,bodytext,,
-NULL,p209,818,100,centered,,
-NULL,p209,819,4,subhead,3. Tatiyakathinasikkhāpadavaṇṇanā,
-NULL,p209,820,100,bodytext,,
-NULL,p209,821,100,bodytext,,
-NULL,p209,822,100,bodytext,,
-NULL,p209,823,100,bodytext,,
-NULL,p209,824,100,bodytext,,
-NULL,p209,825,100,bodytext,,
-NULL,p209,826,100,centered,,
-NULL,p209,827,4,subhead,4. Purāṇacīvarasikkhāpadavaṇṇanā,
-NULL,p209,828,100,bodytext,,
-NULL,p209,829,100,bodytext,,
-NULL,p209,830,100,centered,,
-NULL,p209,831,4,subhead,5. Cīvarapaṭiggahaṇasikkhāpadavaṇṇanā,
-NULL,p209,832,100,bodytext,,
-NULL,p209,833,100,bodytext,,
-NULL,p209,834,100,bodytext,,
-NULL,p209,835,100,bodytext,,
-NULL,p209,836,100,centered,,
-NULL,p209,837,4,subhead,6. Aññātakaviññattisikkhāpadavaṇṇanā,
-NULL,p209,838,100,bodytext,,
-NULL,p209,839,100,bodytext,,
-NULL,p209,840,100,bodytext,,
-NULL,p209,841,100,bodytext,,
-NULL,p209,842,100,bodytext,,
-NULL,p209,843,100,centered,,
-NULL,p209,844,4,subhead,7. Tatuttarisikkhāpadavaṇṇanā,
-NULL,p209,845,100,bodytext,,
-NULL,p209,846,100,bodytext,,
-NULL,p209,847,100,centered,,
-NULL,p209,848,4,subhead,8. Paṭhamaupakkhaṭasikkhāpadavaṇṇanā,
-NULL,p209,849,100,bodytext,,
-NULL,p209,850,100,centered,,
-NULL,p209,851,4,subhead,9. Dutiyaupakkhaṭasikkhāpadavaṇṇanā,
-NULL,p209,852,100,bodytext,,
-NULL,p209,853,100,bodytext,,
-NULL,p209,854,100,gatha1,,
-NULL,p209,855,100,gathalast,,
-NULL,p209,856,100,gatha1,,
-NULL,p209,857,100,gathalast,,
-NULL,p209,858,100,bodytext,,
-NULL,p209,859,100,gatha1,,
-NULL,p209,860,100,gatha2,,
-NULL,p209,861,100,gatha3,,
-NULL,p209,862,100,gathalast,,
-NULL,p209,863,100,bodytext,,
-NULL,p209,864,100,centered,,
-NULL,p209,865,4,subhead,10. Rājasikkhāpadavaṇṇanā,
-NULL,p209,866,100,bodytext,,
-NULL,p209,867,100,bodytext,,
-NULL,p209,868,100,bodytext,,
-NULL,p209,869,100,bodytext,,
-NULL,p209,870,100,bodytext,,
-NULL,p209,871,100,bodytext,,
-NULL,p209,872,100,gatha1,,
-NULL,p209,873,100,gathalast,,
-NULL,p209,874,100,centered,,
-NULL,p209,875,100,centered,,
-NULL,p209,876,3,title,2. Kosiyavaggo,
-NULL,p209,877,4,subhead,1. Kosiyasikkhāpadavaṇṇanā,
-NULL,p209,878,100,bodytext,,
-NULL,p209,879,100,centered,,
-NULL,p209,880,4,subhead,2. Suddhakāḷakasikkhāpadavaṇṇanā,
-NULL,p209,881,100,bodytext,,
-NULL,p209,882,100,centered,,
-NULL,p209,883,4,subhead,3. Dvebhāgasikkhāpadavaṇṇanā,
-NULL,p209,884,100,bodytext,,
-NULL,p209,885,100,centered,,
-NULL,p209,886,4,subhead,4. Chabbassasikkhāpadavaṇṇanā,
-NULL,p209,887,100,bodytext,,
-NULL,p209,888,100,centered,,
-NULL,p209,889,4,subhead,5. Nisīdanasanthatasikkhāpadavaṇṇanā,
-NULL,p209,890,100,bodytext,,
-NULL,p209,891,100,bodytext,,
-NULL,p209,892,100,bodytext,,
-NULL,p209,893,100,bodytext,,
-NULL,p209,894,100,bodytext,,
-NULL,p209,895,100,bodytext,,
-NULL,p209,896,100,centered,,
-NULL,p209,897,4,subhead,6. Eḷakalomasikkhāpadavaṇṇanā,
-NULL,p209,898,100,bodytext,,
-NULL,p209,899,100,bodytext,,
-NULL,p209,900,100,bodytext,,
-NULL,p209,901,100,bodytext,,
-NULL,p209,902,100,centered,,
-NULL,p209,903,4,subhead,7. Eḷakalomadhovāpanasikkhāpadavaṇṇanā,
-NULL,p209,904,100,bodytext,,
-NULL,p209,905,100,centered,,
-NULL,p209,906,4,subhead,8. Rūpiyasikkhāpadavaṇṇanā,
-NULL,p209,907,100,bodytext,,
-NULL,p209,908,100,bodytext,,
-NULL,p209,909,100,bodytext,,
-NULL,p209,910,100,bodytext,,
-NULL,p209,911,100,bodytext,,
-NULL,p209,912,100,bodytext,,
-NULL,p209,913,100,bodytext,,
-NULL,p209,914,100,centered,,
-NULL,p209,915,4,subhead,9. Rūpiyasaṃvohārasikkhāpadavaṇṇanā,
-NULL,p209,916,100,bodytext,,
-NULL,p209,917,100,bodytext,,
-NULL,p209,918,100,bodytext,,
-NULL,p209,919,100,bodytext,,
-NULL,p209,920,100,bodytext,,
-NULL,p209,921,100,centered,,
-NULL,p209,922,4,subhead,10. Kayavikkayasikkhāpadavaṇṇanā,
-NULL,p209,923,100,bodytext,,
-NULL,p209,924,100,centered,,
-NULL,p209,925,100,centered,,
-NULL,p209,926,3,title,3. Pattavaggo,
-NULL,p209,927,4,subhead,1. Pattasikkhāpadavaṇṇanā,
-NULL,p209,928,100,bodytext,,
-NULL,p209,929,100,gatha1,,
-NULL,p209,930,100,gathalast,,
-NULL,p209,931,100,unindented,,
-NULL,p209,932,100,bodytext,,
-NULL,p209,933,100,bodytext,,
-NULL,p209,934,100,bodytext,,
-NULL,p209,935,100,centered,,
-NULL,p209,936,4,subhead,2. Ūnapañcabandhanasikkhāpadavaṇṇanā,
-NULL,p209,937,100,bodytext,,
-NULL,p209,938,100,centered,,
-NULL,p209,939,4,subhead,3. Bhesajjasikkhāpadavaṇṇanā,
-NULL,p209,940,100,bodytext,,
-NULL,p209,941,100,bodytext,,
-NULL,p209,942,100,bodytext,,
-NULL,p209,943,100,bodytext,,
-NULL,p209,944,100,bodytext,,
-NULL,p209,945,100,bodytext,,
-NULL,p209,946,100,bodytext,,
-NULL,p209,947,100,bodytext,,
-NULL,p209,948,100,bodytext,,
-NULL,p209,949,100,bodytext,,
-NULL,p209,950,100,centered,,
-NULL,p209,951,4,subhead,4. Vassikasāṭikasikkhāpadavaṇṇanā,
-NULL,p209,952,100,bodytext,,
-NULL,p209,953,100,bodytext,,
-NULL,p209,954,100,bodytext,,
-NULL,p209,955,100,bodytext,,
-NULL,p209,956,100,bodytext,,
-NULL,p209,957,100,centered,,
-NULL,p209,958,4,subhead,5. Cīvaraacchindanasikkhāpadavaṇṇanā,
-NULL,p209,959,100,bodytext,,
-NULL,p209,960,100,bodytext,,
-NULL,p209,961,100,centered,,
-NULL,p209,962,4,subhead,6. Suttaviññattisikkhāpadavaṇṇanā,
-NULL,p209,963,100,bodytext,,
-NULL,p209,964,100,centered,,
-NULL,p209,965,4,subhead,7. Mahāpesakārasikkhāpadavaṇṇanā,
-NULL,p209,966,100,bodytext,,
-NULL,p209,967,100,centered,,
-NULL,p209,968,4,subhead,8. Accekacīvarasikkhāpadavaṇṇanā,
-NULL,p209,969,100,bodytext,,
-NULL,p209,970,100,bodytext,,
-NULL,p209,971,100,bodytext,,
-NULL,p209,972,100,bodytext,,
-NULL,p209,973,100,bodytext,,
-NULL,p209,974,100,bodytext,,
-NULL,p209,975,100,centered,,
-NULL,p209,976,4,subhead,9. Sāsaṅkasikkhāpadavaṇṇanā,
-NULL,p209,977,100,bodytext,,
-NULL,p209,978,100,bodytext,,
-NULL,p209,979,100,centered,,
-NULL,p209,980,4,subhead,10. Pariṇatasikkhāpadavaṇṇanā,
-NULL,p209,981,100,bodytext,,
-NULL,p209,982,100,gatha1,,
-NULL,p209,983,100,gathalast,,
-NULL,p209,984,100,bodytext,,
-NULL,p209,985,100,gatha1,,
-NULL,p209,986,100,gatha2,,
-NULL,p209,987,100,gatha3,,
-NULL,p209,988,100,gathalast,,
-NULL,p209,989,100,centered,,
-NULL,p209,990,100,centered,,
-NULL,p209,991,100,centered,,
-NULL,p209,992,2,chapter,Pācittiyavaṇṇanā,巴基帝亚详解
-NULL,p209,993,4,subhead,5. Pācittiyakaṇḍo,
-NULL,p209,994,3,title,1. Musāvādavaggo,
-NULL,p209,995,4,subhead,1. Musāvādasikkhāpadavaṇṇanā,
-NULL,p209,996,100,bodytext,,
-NULL,p209,997,100,bodytext,,
-NULL,p209,998,100,bodytext,,
-NULL,p209,999,100,bodytext,,
-NULL,p209,1000,100,bodytext,,
-NULL,p209,1001,100,bodytext,,
-NULL,p209,1002,100,bodytext,,
-NULL,p209,1003,100,centered,,
-NULL,p209,1004,4,subhead,2. Omasavādasikkhāpadavaṇṇanā,
-NULL,p209,1005,100,bodytext,,
-NULL,p209,1006,100,bodytext,,
-NULL,p209,1007,100,bodytext,,
-NULL,p209,1008,100,bodytext,,
-NULL,p209,1009,100,centered,,
-NULL,p209,1010,4,subhead,3. Pesuññasikkhāpadavaṇṇanā,
-NULL,p209,1011,100,bodytext,,
-NULL,p209,1012,100,bodytext,,
-NULL,p209,1013,100,centered,,
-NULL,p209,1014,4,subhead,4. Padasodhammasikkhāpadavaṇṇanā,
-NULL,p209,1015,100,bodytext,,
-NULL,p209,1016,100,bodytext,,
-NULL,p209,1017,100,gatha1,,
-NULL,p209,1018,100,gathalast,,
-NULL,p209,1019,100,bodytext,,
-NULL,p209,1020,100,bodytext,,
-NULL,p209,1021,100,bodytext,,
-NULL,p209,1022,100,centered,,
-NULL,p209,1023,4,subhead,5. Paṭhamasahaseyyasikkhāpadavaṇṇanā,
-NULL,p209,1024,100,bodytext,,
-NULL,p209,1025,100,bodytext,,
-NULL,p209,1026,100,centered,,
-NULL,p209,1027,4,subhead,6. Dutiyasahaseyyasikkhāpadavaṇṇanā,
-NULL,p209,1028,100,bodytext,,
-NULL,p209,1029,100,centered,,
-NULL,p209,1030,4,subhead,7. Dhammadesanāsikkhāpadavaṇṇanā,
-NULL,p209,1031,100,bodytext,,
-NULL,p209,1032,100,centered,,
-NULL,p209,1033,4,subhead,8. Bhūtārocanasikkhāpadavaṇṇanā,
-NULL,p209,1034,100,bodytext,,
-NULL,p209,1035,100,bodytext,,
-NULL,p209,1036,100,centered,,
-NULL,p209,1037,4,subhead,9. Duṭṭhullārocanasikkhāpadavaṇṇanā,
-NULL,p209,1038,100,bodytext,,
-NULL,p209,1039,100,bodytext,,
-NULL,p209,1040,100,centered,,
-NULL,p209,1041,4,subhead,10. Pathavīkhaṇanasikkhāpadavaṇṇanā,
-NULL,p209,1042,100,bodytext,,
-NULL,p209,1043,100,bodytext,,
-NULL,p209,1044,100,centered,,
-NULL,p209,1045,100,centered,,
-NULL,p209,1046,3,title,2. Bhūtagāmavaggo,
-NULL,p209,1047,4,subhead,1. Bhūtagāmasikkhāpadavaṇṇanā,
-NULL,p209,1048,100,bodytext,,
-NULL,p209,1049,100,bodytext,,
-NULL,p209,1050,100,bodytext,,
-NULL,p209,1051,100,centered,,
-NULL,p209,1052,4,subhead,2. Aññavādakasikkhāpadavaṇṇanā,
-NULL,p209,1053,100,bodytext,,
-NULL,p209,1054,100,bodytext,,
-NULL,p209,1055,100,bodytext,,
-NULL,p209,1056,100,centered,,
-NULL,p209,1057,4,subhead,3. Ujjhāpanakasikkhāpadavaṇṇanā,
-NULL,p209,1058,100,bodytext,,
-NULL,p209,1059,100,bodytext,,
-NULL,p209,1060,100,centered,,
-NULL,p209,1061,4,subhead,4. Paṭhamasenāsanasikkhāpadavaṇṇanā,
-NULL,p209,1062,100,bodytext,,
-NULL,p209,1063,100,bodytext,,
-NULL,p209,1064,100,bodytext,,
-NULL,p209,1065,100,bodytext,,
-NULL,p209,1066,100,bodytext,,
-NULL,p209,1067,100,centered,,
-NULL,p209,1068,4,subhead,5. Dutiyasenāsanasikkhāpadavaṇṇanā,
-NULL,p209,1069,100,bodytext,,
-NULL,p209,1070,100,bodytext,,
-NULL,p209,1071,100,centered,,
-NULL,p209,1072,4,subhead,6. Anupakhajjasikkhāpadavaṇṇanā,
-NULL,p209,1073,100,bodytext,,
-NULL,p209,1074,100,bodytext,,
-NULL,p209,1075,100,centered,,
-NULL,p209,1076,4,subhead,7. Nikkaḍḍhanasikkhāpadavaṇṇanā,
-NULL,p209,1077,100,bodytext,,
-NULL,p209,1078,100,centered,,
-NULL,p209,1079,4,subhead,8. Vehāsakuṭisikkhāpadavaṇṇanā,
-NULL,p209,1080,100,bodytext,,
-NULL,p209,1081,100,centered,,
-NULL,p209,1082,4,subhead,9. Mahallakavihārasikkhāpadavaṇṇanā,
-NULL,p209,1083,100,bodytext,,
-NULL,p209,1084,100,bodytext,,
-NULL,p209,1085,100,bodytext,,
-NULL,p209,1086,100,centered,,
-NULL,p209,1087,4,subhead,10. Sappāṇakasikkhāpadavaṇṇanā,
-NULL,p209,1088,100,bodytext,,
-NULL,p209,1089,100,centered,,
-NULL,p209,1090,3,title,3. Ovādavaggo,
-NULL,p209,1091,4,subhead,1. Ovādasikkhāpadavaṇṇanā,
-NULL,p209,1092,100,bodytext,,
-NULL,p209,1093,100,bodytext,,
-NULL,p209,1094,100,bodytext,,
-NULL,p209,1095,100,centered,,
-NULL,p209,1096,4,subhead,2. Atthaṅgatasikkhāpadavaṇṇanā,
-NULL,p209,1097,100,bodytext,,
-NULL,p209,1098,100,bodytext,,
-NULL,p209,1099,100,centered,,
-NULL,p209,1100,4,subhead,3. Bhikkhunupassayasikkhāpadavaṇṇanā,
-NULL,p209,1101,100,bodytext,,
-NULL,p209,1102,100,centered,,
-NULL,p209,1103,4,subhead,4. Āmisasikkhāpadavaṇṇanā,
-NULL,p209,1104,100,bodytext,,
-NULL,p209,1105,100,centered,,
-NULL,p209,1106,4,subhead,5. Cīvaradānasikkhāpadavaṇṇanā,
-NULL,p209,1107,100,bodytext,,
-NULL,p209,1108,100,centered,,
-NULL,p209,1109,4,subhead,6. Cīvarasibbanasikkhāpadavaṇṇanā,
-NULL,p209,1110,100,bodytext,,
-NULL,p209,1111,100,centered,,
-NULL,p209,1112,4,subhead,7. Saṃvidhānasikkhāpadavaṇṇanā,
-NULL,p209,1113,100,bodytext,,
-NULL,p209,1114,100,bodytext,,
-NULL,p209,1115,100,bodytext,,
-NULL,p209,1116,100,centered,,
-NULL,p209,1117,4,subhead,8. Nāvābhiruhanasikkhāpadavaṇṇanā,
-NULL,p209,1118,100,bodytext,,
-NULL,p209,1119,100,bodytext,,
-NULL,p209,1120,100,centered,,
-NULL,p209,1121,4,subhead,9. Paripācitasikkhāpadavaṇṇanā,
-NULL,p209,1122,100,bodytext,,
-NULL,p209,1123,100,bodytext,,
-NULL,p209,1124,100,centered,,
-NULL,p209,1125,4,subhead,10. Rahonisajjasikkhāpadavaṇṇanā,
-NULL,p209,1126,100,bodytext,,
-NULL,p209,1127,100,centered,,
-NULL,p209,1128,100,centered,,
-NULL,p209,1129,3,title,4. Bhojanavaggo,
-NULL,p209,1130,4,subhead,1. Āvasathapiṇḍasikkhāpadavaṇṇanā,
-NULL,p209,1131,100,bodytext,,
-NULL,p209,1132,100,bodytext,,
-NULL,p209,1133,100,centered,,
-NULL,p209,1134,4,subhead,2. Gaṇabhojanasikkhāpadavaṇṇanā,
-NULL,p209,1135,100,bodytext,,
-NULL,p209,1136,100,bodytext,,
-NULL,p209,1137,100,bodytext,,
-NULL,p209,1138,100,centered,,
-NULL,p209,1139,4,subhead,3. Paramparabhojanasikkhāpadavaṇṇanā,
-NULL,p209,1140,100,bodytext,,
-NULL,p209,1141,100,bodytext,,
-NULL,p209,1142,100,bodytext,,
-NULL,p209,1143,100,bodytext,,
-NULL,p209,1144,100,bodytext,,
-NULL,p209,1145,100,centered,,
-NULL,p209,1146,4,subhead,4. Kāṇamātāsikkhāpadavaṇṇanā,
-NULL,p209,1147,100,bodytext,,
-NULL,p209,1148,100,centered,,
-NULL,p209,1149,4,subhead,5. Paṭhamapavāraṇasikkhāpadavaṇṇanā,
-NULL,p209,1150,100,bodytext,,
-NULL,p209,1151,100,bodytext,,
-NULL,p209,1152,100,bodytext,,
-NULL,p209,1153,100,bodytext,,
-NULL,p209,1154,100,bodytext,,
-NULL,p209,1155,100,bodytext,,
-NULL,p209,1156,100,centered,,
-NULL,p209,1157,4,subhead,6. Dutiyapavāraṇasikkhāpadavaṇṇanā,
-NULL,p209,1158,100,bodytext,,
-NULL,p209,1159,100,centered,,
-NULL,p209,1160,4,subhead,7. Vikālabhojanasikkhāpadavaṇṇanā,
-NULL,p209,1161,100,bodytext,,
-NULL,p209,1162,100,bodytext,,
-NULL,p209,1163,100,bodytext,,
-NULL,p209,1164,100,bodytext,,
-NULL,p209,1165,100,bodytext,,
-NULL,p209,1166,100,bodytext,,
-NULL,p209,1167,100,bodytext,,
-NULL,p209,1168,100,bodytext,,
-NULL,p209,1169,100,bodytext,,
-NULL,p209,1170,100,bodytext,,
-NULL,p209,1171,100,centered,,
-NULL,p209,1172,4,subhead,8. Sannidhikārakasikkhāpadavaṇṇanā,
-NULL,p209,1173,100,bodytext,,
-NULL,p209,1174,100,bodytext,,
-NULL,p209,1175,100,bodytext,,
-NULL,p209,1176,100,bodytext,,
-NULL,p209,1177,100,centered,,
-NULL,p209,1178,4,subhead,9. Paṇītabhojanasikkhāpadavaṇṇanā,
-NULL,p209,1179,100,bodytext,,
-NULL,p209,1180,100,bodytext,,
-NULL,p209,1181,100,centered,,
-NULL,p209,1182,4,subhead,10. Dantaponasikkhāpadavaṇṇanā,
-NULL,p209,1183,100,bodytext,,
-NULL,p209,1184,100,bodytext,,
-NULL,p209,1185,100,bodytext,,
-NULL,p209,1186,100,centered,,
-NULL,p209,1187,100,centered,,
-NULL,p209,1188,3,title,5. Acelakavaggo,
-NULL,p209,1189,4,subhead,1. Acelakasikkhāpadavaṇṇanā,
-NULL,p209,1190,100,bodytext,,
-NULL,p209,1191,100,centered,,
-NULL,p209,1192,4,subhead,2. Uyyojanasikkhāpadavaṇṇanā,
-NULL,p209,1193,100,bodytext,,
-NULL,p209,1194,100,centered,,
-NULL,p209,1195,4,subhead,3. Sabhojanasikkhāpadavaṇṇanā,
-NULL,p209,1196,100,bodytext,,
-NULL,p209,1197,100,centered,,
-NULL,p209,1198,4,subhead,4. Rahopaṭicchannasikkhāpadavaṇṇanā,
-NULL,p209,1199,100,bodytext,,
-NULL,p209,1200,100,centered,,
-NULL,p209,1201,4,subhead,5. Rahonisajjasikkhāpadavaṇṇanā,
-NULL,p209,1202,100,bodytext,,
-NULL,p209,1203,4,subhead,6. Cārittasikkhāpadavaṇṇanā,
-NULL,p209,1204,100,bodytext,,
-NULL,p209,1205,100,gatha1,,
-NULL,p209,1206,100,gathalast,,
-NULL,p209,1207,100,gatha1,,
-NULL,p209,1208,100,gathalast,,
-NULL,p209,1209,100,gatha1,,
-NULL,p209,1210,100,gathalast,,
-NULL,p209,1211,100,gatha1,,
-NULL,p209,1212,100,gathalast,,
-NULL,p209,1213,100,gatha1,,
-NULL,p209,1214,100,gathalast,,
-NULL,p209,1215,100,centered,,
-NULL,p209,1216,4,subhead,7. Mahānāmasikkhāpadavaṇṇanā,
-NULL,p209,1217,100,bodytext,,
-NULL,p209,1218,100,centered,,
-NULL,p209,1219,4,subhead,8. Uyyuttasenāsikkhāpadavaṇṇanā,
-NULL,p209,1220,100,bodytext,,
-NULL,p209,1221,100,centered,,
-NULL,p209,1222,4,subhead,9. Senāvāsasikkhāpadavaṇṇanā,
-NULL,p209,1223,100,bodytext,,
-NULL,p209,1224,100,centered,,
-NULL,p209,1225,4,subhead,10. Uyyodhikasikkhāpadavaṇṇanā,
-NULL,p209,1226,100,bodytext,,
-NULL,p209,1227,100,centered,,
-NULL,p209,1228,100,centered,,
-NULL,p209,1229,3,title,6. Surāpānavaggo,
-NULL,p209,1230,4,subhead,1. Surāpānasikkhāpadavaṇṇanā,
-NULL,p209,1231,100,gatha1,,
-NULL,p209,1232,100,gatha2,,
-NULL,p209,1233,100,gatha3,,
-NULL,p209,1234,100,gathalast,,
-NULL,p209,1235,100,gatha1,,
-NULL,p209,1236,100,gatha2,,
-NULL,p209,1237,100,gatha3,,
-NULL,p209,1238,100,gathalast,,
-NULL,p209,1239,100,bodytext,,
-NULL,p209,1240,100,centered,,
-NULL,p209,1241,4,subhead,2. Aṅgulipatodakasikkhāpadavaṇṇanā,
-NULL,p209,1242,100,bodytext,,
-NULL,p209,1243,4,subhead,3. Hasadhammasikkhāpadavaṇṇanā,
-NULL,p209,1244,100,bodytext,,
-NULL,p209,1245,100,gatha1,,
-NULL,p209,1246,100,gathalast,,
-NULL,p209,1247,100,gatha1,,
-NULL,p209,1248,100,gathalast,,
-NULL,p209,1249,100,gatha1,,
-NULL,p209,1250,100,gathalast,,
-NULL,p209,1251,100,centered,,
-NULL,p209,1252,4,subhead,4. Anādariyasikkhāpadavaṇṇanā,
-NULL,p209,1253,100,bodytext,,
-NULL,p209,1254,100,bodytext,,
-NULL,p209,1255,100,centered,,
-NULL,p209,1256,4,subhead,5. Bhiṃsāpanasikkhāpadavaṇṇanā,
-NULL,p209,1257,100,bodytext,,
-NULL,p209,1258,4,subhead,6. Jotisikkhāpadavaṇṇanā,
-NULL,p209,1259,100,bodytext,,
-NULL,p209,1260,100,centered,,
-NULL,p209,1261,4,subhead,7. Nahānasikkhāpadavaṇṇanā,
-NULL,p209,1262,100,bodytext,,
-NULL,p209,1263,4,subhead,8. Dubbaṇṇakaraṇasikkhāpadavaṇṇanā,
-NULL,p209,1264,100,bodytext,,
-NULL,p209,1265,100,centered,,
-NULL,p209,1266,4,subhead,9. Vikappanasikkhāpadavaṇṇanā,
-NULL,p209,1267,100,bodytext,,
-NULL,p209,1268,100,centered,,
-NULL,p209,1269,4,subhead,10. Cīvarāpanidhānasikkhāpadavaṇṇanā,
-NULL,p209,1270,100,bodytext,,
-NULL,p209,1271,100,centered,,
-NULL,p209,1272,100,centered,,
-NULL,p209,1273,3,title,7. Sappāṇakavaggo,
-NULL,p209,1274,4,subhead,1. Sañciccapāṇasikkhāpadavaṇṇanā,
-NULL,p209,1275,100,bodytext,,
-NULL,p209,1276,4,subhead,2. Sappāṇakasikkhāpadavaṇṇanā,
-NULL,p209,1277,100,bodytext,,
-NULL,p209,1278,100,gatha1,,
-NULL,p209,1279,100,gathalast,,
-NULL,p209,1280,100,centered,,
-NULL,p209,1281,4,subhead,3. Ukkoṭanasikkhāpadavaṇṇanā,
-NULL,p209,1282,100,bodytext,,
-NULL,p209,1283,100,centered,,
-NULL,p209,1284,4,subhead,4. Duṭṭhullasikkhāpadavaṇṇanā,
-NULL,p209,1285,100,bodytext,,
-NULL,p209,1286,100,bodytext,,
-NULL,p209,1287,100,centered,,
-NULL,p209,1288,4,subhead,5. Ūnavīsativassasikkhāpadavaṇṇanā,
-NULL,p209,1289,100,bodytext,,
-NULL,p209,1290,100,bodytext,,
-NULL,p209,1291,100,centered,,
-NULL,p209,1292,4,subhead,6. Theyyasatthasikkhāpadavaṇṇanā,
-NULL,p209,1293,100,bodytext,,
-NULL,p209,1294,100,centered,,
-NULL,p209,1295,4,subhead,7. Saṃvidhānasikkhāpadavaṇṇanā,
-NULL,p209,1296,100,bodytext,,
-NULL,p209,1297,100,bodytext,,
-NULL,p209,1298,100,centered,,
-NULL,p209,1299,4,subhead,8. Ariṭṭhasikkhāpadavaṇṇanā,
-NULL,p209,1300,100,bodytext,,
-NULL,p209,1301,100,centered,,
-NULL,p209,1302,4,subhead,9. Ukkhittasambhogasikkhāpadavaṇṇanā,
-NULL,p209,1303,100,bodytext,,
-NULL,p209,1304,100,centered,,
-NULL,p209,1305,4,subhead,10. Kaṇṭakasikkhāpadavaṇṇanā,
-NULL,p209,1306,100,bodytext,,
-NULL,p209,1307,100,centered,,
-NULL,p209,1308,100,centered,,
-NULL,p209,1309,3,title,8. Sahadhammikavaggo,
-NULL,p209,1310,4,subhead,1. Sahadhammikasikkhāpadavaṇṇanā,
-NULL,p209,1311,100,bodytext,,
-NULL,p209,1312,4,subhead,2. Vilekhanasikkhāpadavaṇṇanā,
-NULL,p209,1313,100,bodytext,,
-NULL,p209,1314,100,centered,,
-NULL,p209,1315,4,subhead,3. Mohanasikkhāpadavaṇṇanā,
-NULL,p209,1316,100,bodytext,,
-NULL,p209,1317,4,subhead,4. Pahārasikkhāpadavaṇṇanā,
-NULL,p209,1318,100,bodytext,,
-NULL,p209,1319,100,centered,,
-NULL,p209,1320,4,subhead,5. Talasattikasikkhāpadavaṇṇanā,
-NULL,p209,1321,100,bodytext,,
-NULL,p209,1322,100,centered,,
-NULL,p209,1323,4,subhead,6. Amūlakasikkhāpadavaṇṇanā,
-NULL,p209,1324,100,bodytext,,
-NULL,p209,1325,100,centered,,
-NULL,p209,1326,4,subhead,7. Sañciccasikkhāpadavaṇṇanā,
-NULL,p209,1327,100,bodytext,,
-NULL,p209,1328,100,centered,,
-NULL,p209,1329,4,subhead,8. Upassutisikkhāpadavaṇṇanā,
-NULL,p209,1330,100,bodytext,,
-NULL,p209,1331,100,centered,,
-NULL,p209,1332,4,subhead,9. Kammapaṭibāhanasikkhāpadavaṇṇanā,
-NULL,p209,1333,100,bodytext,,
-NULL,p209,1334,100,centered,,
-NULL,p209,1335,4,subhead,10. Chandaṃadatvāgamanasikkhāpadavaṇṇanā,
-NULL,p209,1336,100,bodytext,,
-NULL,p209,1337,100,centered,,
-NULL,p209,1338,4,subhead,11. Dubbalasikkhāpadavaṇṇanā,
-NULL,p209,1339,100,bodytext,,
-NULL,p209,1340,100,centered,,
-NULL,p209,1341,4,subhead,12. Pariṇāmanasikkhāpadavaṇṇanā,
-NULL,p209,1342,100,bodytext,,
-NULL,p209,1343,100,centered,,
-NULL,p209,1344,100,centered,,
-NULL,p209,1345,3,title,9. Ratanavaggo,
-NULL,p209,1346,4,subhead,1. Antepurasikkhāpadavaṇṇanā,
-NULL,p209,1347,100,bodytext,,
-NULL,p209,1348,100,bodytext,,
-NULL,p209,1349,100,bodytext,,
-NULL,p209,1350,100,centered,,
-NULL,p209,1351,4,subhead,2. Ratanasikkhāpadavaṇṇanā,
-NULL,p209,1352,100,bodytext,,
-NULL,p209,1353,100,bodytext,,
-NULL,p209,1354,100,centered,,
-NULL,p209,1355,4,subhead,3. Vikālagāmappavisanasikkhāpadavaṇṇanā,
-NULL,p209,1356,100,bodytext,,
-NULL,p209,1357,100,centered,,
-NULL,p209,1358,4,subhead,4. Sūcigharasikkhāpadavaṇṇanā,
-NULL,p209,1359,100,bodytext,,
-NULL,p209,1360,100,bodytext,,
-NULL,p209,1361,100,centered,,
-NULL,p209,1362,4,subhead,5. Mañcasikkhāpadavaṇṇanā,
-NULL,p209,1363,100,bodytext,,
-NULL,p209,1364,100,centered,,
-NULL,p209,1365,4,subhead,6. Tūlonaddhasikkhāpadavaṇṇanā,
-NULL,p209,1366,100,bodytext,,
-NULL,p209,1367,100,centered,,
-NULL,p209,1368,4,subhead,7. Nisīdanasikkhāpadavaṇṇanā,
-NULL,p209,1369,100,bodytext,,
-NULL,p209,1370,100,centered,,
-NULL,p209,1371,4,subhead,8. Kaṇḍupaṭicchādisikkhāpadavaṇṇanā,
-NULL,p209,1372,100,bodytext,,
-NULL,p209,1373,100,centered,,
-NULL,p209,1374,4,subhead,9. Vassikasāṭikasikkhāpadavaṇṇanā,
-NULL,p209,1375,100,bodytext,,
-NULL,p209,1376,100,centered,,
-NULL,p209,1377,4,subhead,10. Nandattherasikkhāpadavaṇṇanā,
-NULL,p209,1378,100,bodytext,,
-NULL,p209,1379,100,centered,,
-NULL,p209,1380,100,centered,,
-NULL,p209,1381,100,centered,,
-NULL,p209,1382,4,subhead,6. Pāṭidesanīyakaṇḍo,
-NULL,p209,1383,4,subhead,1. Paṭhamapāṭidesanīyasikkhāpadavaṇṇanā,
-NULL,p209,1384,100,bodytext,,
-NULL,p209,1385,100,centered,,
-NULL,p209,1386,4,subhead,2. Dutiyapāṭidesanīyasikkhāpadavaṇṇanā,
-NULL,p209,1387,100,bodytext,,
-NULL,p209,1388,100,centered,,
-NULL,p209,1389,100,bodytext,,
-NULL,p209,1390,100,centered,,
-NULL,p209,1391,4,subhead,7. Sekhiyakaṇḍo,
-NULL,p209,1392,4,subhead,1. Parimaṇḍalavaggavaṇṇanā,
-NULL,p209,1393,100,bodytext,,
-NULL,p209,1394,100,bodytext,,
-NULL,p209,1395,100,bodytext,,
-NULL,p209,1396,100,centered,,
-NULL,p209,1397,4,subhead,2. Ujjagghikavaggavaṇṇanā,
-NULL,p209,1398,100,bodytext,,
-NULL,p209,1399,100,bodytext,,
-NULL,p209,1400,100,centered,,
-NULL,p209,1401,4,subhead,3. Khambhakatavaggavaṇṇanā,
-NULL,p209,1402,100,bodytext,,
-NULL,p209,1403,100,bodytext,,
-NULL,p209,1404,100,centered,,
-NULL,p209,1405,4,subhead,4. Sakkaccavaggavaṇṇanā,
-NULL,p209,1406,100,bodytext,,
-NULL,p209,1407,100,centered,,
-NULL,p209,1408,4,subhead,5. Kabaḷavaggavaṇṇanā,
-NULL,p209,1409,100,bodytext,,
-NULL,p209,1410,100,bodytext,,
-NULL,p209,1411,100,centered,,
-NULL,p209,1412,4,subhead,6. Surusuruvaggavaṇṇanā,
-NULL,p209,1413,100,bodytext,,
-NULL,p209,1414,100,bodytext,,
-NULL,p209,1415,100,bodytext,,
-NULL,p209,1416,100,bodytext,,
-NULL,p209,1417,100,centered,,
-NULL,p209,1418,4,subhead,7. Pādukavaggavaṇṇanā,
-NULL,p209,1419,100,bodytext,,
-NULL,p209,1420,100,gathalast,,
-NULL,p209,1421,100,bodytext,,
-NULL,p209,1422,100,bodytext,,
-NULL,p209,1423,100,centered,,
-NULL,p209,1424,4,subhead,Pakiṇṇakavaṇṇanā,
-NULL,p209,1425,100,bodytext,,
-NULL,p209,1426,100,centered,,
-NULL,p209,1427,100,centered,,
-NULL,p209,1428,4,subhead,8. Sattādhikaraṇasamathavaṇṇanā,
-NULL,p209,1429,100,bodytext,,
-NULL,p209,1430,100,centered,,
-NULL,p209,1431,100,centered,,
-NULL,p209,1432,100,centered,,
-NULL,p209,1433,1,book,Bhikkhunīvibhaṅgavaṇṇanā,比库尼分别详解
-NULL,p209,1434,4,subhead,1. Pārājikakaṇḍavaṇṇanā,
-NULL,p209,1435,3,title,Ganthārambhavaṇṇanā,
-NULL,p209,1436,100,gatha1,,
-NULL,p209,1437,100,gathalast,,
-NULL,p209,1438,100,bodytext,,
-NULL,p209,1439,100,centered,,
-NULL,p209,1440,4,subhead,1. Paṭhamapārājikasikkhāpadavaṇṇanā,
-NULL,p209,1441,100,bodytext,,
-NULL,p209,1442,100,bodytext,,
-NULL,p209,1443,100,gatha1,,
-NULL,p209,1444,100,gatha2,,
-NULL,p209,1445,100,gatha3,,
-NULL,p209,1446,100,gathalast,,
-NULL,p209,1447,100,bodytext,,
-NULL,p209,1448,100,bodytext,,
-NULL,p209,1449,100,bodytext,,
-NULL,p209,1450,100,centered,,
-NULL,p209,1451,4,subhead,2. Dutiyapārājikasikkhāpadavaṇṇanā,
-NULL,p209,1452,100,bodytext,,
-NULL,p209,1453,100,bodytext,,
-NULL,p209,1454,100,centered,,
-NULL,p209,1455,4,subhead,3. Tatiyapārājikasikkhāpadavaṇṇanā,
-NULL,p209,1456,100,bodytext,,
-NULL,p209,1457,100,centered,,
-NULL,p209,1458,4,subhead,4. Catutthapārājikasikkhāpadavaṇṇanā,
-NULL,p209,1459,100,bodytext,,
-NULL,p209,1460,100,bodytext,,
-NULL,p209,1461,100,centered,,
-NULL,p209,1462,100,centered,,
-NULL,p209,1463,4,subhead,2. Saṅghādisesakaṇḍavaṇṇanā,
-NULL,p209,1464,4,subhead,1. Paṭhamasaṅghādisesasikkhāpadavaṇṇanā,
-NULL,p209,1465,100,bodytext,,
-NULL,p209,1466,100,centered,,
-NULL,p209,1467,4,subhead,2. Dutiyasaṅghādisesasikkhāpadavaṇṇanā,
-NULL,p209,1468,100,bodytext,,
-NULL,p209,1469,100,centered,,
-NULL,p209,1470,4,subhead,3. Tatiyasaṅghādisesasikkhāpadavaṇṇanā,
-NULL,p209,1471,100,bodytext,,
-NULL,p209,1472,100,bodytext,,
-NULL,p209,1473,100,bodytext,,
-NULL,p209,1474,100,bodytext,,
-NULL,p209,1475,100,bodytext,,
-NULL,p209,1476,100,centered,,
-NULL,p209,1477,4,subhead,4. Catutthasaṅghādisesasikkhāpadavaṇṇanā,
-NULL,p209,1478,100,bodytext,,
-NULL,p209,1479,100,bodytext,,
-NULL,p209,1480,100,centered,,
-NULL,p209,1481,4,subhead,5. Pañcamasaṅghādisesasikkhāpadavaṇṇanā,
-NULL,p209,1482,100,bodytext,,
-NULL,p209,1483,100,centered,,
-NULL,p209,1484,4,subhead,6. Chaṭṭhasaṅghādisesasikkhāpadavaṇṇanā,
-NULL,p209,1485,100,bodytext,,
-NULL,p209,1486,100,centered,,
-NULL,p209,1487,4,subhead,7. Sattamasaṅghādisesasikkhāpadavaṇṇanā,
-NULL,p209,1488,100,bodytext,,
-NULL,p209,1489,100,centered,,
-NULL,p209,1490,4,subhead,8. Aṭṭhamasaṅghādisesasikkhāpadavaṇṇanā,
-NULL,p209,1491,100,bodytext,,
-NULL,p209,1492,100,centered,,
-NULL,p209,1493,4,subhead,9. Navamasaṅghādisesasikkhāpadavaṇṇanā,
-NULL,p209,1494,100,bodytext,,
-NULL,p209,1495,100,centered,,
-NULL,p209,1496,100,centered,,
-NULL,p209,1497,4,subhead,3. Nissaggiyakaṇḍavaṇṇanā,
-NULL,p209,1498,4,subhead,1. Paṭhamanissaggiyapācittiyasikkhāpadavaṇṇanā,
-NULL,p209,1499,100,bodytext,,
-NULL,p209,1500,4,subhead,2. Dutiyanissaggiyapācittiyasikkhāpadavaṇṇanā,
-NULL,p209,1501,100,bodytext,,
-NULL,p209,1502,100,bodytext,,
-NULL,p209,1503,100,centered,,
-NULL,p209,1504,4,subhead,3. Tatiyanissaggiyapācittiyasikkhāpadavaṇṇanā,
-NULL,p209,1505,100,bodytext,,
-NULL,p209,1506,100,centered,,
-NULL,p209,1507,4,subhead,4. Catutthanissaggiyapācittiyasikkhāpadavaṇṇanā,
-NULL,p209,1508,100,bodytext,,
-NULL,p209,1509,100,centered,,
-NULL,p209,1510,4,subhead,5. Pañcamanissaggiyapācittiyasikkhāpadavaṇṇanā,
-NULL,p209,1511,100,bodytext,,
-NULL,p209,1512,100,centered,,
-NULL,p209,1513,4,subhead,6. Chaṭṭhanissaggiyapācittiyasikkhāpadavaṇṇanā,
-NULL,p209,1514,100,bodytext,,
-NULL,p209,1515,100,centered,,
-NULL,p209,1516,4,subhead,7. Sattamanissaggiyapācittiyasikkhāpadavaṇṇanā,
-NULL,p209,1517,100,bodytext,,
-NULL,p209,1518,100,bodytext,,
-NULL,p209,1519,100,centered,,
-NULL,p209,1520,4,subhead,8. Aṭṭhamanissaggiyapācittiyasikkhāpadavaṇṇanā,
-NULL,p209,1521,100,bodytext,,
-NULL,p209,1522,100,centered,,
-NULL,p209,1523,4,subhead,9. Navamanissaggiyapācittiyasikkhāpadavaṇṇanā,
-NULL,p209,1524,100,bodytext,,
-NULL,p209,1525,100,centered,,
-NULL,p209,1526,4,subhead,10. Dasamanissaggiyapācittiyasikkhāpadavaṇṇanā,
-NULL,p209,1527,100,bodytext,,
-NULL,p209,1528,100,centered,,
-NULL,p209,1529,4,subhead,11. Ekādasamanissaggiyapācittiyasikkhāpadavaṇṇanā,
-NULL,p209,1530,100,bodytext,,
-NULL,p209,1531,100,centered,,
-NULL,p209,1532,100,centered,,
-NULL,p209,1533,100,centered,,
-NULL,p209,1534,4,subhead,4. Pācittiyakaṇḍavaṇṇanā,
-NULL,p209,1535,3,title,1. Lasuṇavaggo,
-NULL,p209,1536,4,subhead,1. Paṭhamalasuṇasikkhāpadavaṇṇanā,
-NULL,p209,1537,100,bodytext,,
-NULL,p209,1538,100,centered,,
-NULL,p209,1539,4,subhead,2. Dutiyasikkhāpadavaṇṇanā,
-NULL,p209,1540,100,bodytext,,
-NULL,p209,1541,100,centered,,
-NULL,p209,1542,100,bodytext,,
-NULL,p209,1543,4,subhead,5. Pañcamasikkhāpadavaṇṇanā,
-NULL,p209,1544,100,bodytext,,
-NULL,p209,1545,100,centered,,
-NULL,p209,1546,100,bodytext,,
-NULL,p209,1547,4,subhead,7. Sattamasikkhāpadavaṇṇanā,
-NULL,p209,1548,100,bodytext,,
-NULL,p209,1549,100,bodytext,,
-NULL,p209,1550,100,centered,,
-NULL,p209,1551,4,subhead,8. Aṭṭhamasikkhāpadavaṇṇanā,
-NULL,p209,1552,100,bodytext,,
-NULL,p209,1553,100,bodytext,,
-NULL,p209,1554,100,centered,,
-NULL,p209,1555,4,subhead,9. Navamasikkhāpadavaṇṇanā,
-NULL,p209,1556,100,bodytext,,
-NULL,p209,1557,100,centered,,
-NULL,p209,1558,4,subhead,10. Dasamasikkhāpadavaṇṇanā,
-NULL,p209,1559,100,bodytext,,
-NULL,p209,1560,100,bodytext,,
-NULL,p209,1561,100,bodytext,,
-NULL,p209,1562,100,centered,,
-NULL,p209,1563,100,centered,,
-NULL,p209,1564,3,title,2. Andhakāravaggavaṇṇanā,
-NULL,p209,1565,4,subhead,1. Paṭhamasikkhāpadavaṇṇanā,
-NULL,p209,1566,100,bodytext,,
-NULL,p209,1567,100,centered,,
-NULL,p209,1568,4,subhead,2-3-4. Dutiyatatiyacatutthasikkhāpadavaṇṇanā,
-NULL,p209,1569,100,bodytext,,
-NULL,p209,1570,100,bodytext,,
-NULL,p209,1571,100,centered,,
-NULL,p209,1572,4,subhead,5. Pañcamasikkhāpadavaṇṇanā,
-NULL,p209,1573,100,bodytext,,
-NULL,p209,1574,100,centered,,
-NULL,p209,1575,4,subhead,6. Chaṭṭhasikkhāpadavaṇṇanā,
-NULL,p209,1576,100,bodytext,,
-NULL,p209,1577,100,centered,,
-NULL,p209,1578,4,subhead,7. Sattamasikkhāpadavaṇṇanā,
-NULL,p209,1579,100,bodytext,,
-NULL,p209,1580,100,centered,,
-NULL,p209,1581,4,subhead,8. Aṭṭhamasikkhāpadavaṇṇanā,
-NULL,p209,1582,100,bodytext,,
-NULL,p209,1583,100,centered,,
-NULL,p209,1584,4,subhead,9. Navamasikkhāpadavaṇṇanā,
-NULL,p209,1585,100,bodytext,,
-NULL,p209,1586,100,centered,,
-NULL,p209,1587,4,subhead,10. Dasamasikkhāpadavaṇṇanā,
-NULL,p209,1588,100,bodytext,,
-NULL,p209,1589,100,centered,,
-NULL,p209,1590,100,centered,,
-NULL,p209,1591,3,title,3. Naggavaggavaṇṇanā,
-NULL,p209,1592,4,subhead,1-2. Paṭhamadutiyasikkhāpadavaṇṇanā,
-NULL,p209,1593,100,bodytext,,
-NULL,p209,1594,100,centered,,
-NULL,p209,1595,4,subhead,3. Tatiyasikkhāpadavaṇṇanā,
-NULL,p209,1596,100,bodytext,,
-NULL,p209,1597,100,centered,,
-NULL,p209,1598,4,subhead,4. Catutthasikkhāpadavaṇṇanā,
-NULL,p209,1599,100,bodytext,,
-NULL,p209,1600,100,centered,,
-NULL,p209,1601,4,subhead,5. Pañcamasikkhāpadavaṇṇanā,
-NULL,p209,1602,100,bodytext,,
-NULL,p209,1603,100,centered,,
-NULL,p209,1604,100,bodytext,,
-NULL,p209,1605,4,subhead,8. Aṭṭhamasikkhāpadavaṇṇanā,
-NULL,p209,1606,100,bodytext,,
-NULL,p209,1607,100,centered,,
-NULL,p209,1608,4,subhead,9. Navamasikkhāpadavaṇṇanā,
-NULL,p209,1609,100,bodytext,,
-NULL,p209,1610,100,centered,,
-NULL,p209,1611,4,subhead,10. Dasamasikkhāpadavaṇṇanā,
-NULL,p209,1612,100,bodytext,,
-NULL,p209,1613,100,centered,,
-NULL,p209,1614,100,centered,,
-NULL,p209,1615,3,title,4. Tuvaṭṭavaggavaṇṇanā,
-NULL,p209,1616,4,subhead,1. Paṭhamasikkhāpadavaṇṇanā,
-NULL,p209,1617,100,bodytext,,
-NULL,p209,1618,100,centered,,
-NULL,p209,1619,4,subhead,2. Dutiyasikkhāpadavaṇṇanā,
-NULL,p209,1620,100,bodytext,,
-NULL,p209,1621,100,centered,,
-NULL,p209,1622,4,subhead,3. Tatiyasikkhāpadavaṇṇanā,
-NULL,p209,1623,100,bodytext,,
-NULL,p209,1624,100,centered,,
-NULL,p209,1625,100,bodytext,,
-NULL,p209,1626,4,subhead,6. Chaṭṭhasikkhāpadavaṇṇanā,
-NULL,p209,1627,100,bodytext,,
-NULL,p209,1628,100,centered,,
-NULL,p209,1629,100,bodytext,,
-NULL,p209,1630,4,subhead,9. Navamasikkhāpadavaṇṇanā,
-NULL,p209,1631,100,bodytext,,
-NULL,p209,1632,100,bodytext,,
-NULL,p209,1633,100,bodytext,,
-NULL,p209,1634,100,centered,,
-NULL,p209,1635,4,subhead,10. Dasamasikkhāpadavaṇṇanā,
-NULL,p209,1636,100,bodytext,,
-NULL,p209,1637,100,centered,,
-NULL,p209,1638,100,centered,,
-NULL,p209,1639,3,title,5. Cittāgāravaggavaṇṇanā,
-NULL,p209,1640,4,subhead,1. Paṭhamasikkhāpadavaṇṇanā,
-NULL,p209,1641,100,bodytext,,
-NULL,p209,1642,100,centered,,
-NULL,p209,1643,4,subhead,2. Dutiyasikkhāpadavaṇṇanā,
-NULL,p209,1644,100,bodytext,,
-NULL,p209,1645,100,centered,,
-NULL,p209,1646,4,subhead,3. Tatiyasikkhāpadavaṇṇanā,
-NULL,p209,1647,100,bodytext,,
-NULL,p209,1648,100,centered,,
-NULL,p209,1649,4,subhead,4. Catutthasikkhāpadavaṇṇanā,
-NULL,p209,1650,100,bodytext,,
-NULL,p209,1651,100,centered,,
-NULL,p209,1652,100,bodytext,,
-NULL,p209,1653,4,subhead,6. Chaṭṭhasikkhāpadavaṇṇanā,
-NULL,p209,1654,100,bodytext,,
-NULL,p209,1655,100,centered,,
-NULL,p209,1656,100,bodytext,,
-NULL,p209,1657,4,subhead,9. Navamasikkhāpadavaṇṇanā,
-NULL,p209,1658,100,bodytext,,
-NULL,p209,1659,100,centered,,
-NULL,p209,1660,100,bodytext,,
-NULL,p209,1661,100,centered,,
-NULL,p209,1662,3,title,6. Ārāmavaggavaṇṇanā,
-NULL,p209,1663,100,bodytext,,
-NULL,p209,1664,4,subhead,2. Dutiyasikkhāpadavaṇṇanā,
-NULL,p209,1665,100,bodytext,,
-NULL,p209,1666,100,bodytext,,
-NULL,p209,1667,100,centered,,
-NULL,p209,1668,100,bodytext,,
-NULL,p209,1669,4,subhead,4. Catutthasikkhāpadavaṇṇanā,
-NULL,p209,1670,100,bodytext,,
-NULL,p209,1671,100,centered,,
-NULL,p209,1672,100,centered,,
-NULL,p209,1673,3,title,7. Gabbhinivaggavaṇṇanā,
-NULL,p209,1674,4,subhead,1. Paṭhamādisikkhāpadavaṇṇanā,
-NULL,p209,1675,100,bodytext,,
-NULL,p209,1676,100,bodytext,,
-NULL,p209,1677,100,bodytext,,
-NULL,p209,1678,100,bodytext,,
-NULL,p209,1679,100,bodytext,,
-NULL,p209,1680,100,centered,,
-NULL,p209,1681,100,centered,,
-NULL,p209,1682,3,title,8. Kumāribhūtavaggavaṇṇanā,
-NULL,p209,1683,4,subhead,2. Dutiyādisikkhāpadavaṇṇanā,
-NULL,p209,1684,100,bodytext,,
-NULL,p209,1685,100,bodytext,,
-NULL,p209,1686,100,bodytext,,
-NULL,p209,1687,100,bodytext,,
-NULL,p209,1688,100,bodytext,,
-NULL,p209,1689,100,bodytext,,
-NULL,p209,1690,100,gatha1,,
-NULL,p209,1691,100,gathalast,,
-NULL,p209,1692,100,bodytext,,
-NULL,p209,1693,100,centered,,
-NULL,p209,1694,100,centered,,
-NULL,p209,1695,3,title,9. Chattupāhanavaggavaṇṇanā,
-NULL,p209,1696,4,subhead,11. Ekādasamādisikkhāpadavaṇṇanā,
-NULL,p209,1697,100,bodytext,,
-NULL,p209,1698,100,bodytext,,
-NULL,p209,1699,100,bodytext,,
-NULL,p209,1700,100,centered,,
-NULL,p209,1701,100,centered,,
-NULL,p209,1702,4,subhead,Nigamanavaṇṇanā,
-NULL,p209,1703,100,bodytext,,
-NULL,p209,1704,100,centered,,
-NULL,p209,1705,100,centered,,
-NULL,p209,1706,100,centered,,
-NULL,p209,1707,100,centered,,
-NULL,p209,1708,2,chapter,Mahāvaggavaṇṇanā,大品详解
-NULL,p209,1709,4,subhead,1. Mahākhandhakavaṇṇanā,
-NULL,p209,1710,4,subhead,Bodhikathāvaṇṇanā,
-NULL,p209,1711,100,gatha1,,
-NULL,p209,1712,100,gathalast,,
-NULL,p209,1713,100,bodytext,,
-NULL,p209,1714,100,bodytext,,
-NULL,p209,1715,100,bodytext,,
-NULL,p209,1716,100,bodytext,,
-NULL,p209,1717,100,bodytext,,
-NULL,p209,1718,100,bodytext,,
-NULL,p209,1719,100,bodytext,,
-NULL,p209,1720,100,bodytext,,
-NULL,p209,1721,100,bodytext,,
-NULL,p209,1722,4,subhead,Ajapālakathāvaṇṇanā,
-NULL,p209,1723,100,bodytext,,
-NULL,p209,1724,100,centered,,
-NULL,p209,1725,4,subhead,Mucalindakathāvaṇṇanā,
-NULL,p209,1726,100,bodytext,,
-NULL,p209,1727,100,centered,,
-NULL,p209,1728,4,subhead,Rājāyatanakathāvaṇṇanā,
-NULL,p209,1729,100,bodytext,,
-NULL,p209,1730,100,centered,,
-NULL,p209,1731,4,subhead,Brahmayācanakathāvaṇṇanā,
-NULL,p209,1732,100,bodytext,,
-NULL,p209,1733,100,bodytext,,
-NULL,p209,1734,100,bodytext,,
-NULL,p209,1735,100,bodytext,,
-NULL,p209,1736,100,bodytext,,
-NULL,p209,1737,100,centered,,
-NULL,p209,1738,4,subhead,Pañcavaggiyakathāvaṇṇanā,
-NULL,p209,1739,100,bodytext,,
-NULL,p209,1740,100,bodytext,,
-NULL,p209,1741,100,bodytext,,
-NULL,p209,1742,100,bodytext,,
-NULL,p209,1743,100,bodytext,,
-NULL,p209,1744,100,bodytext,,
-NULL,p209,1745,100,bodytext,,
-NULL,p209,1746,100,bodytext,,
-NULL,p209,1747,100,bodytext,,
-NULL,p209,1748,100,bodytext,,
-NULL,p209,1749,100,gatha1,,
-NULL,p209,1750,100,gathalast,,
-NULL,p209,1751,100,gatha1,,
-NULL,p209,1752,100,gathalast,,
-NULL,p209,1753,100,gatha1,,
-NULL,p209,1754,100,gathalast,,
-NULL,p209,1755,100,gatha1,,
-NULL,p209,1756,100,gathalast,,
-NULL,p209,1757,100,gatha1,,
-NULL,p209,1758,100,gatha2,,
-NULL,p209,1759,100,gatha3,,
-NULL,p209,1760,100,gathalast,,
-NULL,p209,1761,100,gatha1,,
-NULL,p209,1762,100,gatha2,,
-NULL,p209,1763,100,gatha3,,
-NULL,p209,1764,100,gathalast,,
-NULL,p209,1765,100,gatha1,,
-NULL,p209,1766,100,gatha2,,
-NULL,p209,1767,100,gatha3,,
-NULL,p209,1768,100,gatha2,,
-NULL,p209,1769,100,gatha1,,
-NULL,p209,1770,100,gathalast,,
-NULL,p209,1771,100,gatha1,,
-NULL,p209,1772,100,gatha2,,
-NULL,p209,1773,100,gatha3,,
-NULL,p209,1774,100,gathalast,,
-NULL,p209,1775,100,bodytext,,
-NULL,p209,1776,100,bodytext,,
-NULL,p209,1777,100,bodytext,,
-NULL,p209,1778,100,bodytext,,
-NULL,p209,1779,100,bodytext,,
-NULL,p209,1780,100,bodytext,,
-NULL,p209,1781,100,bodytext,,
-NULL,p209,1782,100,centered,,
-NULL,p209,1783,4,subhead,Pabbajjākathāvaṇṇanā,
-NULL,p209,1784,100,bodytext,,
-NULL,p209,1785,100,bodytext,,
-NULL,p209,1786,100,bodytext,,
-NULL,p209,1787,100,bodytext,,
-NULL,p209,1788,100,bodytext,,
-NULL,p209,1789,100,bodytext,,
-NULL,p209,1790,100,bodytext,,
-NULL,p209,1791,100,bodytext,,
-NULL,p209,1792,100,gatha1,,
-NULL,p209,1793,100,gathalast,,
-NULL,p209,1794,100,bodytext,,
-NULL,p209,1795,100,gatha1,,
-NULL,p209,1796,100,gathalast,,
-NULL,p209,1797,100,bodytext,,
-NULL,p209,1798,100,centered,,
-NULL,p209,1799,4,subhead,Dutiyamārakathāvaṇṇanā,
-NULL,p209,1800,100,bodytext,,
-NULL,p209,1801,100,centered,,
-NULL,p209,1802,4,subhead,Uruvelapāṭihāriyakathāvaṇṇanā,
-NULL,p209,1803,100,bodytext,,
-NULL,p209,1804,100,bodytext,,
-NULL,p209,1805,100,bodytext,,
-NULL,p209,1806,100,bodytext,,
-NULL,p209,1807,100,bodytext,,
-NULL,p209,1808,100,bodytext,,
-NULL,p209,1809,100,centered,,
-NULL,p209,1810,4,subhead,Bimbisārasamāgamakathāvaṇṇanā,
-NULL,p209,1811,100,bodytext,,
-NULL,p209,1812,100,bodytext,,
-NULL,p209,1813,100,gatha1,,
-NULL,p209,1814,100,gathalast,,
-NULL,p209,1815,100,gatha1,,
-NULL,p209,1816,100,gathalast,,
-NULL,p209,1817,100,bodytext,,
-NULL,p209,1818,100,centered,,
-NULL,p209,1819,4,subhead,Sāriputtamoggallānapabbajjākathāvaṇṇanā,
-NULL,p209,1820,100,bodytext,,
-NULL,p209,1821,100,bodytext,,
-NULL,p209,1822,100,bodytext,,
-NULL,p209,1823,100,gatha1,,
-NULL,p209,1824,100,gatha2,,
-NULL,p209,1825,100,gatha3,,
-NULL,p209,1826,100,gathalast,,
-NULL,p209,1827,100,gatha1,,
-NULL,p209,1828,100,gatha2,,
-NULL,p209,1829,100,gatha3,,
-NULL,p209,1830,100,gathalast,,
-NULL,p209,1831,100,centered,,
-NULL,p209,1832,4,subhead,Upajjhāyavattakathāvaṇṇanā,
-NULL,p209,1833,100,bodytext,,
-NULL,p209,1834,100,bodytext,,
-NULL,p209,1835,100,bodytext,,
-NULL,p209,1836,100,bodytext,,
-NULL,p209,1837,100,centered,,
-NULL,p209,1838,4,subhead,Nasammāvattanādikathāvaṇṇanā,
-NULL,p209,1839,100,bodytext,,
-NULL,p209,1840,100,centered,,
-NULL,p209,1841,4,subhead,Rādhabrāhmaṇavatthukathāvaṇṇanā,
-NULL,p209,1842,100,bodytext,,
-NULL,p209,1843,100,centered,,
-NULL,p209,1844,4,subhead,Ācariyavattakathāvaṇṇanā,
-NULL,p209,1845,100,bodytext,,
-NULL,p209,1846,100,centered,,
-NULL,p209,1847,4,subhead,Nissayapaṭippassaddhikathāvaṇṇanā,
-NULL,p209,1848,100,bodytext,,
-NULL,p209,1849,100,bodytext,,
-NULL,p209,1850,100,bodytext,,
-NULL,p209,1851,100,centered,,
-NULL,p209,1852,4,subhead,Upasampādetabbapañcakakathāvaṇṇanā,
-NULL,p209,1853,100,bodytext,,
-NULL,p209,1854,100,centered,,
-NULL,p209,1855,4,subhead,Aññatitthiyapubbavatthukathāvaṇṇanā,
-NULL,p209,1856,100,bodytext,,
-NULL,p209,1857,100,centered,,
-NULL,p209,1858,4,subhead,Pañcābādhavatthukathāvaṇṇanā,
-NULL,p209,1859,100,bodytext,,
-NULL,p209,1860,100,centered,,
-NULL,p209,1861,4,subhead,Coravatthukathāvaṇṇanā,
-NULL,p209,1862,100,bodytext,,
-NULL,p209,1863,100,centered,,
-NULL,p209,1864,4,subhead,Iṇāyikadāsavatthukathāvaṇṇanā,
-NULL,p209,1865,100,bodytext,,
-NULL,p209,1866,100,bodytext,,
-NULL,p209,1867,100,centered,,
-NULL,p209,1868,4,subhead,Kammārabhaṇḍuvatthādikathāvaṇṇanā,
-NULL,p209,1869,100,bodytext,,
-NULL,p209,1870,100,bodytext,,
-NULL,p209,1871,100,centered,,
-NULL,p209,1872,4,subhead,Rāhulavatthukathāvaṇṇanā,
-NULL,p209,1873,100,bodytext,,
-NULL,p209,1874,100,gatha1,,
-NULL,p209,1875,100,gatha2,,
-NULL,p209,1876,100,gatha3,,
-NULL,p209,1877,100,gathalast,,
-NULL,p209,1878,100,bodytext,,
-NULL,p209,1879,100,gatha1,,
-NULL,p209,1880,100,gatha2,,
-NULL,p209,1881,100,gatha3,,
-NULL,p209,1882,100,gathalast,,
-NULL,p209,1883,100,gatha1,,
-NULL,p209,1884,100,gatha2,,
-NULL,p209,1885,100,gatha3,,
-NULL,p209,1886,100,gathalast,,
-NULL,p209,1887,100,gatha1,,
-NULL,p209,1888,100,gatha2,,
-NULL,p209,1889,100,gatha3,,
-NULL,p209,1890,100,gathalast,,
-NULL,p209,1891,100,gatha1,,
-NULL,p209,1892,100,gatha2,,
-NULL,p209,1893,100,gatha3,,
-NULL,p209,1894,100,gathalast,,
-NULL,p209,1895,100,gatha1,,
-NULL,p209,1896,100,gatha2,,
-NULL,p209,1897,100,gatha3,,
-NULL,p209,1898,100,gathalast,,
-NULL,p209,1899,100,gatha1,,
-NULL,p209,1900,100,gatha2,,
-NULL,p209,1901,100,gatha3,,
-NULL,p209,1902,100,gathalast,,
-NULL,p209,1903,100,gatha1,,
-NULL,p209,1904,100,gatha2,,
-NULL,p209,1905,100,gatha3,,
-NULL,p209,1906,100,gathalast,,
-NULL,p209,1907,100,gatha1,,
-NULL,p209,1908,100,gatha2,,
-NULL,p209,1909,100,gatha3,,
-NULL,p209,1910,100,gathalast,,
-NULL,p209,1911,100,gatha1,,
-NULL,p209,1912,100,gatha2,,
-NULL,p209,1913,100,gatha3,,
-NULL,p209,1914,100,gathalast,,
-NULL,p209,1915,100,bodytext,,
-NULL,p209,1916,100,bodytext,,
-NULL,p209,1917,100,bodytext,,
-NULL,p209,1918,100,bodytext,,
-NULL,p209,1919,100,centered,,
-NULL,p209,1920,4,subhead,Sikkhāpadadaṇḍakammavatthukathāvaṇṇanā,
-NULL,p209,1921,100,bodytext,,
-NULL,p209,1922,100,centered,,
-NULL,p209,1923,4,subhead,Anāpucchāvaraṇavatthuādikathāvaṇṇanā,
-NULL,p209,1924,100,bodytext,,
-NULL,p209,1925,100,centered,,
-NULL,p209,1926,4,subhead,Paṇḍakavatthukathāvaṇṇanā,
-NULL,p209,1927,100,bodytext,,
-NULL,p209,1928,100,bodytext,,
-NULL,p209,1929,100,centered,,
-NULL,p209,1930,4,subhead,Theyyasaṃvāsakavatthukathāvaṇṇanā,
-NULL,p209,1931,100,bodytext,,
-NULL,p209,1932,100,bodytext,,
-NULL,p209,1933,100,centered,,
-NULL,p209,1934,4,subhead,Titthiyapakkantakakathāvaṇṇanā,
-NULL,p209,1935,100,bodytext,,
-NULL,p209,1936,100,centered,,
-NULL,p209,1937,4,subhead,Tiracchānagatavatthukathāvaṇṇanā,
-NULL,p209,1938,100,bodytext,,
-NULL,p209,1939,100,centered,,
-NULL,p209,1940,4,subhead,Mātughātakādivatthukathāvaṇṇanā,
-NULL,p209,1941,100,bodytext,,
-NULL,p209,1942,100,centered,,
-NULL,p209,1943,4,subhead,Ubhatobyañjanakavatthukathāvaṇṇanā,
-NULL,p209,1944,100,bodytext,,
-NULL,p209,1945,100,centered,,
-NULL,p209,1946,4,subhead,Anupajjhāyakādivatthukathāvaṇṇanā,
-NULL,p209,1947,100,bodytext,,
-NULL,p209,1948,100,bodytext,,
-NULL,p209,1949,4,subhead,Apattakādivatthukathāvaṇṇanā,
-NULL,p209,1950,100,bodytext,,
-NULL,p209,1951,4,subhead,Hatthacchinnādivatthukathāvaṇṇanā,
-NULL,p209,1952,100,bodytext,,
-NULL,p209,1953,100,bodytext,,
-NULL,p209,1954,100,bodytext,,
-NULL,p209,1955,100,bodytext,,
-NULL,p209,1956,100,gatha1,,
-NULL,p209,1957,100,gathalast,,
-NULL,p209,1958,100,bodytext,,
-NULL,p209,1959,100,bodytext,,
-NULL,p209,1960,100,gatha1,,
-NULL,p209,1961,100,gathalast,,
-NULL,p209,1962,100,bodytext,,
-NULL,p209,1963,100,centered,,
-NULL,p209,1964,4,subhead,Alajjīnissayavatthukathāvaṇṇanā,
-NULL,p209,1965,100,bodytext,,
-NULL,p209,1966,4,subhead,Gamikādinissayavatthukathāvaṇṇanā,
-NULL,p209,1967,100,bodytext,,
-NULL,p209,1968,100,bodytext,,
-NULL,p209,1969,100,bodytext,,
-NULL,p209,1970,100,bodytext,,
-NULL,p209,1971,4,subhead,Upasampadāvidhikathāvaṇṇanā,
-NULL,p209,1972,100,bodytext,,
-NULL,p209,1973,4,subhead,Cattāronissayādikathāvaṇṇanā,
-NULL,p209,1974,100,bodytext,,
-NULL,p209,1975,100,bodytext,,
-NULL,p209,1976,100,gatha1,,
-NULL,p209,1977,100,gathalast,,
-NULL,p209,1978,100,unindented,,
-NULL,p209,1979,100,gatha1,,
-NULL,p209,1980,100,gatha2,,
-NULL,p209,1981,100,gatha3,,
-NULL,p209,1982,100,gathalast,,
-NULL,p209,1983,100,centered,,
-NULL,p209,1984,4,subhead,2. Uposathakkhandhakavaṇṇanā,
-NULL,p209,1985,4,subhead,Sannipātānujānanādikathāvaṇṇanā,
-NULL,p209,1986,100,bodytext,,
-NULL,p209,1987,100,bodytext,,
-NULL,p209,1988,100,bodytext,,
-NULL,p209,1989,100,bodytext,,
-NULL,p209,1990,100,bodytext,,
-NULL,p209,1991,100,bodytext,,
-NULL,p209,1992,100,bodytext,,
-NULL,p209,1993,100,bodytext,,
-NULL,p209,1994,4,subhead,Sīmānujānanakathāvaṇṇanā,
-NULL,p209,1995,100,bodytext,,
-NULL,p209,1996,100,bodytext,,
-NULL,p209,1997,100,bodytext,,
-NULL,p209,1998,100,bodytext,,
-NULL,p209,1999,100,bodytext,,
-NULL,p209,2000,100,bodytext,,
-NULL,p209,2001,100,bodytext,,
-NULL,p209,2002,100,bodytext,,
-NULL,p209,2003,100,bodytext,,
-NULL,p209,2004,100,bodytext,,
-NULL,p209,2005,100,centered,,
-NULL,p209,2006,4,subhead,Uposathāgārādikathāvaṇṇanā,
-NULL,p209,2007,100,bodytext,,
-NULL,p209,2008,100,bodytext,,
-NULL,p209,2009,4,subhead,Avippavāsasīmānujānanakathāvaṇṇanā,
-NULL,p209,2010,100,bodytext,,
-NULL,p209,2011,100,bodytext,,
-NULL,p209,2012,4,subhead,Gāmasīmādikathāvaṇṇanā,
-NULL,p209,2013,100,bodytext,,
-NULL,p209,2014,100,bodytext,,
-NULL,p209,2015,100,bodytext,,
-NULL,p209,2016,100,bodytext,,
-NULL,p209,2017,100,gatha1,,
-NULL,p209,2018,100,gathalast,,
-NULL,p209,2019,100,gatha1,,
-NULL,p209,2020,100,gathalast,,
-NULL,p209,2021,100,bodytext,,
-NULL,p209,2022,100,bodytext,,
-NULL,p209,2023,4,subhead,Uposathabhedādikathāvaṇṇanā,
-NULL,p209,2024,100,bodytext,,
-NULL,p209,2025,4,subhead,Pātimokkhuddesakathāvaṇṇanā,
-NULL,p209,2026,100,bodytext,,
-NULL,p209,2027,4,subhead,Adhammakammapaṭikkosanādikathāvaṇṇanā,
-NULL,p209,2028,100,bodytext,,
-NULL,p209,2029,4,subhead,Pātimokkhuddesakaajjhesanādikathāvaṇṇanā,
-NULL,p209,2030,100,bodytext,,
-NULL,p209,2031,4,subhead,Disaṃgamikādivatthukathāvaṇṇanā,
-NULL,p209,2032,100,bodytext,,
-NULL,p209,2033,4,subhead,Pārisuddhidānakathāvaṇṇanā,
-NULL,p209,2034,100,bodytext,,
-NULL,p209,2035,4,subhead,Chandadānādikathāvaṇṇanā,
-NULL,p209,2036,100,bodytext,,
-NULL,p209,2037,4,subhead,Āpattipaṭikammavidhikathādivaṇṇanā,
-NULL,p209,2038,100,bodytext,,
-NULL,p209,2039,4,subhead,Anāpattipannarasakādikathāvaṇṇanā,
-NULL,p209,2040,100,bodytext,,
-NULL,p209,2041,4,subhead,Sīmokkantikapeyyālakathāvaṇṇanā,
-NULL,p209,2042,100,bodytext,,
-NULL,p209,2043,4,subhead,Liṅgādidassanakathāvaṇṇanā,
-NULL,p209,2044,100,bodytext,,
-NULL,p209,2045,4,subhead,Nagantabbagantabbavārakathāvaṇṇanā,
-NULL,p209,2046,100,bodytext,,
-NULL,p209,2047,4,subhead,Vajjanīyapuggalasandassanakathāvaṇṇanā,
-NULL,p209,2048,100,bodytext,,
-NULL,p209,2049,100,centered,,
-NULL,p209,2050,4,subhead,3. Vassūpanāyikakkhandhakavaṇṇanā,
-NULL,p209,2051,4,subhead,Vassūpanāyikānujānanakathāvaṇṇanā,
-NULL,p209,2052,100,bodytext,,
-NULL,p209,2053,4,subhead,Vassānecārikāpaṭikkhepādikathāvaṇṇanā,
-NULL,p209,2054,100,bodytext,,
-NULL,p209,2055,4,subhead,Sattāhakaraṇīyānujānanakathāvaṇṇanā,
-NULL,p209,2056,100,bodytext,,
-NULL,p209,2057,4,subhead,Pahiteyevaanujānanakathāvaṇṇanā,
-NULL,p209,2058,100,bodytext,,
-NULL,p209,2059,100,bodytext,,
-NULL,p209,2060,4,subhead,Antarāyeanāpattivassacchedakathāvaṇṇanā,
-NULL,p209,2061,100,bodytext,,
-NULL,p209,2062,4,subhead,Vajādīsuvassūpagamanakathāvaṇṇanā,
-NULL,p209,2063,100,bodytext,,
-NULL,p209,2064,100,bodytext,,
-NULL,p209,2065,100,bodytext,,
-NULL,p209,2066,4,subhead,Adhammikakatikādikathāvaṇṇanā,
-NULL,p209,2067,100,bodytext,,
-NULL,p209,2068,100,bodytext,,
-NULL,p209,2069,100,bodytext,,
-NULL,p209,2070,100,bodytext,,
-NULL,p209,2071,100,bodytext,,
-NULL,p209,2072,100,centered,,
-NULL,p209,2073,4,subhead,4. Pavāraṇākkhandhakavaṇṇanā,
-NULL,p209,2074,4,subhead,Aphāsukavihārakathāvaṇṇanā,
-NULL,p209,2075,100,bodytext,,
-NULL,p209,2076,4,subhead,Pavāraṇābhedavaṇṇanā,
-NULL,p209,2077,100,bodytext,,
-NULL,p209,2078,4,subhead,Pavāraṇādānānujānanakathāvaṇṇanā,
-NULL,p209,2079,100,bodytext,,
-NULL,p209,2080,4,subhead,Anāpattipannarasakādikathāvaṇṇanā,
-NULL,p209,2081,100,bodytext,,
-NULL,p209,2082,100,bodytext,,
-NULL,p209,2083,100,bodytext,,
-NULL,p209,2084,100,bodytext,,
-NULL,p209,2085,100,centered,,
-NULL,p209,2086,4,subhead,5. Cammakkhandhakavaṇṇanā,
-NULL,p209,2087,4,subhead,Soṇakoḷivisavatthukathāvaṇṇanā,
-NULL,p209,2088,100,bodytext,,
-NULL,p209,2089,4,subhead,Soṇassapabbajjākathāvaṇṇanā,
-NULL,p209,2090,100,bodytext,,
-NULL,p209,2091,100,bodytext,,
-NULL,p209,2092,4,subhead,Sabbanīlikādipaṭikkhepakathāvaṇṇanā,
-NULL,p209,2093,100,bodytext,,
-NULL,p209,2094,4,subhead,Yānādipaṭikkhepakathāvaṇṇanā,
-NULL,p209,2095,100,bodytext,,
-NULL,p209,2096,4,subhead,Sabbacammapaṭikkhepādikathāvaṇṇanā,
-NULL,p209,2097,100,bodytext,,
-NULL,p209,2098,100,bodytext,,
-NULL,p209,2099,100,bodytext,,
-NULL,p209,2100,100,centered,,
-NULL,p209,2101,4,subhead,6. Bhesajjakkhandhakavaṇṇanā,
-NULL,p209,2102,4,subhead,Pañcabhesajjādikathāvaṇṇanā,
-NULL,p209,2103,100,bodytext,,
-NULL,p209,2104,100,bodytext,,
-NULL,p209,2105,100,bodytext,,
-NULL,p209,2106,100,bodytext,,
-NULL,p209,2107,100,bodytext,,
-NULL,p209,2108,100,bodytext,,
-NULL,p209,2109,100,bodytext,,
-NULL,p209,2110,100,bodytext,,
-NULL,p209,2111,4,subhead,Guḷādianujānanakathāvaṇṇanā,
-NULL,p209,2112,100,bodytext,,
-NULL,p209,2113,100,bodytext,,
-NULL,p209,2114,100,bodytext,,
-NULL,p209,2115,4,subhead,Manussamaṃsapaṭikkhepakathāvaṇṇanā,
-NULL,p209,2116,100,bodytext,,
-NULL,p209,2117,4,subhead,Hatthimaṃsādipaṭikkhepakathāvaṇṇanā,
-NULL,p209,2118,100,bodytext,,
-NULL,p209,2119,100,indent,,
-NULL,p209,2120,100,unindented,,
-NULL,p209,2121,4,subhead,Yāgumadhugoḷakādikathāvaṇṇanā,
-NULL,p209,2122,100,bodytext,,
-NULL,p209,2123,100,bodytext,,
-NULL,p209,2124,100,bodytext,,
-NULL,p209,2125,100,bodytext,,
-NULL,p209,2126,4,subhead,Kappiyabhūmianujānanakathāvaṇṇanā,
-NULL,p209,2127,100,bodytext,,
-NULL,p209,2128,100,bodytext,,
-NULL,p209,2129,4,subhead,Keṇiyajaṭilavatthukathāvaṇṇanā,
-NULL,p209,2130,100,bodytext,,
-NULL,p209,2131,100,bodytext,,
-NULL,p209,2132,100,centered,,
-NULL,p209,2133,4,subhead,7. Kathinakkhandhakavaṇṇanā,
-NULL,p209,2134,4,subhead,Kathinānujānanakathāvaṇṇanā,
-NULL,p209,2135,100,bodytext,,
-NULL,p209,2136,100,bodytext,,
-NULL,p209,2137,100,bodytext,,
-NULL,p209,2138,100,bodytext,,
-NULL,p209,2139,100,bodytext,,
-NULL,p209,2140,100,bodytext,,
-NULL,p209,2141,100,bodytext,,
-NULL,p209,2142,100,bodytext,,
-NULL,p209,2143,100,bodytext,,
-NULL,p209,2144,4,subhead,Ādāyasattakakathāvaṇṇanā,
-NULL,p209,2145,100,bodytext,,
-NULL,p209,2146,100,bodytext,,
-NULL,p209,2147,100,bodytext,,
-NULL,p209,2148,100,bodytext,,
-NULL,p209,2149,100,bodytext,,
-NULL,p209,2150,100,centered,,
-NULL,p209,2151,4,subhead,8. Cīvarakkhandhakavaṇṇanā,
-NULL,p209,2152,4,subhead,Jīvakavatthukathāvaṇṇanā,
-NULL,p209,2153,100,bodytext,,
-NULL,p209,2154,100,bodytext,,
-NULL,p209,2155,100,bodytext,,
-NULL,p209,2156,4,subhead,Pajjotarājavatthukathāvaṇṇanā,
-NULL,p209,2157,100,bodytext,,
-NULL,p209,2158,4,subhead,Samattiṃsavirecanakathāvaṇṇanā,
-NULL,p209,2159,100,bodytext,,
-NULL,p209,2160,4,subhead,Varayācanakathāvaṇṇanā,
-NULL,p209,2161,100,bodytext,,
-NULL,p209,2162,4,subhead,Kambalānujānanādikathāvaṇṇanā,
-NULL,p209,2163,100,bodytext,,
-NULL,p209,2164,100,bodytext,,
-NULL,p209,2165,4,subhead,Bhaṇḍāgārasammutiādikathāvaṇṇanā,
-NULL,p209,2166,100,bodytext,,
-NULL,p209,2167,4,subhead,Cīvararajanakathāvaṇṇanā,
-NULL,p209,2168,100,bodytext,,
-NULL,p209,2169,4,subhead,Nisīdanādianujānanakathāvaṇṇanā,
-NULL,p209,2170,100,bodytext,,
-NULL,p209,2171,100,bodytext,,
-NULL,p209,2172,4,subhead,Saṅghikacīvaruppādakathāvaṇṇanā,
-NULL,p209,2173,100,bodytext,,
-NULL,p209,2174,4,subhead,Upanandasakyaputtavatthukathāvaṇṇanā,
-NULL,p209,2175,100,bodytext,,
-NULL,p209,2176,4,subhead,Matasantakakathāvaṇṇanā,
-NULL,p209,2177,100,bodytext,,
-NULL,p209,2178,100,bodytext,,
-NULL,p209,2179,100,bodytext,,
-NULL,p209,2180,4,subhead,Vassaṃvutthānaṃanuppannacīvarakathāvaṇṇanā,
-NULL,p209,2181,100,bodytext,,
-NULL,p209,2182,4,subhead,Saṅghebhinnecīvaruppādakathāvaṇṇanā,
-NULL,p209,2183,100,bodytext,,
-NULL,p209,2184,4,subhead,Aṭṭhacīvaramātikākathāvaṇṇanā,
-NULL,p209,2185,100,bodytext,,
-NULL,p209,2186,100,gatha1,,
-NULL,p209,2187,100,gathalast,,
-NULL,p209,2188,100,unindented,,
-NULL,p209,2189,100,bodytext,,
-NULL,p209,2190,100,centered,,
-NULL,p209,2191,4,subhead,9. Campeyyakkhandhakavaṇṇanā,
-NULL,p209,2192,4,subhead,Dvenissāraṇādikathāvaṇṇanā,
-NULL,p209,2193,100,bodytext,,
-NULL,p209,2194,4,subhead,Upālipucchākathāvaṇṇanā,
-NULL,p209,2195,100,bodytext,,
-NULL,p209,2196,100,centered,,
-NULL,p209,2197,4,subhead,10. Kosambakakkhandhakavaṇṇanā,
-NULL,p209,2198,4,subhead,Kosambakavivādakathāvaṇṇanā,
-NULL,p209,2199,100,bodytext,,
-NULL,p209,2200,100,bodytext,,
-NULL,p209,2201,4,subhead,Dīghāvuvatthukathāvaṇṇanā,
-NULL,p209,2202,100,bodytext,,
-NULL,p209,2203,4,subhead,Pālileyyakagamanakathāvaṇṇanā,
-NULL,p209,2204,100,bodytext,,
-NULL,p209,2205,4,subhead,Aṭṭhārasavatthukathāvaṇṇanā,
-NULL,p209,2206,100,bodytext,,
-NULL,p209,2207,4,subhead,Saṅghasāmaggīkathāvaṇṇanā,
-NULL,p209,2208,100,bodytext,,
-NULL,p209,2209,100,gatha1,,
-NULL,p209,2210,100,gathalast,,
-NULL,p209,2211,100,gatha1,,
-NULL,p209,2212,100,gathalast,,
-NULL,p209,2213,100,bodytext,,
-NULL,p209,2214,100,centered,,
-NULL,p209,2215,100,centered,,
-NULL,p209,2216,100,centered,,
-NULL,p209,2217,2,chapter,Cūḷavaggavaṇṇanā,小品详解
-NULL,p209,2218,3,title,1. Kammakkhandhakavaṇṇanā,
-NULL,p209,2219,4,subhead,Adhammakammadvādasakakathāvaṇṇanā,
-NULL,p209,2220,100,bodytext,,
-NULL,p209,2221,100,bodytext,,
-NULL,p209,2222,100,bodytext,,
-NULL,p209,2223,100,bodytext,,
-NULL,p209,2224,100,bodytext,,
-NULL,p209,2225,100,bodytext,,
-NULL,p209,2226,100,bodytext,,
-NULL,p209,2227,100,centered,,
-NULL,p209,2228,3,title,2. Pārivāsikakkhandhakavaṇṇanā,
-NULL,p209,2229,4,subhead,Pārivāsikavattakathāvaṇṇanā,
-NULL,p209,2230,100,bodytext,,
-NULL,p209,2231,100,bodytext,,
-NULL,p209,2232,100,bodytext,,
-NULL,p209,2233,100,centered,,
-NULL,p209,2234,4,subhead,Mūlāyapaṭikassanārahavattakathāvaṇṇanā,
-NULL,p209,2235,100,bodytext,,
-NULL,p209,2236,100,centered,,
-NULL,p209,2237,3,title,3. Samuccayakkhandhakavaṇṇanā,
-NULL,p209,2238,4,subhead,Sukkavissaṭṭhikathāvaṇṇanā,
-NULL,p209,2239,100,bodytext,,
-NULL,p209,2240,4,subhead,Parivāsakathāvaṇṇanā,
-NULL,p209,2241,100,bodytext,,
-NULL,p209,2242,100,bodytext,,
-NULL,p209,2243,100,bodytext,,
-NULL,p209,2244,100,centered,,
-NULL,p209,2245,100,bodytext,,
-NULL,p209,2246,4,subhead,Paṭicchannaparivāsādikathāvaṇṇanā,
-NULL,p209,2247,100,bodytext,,
-NULL,p209,2248,100,bodytext,,
-NULL,p209,2249,100,bodytext,,
-NULL,p209,2250,100,bodytext,,
-NULL,p209,2251,100,centered,,
-NULL,p209,2252,3,title,4. Samathakkhandhakavaṇṇanā,
-NULL,p209,2253,4,subhead,Sammukhāvinayakathāvaṇṇanā,
-NULL,p209,2254,100,bodytext,,
-NULL,p209,2255,4,subhead,Sativinayakathāvaṇṇanā,
-NULL,p209,2256,100,bodytext,,
-NULL,p209,2257,4,subhead,Amūḷhavinayakathāvaṇṇanā,
-NULL,p209,2258,100,bodytext,,
-NULL,p209,2259,4,subhead,Paṭiññātakaraṇakathāvaṇṇanā,
-NULL,p209,2260,100,bodytext,,
-NULL,p209,2261,4,subhead,Tassapāpiyasikākathāvaṇṇanā,
-NULL,p209,2262,100,bodytext,,
-NULL,p209,2263,4,subhead,Tiṇavatthārakādikathāvaṇṇanā,
-NULL,p209,2264,100,bodytext,,
-NULL,p209,2265,4,subhead,Adhikaraṇakathāvaṇṇanā,
-NULL,p209,2266,100,bodytext,,
-NULL,p209,2267,100,bodytext,,
-NULL,p209,2268,100,bodytext,,
-NULL,p209,2269,100,bodytext,,
-NULL,p209,2270,100,bodytext,,
-NULL,p209,2271,100,bodytext,,
-NULL,p209,2272,100,bodytext,,
-NULL,p209,2273,100,bodytext,,
-NULL,p209,2274,100,bodytext,,
-NULL,p209,2275,100,bodytext,,
-NULL,p209,2276,100,centered,,
-NULL,p209,2277,3,title,5. Khuddakavatthukkhandhakavaṇṇanā,
-NULL,p209,2278,4,subhead,Khuddakavatthukathāvaṇṇanā,
-NULL,p209,2279,100,bodytext,,
-NULL,p209,2280,100,bodytext,,
-NULL,p209,2281,100,bodytext,,
-NULL,p209,2282,100,bodytext,,
-NULL,p209,2283,100,bodytext,,
-NULL,p209,2284,100,bodytext,,
-NULL,p209,2285,100,bodytext,,
-NULL,p209,2286,100,bodytext,,
-NULL,p209,2287,100,bodytext,,
-NULL,p209,2288,100,bodytext,,
-NULL,p209,2289,100,bodytext,,
-NULL,p209,2290,100,bodytext,,
-NULL,p209,2291,100,bodytext,,
-NULL,p209,2292,100,bodytext,,
-NULL,p209,2293,100,bodytext,,
-NULL,p209,2294,100,bodytext,,
-NULL,p209,2295,100,bodytext,,
-NULL,p209,2296,100,centered,,
-NULL,p209,2297,3,title,6. Senāsanakkhandhakavaṇṇanā,
-NULL,p209,2298,4,subhead,Vihārānujānanakathāvaṇṇanā,
-NULL,p209,2299,100,bodytext,,
-NULL,p209,2300,100,bodytext,,
-NULL,p209,2301,100,bodytext,,
-NULL,p209,2302,100,bodytext,,
-NULL,p209,2303,100,bodytext,,
-NULL,p209,2304,100,bodytext,,
-NULL,p209,2305,100,bodytext,,
-NULL,p209,2306,100,bodytext,,
-NULL,p209,2307,100,bodytext,,
-NULL,p209,2308,100,bodytext,,
-NULL,p209,2309,4,subhead,Senāsanaggāhakathāvaṇṇanā,
-NULL,p209,2310,100,bodytext,,
-NULL,p209,2311,100,bodytext,,
-NULL,p209,2312,100,bodytext,,
-NULL,p209,2313,4,subhead,Upanandavatthukathāvaṇṇanā,
-NULL,p209,2314,100,bodytext,,
-NULL,p209,2315,4,subhead,Avissajjiyavatthukathāvaṇṇanā,
-NULL,p209,2316,100,bodytext,,
-NULL,p209,2317,100,bodytext,,
-NULL,p209,2318,4,subhead,Navakammadānakathāvaṇṇanā,
-NULL,p209,2319,100,bodytext,,
-NULL,p209,2320,4,subhead,Saṅghabhattādianujānanakathāvaṇṇanā,
-NULL,p209,2321,4,subhead,Uddesabhattakathāvaṇṇanā,
-NULL,p209,2322,100,bodytext,,
-NULL,p209,2323,4,subhead,Nimantanabhattakathāvaṇṇanā,
-NULL,p209,2324,100,bodytext,,
-NULL,p209,2325,4,subhead,Salākabhattakathāvaṇṇanā,
-NULL,p209,2326,100,bodytext,,
-NULL,p209,2327,4,subhead,Pakkhikabhattakathāvaṇṇanā,
-NULL,p209,2328,100,bodytext,,
-NULL,p209,2329,100,centered,,
-NULL,p209,2330,3,title,7. Saṅghabhedakakkhandhakavaṇṇanā,
-NULL,p209,2331,4,subhead,Chasakyapabbajjākathāvaṇṇanā,
-NULL,p209,2332,100,bodytext,,
-NULL,p209,2333,100,bodytext,,
-NULL,p209,2334,100,bodytext,,
-NULL,p209,2335,100,bodytext,,
-NULL,p209,2336,100,bodytext,,
-NULL,p209,2337,100,bodytext,,
-NULL,p209,2338,100,bodytext,,
-NULL,p209,2339,100,bodytext,,
-NULL,p209,2340,100,bodytext,,
-NULL,p209,2341,100,bodytext,,
-NULL,p209,2342,100,bodytext,,
-NULL,p209,2343,100,bodytext,,
-NULL,p209,2344,100,bodytext,,
-NULL,p209,2345,100,centered,,
-NULL,p209,2346,3,title,8. Vattakkhandhakavaṇṇanā,
-NULL,p209,2347,4,subhead,Āgantukavattakathāvaṇṇanā,
-NULL,p209,2348,100,bodytext,,
-NULL,p209,2349,4,subhead,Anumodanavattakathāvaṇṇanā,
-NULL,p209,2350,100,bodytext,,
-NULL,p209,2351,100,centered,,
-NULL,p209,2352,3,title,9. Pātimokkhaṭṭhapanakkhandhakavaṇṇanā,
-NULL,p209,2353,4,subhead,Pātimokkhuddesayācanakathāvaṇṇanā,
-NULL,p209,2354,100,bodytext,,
-NULL,p209,2355,4,subhead,Attādānaaṅgakathāvaṇṇanā,
-NULL,p209,2356,100,bodytext,,
-NULL,p209,2357,100,bodytext,,
-NULL,p209,2358,100,centered,,
-NULL,p209,2359,3,title,10. Bhikkhunikkhandhakavaṇṇanā,
-NULL,p209,2360,4,subhead,Mahāpajāpatigotamīvatthukathāvaṇṇanā,
-NULL,p209,2361,100,bodytext,,
-NULL,p209,2362,4,subhead,Bhikkhunīupasampadānujānanakathāvaṇṇanā,
-NULL,p209,2363,100,bodytext,,
-NULL,p209,2364,100,bodytext,,
-NULL,p209,2365,100,bodytext,,
-NULL,p209,2366,100,bodytext,,
-NULL,p209,2367,100,bodytext,,
-NULL,p209,2368,100,bodytext,,
-NULL,p209,2369,100,bodytext,,
-NULL,p209,2370,100,bodytext,,
-NULL,p209,2371,100,bodytext,,
-NULL,p209,2372,100,bodytext,,
-NULL,p209,2373,100,bodytext,,
-NULL,p209,2374,100,bodytext,,
-NULL,p209,2375,100,bodytext,,
-NULL,p209,2376,100,bodytext,,
-NULL,p209,2377,100,gatha1,,
-NULL,p209,2378,100,gathalast,,
-NULL,p209,2379,100,gatha1,,
-NULL,p209,2380,100,gathalast,,
-NULL,p209,2381,100,gatha1,,
-NULL,p209,2382,100,gathalast,,
-NULL,p209,2383,100,gatha1,,
-NULL,p209,2384,100,gathalast,,
-NULL,p209,2385,100,gatha1,,
-NULL,p209,2386,100,gathalast,,
-NULL,p209,2387,100,gatha1,,
-NULL,p209,2388,100,gathalast,,
-NULL,p209,2389,100,gatha1,,
-NULL,p209,2390,100,gatha1,,
-NULL,p209,2391,100,gathalast,,
-NULL,p209,2392,100,centered,,
-NULL,p209,2393,3,title,11. Pañcasatikakkhandhakavaṇṇanā,
-NULL,p209,2394,4,subhead,Saṅgītinidānakathāvaṇṇanā,
-NULL,p209,2395,100,bodytext,,
-NULL,p209,2396,4,subhead,Khuddānukhuddakakathāvaṇṇanā,
-NULL,p209,2397,100,bodytext,,
-NULL,p209,2398,100,bodytext,,
-NULL,p209,2399,4,subhead,Brahmadaṇḍakathāvaṇṇanā,
-NULL,p209,2400,100,bodytext,,
-NULL,p209,2401,100,centered,,
-NULL,p209,2402,3,title,12. Sattasatikakkhandhakavaṇṇanā,
-NULL,p209,2403,4,subhead,Dasavatthukathāvaṇṇanā,
-NULL,p209,2404,100,bodytext,,
-NULL,p209,2405,100,bodytext,,
-NULL,p209,2406,100,bodytext,,
-NULL,p209,2407,100,bodytext,,
-NULL,p209,2408,100,bodytext,,
-NULL,p209,2409,100,bodytext,,
-NULL,p209,2410,100,gatha1,,
-NULL,p209,2411,100,gathalast,,
-NULL,p209,2412,100,gatha1,,
-NULL,p209,2413,100,gathalast,,
-NULL,p209,2414,100,gatha1,,
-NULL,p209,2415,100,gathalast,,
-NULL,p209,2416,100,gatha1,,
-NULL,p209,2417,100,gathalast,,
-NULL,p209,2418,100,gatha1,,
-NULL,p209,2419,100,gathalast,,
-NULL,p209,2420,100,unindented,,
-NULL,p209,2421,100,gatha1,,
-NULL,p209,2422,100,gathalast,,
-NULL,p209,2423,100,gatha1,,
-NULL,p209,2424,100,gathalast,,
-NULL,p209,2425,100,centered,,
-NULL,p209,2426,100,centered,,
-NULL,p209,2427,100,centered,,
-NULL,p209,2428,2,chapter,Parivāravaṇṇanā,附录详解
-NULL,p209,2429,3,title,Soḷasamahāvāravaṇṇanā,
-NULL,p209,2430,4,subhead,Paññattivāravaṇṇanā,
-NULL,p209,2431,100,bodytext,,
-NULL,p209,2432,100,centered,,
-NULL,p209,2433,4,subhead,Katāpattivārādivaṇṇanā,
-NULL,p209,2434,100,bodytext,,
-NULL,p209,2435,100,bodytext,,
-NULL,p209,2436,100,bodytext,,
-NULL,p209,2437,100,bodytext,,
-NULL,p209,2438,100,centered,,
-NULL,p209,2439,3,title,Samuṭṭhānasīsavaṇṇanā,
-NULL,p209,2440,100,bodytext,,
-NULL,p209,2441,4,subhead,Paṭhamapārājikasamuṭṭhānavaṇṇanā,
-NULL,p209,2442,100,bodytext,,
-NULL,p209,2443,4,subhead,Dutiyapārājikasamuṭṭhānavaṇṇanā,
-NULL,p209,2444,100,bodytext,,
-NULL,p209,2445,100,bodytext,,
-NULL,p209,2446,3,title,Antarapeyyālaṃ,
-NULL,p209,2447,4,subhead,Katipucchāvāravaṇṇanā,
-NULL,p209,2448,100,bodytext,,
-NULL,p209,2449,100,bodytext,,
-NULL,p209,2450,4,subhead,Chaāpattisamuṭṭhānavārādivaṇṇanā,
-NULL,p209,2451,100,bodytext,,
-NULL,p209,2452,100,bodytext,,
-NULL,p209,2453,100,bodytext,,
-NULL,p209,2454,100,bodytext,,
-NULL,p209,2455,100,bodytext,,
-NULL,p209,2456,100,bodytext,,
-NULL,p209,2457,100,centered,,
-NULL,p209,2458,3,title,Samathabhedavaṇṇanā,
-NULL,p209,2459,4,subhead,Adhikaraṇapariyāyavārādivaṇṇanā,
-NULL,p209,2460,100,bodytext,,
-NULL,p209,2461,100,bodytext,,
-NULL,p209,2462,100,bodytext,,
-NULL,p209,2463,100,bodytext,,
-NULL,p209,2464,100,bodytext,,
-NULL,p209,2465,100,bodytext,,
-NULL,p209,2466,100,bodytext,,
-NULL,p209,2467,100,bodytext,,
-NULL,p209,2468,100,bodytext,,
-NULL,p209,2469,4,subhead,Yatthavārapucchāvāravaṇṇanā,
-NULL,p209,2470,100,bodytext,,
-NULL,p209,2471,4,subhead,Samathavāravissajjanāvāravaṇṇanā,
-NULL,p209,2472,100,bodytext,,
-NULL,p209,2473,4,subhead,Saṃsaṭṭhavārādivaṇṇanā,
-NULL,p209,2474,100,bodytext,,
-NULL,p209,2475,100,bodytext,,
-NULL,p209,2476,100,bodytext,,
-NULL,p209,2477,100,bodytext,,
-NULL,p209,2478,100,bodytext,,
-NULL,p209,2479,100,bodytext,,
-NULL,p209,2480,100,centered,,
-NULL,p209,2481,3,title,Khandhakapucchāvāravaṇṇanā,
-NULL,p209,2482,4,subhead,Pucchāvissajjanāvaṇṇanā,
-NULL,p209,2483,100,bodytext,,
-NULL,p209,2484,3,title,Ekuttarikanayavaṇṇanā,
-NULL,p209,2485,4,subhead,Ekakavāravaṇṇanā,
-NULL,p209,2486,100,bodytext,,
-NULL,p209,2487,100,bodytext,,
-NULL,p209,2488,100,bodytext,,
-NULL,p209,2489,100,bodytext,,
-NULL,p209,2490,100,bodytext,,
-NULL,p209,2491,100,bodytext,,
-NULL,p209,2492,4,subhead,Dukavāravaṇṇanā,
-NULL,p209,2493,100,bodytext,,
-NULL,p209,2494,4,subhead,Tikavāravaṇṇanā,
-NULL,p209,2495,100,bodytext,,
-NULL,p209,2496,4,subhead,Catukkavāravaṇṇanā,
-NULL,p209,2497,100,bodytext,,
-NULL,p209,2498,100,bodytext,,
-NULL,p209,2499,4,subhead,Pañcakavāravaṇṇanā,
-NULL,p209,2500,100,bodytext,,
-NULL,p209,2501,4,subhead,Chakkavāravaṇṇanā,
-NULL,p209,2502,100,bodytext,,
-NULL,p209,2503,4,subhead,Sattakavāravaṇṇanā,
-NULL,p209,2504,100,bodytext,,
-NULL,p209,2505,4,subhead,Aṭṭhakavāravaṇṇanā,
-NULL,p209,2506,100,bodytext,,
-NULL,p209,2507,4,subhead,Navakavāravaṇṇanā,
-NULL,p209,2508,100,bodytext,,
-NULL,p209,2509,4,subhead,Dasakavāravaṇṇanā,
-NULL,p209,2510,100,bodytext,,
-NULL,p209,2511,4,subhead,Ekādasakavāravaṇṇanā,
-NULL,p209,2512,100,bodytext,,
-NULL,p209,2513,100,centered,,
-NULL,p209,2514,4,subhead,Uposathādipucchāvissajjanāvaṇṇanā,
-NULL,p209,2515,100,bodytext,,
-NULL,p209,2516,4,subhead,Atthavasapakaraṇavaṇṇanā,
-NULL,p209,2517,100,bodytext,,
-NULL,p209,2518,100,gatha1,,
-NULL,p209,2519,100,gathalast,,
-NULL,p209,2520,100,bodytext,,
-NULL,p209,2521,100,gatha1,,
-NULL,p209,2522,100,gathalast,,
-NULL,p209,2523,100,bodytext,,
-NULL,p209,2524,100,gatha1,,
-NULL,p209,2525,100,gathalast,,
-NULL,p209,2526,100,gatha1,,
-NULL,p209,2527,100,gathalast,,
-NULL,p209,2528,100,bodytext,,
-NULL,p209,2529,100,gatha1,,
-NULL,p209,2530,100,gatha2,,
-NULL,p209,2531,100,gathalast,,
-NULL,p209,2532,100,unindented,,
-NULL,p209,2533,100,gatha1,,
-NULL,p209,2534,100,gatha2,,
-NULL,p209,2535,100,gathalast,,
-NULL,p209,2536,100,gatha1,,
-NULL,p209,2537,100,gathalast,,
-NULL,p209,2538,100,gatha1,,
-NULL,p209,2539,100,gathalast,,
-NULL,p209,2540,100,gatha1,,
-NULL,p209,2541,100,gathalast,,
-NULL,p209,2542,100,bodytext,,
-NULL,p209,2543,100,centered,,
-NULL,p209,2544,3,title,Paṭhamagāthāsaṅgaṇikavaṇṇanā,
-NULL,p209,2545,4,subhead,Sattanagaresu paññattasikkhāpadavaṇṇanā,
-NULL,p209,2546,100,bodytext,,
-NULL,p209,2547,4,subhead,Catuvipattivaṇṇanā,
-NULL,p209,2548,100,bodytext,,
-NULL,p209,2549,4,subhead,Chedanakādivaṇṇanā,
-NULL,p209,2550,100,bodytext,,
-NULL,p209,2551,4,subhead,Asādhāraṇādivaṇṇanā,
-NULL,p209,2552,100,bodytext,,
-NULL,p209,2553,100,bodytext,,
-NULL,p209,2554,100,gatha1,,
-NULL,p209,2555,100,gatha2,,
-NULL,p209,2556,100,gathalast,,
-NULL,p209,2557,100,gatha1,,
-NULL,p209,2558,100,gathalast,,
-NULL,p209,2559,100,gatha1,,
-NULL,p209,2560,100,gathalast,,
-NULL,p209,2561,100,unindented,,
-NULL,p209,2562,4,subhead,Pārājikādiāpattivaṇṇanā,
-NULL,p209,2563,100,bodytext,,
-NULL,p209,2564,100,centered,,
-NULL,p209,2565,3,title,Adhikaraṇabhedavaṇṇanā,
-NULL,p209,2566,4,subhead,Ukkoṭanabhedādivaṇṇanā,
-NULL,p209,2567,100,bodytext,,
-NULL,p209,2568,4,subhead,Adhikaraṇanidānādivaṇṇanā,
-NULL,p209,2569,100,bodytext,,
-NULL,p209,2570,100,bodytext,,
-NULL,p209,2571,100,bodytext,,
-NULL,p209,2572,100,bodytext,,
-NULL,p209,2573,100,centered,,
-NULL,p209,2574,3,title,Dutiyagāthāsaṅgaṇikavaṇṇanā,
-NULL,p209,2575,4,subhead,Codanādipucchāvissajjanāvaṇṇanā,
-NULL,p209,2576,100,bodytext,,
-NULL,p209,2577,3,title,Codanākaṇḍavaṇṇanā,
-NULL,p209,2578,4,subhead,Anuvijjakakiccavaṇṇanā,
-NULL,p209,2579,100,bodytext,,
-NULL,p209,2580,100,bodytext,,
-NULL,p209,2581,3,title,Cūḷasaṅgāmavaṇṇanā,
-NULL,p209,2582,4,subhead,Anuvijjakassapaṭipattivaṇṇanā,
-NULL,p209,2583,100,bodytext,,
-NULL,p209,2584,100,bodytext,,
-NULL,p209,2585,3,title,Mahāsaṅgāmavaṇṇanā,
-NULL,p209,2586,4,subhead,Voharantenajānitabbādivaṇṇanā,
-NULL,p209,2587,100,bodytext,,
-NULL,p209,2588,100,bodytext,,
-NULL,p209,2589,3,title,Kathinabhedavaṇṇanā,
-NULL,p209,2590,4,subhead,Kathinaatthatādivaṇṇanā,
-NULL,p209,2591,100,bodytext,,
-NULL,p209,2592,4,subhead,Kathinādijānitabbavibhāgavaṇṇanā,
-NULL,p209,2593,100,bodytext,,
-NULL,p209,2594,100,bodytext,,
-NULL,p209,2595,4,subhead,Palibodhapañhābyākaraṇakathāvaṇṇanā,
-NULL,p209,2596,100,bodytext,,
-NULL,p209,2597,100,centered,,
-NULL,p209,2598,100,centered,,
-NULL,p209,2599,3,title,Upālipañcakavaṇṇanā,
-NULL,p209,2600,4,subhead,Anissitavaggavaṇṇanā,
-NULL,p209,2601,100,bodytext,,
-NULL,p209,2602,4,subhead,Nappaṭippassambhanavaggavaṇṇanā,
-NULL,p209,2603,100,bodytext,,
-NULL,p209,2604,4,subhead,Vohāravaggavaṇṇanā,
-NULL,p209,2605,100,bodytext,,
-NULL,p209,2606,4,subhead,Diṭṭhāvikammavaggavaṇṇanā,
-NULL,p209,2607,100,bodytext,,
-NULL,p209,2608,100,bodytext,,
-NULL,p209,2609,4,subhead,Musāvādavaggavaṇṇanā,
-NULL,p209,2610,100,bodytext,,
-NULL,p209,2611,100,bodytext,,
-NULL,p209,2612,4,subhead,Bhikkhunovādavaggavaṇṇanā,
-NULL,p209,2613,100,bodytext,,
-NULL,p209,2614,4,subhead,Ubbāhikavaggavaṇṇanā,
-NULL,p209,2615,100,bodytext,,
-NULL,p209,2616,4,subhead,Adhikaraṇavūpasamavaggavaṇṇanā,
-NULL,p209,2617,100,bodytext,,
-NULL,p209,2618,4,subhead,Kathinatthāravaggavaṇṇanā,
-NULL,p209,2619,100,bodytext,,
-NULL,p209,2620,100,centered,,
-NULL,p209,2621,4,subhead,Āpattisamuṭṭhānavaṇṇanā,
-NULL,p209,2622,100,bodytext,,
-NULL,p209,2623,3,title,Dutiyagāthāsaṅgaṇikavaṇṇanā,
-NULL,p209,2624,4,subhead,Kāyikādiāpattivaṇṇanā,
-NULL,p209,2625,100,bodytext,,
-NULL,p209,2626,4,subhead,Pācittiyavaṇṇanā,
-NULL,p209,2627,100,bodytext,,
-NULL,p209,2628,4,subhead,Avandanīyapuggalādivaṇṇanā,
-NULL,p209,2629,100,bodytext,,
-NULL,p209,2630,4,subhead,Soḷasakammādivaṇṇanā,
-NULL,p209,2631,100,bodytext,,
-NULL,p209,2632,100,centered,,
-NULL,p209,2633,3,title,Sedamocanagāthāvaṇṇanā,
-NULL,p209,2634,4,subhead,Avippavāsapañhāvaṇṇanā,
-NULL,p209,2635,100,bodytext,,
-NULL,p209,2636,4,subhead,Pārājikādipañhāvaṇṇanā,
-NULL,p209,2637,100,bodytext,,
-NULL,p209,2638,4,subhead,Pācittiyādipañhāvaṇṇanā,
-NULL,p209,2639,100,bodytext,,
-NULL,p209,2640,100,centered,,
-NULL,p209,2641,3,title,Pañcavaggo,
-NULL,p209,2642,4,subhead,Kammavaggavaṇṇanā,
-NULL,p209,2643,100,bodytext,,
-NULL,p209,2644,100,bodytext,,
-NULL,p209,2645,100,bodytext,,
-NULL,p209,2646,100,bodytext,,
-NULL,p209,2647,4,subhead,Apalokanakammakathāvaṇṇanā,
-NULL,p209,2648,100,bodytext,,
-NULL,p209,2649,100,bodytext,,
-NULL,p209,2650,4,subhead,Apaññattepaññattavaggavaṇṇanā,
-NULL,p209,2651,100,bodytext,,
-NULL,p209,2652,4,subhead,Nigamanakathāvaṇṇanā,
-NULL,p209,2653,100,bodytext,,
-NULL,p209,2654,100,bodytext,,
-NULL,p209,2655,100,gatha1,,
-NULL,p209,2656,100,gathalast,,
-NULL,p209,2657,100,unindented,,
-NULL,p209,2658,100,bodytext,,
-NULL,p209,2659,100,bodytext,,
-NULL,p209,2660,100,gatha1,,
-NULL,p209,2661,100,gatha2,,
-NULL,p209,2662,100,gatha3,,
-NULL,p209,2663,100,gathalast,,
-NULL,p209,2664,100,gatha1,,
-NULL,p209,2665,100,gatha2,,
-NULL,p209,2666,100,gatha3,,
-NULL,p209,2667,100,gathalast,,
-NULL,p209,2668,100,gatha1,,
-NULL,p209,2669,100,gatha2,,
-NULL,p209,2670,100,gatha3,,
-NULL,p209,2671,100,gathalast,,
-NULL,p209,2672,100,centered,,
-NULL,p209,2673,100,centered,,

+ 2674 - 0
pali_title/209_zh-hans.csv

@@ -0,0 +1,2674 @@
+id,book,par_num,level,class,title,text,author
+NULL,209,1,100,centered,,,""
+NULL,209,2,100,nikaya,,,""
+NULL,209,3,1,book,Vajirabuddhi-ṭīkā,金刚觉-复注,visuddhinanda
+NULL,209,4,5,subsubhead,Ganthārambhakathā,开题诗,visuddhinanda
+NULL,209,5,100,gatha1,,,""
+NULL,209,6,100,gatha2,,,""
+NULL,209,7,100,gatha3,,,""
+NULL,209,8,100,gathalast,,,""
+NULL,209,9,100,gatha1,,,""
+NULL,209,10,100,gatha2,,,""
+NULL,209,11,100,gatha3,,,""
+NULL,209,12,100,gathalast,,,""
+NULL,209,13,100,gatha1,,,""
+NULL,209,14,100,gatha2,,,""
+NULL,209,15,100,gatha3,,,""
+NULL,209,16,100,gathalast,,,""
+NULL,209,17,100,gatha1,,,""
+NULL,209,18,100,gathalast,,,""
+NULL,209,19,100,unindented,,,""
+NULL,209,20,100,bodytext,,,""
+NULL,209,21,100,gatha1,,,""
+NULL,209,22,100,gathalast,,,""
+NULL,209,23,100,bodytext,,,""
+NULL,209,24,100,bodytext,,,""
+NULL,209,25,100,gatha1,,,""
+NULL,209,26,100,gathalast,,,""
+NULL,209,27,100,bodytext,,,""
+NULL,209,28,100,gatha1,,,""
+NULL,209,29,100,gathalast,,,""
+NULL,209,30,100,gatha1,,,""
+NULL,209,31,100,gatha1,,,""
+NULL,209,32,100,gathalast,,,""
+NULL,209,33,100,gatha1,,,""
+NULL,209,34,100,bodytext,,,""
+NULL,209,35,100,gatha1,,,""
+NULL,209,36,100,gathalast,,,""
+NULL,209,37,100,bodytext,,,""
+NULL,209,38,100,indent,,,""
+NULL,209,39,100,bodytext,,,""
+NULL,209,40,5,subsubhead,Ganthārambhakathāvaṇṇanā,开题诗解释,visuddhinanda
+NULL,209,41,100,bodytext,,,""
+NULL,209,42,100,bodytext,,,""
+NULL,209,43,100,gatha1,,,""
+NULL,209,44,100,gathalast,,,""
+NULL,209,45,100,bodytext,,,""
+NULL,209,46,100,gatha1,,,""
+NULL,209,47,100,gatha2,,,""
+NULL,209,48,100,gatha3,,,""
+NULL,209,49,100,gathalast,,,""
+NULL,209,50,100,bodytext,,,""
+NULL,209,51,100,gatha1,,,""
+NULL,209,52,100,gathalast,,,""
+NULL,209,53,100,unindented,,,""
+NULL,209,54,100,gatha1,,,""
+NULL,209,55,100,gathalast,,,""
+NULL,209,56,100,bodytext,,,""
+NULL,209,57,100,gatha1,,,""
+NULL,209,58,100,gathalast,,,""
+NULL,209,59,100,unindented,,,""
+NULL,209,60,100,bodytext,,,""
+NULL,209,61,100,bodytext,,,""
+NULL,209,62,100,gatha1,,,""
+NULL,209,63,100,gathalast,,,""
+NULL,209,64,100,bodytext,,,""
+NULL,209,65,100,gatha1,,,""
+NULL,209,66,100,gathalast,,,""
+NULL,209,67,100,bodytext,,,""
+NULL,209,68,100,gatha1,,,""
+NULL,209,69,100,gathalast,,,""
+NULL,209,70,100,gatha1,,,""
+NULL,209,71,100,gathalast,,,""
+NULL,209,72,100,gatha1,,,""
+NULL,209,73,100,gathalast,,,""
+NULL,209,74,100,bodytext,,,""
+NULL,209,75,100,gatha1,,,""
+NULL,209,76,100,gathalast,,,""
+NULL,209,77,100,gatha1,,,""
+NULL,209,78,100,gathalast,,,""
+NULL,209,79,100,bodytext,,,""
+NULL,209,80,100,gatha1,,,""
+NULL,209,81,100,gathalast,,,""
+NULL,209,82,100,bodytext,,,""
+NULL,209,83,100,gatha1,,,""
+NULL,209,84,100,gatha2,,,""
+NULL,209,85,100,gatha3,,,""
+NULL,209,86,100,gathalast,,,""
+NULL,209,87,100,unindented,,,""
+NULL,209,88,100,bodytext,,,""
+NULL,209,89,100,gatha1,,,""
+NULL,209,90,100,gathalast,,,""
+NULL,209,91,100,unindented,,,""
+NULL,209,92,100,gatha1,,,""
+NULL,209,93,100,gatha2,,,""
+NULL,209,94,100,gatha3,,,""
+NULL,209,95,100,gathalast,,,""
+NULL,209,96,100,gatha1,,,""
+NULL,209,97,100,gatha2,,,""
+NULL,209,98,100,gatha3,,,""
+NULL,209,99,100,gathalast,,,""
+NULL,209,100,100,bodytext,,,""
+NULL,209,101,100,bodytext,,,""
+NULL,209,102,100,bodytext,,,""
+NULL,209,103,100,bodytext,,,""
+NULL,209,104,100,gatha1,,,""
+NULL,209,105,100,gathalast,,,""
+NULL,209,106,100,bodytext,,,""
+NULL,209,107,100,gatha1,,,""
+NULL,209,108,100,gathalast,,,""
+NULL,209,109,100,gatha1,,,""
+NULL,209,110,100,gathalast,,,""
+NULL,209,111,100,bodytext,,,""
+NULL,209,112,100,gatha1,,,""
+NULL,209,113,100,gatha2,,,""
+NULL,209,114,100,gatha3,,,""
+NULL,209,115,100,gathalast,,,""
+NULL,209,116,100,indent,,,""
+NULL,209,117,100,gatha1,,,""
+NULL,209,118,100,gathalast,,,""
+NULL,209,119,100,bodytext,,,""
+NULL,209,120,100,gatha1,,,""
+NULL,209,121,100,gathalast,,,""
+NULL,209,122,100,bodytext,,,""
+NULL,209,123,100,bodytext,,,""
+NULL,209,124,100,bodytext,,,""
+NULL,209,125,100,bodytext,,,""
+NULL,209,126,100,bodytext,,,""
+NULL,209,127,100,bodytext,,,""
+NULL,209,128,100,bodytext,,,""
+NULL,209,129,100,bodytext,,,""
+NULL,209,130,100,bodytext,,,""
+NULL,209,131,100,bodytext,,,""
+NULL,209,132,100,bodytext,,,""
+NULL,209,133,100,centered,,,""
+NULL,209,134,4,subhead,Bāhiranidānakathāvaṇṇanā,,""
+NULL,209,135,100,bodytext,,,""
+NULL,209,136,4,subhead,Paṭhamamahāsaṅgītikathāvaṇṇanā,,""
+NULL,209,137,100,bodytext,,,""
+NULL,209,138,100,gatha1,,,""
+NULL,209,139,100,gathalast,,,""
+NULL,209,140,100,bodytext,,,""
+NULL,209,141,100,bodytext,,,""
+NULL,209,142,100,bodytext,,,""
+NULL,209,143,100,gatha1,,,""
+NULL,209,144,100,gathalast,,,""
+NULL,209,145,100,gatha1,,,""
+NULL,209,146,100,gathalast,,,""
+NULL,209,147,100,bodytext,,,""
+NULL,209,148,100,centered,,,""
+NULL,209,149,4,subhead,Dutiyasaṅgītikathāvaṇṇanā,,""
+NULL,209,150,100,bodytext,,,""
+NULL,209,151,100,centered,,,""
+NULL,209,152,4,subhead,Tatiyasaṅgītikathāvaṇṇanā,,""
+NULL,209,153,100,bodytext,,,""
+NULL,209,154,100,gatha1,,,""
+NULL,209,155,100,gathalast,,,""
+NULL,209,156,100,bodytext,,,""
+NULL,209,157,100,gatha1,,,""
+NULL,209,158,100,gathalast,,,""
+NULL,209,159,100,bodytext,,,""
+NULL,209,160,100,centered,,,""
+NULL,209,161,100,bodytext,,,""
+NULL,209,162,100,bodytext,,,""
+NULL,209,163,100,gatha1,,,""
+NULL,209,164,100,gathalast,,,""
+NULL,209,165,100,centered,,,""
+NULL,209,166,2,chapter,Pārājikavaṇṇanā,巴拉基卡注,visuddhinanda
+NULL,209,167,4,subhead,Verañjakaṇḍo,,""
+NULL,209,168,4,subhead,Verañjakaṇḍavaṇṇanā,,""
+NULL,209,169,100,bodytext,,,""
+NULL,209,170,100,bodytext,,,""
+NULL,209,171,100,gatha1,,,""
+NULL,209,172,100,gathalast,,,""
+NULL,209,173,100,unindented,,,""
+NULL,209,174,100,bodytext,,,""
+NULL,209,175,100,bodytext,,,""
+NULL,209,176,100,bodytext,,,""
+NULL,209,177,100,bodytext,,,""
+NULL,209,178,100,bodytext,,,""
+NULL,209,179,100,bodytext,,,""
+NULL,209,180,100,bodytext,,,""
+NULL,209,181,100,bodytext,,,""
+NULL,209,182,100,bodytext,,,""
+NULL,209,183,100,bodytext,,,""
+NULL,209,184,100,bodytext,,,""
+NULL,209,185,100,bodytext,,,""
+NULL,209,186,100,bodytext,,,""
+NULL,209,187,100,bodytext,,,""
+NULL,209,188,100,bodytext,,,""
+NULL,209,189,100,bodytext,,,""
+NULL,209,190,100,gatha1,,,""
+NULL,209,191,100,gatha2,,,""
+NULL,209,192,100,gatha3,,,""
+NULL,209,193,100,gathalast,,,""
+NULL,209,194,100,unindented,,,""
+NULL,209,195,100,bodytext,,,""
+NULL,209,196,100,bodytext,,,""
+NULL,209,197,100,bodytext,,,""
+NULL,209,198,100,centered,,,""
+NULL,209,199,4,subhead,Pubbenivāsakathāvaṇṇanā,,""
+NULL,209,200,100,bodytext,,,""
+NULL,209,201,100,gatha1,,,""
+NULL,209,202,100,gathalast,,,""
+NULL,209,203,100,bodytext,,,""
+NULL,209,204,100,bodytext,,,""
+NULL,209,205,100,bodytext,,,""
+NULL,209,206,100,bodytext,,,""
+NULL,209,207,100,gatha1,,,""
+NULL,209,208,100,gathalast,,,""
+NULL,209,209,100,unindented,,,""
+NULL,209,210,100,bodytext,,,""
+NULL,209,211,100,centered,,,""
+NULL,209,212,4,subhead,Dibbacakkhuñāṇakathāvaṇṇanā,,""
+NULL,209,213,100,bodytext,,,""
+NULL,209,214,100,bodytext,,,""
+NULL,209,215,100,centered,,,""
+NULL,209,216,4,subhead,Āsavakkhayañāṇakathāvaṇṇanā,,""
+NULL,209,217,100,bodytext,,,""
+NULL,209,218,100,centered,,,""
+NULL,209,219,4,subhead,Upāsakattapaṭivedanākathāvaṇṇanā,,""
+NULL,209,220,100,bodytext,,,""
+NULL,209,221,100,bodytext,,,""
+NULL,209,222,100,bodytext,,,""
+NULL,209,223,100,bodytext,,,""
+NULL,209,224,100,gatha1,,,""
+NULL,209,225,100,gathalast,,,""
+NULL,209,226,100,unindented,,,""
+NULL,209,227,100,bodytext,,,""
+NULL,209,228,100,bodytext,,,""
+NULL,209,229,100,bodytext,,,""
+NULL,209,230,100,gatha1,,,""
+NULL,209,231,100,gatha2,,,""
+NULL,209,232,100,gatha3,,,""
+NULL,209,233,100,gathalast,,,""
+NULL,209,234,100,gatha1,,,""
+NULL,209,235,100,gatha2,,,""
+NULL,209,236,100,gatha3,,,""
+NULL,209,237,100,gathalast,,,""
+NULL,209,238,100,gatha1,,,""
+NULL,209,239,100,gatha2,,,""
+NULL,209,240,100,gatha3,,,""
+NULL,209,241,100,gathalast,,,""
+NULL,209,242,100,gatha1,,,""
+NULL,209,243,100,gatha2,,,""
+NULL,209,244,100,gatha3,,,""
+NULL,209,245,100,gathalast,,,""
+NULL,209,246,100,gatha1,,,""
+NULL,209,247,100,gatha2,,,""
+NULL,209,248,100,gatha3,,,""
+NULL,209,249,100,gathalast,,,""
+NULL,209,250,100,bodytext,,,""
+NULL,209,251,100,gatha1,,,""
+NULL,209,252,100,gathalast,,,""
+NULL,209,253,100,bodytext,,,""
+NULL,209,254,100,bodytext,,,""
+NULL,209,255,100,bodytext,,,""
+NULL,209,256,100,bodytext,,,""
+NULL,209,257,100,gatha1,,,""
+NULL,209,258,100,gatha2,,,""
+NULL,209,259,100,gatha3,,,""
+NULL,209,260,100,gathalast,,,""
+NULL,209,261,100,bodytext,,,""
+NULL,209,262,100,gatha1,,,""
+NULL,209,263,100,gatha2,,,""
+NULL,209,264,100,gatha3,,,""
+NULL,209,265,100,gathalast,,,""
+NULL,209,266,100,bodytext,,,""
+NULL,209,267,100,gatha1,,,""
+NULL,209,268,100,gatha2,,,""
+NULL,209,269,100,gatha3,,,""
+NULL,209,270,100,gatha2,,,""
+NULL,209,271,100,gatha3,,,""
+NULL,209,272,100,gathalast,,,""
+NULL,209,273,100,bodytext,,,""
+NULL,209,274,100,gatha1,,,""
+NULL,209,275,100,gathalast,,,""
+NULL,209,276,100,bodytext,,,""
+NULL,209,277,100,bodytext,,,""
+NULL,209,278,100,centered,,,""
+NULL,209,279,100,centered,,,""
+NULL,209,280,4,subhead,1. Pārājikakaṇḍo,,""
+NULL,209,281,3,title,1. Paṭhamapārājikaṃ,第一巴拉基卡,visuddhinanda
+NULL,209,282,4,subhead,Sudinnabhāṇavāravaṇṇanā,,""
+NULL,209,283,100,gatha1,,,""
+NULL,209,284,100,gathalast,,,""
+NULL,209,285,100,bodytext,,,""
+NULL,209,286,100,gatha1,,,""
+NULL,209,287,100,gathalast,,,""
+NULL,209,288,100,gatha1,,,""
+NULL,209,289,100,gathalast,,,""
+NULL,209,290,100,gatha1,,,""
+NULL,209,291,100,gathalast,,,""
+NULL,209,292,100,gatha1,,,""
+NULL,209,293,100,gathalast,,,""
+NULL,209,294,100,gatha1,,,""
+NULL,209,295,100,gathalast,,,""
+NULL,209,296,100,gatha1,,,""
+NULL,209,297,100,gathalast,,,""
+NULL,209,298,100,bodytext,,,""
+NULL,209,299,100,gatha1,,,""
+NULL,209,300,100,gathalast,,,""
+NULL,209,301,100,bodytext,,,""
+NULL,209,302,100,bodytext,,,""
+NULL,209,303,100,bodytext,,,""
+NULL,209,304,100,gatha1,,,""
+NULL,209,305,100,gathalast,,,""
+NULL,209,306,100,bodytext,,,""
+NULL,209,307,100,bodytext,,,""
+NULL,209,308,100,bodytext,,,""
+NULL,209,309,100,gatha1,,,""
+NULL,209,310,100,gathalast,,,""
+NULL,209,311,100,gatha1,,,""
+NULL,209,312,100,gathalast,,,""
+NULL,209,313,100,gatha1,,,""
+NULL,209,314,100,gathalast,,,""
+NULL,209,315,100,gatha1,,,""
+NULL,209,316,100,gathalast,,,""
+NULL,209,317,100,gatha1,,,""
+NULL,209,318,100,gathalast,,,""
+NULL,209,319,100,bodytext,,,""
+NULL,209,320,100,gatha1,,,""
+NULL,209,321,100,gatha2,,,""
+NULL,209,322,100,gathalast,,,""
+NULL,209,323,100,bodytext,,,""
+NULL,209,324,100,gatha1,,,""
+NULL,209,325,100,gathalast,,,""
+NULL,209,326,100,bodytext,,,""
+NULL,209,327,100,bodytext,,,""
+NULL,209,328,100,bodytext,,,""
+NULL,209,329,100,bodytext,,,""
+NULL,209,330,100,centered,,,""
+NULL,209,331,100,centered,,,""
+NULL,209,332,4,subhead,Makkaṭīvatthukathāvaṇṇanā,,""
+NULL,209,333,100,bodytext,,,""
+NULL,209,334,100,bodytext,,,""
+NULL,209,335,100,bodytext,,,""
+NULL,209,336,100,centered,,,""
+NULL,209,337,4,subhead,Vajjiputtakavatthuvaṇṇanā,,""
+NULL,209,338,100,bodytext,,,""
+NULL,209,339,100,gatha1,,,""
+NULL,209,340,100,gathalast,,,""
+NULL,209,341,100,unindented,,,""
+NULL,209,342,100,bodytext,,,""
+NULL,209,343,100,gatha1,,,""
+NULL,209,344,100,gathalast,,,""
+NULL,209,345,100,unindented,,,""
+NULL,209,346,100,bodytext,,,""
+NULL,209,347,100,bodytext,,,""
+NULL,209,348,100,bodytext,,,""
+NULL,209,349,100,bodytext,,,""
+NULL,209,350,100,bodytext,,,""
+NULL,209,351,100,bodytext,,,""
+NULL,209,352,100,bodytext,,,""
+NULL,209,353,100,bodytext,,,""
+NULL,209,354,100,bodytext,,,""
+NULL,209,355,100,centered,,,""
+NULL,209,356,4,subhead,Catubbidhavinayakathāvaṇṇanā,,""
+NULL,209,357,100,bodytext,,,""
+NULL,209,358,100,bodytext,,,""
+NULL,209,359,100,bodytext,,,""
+NULL,209,360,100,bodytext,,,""
+NULL,209,361,100,bodytext,,,""
+NULL,209,362,100,gatha1,,,""
+NULL,209,363,100,gathalast,,,""
+NULL,209,364,100,unindented,,,""
+NULL,209,365,100,bodytext,,,""
+NULL,209,366,100,bodytext,,,""
+NULL,209,367,100,bodytext,,,""
+NULL,209,368,100,centered,,,""
+NULL,209,369,4,subhead,Padabhājanīyavaṇṇanā,,""
+NULL,209,370,100,bodytext,,,""
+NULL,209,371,100,bodytext,,,""
+NULL,209,372,100,bodytext,,,""
+NULL,209,373,100,bodytext,,,""
+NULL,209,374,100,bodytext,,,""
+NULL,209,375,100,bodytext,,,""
+NULL,209,376,100,bodytext,,,""
+NULL,209,377,100,bodytext,,,""
+NULL,209,378,100,bodytext,,,""
+NULL,209,379,100,bodytext,,,""
+NULL,209,380,4,subhead,Sājīvapadabhājanīyavaṇṇanā,,""
+NULL,209,381,100,bodytext,,,""
+NULL,209,382,100,bodytext,,,""
+NULL,209,383,100,bodytext,,,""
+NULL,209,384,4,subhead,Sikkhāpaccakkhānakathāvaṇṇanā,,""
+NULL,209,385,100,bodytext,,,""
+NULL,209,386,100,bodytext,,,""
+NULL,209,387,100,bodytext,,,""
+NULL,209,388,100,bodytext,,,""
+NULL,209,389,100,bodytext,,,""
+NULL,209,390,100,centered,,,""
+NULL,209,391,4,subhead,Mūlapaññattikathāvaṇṇanā,,""
+NULL,209,392,100,bodytext,,,""
+NULL,209,393,100,bodytext,,,""
+NULL,209,394,100,gatha1,,,""
+NULL,209,395,100,gatha2,,,""
+NULL,209,396,100,gatha3,,,""
+NULL,209,397,100,gathalast,,,""
+NULL,209,398,100,unindented,,,""
+NULL,209,399,4,subhead,Paṭhamacatukkakathāvaṇṇanā,,""
+NULL,209,400,100,bodytext,,,""
+NULL,209,401,100,bodytext,,,""
+NULL,209,402,100,indent,,,""
+NULL,209,403,100,bodytext,,,""
+NULL,209,404,100,centered,,,""
+NULL,209,405,4,subhead,Ekūnasattatidvisatacatukkakathāvaṇṇanā,,""
+NULL,209,406,100,bodytext,,,""
+NULL,209,407,100,bodytext,,,""
+NULL,209,408,100,bodytext,,,""
+NULL,209,409,100,centered,,,""
+NULL,209,410,4,subhead,Santhatacatukkabhedakakathāvaṇṇanā,,""
+NULL,209,411,100,bodytext,,,""
+NULL,209,412,100,centered,,,""
+NULL,209,413,100,centered,,,""
+NULL,209,414,4,subhead,Pakiṇṇakakathāvaṇṇanā,,""
+NULL,209,415,100,bodytext,,,""
+NULL,209,416,100,bodytext,,,""
+NULL,209,417,100,bodytext,,,""
+NULL,209,418,100,bodytext,,,""
+NULL,209,419,100,bodytext,,,""
+NULL,209,420,100,bodytext,,,""
+NULL,209,421,4,subhead,Vinītavatthuvaṇṇanā,,""
+NULL,209,422,100,bodytext,,,""
+NULL,209,423,100,bodytext,,,""
+NULL,209,424,100,bodytext,,,""
+NULL,209,425,100,bodytext,,,""
+NULL,209,426,100,bodytext,,,""
+NULL,209,427,100,bodytext,,,""
+NULL,209,428,100,bodytext,,,""
+NULL,209,429,100,bodytext,,,""
+NULL,209,430,100,bodytext,,,""
+NULL,209,431,100,bodytext,,,""
+NULL,209,432,100,bodytext,,,""
+NULL,209,433,100,centered,,,""
+NULL,209,434,3,title,2. Dutiyapārājikaṃ,第二巴拉基卡,visuddhinanda
+NULL,209,435,4,subhead,Dhaniyavatthuvaṇṇanā,,""
+NULL,209,436,100,bodytext,,,""
+NULL,209,437,100,bodytext,,,""
+NULL,209,438,4,subhead,Pāḷimuttakavinicchayavaṇṇanā,,""
+NULL,209,439,100,bodytext,,,""
+NULL,209,440,100,bodytext,,,""
+NULL,209,441,100,bodytext,,,""
+NULL,209,442,100,bodytext,,,""
+NULL,209,443,100,bodytext,,,""
+NULL,209,444,4,subhead,Padabhājanīyavaṇṇanā,,""
+NULL,209,445,100,bodytext,,,""
+NULL,209,446,100,bodytext,,,""
+NULL,209,447,100,bodytext,,,""
+NULL,209,448,4,subhead,Pañcavīsatiavahārakathāvaṇṇanā,,""
+NULL,209,449,100,bodytext,,,""
+NULL,209,450,4,subhead,Bhūmaṭṭhakathādivaṇṇanā,,""
+NULL,209,451,100,bodytext,,,""
+NULL,209,452,100,bodytext,,,""
+NULL,209,453,100,bodytext,,,""
+NULL,209,454,100,bodytext,,,""
+NULL,209,455,100,bodytext,,,""
+NULL,209,456,100,bodytext,,,""
+NULL,209,457,100,bodytext,,,""
+NULL,209,458,100,bodytext,,,""
+NULL,209,459,100,bodytext,,,""
+NULL,209,460,100,bodytext,,,""
+NULL,209,461,100,bodytext,,,""
+NULL,209,462,100,bodytext,,,""
+NULL,209,463,100,bodytext,,,""
+NULL,209,464,100,bodytext,,,""
+NULL,209,465,100,bodytext,,,""
+NULL,209,466,100,bodytext,,,""
+NULL,209,467,100,bodytext,,,""
+NULL,209,468,100,bodytext,,,""
+NULL,209,469,100,bodytext,,,""
+NULL,209,470,100,bodytext,,,""
+NULL,209,471,100,bodytext,,,""
+NULL,209,472,100,bodytext,,,""
+NULL,209,473,100,bodytext,,,""
+NULL,209,474,100,bodytext,,,""
+NULL,209,475,100,bodytext,,,""
+NULL,209,476,100,bodytext,,,""
+NULL,209,477,100,bodytext,,,""
+NULL,209,478,100,bodytext,,,""
+NULL,209,479,100,centered,,,""
+NULL,209,480,4,subhead,Āpattibhedavaṇṇanā,,""
+NULL,209,481,100,bodytext,,,""
+NULL,209,482,100,bodytext,,,""
+NULL,209,483,100,centered,,,""
+NULL,209,484,4,subhead,Anāpattibhedavaṇṇanā,,""
+NULL,209,485,100,bodytext,,,""
+NULL,209,486,100,centered,,,""
+NULL,209,487,4,subhead,Pakiṇṇakakathāvaṇṇanā,,""
+NULL,209,488,100,bodytext,,,""
+NULL,209,489,100,bodytext,,,""
+NULL,209,490,100,gatha1,,,""
+NULL,209,491,100,gathalast,,,""
+NULL,209,492,100,gatha1,,,""
+NULL,209,493,100,gathalast,,,""
+NULL,209,494,4,subhead,Vinītavatthuvaṇṇanā,,""
+NULL,209,495,100,bodytext,,,""
+NULL,209,496,100,gatha1,,,""
+NULL,209,497,100,gathalast,,,""
+NULL,209,498,100,bodytext,,,""
+NULL,209,499,100,bodytext,,,""
+NULL,209,500,4,subhead,Kusasaṅkāmanavatthukathāvaṇṇanā,,""
+NULL,209,501,100,bodytext,,,""
+NULL,209,502,100,bodytext,,,""
+NULL,209,503,100,bodytext,,,""
+NULL,209,504,100,bodytext,,,""
+NULL,209,505,100,bodytext,,,""
+NULL,209,506,100,bodytext,,,""
+NULL,209,507,100,bodytext,,,""
+NULL,209,508,100,centered,,,""
+NULL,209,509,3,title,3. Tatiyapārājikaṃ,三、第三巴拉基卡,visuddhinanda
+NULL,209,510,4,subhead,Paṭhamapaññattinidānavaṇṇanā,,""
+NULL,209,511,100,bodytext,,,""
+NULL,209,512,100,bodytext,,,""
+NULL,209,513,100,bodytext,,,""
+NULL,209,514,100,bodytext,,,""
+NULL,209,515,100,bodytext,,,""
+NULL,209,516,100,bodytext,,,""
+NULL,209,517,100,bodytext,,,""
+NULL,209,518,4,subhead,Ānāpānassatisamādhikathāvaṇṇanā,,""
+NULL,209,519,100,bodytext,,,""
+NULL,209,520,100,bodytext,,,""
+NULL,209,521,100,bodytext,,,""
+NULL,209,522,100,bodytext,,,""
+NULL,209,523,100,bodytext,,,""
+NULL,209,524,100,bodytext,,,""
+NULL,209,525,100,bodytext,,,""
+NULL,209,526,100,bodytext,,,""
+NULL,209,527,100,bodytext,,,""
+NULL,209,528,100,bodytext,,,""
+NULL,209,529,100,bodytext,,,""
+NULL,209,530,100,bodytext,,,""
+NULL,209,531,100,bodytext,,,""
+NULL,209,532,100,bodytext,,,""
+NULL,209,533,100,bodytext,,,""
+NULL,209,534,100,bodytext,,,""
+NULL,209,535,100,bodytext,,,""
+NULL,209,536,100,bodytext,,,""
+NULL,209,537,100,bodytext,,,""
+NULL,209,538,4,subhead,Padabhājanīyavaṇṇanā,,""
+NULL,209,539,100,bodytext,,,""
+NULL,209,540,100,gatha1,,,""
+NULL,209,541,100,gatha2,,,""
+NULL,209,542,100,gathalast,,,""
+NULL,209,543,100,bodytext,,,""
+NULL,209,544,100,bodytext,,,""
+NULL,209,545,100,bodytext,,,""
+NULL,209,546,100,bodytext,,,""
+NULL,209,547,100,gatha1,,,""
+NULL,209,548,100,gathalast,,,""
+NULL,209,549,100,gatha1,,,""
+NULL,209,550,100,gathalast,,,""
+NULL,209,551,100,gatha1,,,""
+NULL,209,552,100,gathalast,,,""
+NULL,209,553,100,gatha1,,,""
+NULL,209,554,100,gathalast,,,""
+NULL,209,555,100,gatha1,,,""
+NULL,209,556,100,gathalast,,,""
+NULL,209,557,100,gatha1,,,""
+NULL,209,558,100,gathalast,,,""
+NULL,209,559,100,gatha1,,,""
+NULL,209,560,100,gathalast,,,""
+NULL,209,561,100,gatha1,,,""
+NULL,209,562,100,gathalast,,,""
+NULL,209,563,100,gatha1,,,""
+NULL,209,564,100,gathalast,,,""
+NULL,209,565,100,gatha1,,,""
+NULL,209,566,100,gathalast,,,""
+NULL,209,567,100,gatha1,,,""
+NULL,209,568,100,gathalast,,,""
+NULL,209,569,100,gatha1,,,""
+NULL,209,570,100,gathalast,,,""
+NULL,209,571,100,gatha1,,,""
+NULL,209,572,100,gathalast,,,""
+NULL,209,573,100,gatha1,,,""
+NULL,209,574,100,gathalast,,,""
+NULL,209,575,100,bodytext,,,""
+NULL,209,576,100,bodytext,,,""
+NULL,209,577,100,bodytext,,,""
+NULL,209,578,100,bodytext,,,""
+NULL,209,579,100,bodytext,,,""
+NULL,209,580,100,bodytext,,,""
+NULL,209,581,100,bodytext,,,""
+NULL,209,582,100,bodytext,,,""
+NULL,209,583,100,bodytext,,,""
+NULL,209,584,100,bodytext,,,""
+NULL,209,585,100,bodytext,,,""
+NULL,209,586,100,bodytext,,,""
+NULL,209,587,100,gatha1,,,""
+NULL,209,588,100,gathalast,,,""
+NULL,209,589,100,bodytext,,,""
+NULL,209,590,100,bodytext,,,""
+NULL,209,591,100,bodytext,,,""
+NULL,209,592,100,centered,,,""
+NULL,209,593,4,subhead,Vinītavatthuvaṇṇanā,,""
+NULL,209,594,100,bodytext,,,""
+NULL,209,595,100,bodytext,,,""
+NULL,209,596,100,bodytext,,,""
+NULL,209,597,100,bodytext,,,""
+NULL,209,598,100,bodytext,,,""
+NULL,209,599,100,bodytext,,,""
+NULL,209,600,100,bodytext,,,""
+NULL,209,601,100,bodytext,,,""
+NULL,209,602,100,bodytext,,,""
+NULL,209,603,100,bodytext,,,""
+NULL,209,604,100,centered,,,""
+NULL,209,605,3,title,4. Catutthapārājikaṃ,四、第四巴拉基卡,visuddhinanda
+NULL,209,606,4,subhead,Vaggumudātīriyabhikkhuvatthuvaṇṇanā,,""
+NULL,209,607,100,bodytext,,,""
+NULL,209,608,100,bodytext,,,""
+NULL,209,609,4,subhead,Savibhaṅgasikkhāpadavaṇṇanā,,""
+NULL,209,610,100,bodytext,,,""
+NULL,209,611,4,subhead,Padabhājanīyavaṇṇanā,,""
+NULL,209,612,100,bodytext,,,""
+NULL,209,613,100,bodytext,,,""
+NULL,209,614,100,bodytext,,,""
+NULL,209,615,100,bodytext,,,""
+NULL,209,616,100,centered,,,""
+NULL,209,617,4,subhead,Vattukāmavārakathāvaṇṇanā,,""
+NULL,209,618,100,bodytext,,,""
+NULL,209,619,100,centered,,,""
+NULL,209,620,4,subhead,Anāpattibhedakathāvaṇṇanā,,""
+NULL,209,621,100,bodytext,,,""
+NULL,209,622,100,centered,,,""
+NULL,209,623,4,subhead,Vinītavatthuvaṇṇanā,,""
+NULL,209,624,100,bodytext,,,""
+NULL,209,625,100,bodytext,,,""
+NULL,209,626,100,bodytext,,,""
+NULL,209,627,4,subhead,Nigamanavaṇṇanā,,""
+NULL,209,628,100,bodytext,,,""
+NULL,209,629,100,centered,,,""
+NULL,209,630,100,centered,,,""
+NULL,209,631,4,subhead,2. Saṅghādisesakaṇḍo,二、桑咖地谢沙章,visuddhinanda
+NULL,209,632,4,subhead,1. Sukkavissaṭṭhisikkhāpadavaṇṇanā,,""
+NULL,209,633,100,bodytext,,,""
+NULL,209,634,100,bodytext,,,""
+NULL,209,635,100,bodytext,,,""
+NULL,209,636,100,bodytext,,,""
+NULL,209,637,100,bodytext,,,""
+NULL,209,638,100,bodytext,,,""
+NULL,209,639,100,bodytext,,,""
+NULL,209,640,100,bodytext,,,""
+NULL,209,641,100,bodytext,,,""
+NULL,209,642,100,bodytext,,,""
+NULL,209,643,100,bodytext,,,""
+NULL,209,644,100,centered,,,""
+NULL,209,645,4,subhead,2. Kāyasaṃsaggasikkhāpadavaṇṇanā,,""
+NULL,209,646,100,bodytext,,,""
+NULL,209,647,100,bodytext,,,""
+NULL,209,648,100,bodytext,,,""
+NULL,209,649,4,subhead,Padabhājanīyavaṇṇanā,,""
+NULL,209,650,100,bodytext,,,""
+NULL,209,651,100,bodytext,,,""
+NULL,209,652,100,bodytext,,,""
+NULL,209,653,100,bodytext,,,""
+NULL,209,654,100,bodytext,,,""
+NULL,209,655,100,bodytext,,,""
+NULL,209,656,4,subhead,Vinītavatthuvaṇṇanā,,""
+NULL,209,657,100,bodytext,,,""
+NULL,209,658,100,bodytext,,,""
+NULL,209,659,100,indent,,,""
+NULL,209,660,100,bodytext,,,""
+NULL,209,661,100,centered,,,""
+NULL,209,662,4,subhead,3. Duṭṭhullavācāsikkhāpadavaṇṇanā,,""
+NULL,209,663,100,bodytext,,,""
+NULL,209,664,4,subhead,Padabhājanīyavaṇṇanā,,""
+NULL,209,665,100,bodytext,,,""
+NULL,209,666,100,bodytext,,,""
+NULL,209,667,4,subhead,Vinītavatthuvaṇṇanā,,""
+NULL,209,668,100,bodytext,,,""
+NULL,209,669,100,centered,,,""
+NULL,209,670,4,subhead,4. Attakāmapāricariyasikkhāpadavaṇṇanā,,""
+NULL,209,671,100,bodytext,,,""
+NULL,209,672,100,bodytext,,,""
+NULL,209,673,100,bodytext,,,""
+NULL,209,674,100,centered,,,""
+NULL,209,675,4,subhead,5. Sañcarittasikkhāpadavaṇṇanā,,""
+NULL,209,676,100,bodytext,,,""
+NULL,209,677,100,bodytext,,,""
+NULL,209,678,4,subhead,Padabhājanīyavaṇṇanā,,""
+NULL,209,679,100,bodytext,,,""
+NULL,209,680,100,bodytext,,,""
+NULL,209,681,100,bodytext,,,""
+NULL,209,682,100,bodytext,,,""
+NULL,209,683,4,subhead,Vinītavatthuvaṇṇanā,,""
+NULL,209,684,100,bodytext,,,""
+NULL,209,685,100,centered,,,""
+NULL,209,686,4,subhead,6. Kuṭikārasikkhāpadavaṇṇanā,,""
+NULL,209,687,100,bodytext,,,""
+NULL,209,688,100,bodytext,,,""
+NULL,209,689,100,bodytext,,,""
+NULL,209,690,100,bodytext,,,""
+NULL,209,691,100,bodytext,,,""
+NULL,209,692,100,bodytext,,,""
+NULL,209,693,100,bodytext,,,""
+NULL,209,694,100,bodytext,,,""
+NULL,209,695,100,centered,,,""
+NULL,209,696,4,subhead,7. Vihārakārasikkhāpadavaṇṇanā,,""
+NULL,209,697,100,bodytext,,,""
+NULL,209,698,100,centered,,,""
+NULL,209,699,4,subhead,8. Paṭhamaduṭṭhadosasikkhāpadavaṇṇanā,,""
+NULL,209,700,100,bodytext,,,""
+NULL,209,701,100,bodytext,,,""
+NULL,209,702,100,bodytext,,,""
+NULL,209,703,100,bodytext,,,""
+NULL,209,704,100,bodytext,,,""
+NULL,209,705,100,bodytext,,,""
+NULL,209,706,100,bodytext,,,""
+NULL,209,707,100,bodytext,,,""
+NULL,209,708,100,bodytext,,,""
+NULL,209,709,100,gatha1,,,""
+NULL,209,710,100,gatha2,,,""
+NULL,209,711,100,gatha3,,,""
+NULL,209,712,100,gathalast,,,""
+NULL,209,713,100,gatha1,,,""
+NULL,209,714,100,gatha2,,,""
+NULL,209,715,100,gatha3,,,""
+NULL,209,716,100,gathalast,,,""
+NULL,209,717,100,bodytext,,,""
+NULL,209,718,100,bodytext,,,""
+NULL,209,719,100,bodytext,,,""
+NULL,209,720,100,centered,,,""
+NULL,209,721,4,subhead,9. Dutiyaduṭṭhadosasikkhāpadavaṇṇanā,,""
+NULL,209,722,100,bodytext,,,""
+NULL,209,723,100,bodytext,,,""
+NULL,209,724,100,bodytext,,,""
+NULL,209,725,100,bodytext,,,""
+NULL,209,726,100,bodytext,,,""
+NULL,209,727,100,bodytext,,,""
+NULL,209,728,100,bodytext,,,""
+NULL,209,729,100,bodytext,,,""
+NULL,209,730,100,bodytext,,,""
+NULL,209,731,100,bodytext,,,""
+NULL,209,732,100,centered,,,""
+NULL,209,733,100,bodytext,,,""
+NULL,209,734,100,centered,,,""
+NULL,209,735,4,subhead,10. Paṭhamasaṅghabhedasikkhāpadavaṇṇanā,,""
+NULL,209,736,100,bodytext,,,""
+NULL,209,737,100,bodytext,,,""
+NULL,209,738,100,bodytext,,,""
+NULL,209,739,100,bodytext,,,""
+NULL,209,740,100,bodytext,,,""
+NULL,209,741,100,bodytext,,,""
+NULL,209,742,100,centered,,,""
+NULL,209,743,4,subhead,11. Dutiyasaṅghabhedasikkhāpadavaṇṇanā,,""
+NULL,209,744,100,bodytext,,,""
+NULL,209,745,100,centered,,,""
+NULL,209,746,4,subhead,12. Dubbacasikkhāpadavaṇṇanā,,""
+NULL,209,747,100,bodytext,,,""
+NULL,209,748,100,bodytext,,,""
+NULL,209,749,100,centered,,,""
+NULL,209,750,4,subhead,13. Kuladūsakasikkhāpadavaṇṇanā,,""
+NULL,209,751,100,bodytext,,,""
+NULL,209,752,100,bodytext,,,""
+NULL,209,753,100,bodytext,,,""
+NULL,209,754,100,bodytext,,,""
+NULL,209,755,100,bodytext,,,""
+NULL,209,756,100,bodytext,,,""
+NULL,209,757,100,centered,,,""
+NULL,209,758,100,centered,,,""
+NULL,209,759,4,subhead,3. Aniyatakaṇḍo,,""
+NULL,209,760,4,subhead,1. Paṭhamaaniyatasikkhāpadavaṇṇanā,,""
+NULL,209,761,100,bodytext,,,""
+NULL,209,762,100,bodytext,,,""
+NULL,209,763,100,centered,,,""
+NULL,209,764,4,subhead,2. Dutiyaaniyatasikkhāpadavaṇṇanā,,""
+NULL,209,765,100,bodytext,,,""
+NULL,209,766,100,bodytext,,,""
+NULL,209,767,100,centered,,,""
+NULL,209,768,4,subhead,Pakiṇṇakavaṇṇanā,,""
+NULL,209,769,100,bodytext,,,""
+NULL,209,770,100,centered,,,""
+NULL,209,771,100,centered,,,""
+NULL,209,772,4,subhead,4. Nissaggiyakaṇḍo,四、尼萨基亚章,visuddhinanda
+NULL,209,773,3,title,1. Cīvaravaggo,衣节,visuddhinanda
+NULL,209,774,4,subhead,1. Paṭhamakathinasikkhāpadavaṇṇanā,,""
+NULL,209,775,100,bodytext,,,""
+NULL,209,776,100,bodytext,,,""
+NULL,209,777,100,bodytext,,,""
+NULL,209,778,100,bodytext,,,""
+NULL,209,779,100,bodytext,,,""
+NULL,209,780,100,bodytext,,,""
+NULL,209,781,100,bodytext,,,""
+NULL,209,782,100,bodytext,,,""
+NULL,209,783,100,bodytext,,,""
+NULL,209,784,100,bodytext,,,""
+NULL,209,785,100,bodytext,,,""
+NULL,209,786,100,bodytext,,,""
+NULL,209,787,100,bodytext,,,""
+NULL,209,788,100,bodytext,,,""
+NULL,209,789,100,bodytext,,,""
+NULL,209,790,100,bodytext,,,""
+NULL,209,791,100,bodytext,,,""
+NULL,209,792,100,bodytext,,,""
+NULL,209,793,100,bodytext,,,""
+NULL,209,794,100,bodytext,,,""
+NULL,209,795,100,bodytext,,,""
+NULL,209,796,100,bodytext,,,""
+NULL,209,797,100,bodytext,,,""
+NULL,209,798,100,gatha1,,,""
+NULL,209,799,100,gatha2,,,""
+NULL,209,800,100,gatha3,,,""
+NULL,209,801,100,gathalast,,,""
+NULL,209,802,100,bodytext,,,""
+NULL,209,803,100,centered,,,""
+NULL,209,804,4,subhead,2. Udositasikkhāpadavaṇṇanā,,""
+NULL,209,805,100,bodytext,,,""
+NULL,209,806,100,bodytext,,,""
+NULL,209,807,100,bodytext,,,""
+NULL,209,808,100,bodytext,,,""
+NULL,209,809,100,bodytext,,,""
+NULL,209,810,100,bodytext,,,""
+NULL,209,811,100,bodytext,,,""
+NULL,209,812,100,gatha1,,,""
+NULL,209,813,100,gathalast,,,""
+NULL,209,814,100,unindented,,,""
+NULL,209,815,100,bodytext,,,""
+NULL,209,816,100,bodytext,,,""
+NULL,209,817,100,bodytext,,,""
+NULL,209,818,100,centered,,,""
+NULL,209,819,4,subhead,3. Tatiyakathinasikkhāpadavaṇṇanā,,""
+NULL,209,820,100,bodytext,,,""
+NULL,209,821,100,bodytext,,,""
+NULL,209,822,100,bodytext,,,""
+NULL,209,823,100,bodytext,,,""
+NULL,209,824,100,bodytext,,,""
+NULL,209,825,100,bodytext,,,""
+NULL,209,826,100,centered,,,""
+NULL,209,827,4,subhead,4. Purāṇacīvarasikkhāpadavaṇṇanā,,""
+NULL,209,828,100,bodytext,,,""
+NULL,209,829,100,bodytext,,,""
+NULL,209,830,100,centered,,,""
+NULL,209,831,4,subhead,5. Cīvarapaṭiggahaṇasikkhāpadavaṇṇanā,,""
+NULL,209,832,100,bodytext,,,""
+NULL,209,833,100,bodytext,,,""
+NULL,209,834,100,bodytext,,,""
+NULL,209,835,100,bodytext,,,""
+NULL,209,836,100,centered,,,""
+NULL,209,837,4,subhead,6. Aññātakaviññattisikkhāpadavaṇṇanā,,""
+NULL,209,838,100,bodytext,,,""
+NULL,209,839,100,bodytext,,,""
+NULL,209,840,100,bodytext,,,""
+NULL,209,841,100,bodytext,,,""
+NULL,209,842,100,bodytext,,,""
+NULL,209,843,100,centered,,,""
+NULL,209,844,4,subhead,7. Tatuttarisikkhāpadavaṇṇanā,,""
+NULL,209,845,100,bodytext,,,""
+NULL,209,846,100,bodytext,,,""
+NULL,209,847,100,centered,,,""
+NULL,209,848,4,subhead,8. Paṭhamaupakkhaṭasikkhāpadavaṇṇanā,,""
+NULL,209,849,100,bodytext,,,""
+NULL,209,850,100,centered,,,""
+NULL,209,851,4,subhead,9. Dutiyaupakkhaṭasikkhāpadavaṇṇanā,,""
+NULL,209,852,100,bodytext,,,""
+NULL,209,853,100,bodytext,,,""
+NULL,209,854,100,gatha1,,,""
+NULL,209,855,100,gathalast,,,""
+NULL,209,856,100,gatha1,,,""
+NULL,209,857,100,gathalast,,,""
+NULL,209,858,100,bodytext,,,""
+NULL,209,859,100,gatha1,,,""
+NULL,209,860,100,gatha2,,,""
+NULL,209,861,100,gatha3,,,""
+NULL,209,862,100,gathalast,,,""
+NULL,209,863,100,bodytext,,,""
+NULL,209,864,100,centered,,,""
+NULL,209,865,4,subhead,10. Rājasikkhāpadavaṇṇanā,,""
+NULL,209,866,100,bodytext,,,""
+NULL,209,867,100,bodytext,,,""
+NULL,209,868,100,bodytext,,,""
+NULL,209,869,100,bodytext,,,""
+NULL,209,870,100,bodytext,,,""
+NULL,209,871,100,bodytext,,,""
+NULL,209,872,100,gatha1,,,""
+NULL,209,873,100,gathalast,,,""
+NULL,209,874,100,centered,,,""
+NULL,209,875,100,centered,,,""
+NULL,209,876,3,title,2. Kosiyavaggo,,""
+NULL,209,877,4,subhead,1. Kosiyasikkhāpadavaṇṇanā,,""
+NULL,209,878,100,bodytext,,,""
+NULL,209,879,100,centered,,,""
+NULL,209,880,4,subhead,2. Suddhakāḷakasikkhāpadavaṇṇanā,,""
+NULL,209,881,100,bodytext,,,""
+NULL,209,882,100,centered,,,""
+NULL,209,883,4,subhead,3. Dvebhāgasikkhāpadavaṇṇanā,,""
+NULL,209,884,100,bodytext,,,""
+NULL,209,885,100,centered,,,""
+NULL,209,886,4,subhead,4. Chabbassasikkhāpadavaṇṇanā,,""
+NULL,209,887,100,bodytext,,,""
+NULL,209,888,100,centered,,,""
+NULL,209,889,4,subhead,5. Nisīdanasanthatasikkhāpadavaṇṇanā,,""
+NULL,209,890,100,bodytext,,,""
+NULL,209,891,100,bodytext,,,""
+NULL,209,892,100,bodytext,,,""
+NULL,209,893,100,bodytext,,,""
+NULL,209,894,100,bodytext,,,""
+NULL,209,895,100,bodytext,,,""
+NULL,209,896,100,centered,,,""
+NULL,209,897,4,subhead,6. Eḷakalomasikkhāpadavaṇṇanā,,""
+NULL,209,898,100,bodytext,,,""
+NULL,209,899,100,bodytext,,,""
+NULL,209,900,100,bodytext,,,""
+NULL,209,901,100,bodytext,,,""
+NULL,209,902,100,centered,,,""
+NULL,209,903,4,subhead,7. Eḷakalomadhovāpanasikkhāpadavaṇṇanā,,""
+NULL,209,904,100,bodytext,,,""
+NULL,209,905,100,centered,,,""
+NULL,209,906,4,subhead,8. Rūpiyasikkhāpadavaṇṇanā,,""
+NULL,209,907,100,bodytext,,,""
+NULL,209,908,100,bodytext,,,""
+NULL,209,909,100,bodytext,,,""
+NULL,209,910,100,bodytext,,,""
+NULL,209,911,100,bodytext,,,""
+NULL,209,912,100,bodytext,,,""
+NULL,209,913,100,bodytext,,,""
+NULL,209,914,100,centered,,,""
+NULL,209,915,4,subhead,9. Rūpiyasaṃvohārasikkhāpadavaṇṇanā,,""
+NULL,209,916,100,bodytext,,,""
+NULL,209,917,100,bodytext,,,""
+NULL,209,918,100,bodytext,,,""
+NULL,209,919,100,bodytext,,,""
+NULL,209,920,100,bodytext,,,""
+NULL,209,921,100,centered,,,""
+NULL,209,922,4,subhead,10. Kayavikkayasikkhāpadavaṇṇanā,,""
+NULL,209,923,100,bodytext,,,""
+NULL,209,924,100,centered,,,""
+NULL,209,925,100,centered,,,""
+NULL,209,926,3,title,3. Pattavaggo,,""
+NULL,209,927,4,subhead,1. Pattasikkhāpadavaṇṇanā,,""
+NULL,209,928,100,bodytext,,,""
+NULL,209,929,100,gatha1,,,""
+NULL,209,930,100,gathalast,,,""
+NULL,209,931,100,unindented,,,""
+NULL,209,932,100,bodytext,,,""
+NULL,209,933,100,bodytext,,,""
+NULL,209,934,100,bodytext,,,""
+NULL,209,935,100,centered,,,""
+NULL,209,936,4,subhead,2. Ūnapañcabandhanasikkhāpadavaṇṇanā,,""
+NULL,209,937,100,bodytext,,,""
+NULL,209,938,100,centered,,,""
+NULL,209,939,4,subhead,3. Bhesajjasikkhāpadavaṇṇanā,,""
+NULL,209,940,100,bodytext,,,""
+NULL,209,941,100,bodytext,,,""
+NULL,209,942,100,bodytext,,,""
+NULL,209,943,100,bodytext,,,""
+NULL,209,944,100,bodytext,,,""
+NULL,209,945,100,bodytext,,,""
+NULL,209,946,100,bodytext,,,""
+NULL,209,947,100,bodytext,,,""
+NULL,209,948,100,bodytext,,,""
+NULL,209,949,100,bodytext,,,""
+NULL,209,950,100,centered,,,""
+NULL,209,951,4,subhead,4. Vassikasāṭikasikkhāpadavaṇṇanā,,""
+NULL,209,952,100,bodytext,,,""
+NULL,209,953,100,bodytext,,,""
+NULL,209,954,100,bodytext,,,""
+NULL,209,955,100,bodytext,,,""
+NULL,209,956,100,bodytext,,,""
+NULL,209,957,100,centered,,,""
+NULL,209,958,4,subhead,5. Cīvaraacchindanasikkhāpadavaṇṇanā,,""
+NULL,209,959,100,bodytext,,,""
+NULL,209,960,100,bodytext,,,""
+NULL,209,961,100,centered,,,""
+NULL,209,962,4,subhead,6. Suttaviññattisikkhāpadavaṇṇanā,,""
+NULL,209,963,100,bodytext,,,""
+NULL,209,964,100,centered,,,""
+NULL,209,965,4,subhead,7. Mahāpesakārasikkhāpadavaṇṇanā,,""
+NULL,209,966,100,bodytext,,,""
+NULL,209,967,100,centered,,,""
+NULL,209,968,4,subhead,8. Accekacīvarasikkhāpadavaṇṇanā,,""
+NULL,209,969,100,bodytext,,,""
+NULL,209,970,100,bodytext,,,""
+NULL,209,971,100,bodytext,,,""
+NULL,209,972,100,bodytext,,,""
+NULL,209,973,100,bodytext,,,""
+NULL,209,974,100,bodytext,,,""
+NULL,209,975,100,centered,,,""
+NULL,209,976,4,subhead,9. Sāsaṅkasikkhāpadavaṇṇanā,,""
+NULL,209,977,100,bodytext,,,""
+NULL,209,978,100,bodytext,,,""
+NULL,209,979,100,centered,,,""
+NULL,209,980,4,subhead,10. Pariṇatasikkhāpadavaṇṇanā,,""
+NULL,209,981,100,bodytext,,,""
+NULL,209,982,100,gatha1,,,""
+NULL,209,983,100,gathalast,,,""
+NULL,209,984,100,bodytext,,,""
+NULL,209,985,100,gatha1,,,""
+NULL,209,986,100,gatha2,,,""
+NULL,209,987,100,gatha3,,,""
+NULL,209,988,100,gathalast,,,""
+NULL,209,989,100,centered,,,""
+NULL,209,990,100,centered,,,""
+NULL,209,991,100,centered,,,""
+NULL,209,992,2,chapter,Pācittiyavaṇṇanā,巴基帝亚详解,""
+NULL,209,993,4,subhead,5. Pācittiyakaṇḍo,,""
+NULL,209,994,3,title,1. Musāvādavaggo,,""
+NULL,209,995,4,subhead,1. Musāvādasikkhāpadavaṇṇanā,,""
+NULL,209,996,100,bodytext,,,""
+NULL,209,997,100,bodytext,,,""
+NULL,209,998,100,bodytext,,,""
+NULL,209,999,100,bodytext,,,""
+NULL,209,1000,100,bodytext,,,""
+NULL,209,1001,100,bodytext,,,""
+NULL,209,1002,100,bodytext,,,""
+NULL,209,1003,100,centered,,,""
+NULL,209,1004,4,subhead,2. Omasavādasikkhāpadavaṇṇanā,,""
+NULL,209,1005,100,bodytext,,,""
+NULL,209,1006,100,bodytext,,,""
+NULL,209,1007,100,bodytext,,,""
+NULL,209,1008,100,bodytext,,,""
+NULL,209,1009,100,centered,,,""
+NULL,209,1010,4,subhead,3. Pesuññasikkhāpadavaṇṇanā,,""
+NULL,209,1011,100,bodytext,,,""
+NULL,209,1012,100,bodytext,,,""
+NULL,209,1013,100,centered,,,""
+NULL,209,1014,4,subhead,4. Padasodhammasikkhāpadavaṇṇanā,,""
+NULL,209,1015,100,bodytext,,,""
+NULL,209,1016,100,bodytext,,,""
+NULL,209,1017,100,gatha1,,,""
+NULL,209,1018,100,gathalast,,,""
+NULL,209,1019,100,bodytext,,,""
+NULL,209,1020,100,bodytext,,,""
+NULL,209,1021,100,bodytext,,,""
+NULL,209,1022,100,centered,,,""
+NULL,209,1023,4,subhead,5. Paṭhamasahaseyyasikkhāpadavaṇṇanā,,""
+NULL,209,1024,100,bodytext,,,""
+NULL,209,1025,100,bodytext,,,""
+NULL,209,1026,100,centered,,,""
+NULL,209,1027,4,subhead,6. Dutiyasahaseyyasikkhāpadavaṇṇanā,,""
+NULL,209,1028,100,bodytext,,,""
+NULL,209,1029,100,centered,,,""
+NULL,209,1030,4,subhead,7. Dhammadesanāsikkhāpadavaṇṇanā,,""
+NULL,209,1031,100,bodytext,,,""
+NULL,209,1032,100,centered,,,""
+NULL,209,1033,4,subhead,8. Bhūtārocanasikkhāpadavaṇṇanā,,""
+NULL,209,1034,100,bodytext,,,""
+NULL,209,1035,100,bodytext,,,""
+NULL,209,1036,100,centered,,,""
+NULL,209,1037,4,subhead,9. Duṭṭhullārocanasikkhāpadavaṇṇanā,,""
+NULL,209,1038,100,bodytext,,,""
+NULL,209,1039,100,bodytext,,,""
+NULL,209,1040,100,centered,,,""
+NULL,209,1041,4,subhead,10. Pathavīkhaṇanasikkhāpadavaṇṇanā,,""
+NULL,209,1042,100,bodytext,,,""
+NULL,209,1043,100,bodytext,,,""
+NULL,209,1044,100,centered,,,""
+NULL,209,1045,100,centered,,,""
+NULL,209,1046,3,title,2. Bhūtagāmavaggo,,""
+NULL,209,1047,4,subhead,1. Bhūtagāmasikkhāpadavaṇṇanā,,""
+NULL,209,1048,100,bodytext,,,""
+NULL,209,1049,100,bodytext,,,""
+NULL,209,1050,100,bodytext,,,""
+NULL,209,1051,100,centered,,,""
+NULL,209,1052,4,subhead,2. Aññavādakasikkhāpadavaṇṇanā,,""
+NULL,209,1053,100,bodytext,,,""
+NULL,209,1054,100,bodytext,,,""
+NULL,209,1055,100,bodytext,,,""
+NULL,209,1056,100,centered,,,""
+NULL,209,1057,4,subhead,3. Ujjhāpanakasikkhāpadavaṇṇanā,,""
+NULL,209,1058,100,bodytext,,,""
+NULL,209,1059,100,bodytext,,,""
+NULL,209,1060,100,centered,,,""
+NULL,209,1061,4,subhead,4. Paṭhamasenāsanasikkhāpadavaṇṇanā,,""
+NULL,209,1062,100,bodytext,,,""
+NULL,209,1063,100,bodytext,,,""
+NULL,209,1064,100,bodytext,,,""
+NULL,209,1065,100,bodytext,,,""
+NULL,209,1066,100,bodytext,,,""
+NULL,209,1067,100,centered,,,""
+NULL,209,1068,4,subhead,5. Dutiyasenāsanasikkhāpadavaṇṇanā,,""
+NULL,209,1069,100,bodytext,,,""
+NULL,209,1070,100,bodytext,,,""
+NULL,209,1071,100,centered,,,""
+NULL,209,1072,4,subhead,6. Anupakhajjasikkhāpadavaṇṇanā,,""
+NULL,209,1073,100,bodytext,,,""
+NULL,209,1074,100,bodytext,,,""
+NULL,209,1075,100,centered,,,""
+NULL,209,1076,4,subhead,7. Nikkaḍḍhanasikkhāpadavaṇṇanā,,""
+NULL,209,1077,100,bodytext,,,""
+NULL,209,1078,100,centered,,,""
+NULL,209,1079,4,subhead,8. Vehāsakuṭisikkhāpadavaṇṇanā,,""
+NULL,209,1080,100,bodytext,,,""
+NULL,209,1081,100,centered,,,""
+NULL,209,1082,4,subhead,9. Mahallakavihārasikkhāpadavaṇṇanā,,""
+NULL,209,1083,100,bodytext,,,""
+NULL,209,1084,100,bodytext,,,""
+NULL,209,1085,100,bodytext,,,""
+NULL,209,1086,100,centered,,,""
+NULL,209,1087,4,subhead,10. Sappāṇakasikkhāpadavaṇṇanā,,""
+NULL,209,1088,100,bodytext,,,""
+NULL,209,1089,100,centered,,,""
+NULL,209,1090,3,title,3. Ovādavaggo,,""
+NULL,209,1091,4,subhead,1. Ovādasikkhāpadavaṇṇanā,,""
+NULL,209,1092,100,bodytext,,,""
+NULL,209,1093,100,bodytext,,,""
+NULL,209,1094,100,bodytext,,,""
+NULL,209,1095,100,centered,,,""
+NULL,209,1096,4,subhead,2. Atthaṅgatasikkhāpadavaṇṇanā,,""
+NULL,209,1097,100,bodytext,,,""
+NULL,209,1098,100,bodytext,,,""
+NULL,209,1099,100,centered,,,""
+NULL,209,1100,4,subhead,3. Bhikkhunupassayasikkhāpadavaṇṇanā,,""
+NULL,209,1101,100,bodytext,,,""
+NULL,209,1102,100,centered,,,""
+NULL,209,1103,4,subhead,4. Āmisasikkhāpadavaṇṇanā,,""
+NULL,209,1104,100,bodytext,,,""
+NULL,209,1105,100,centered,,,""
+NULL,209,1106,4,subhead,5. Cīvaradānasikkhāpadavaṇṇanā,,""
+NULL,209,1107,100,bodytext,,,""
+NULL,209,1108,100,centered,,,""
+NULL,209,1109,4,subhead,6. Cīvarasibbanasikkhāpadavaṇṇanā,,""
+NULL,209,1110,100,bodytext,,,""
+NULL,209,1111,100,centered,,,""
+NULL,209,1112,4,subhead,7. Saṃvidhānasikkhāpadavaṇṇanā,,""
+NULL,209,1113,100,bodytext,,,""
+NULL,209,1114,100,bodytext,,,""
+NULL,209,1115,100,bodytext,,,""
+NULL,209,1116,100,centered,,,""
+NULL,209,1117,4,subhead,8. Nāvābhiruhanasikkhāpadavaṇṇanā,,""
+NULL,209,1118,100,bodytext,,,""
+NULL,209,1119,100,bodytext,,,""
+NULL,209,1120,100,centered,,,""
+NULL,209,1121,4,subhead,9. Paripācitasikkhāpadavaṇṇanā,,""
+NULL,209,1122,100,bodytext,,,""
+NULL,209,1123,100,bodytext,,,""
+NULL,209,1124,100,centered,,,""
+NULL,209,1125,4,subhead,10. Rahonisajjasikkhāpadavaṇṇanā,,""
+NULL,209,1126,100,bodytext,,,""
+NULL,209,1127,100,centered,,,""
+NULL,209,1128,100,centered,,,""
+NULL,209,1129,3,title,4. Bhojanavaggo,,""
+NULL,209,1130,4,subhead,1. Āvasathapiṇḍasikkhāpadavaṇṇanā,,""
+NULL,209,1131,100,bodytext,,,""
+NULL,209,1132,100,bodytext,,,""
+NULL,209,1133,100,centered,,,""
+NULL,209,1134,4,subhead,2. Gaṇabhojanasikkhāpadavaṇṇanā,,""
+NULL,209,1135,100,bodytext,,,""
+NULL,209,1136,100,bodytext,,,""
+NULL,209,1137,100,bodytext,,,""
+NULL,209,1138,100,centered,,,""
+NULL,209,1139,4,subhead,3. Paramparabhojanasikkhāpadavaṇṇanā,,""
+NULL,209,1140,100,bodytext,,,""
+NULL,209,1141,100,bodytext,,,""
+NULL,209,1142,100,bodytext,,,""
+NULL,209,1143,100,bodytext,,,""
+NULL,209,1144,100,bodytext,,,""
+NULL,209,1145,100,centered,,,""
+NULL,209,1146,4,subhead,4. Kāṇamātāsikkhāpadavaṇṇanā,,""
+NULL,209,1147,100,bodytext,,,""
+NULL,209,1148,100,centered,,,""
+NULL,209,1149,4,subhead,5. Paṭhamapavāraṇasikkhāpadavaṇṇanā,,""
+NULL,209,1150,100,bodytext,,,""
+NULL,209,1151,100,bodytext,,,""
+NULL,209,1152,100,bodytext,,,""
+NULL,209,1153,100,bodytext,,,""
+NULL,209,1154,100,bodytext,,,""
+NULL,209,1155,100,bodytext,,,""
+NULL,209,1156,100,centered,,,""
+NULL,209,1157,4,subhead,6. Dutiyapavāraṇasikkhāpadavaṇṇanā,,""
+NULL,209,1158,100,bodytext,,,""
+NULL,209,1159,100,centered,,,""
+NULL,209,1160,4,subhead,7. Vikālabhojanasikkhāpadavaṇṇanā,,""
+NULL,209,1161,100,bodytext,,,""
+NULL,209,1162,100,bodytext,,,""
+NULL,209,1163,100,bodytext,,,""
+NULL,209,1164,100,bodytext,,,""
+NULL,209,1165,100,bodytext,,,""
+NULL,209,1166,100,bodytext,,,""
+NULL,209,1167,100,bodytext,,,""
+NULL,209,1168,100,bodytext,,,""
+NULL,209,1169,100,bodytext,,,""
+NULL,209,1170,100,bodytext,,,""
+NULL,209,1171,100,centered,,,""
+NULL,209,1172,4,subhead,8. Sannidhikārakasikkhāpadavaṇṇanā,,""
+NULL,209,1173,100,bodytext,,,""
+NULL,209,1174,100,bodytext,,,""
+NULL,209,1175,100,bodytext,,,""
+NULL,209,1176,100,bodytext,,,""
+NULL,209,1177,100,centered,,,""
+NULL,209,1178,4,subhead,9. Paṇītabhojanasikkhāpadavaṇṇanā,,""
+NULL,209,1179,100,bodytext,,,""
+NULL,209,1180,100,bodytext,,,""
+NULL,209,1181,100,centered,,,""
+NULL,209,1182,4,subhead,10. Dantaponasikkhāpadavaṇṇanā,,""
+NULL,209,1183,100,bodytext,,,""
+NULL,209,1184,100,bodytext,,,""
+NULL,209,1185,100,bodytext,,,""
+NULL,209,1186,100,centered,,,""
+NULL,209,1187,100,centered,,,""
+NULL,209,1188,3,title,5. Acelakavaggo,,""
+NULL,209,1189,4,subhead,1. Acelakasikkhāpadavaṇṇanā,,""
+NULL,209,1190,100,bodytext,,,""
+NULL,209,1191,100,centered,,,""
+NULL,209,1192,4,subhead,2. Uyyojanasikkhāpadavaṇṇanā,,""
+NULL,209,1193,100,bodytext,,,""
+NULL,209,1194,100,centered,,,""
+NULL,209,1195,4,subhead,3. Sabhojanasikkhāpadavaṇṇanā,,""
+NULL,209,1196,100,bodytext,,,""
+NULL,209,1197,100,centered,,,""
+NULL,209,1198,4,subhead,4. Rahopaṭicchannasikkhāpadavaṇṇanā,,""
+NULL,209,1199,100,bodytext,,,""
+NULL,209,1200,100,centered,,,""
+NULL,209,1201,4,subhead,5. Rahonisajjasikkhāpadavaṇṇanā,,""
+NULL,209,1202,100,bodytext,,,""
+NULL,209,1203,4,subhead,6. Cārittasikkhāpadavaṇṇanā,,""
+NULL,209,1204,100,bodytext,,,""
+NULL,209,1205,100,gatha1,,,""
+NULL,209,1206,100,gathalast,,,""
+NULL,209,1207,100,gatha1,,,""
+NULL,209,1208,100,gathalast,,,""
+NULL,209,1209,100,gatha1,,,""
+NULL,209,1210,100,gathalast,,,""
+NULL,209,1211,100,gatha1,,,""
+NULL,209,1212,100,gathalast,,,""
+NULL,209,1213,100,gatha1,,,""
+NULL,209,1214,100,gathalast,,,""
+NULL,209,1215,100,centered,,,""
+NULL,209,1216,4,subhead,7. Mahānāmasikkhāpadavaṇṇanā,,""
+NULL,209,1217,100,bodytext,,,""
+NULL,209,1218,100,centered,,,""
+NULL,209,1219,4,subhead,8. Uyyuttasenāsikkhāpadavaṇṇanā,,""
+NULL,209,1220,100,bodytext,,,""
+NULL,209,1221,100,centered,,,""
+NULL,209,1222,4,subhead,9. Senāvāsasikkhāpadavaṇṇanā,,""
+NULL,209,1223,100,bodytext,,,""
+NULL,209,1224,100,centered,,,""
+NULL,209,1225,4,subhead,10. Uyyodhikasikkhāpadavaṇṇanā,,""
+NULL,209,1226,100,bodytext,,,""
+NULL,209,1227,100,centered,,,""
+NULL,209,1228,100,centered,,,""
+NULL,209,1229,3,title,6. Surāpānavaggo,,""
+NULL,209,1230,4,subhead,1. Surāpānasikkhāpadavaṇṇanā,,""
+NULL,209,1231,100,gatha1,,,""
+NULL,209,1232,100,gatha2,,,""
+NULL,209,1233,100,gatha3,,,""
+NULL,209,1234,100,gathalast,,,""
+NULL,209,1235,100,gatha1,,,""
+NULL,209,1236,100,gatha2,,,""
+NULL,209,1237,100,gatha3,,,""
+NULL,209,1238,100,gathalast,,,""
+NULL,209,1239,100,bodytext,,,""
+NULL,209,1240,100,centered,,,""
+NULL,209,1241,4,subhead,2. Aṅgulipatodakasikkhāpadavaṇṇanā,,""
+NULL,209,1242,100,bodytext,,,""
+NULL,209,1243,4,subhead,3. Hasadhammasikkhāpadavaṇṇanā,,""
+NULL,209,1244,100,bodytext,,,""
+NULL,209,1245,100,gatha1,,,""
+NULL,209,1246,100,gathalast,,,""
+NULL,209,1247,100,gatha1,,,""
+NULL,209,1248,100,gathalast,,,""
+NULL,209,1249,100,gatha1,,,""
+NULL,209,1250,100,gathalast,,,""
+NULL,209,1251,100,centered,,,""
+NULL,209,1252,4,subhead,4. Anādariyasikkhāpadavaṇṇanā,,""
+NULL,209,1253,100,bodytext,,,""
+NULL,209,1254,100,bodytext,,,""
+NULL,209,1255,100,centered,,,""
+NULL,209,1256,4,subhead,5. Bhiṃsāpanasikkhāpadavaṇṇanā,,""
+NULL,209,1257,100,bodytext,,,""
+NULL,209,1258,4,subhead,6. Jotisikkhāpadavaṇṇanā,,""
+NULL,209,1259,100,bodytext,,,""
+NULL,209,1260,100,centered,,,""
+NULL,209,1261,4,subhead,7. Nahānasikkhāpadavaṇṇanā,,""
+NULL,209,1262,100,bodytext,,,""
+NULL,209,1263,4,subhead,8. Dubbaṇṇakaraṇasikkhāpadavaṇṇanā,,""
+NULL,209,1264,100,bodytext,,,""
+NULL,209,1265,100,centered,,,""
+NULL,209,1266,4,subhead,9. Vikappanasikkhāpadavaṇṇanā,,""
+NULL,209,1267,100,bodytext,,,""
+NULL,209,1268,100,centered,,,""
+NULL,209,1269,4,subhead,10. Cīvarāpanidhānasikkhāpadavaṇṇanā,,""
+NULL,209,1270,100,bodytext,,,""
+NULL,209,1271,100,centered,,,""
+NULL,209,1272,100,centered,,,""
+NULL,209,1273,3,title,7. Sappāṇakavaggo,,""
+NULL,209,1274,4,subhead,1. Sañciccapāṇasikkhāpadavaṇṇanā,,""
+NULL,209,1275,100,bodytext,,,""
+NULL,209,1276,4,subhead,2. Sappāṇakasikkhāpadavaṇṇanā,,""
+NULL,209,1277,100,bodytext,,,""
+NULL,209,1278,100,gatha1,,,""
+NULL,209,1279,100,gathalast,,,""
+NULL,209,1280,100,centered,,,""
+NULL,209,1281,4,subhead,3. Ukkoṭanasikkhāpadavaṇṇanā,,""
+NULL,209,1282,100,bodytext,,,""
+NULL,209,1283,100,centered,,,""
+NULL,209,1284,4,subhead,4. Duṭṭhullasikkhāpadavaṇṇanā,,""
+NULL,209,1285,100,bodytext,,,""
+NULL,209,1286,100,bodytext,,,""
+NULL,209,1287,100,centered,,,""
+NULL,209,1288,4,subhead,5. Ūnavīsativassasikkhāpadavaṇṇanā,,""
+NULL,209,1289,100,bodytext,,,""
+NULL,209,1290,100,bodytext,,,""
+NULL,209,1291,100,centered,,,""
+NULL,209,1292,4,subhead,6. Theyyasatthasikkhāpadavaṇṇanā,,""
+NULL,209,1293,100,bodytext,,,""
+NULL,209,1294,100,centered,,,""
+NULL,209,1295,4,subhead,7. Saṃvidhānasikkhāpadavaṇṇanā,,""
+NULL,209,1296,100,bodytext,,,""
+NULL,209,1297,100,bodytext,,,""
+NULL,209,1298,100,centered,,,""
+NULL,209,1299,4,subhead,8. Ariṭṭhasikkhāpadavaṇṇanā,,""
+NULL,209,1300,100,bodytext,,,""
+NULL,209,1301,100,centered,,,""
+NULL,209,1302,4,subhead,9. Ukkhittasambhogasikkhāpadavaṇṇanā,,""
+NULL,209,1303,100,bodytext,,,""
+NULL,209,1304,100,centered,,,""
+NULL,209,1305,4,subhead,10. Kaṇṭakasikkhāpadavaṇṇanā,,""
+NULL,209,1306,100,bodytext,,,""
+NULL,209,1307,100,centered,,,""
+NULL,209,1308,100,centered,,,""
+NULL,209,1309,3,title,8. Sahadhammikavaggo,,""
+NULL,209,1310,4,subhead,1. Sahadhammikasikkhāpadavaṇṇanā,,""
+NULL,209,1311,100,bodytext,,,""
+NULL,209,1312,4,subhead,2. Vilekhanasikkhāpadavaṇṇanā,,""
+NULL,209,1313,100,bodytext,,,""
+NULL,209,1314,100,centered,,,""
+NULL,209,1315,4,subhead,3. Mohanasikkhāpadavaṇṇanā,,""
+NULL,209,1316,100,bodytext,,,""
+NULL,209,1317,4,subhead,4. Pahārasikkhāpadavaṇṇanā,,""
+NULL,209,1318,100,bodytext,,,""
+NULL,209,1319,100,centered,,,""
+NULL,209,1320,4,subhead,5. Talasattikasikkhāpadavaṇṇanā,,""
+NULL,209,1321,100,bodytext,,,""
+NULL,209,1322,100,centered,,,""
+NULL,209,1323,4,subhead,6. Amūlakasikkhāpadavaṇṇanā,,""
+NULL,209,1324,100,bodytext,,,""
+NULL,209,1325,100,centered,,,""
+NULL,209,1326,4,subhead,7. Sañciccasikkhāpadavaṇṇanā,,""
+NULL,209,1327,100,bodytext,,,""
+NULL,209,1328,100,centered,,,""
+NULL,209,1329,4,subhead,8. Upassutisikkhāpadavaṇṇanā,,""
+NULL,209,1330,100,bodytext,,,""
+NULL,209,1331,100,centered,,,""
+NULL,209,1332,4,subhead,9. Kammapaṭibāhanasikkhāpadavaṇṇanā,,""
+NULL,209,1333,100,bodytext,,,""
+NULL,209,1334,100,centered,,,""
+NULL,209,1335,4,subhead,10. Chandaṃadatvāgamanasikkhāpadavaṇṇanā,,""
+NULL,209,1336,100,bodytext,,,""
+NULL,209,1337,100,centered,,,""
+NULL,209,1338,4,subhead,11. Dubbalasikkhāpadavaṇṇanā,,""
+NULL,209,1339,100,bodytext,,,""
+NULL,209,1340,100,centered,,,""
+NULL,209,1341,4,subhead,12. Pariṇāmanasikkhāpadavaṇṇanā,,""
+NULL,209,1342,100,bodytext,,,""
+NULL,209,1343,100,centered,,,""
+NULL,209,1344,100,centered,,,""
+NULL,209,1345,3,title,9. Ratanavaggo,,""
+NULL,209,1346,4,subhead,1. Antepurasikkhāpadavaṇṇanā,,""
+NULL,209,1347,100,bodytext,,,""
+NULL,209,1348,100,bodytext,,,""
+NULL,209,1349,100,bodytext,,,""
+NULL,209,1350,100,centered,,,""
+NULL,209,1351,4,subhead,2. Ratanasikkhāpadavaṇṇanā,,""
+NULL,209,1352,100,bodytext,,,""
+NULL,209,1353,100,bodytext,,,""
+NULL,209,1354,100,centered,,,""
+NULL,209,1355,4,subhead,3. Vikālagāmappavisanasikkhāpadavaṇṇanā,,""
+NULL,209,1356,100,bodytext,,,""
+NULL,209,1357,100,centered,,,""
+NULL,209,1358,4,subhead,4. Sūcigharasikkhāpadavaṇṇanā,,""
+NULL,209,1359,100,bodytext,,,""
+NULL,209,1360,100,bodytext,,,""
+NULL,209,1361,100,centered,,,""
+NULL,209,1362,4,subhead,5. Mañcasikkhāpadavaṇṇanā,,""
+NULL,209,1363,100,bodytext,,,""
+NULL,209,1364,100,centered,,,""
+NULL,209,1365,4,subhead,6. Tūlonaddhasikkhāpadavaṇṇanā,,""
+NULL,209,1366,100,bodytext,,,""
+NULL,209,1367,100,centered,,,""
+NULL,209,1368,4,subhead,7. Nisīdanasikkhāpadavaṇṇanā,,""
+NULL,209,1369,100,bodytext,,,""
+NULL,209,1370,100,centered,,,""
+NULL,209,1371,4,subhead,8. Kaṇḍupaṭicchādisikkhāpadavaṇṇanā,,""
+NULL,209,1372,100,bodytext,,,""
+NULL,209,1373,100,centered,,,""
+NULL,209,1374,4,subhead,9. Vassikasāṭikasikkhāpadavaṇṇanā,,""
+NULL,209,1375,100,bodytext,,,""
+NULL,209,1376,100,centered,,,""
+NULL,209,1377,4,subhead,10. Nandattherasikkhāpadavaṇṇanā,,""
+NULL,209,1378,100,bodytext,,,""
+NULL,209,1379,100,centered,,,""
+NULL,209,1380,100,centered,,,""
+NULL,209,1381,100,centered,,,""
+NULL,209,1382,4,subhead,6. Pāṭidesanīyakaṇḍo,,""
+NULL,209,1383,4,subhead,1. Paṭhamapāṭidesanīyasikkhāpadavaṇṇanā,,""
+NULL,209,1384,100,bodytext,,,""
+NULL,209,1385,100,centered,,,""
+NULL,209,1386,4,subhead,2. Dutiyapāṭidesanīyasikkhāpadavaṇṇanā,,""
+NULL,209,1387,100,bodytext,,,""
+NULL,209,1388,100,centered,,,""
+NULL,209,1389,100,bodytext,,,""
+NULL,209,1390,100,centered,,,""
+NULL,209,1391,4,subhead,7. Sekhiyakaṇḍo,,""
+NULL,209,1392,4,subhead,1. Parimaṇḍalavaggavaṇṇanā,,""
+NULL,209,1393,100,bodytext,,,""
+NULL,209,1394,100,bodytext,,,""
+NULL,209,1395,100,bodytext,,,""
+NULL,209,1396,100,centered,,,""
+NULL,209,1397,4,subhead,2. Ujjagghikavaggavaṇṇanā,,""
+NULL,209,1398,100,bodytext,,,""
+NULL,209,1399,100,bodytext,,,""
+NULL,209,1400,100,centered,,,""
+NULL,209,1401,4,subhead,3. Khambhakatavaggavaṇṇanā,,""
+NULL,209,1402,100,bodytext,,,""
+NULL,209,1403,100,bodytext,,,""
+NULL,209,1404,100,centered,,,""
+NULL,209,1405,4,subhead,4. Sakkaccavaggavaṇṇanā,,""
+NULL,209,1406,100,bodytext,,,""
+NULL,209,1407,100,centered,,,""
+NULL,209,1408,4,subhead,5. Kabaḷavaggavaṇṇanā,,""
+NULL,209,1409,100,bodytext,,,""
+NULL,209,1410,100,bodytext,,,""
+NULL,209,1411,100,centered,,,""
+NULL,209,1412,4,subhead,6. Surusuruvaggavaṇṇanā,,""
+NULL,209,1413,100,bodytext,,,""
+NULL,209,1414,100,bodytext,,,""
+NULL,209,1415,100,bodytext,,,""
+NULL,209,1416,100,bodytext,,,""
+NULL,209,1417,100,centered,,,""
+NULL,209,1418,4,subhead,7. Pādukavaggavaṇṇanā,,""
+NULL,209,1419,100,bodytext,,,""
+NULL,209,1420,100,gathalast,,,""
+NULL,209,1421,100,bodytext,,,""
+NULL,209,1422,100,bodytext,,,""
+NULL,209,1423,100,centered,,,""
+NULL,209,1424,4,subhead,Pakiṇṇakavaṇṇanā,,""
+NULL,209,1425,100,bodytext,,,""
+NULL,209,1426,100,centered,,,""
+NULL,209,1427,100,centered,,,""
+NULL,209,1428,4,subhead,8. Sattādhikaraṇasamathavaṇṇanā,,""
+NULL,209,1429,100,bodytext,,,""
+NULL,209,1430,100,centered,,,""
+NULL,209,1431,100,centered,,,""
+NULL,209,1432,100,centered,,,""
+NULL,209,1433,1,book,Bhikkhunīvibhaṅgavaṇṇanā,比库尼分别详解,visuddhinanda
+NULL,209,1434,4,subhead,1. Pārājikakaṇḍavaṇṇanā,,""
+NULL,209,1435,3,title,Ganthārambhavaṇṇanā,,""
+NULL,209,1436,100,gatha1,,,""
+NULL,209,1437,100,gathalast,,,""
+NULL,209,1438,100,bodytext,,,""
+NULL,209,1439,100,centered,,,""
+NULL,209,1440,4,subhead,1. Paṭhamapārājikasikkhāpadavaṇṇanā,,""
+NULL,209,1441,100,bodytext,,,""
+NULL,209,1442,100,bodytext,,,""
+NULL,209,1443,100,gatha1,,,""
+NULL,209,1444,100,gatha2,,,""
+NULL,209,1445,100,gatha3,,,""
+NULL,209,1446,100,gathalast,,,""
+NULL,209,1447,100,bodytext,,,""
+NULL,209,1448,100,bodytext,,,""
+NULL,209,1449,100,bodytext,,,""
+NULL,209,1450,100,centered,,,""
+NULL,209,1451,4,subhead,2. Dutiyapārājikasikkhāpadavaṇṇanā,,""
+NULL,209,1452,100,bodytext,,,""
+NULL,209,1453,100,bodytext,,,""
+NULL,209,1454,100,centered,,,""
+NULL,209,1455,4,subhead,3. Tatiyapārājikasikkhāpadavaṇṇanā,,""
+NULL,209,1456,100,bodytext,,,""
+NULL,209,1457,100,centered,,,""
+NULL,209,1458,4,subhead,4. Catutthapārājikasikkhāpadavaṇṇanā,,""
+NULL,209,1459,100,bodytext,,,""
+NULL,209,1460,100,bodytext,,,""
+NULL,209,1461,100,centered,,,""
+NULL,209,1462,100,centered,,,""
+NULL,209,1463,4,subhead,2. Saṅghādisesakaṇḍavaṇṇanā,,""
+NULL,209,1464,4,subhead,1. Paṭhamasaṅghādisesasikkhāpadavaṇṇanā,,""
+NULL,209,1465,100,bodytext,,,""
+NULL,209,1466,100,centered,,,""
+NULL,209,1467,4,subhead,2. Dutiyasaṅghādisesasikkhāpadavaṇṇanā,,""
+NULL,209,1468,100,bodytext,,,""
+NULL,209,1469,100,centered,,,""
+NULL,209,1470,4,subhead,3. Tatiyasaṅghādisesasikkhāpadavaṇṇanā,,""
+NULL,209,1471,100,bodytext,,,""
+NULL,209,1472,100,bodytext,,,""
+NULL,209,1473,100,bodytext,,,""
+NULL,209,1474,100,bodytext,,,""
+NULL,209,1475,100,bodytext,,,""
+NULL,209,1476,100,centered,,,""
+NULL,209,1477,4,subhead,4. Catutthasaṅghādisesasikkhāpadavaṇṇanā,,""
+NULL,209,1478,100,bodytext,,,""
+NULL,209,1479,100,bodytext,,,""
+NULL,209,1480,100,centered,,,""
+NULL,209,1481,4,subhead,5. Pañcamasaṅghādisesasikkhāpadavaṇṇanā,,""
+NULL,209,1482,100,bodytext,,,""
+NULL,209,1483,100,centered,,,""
+NULL,209,1484,4,subhead,6. Chaṭṭhasaṅghādisesasikkhāpadavaṇṇanā,,""
+NULL,209,1485,100,bodytext,,,""
+NULL,209,1486,100,centered,,,""
+NULL,209,1487,4,subhead,7. Sattamasaṅghādisesasikkhāpadavaṇṇanā,,""
+NULL,209,1488,100,bodytext,,,""
+NULL,209,1489,100,centered,,,""
+NULL,209,1490,4,subhead,8. Aṭṭhamasaṅghādisesasikkhāpadavaṇṇanā,,""
+NULL,209,1491,100,bodytext,,,""
+NULL,209,1492,100,centered,,,""
+NULL,209,1493,4,subhead,9. Navamasaṅghādisesasikkhāpadavaṇṇanā,,""
+NULL,209,1494,100,bodytext,,,""
+NULL,209,1495,100,centered,,,""
+NULL,209,1496,100,centered,,,""
+NULL,209,1497,4,subhead,3. Nissaggiyakaṇḍavaṇṇanā,,""
+NULL,209,1498,4,subhead,1. Paṭhamanissaggiyapācittiyasikkhāpadavaṇṇanā,,""
+NULL,209,1499,100,bodytext,,,""
+NULL,209,1500,4,subhead,2. Dutiyanissaggiyapācittiyasikkhāpadavaṇṇanā,,""
+NULL,209,1501,100,bodytext,,,""
+NULL,209,1502,100,bodytext,,,""
+NULL,209,1503,100,centered,,,""
+NULL,209,1504,4,subhead,3. Tatiyanissaggiyapācittiyasikkhāpadavaṇṇanā,,""
+NULL,209,1505,100,bodytext,,,""
+NULL,209,1506,100,centered,,,""
+NULL,209,1507,4,subhead,4. Catutthanissaggiyapācittiyasikkhāpadavaṇṇanā,,""
+NULL,209,1508,100,bodytext,,,""
+NULL,209,1509,100,centered,,,""
+NULL,209,1510,4,subhead,5. Pañcamanissaggiyapācittiyasikkhāpadavaṇṇanā,,""
+NULL,209,1511,100,bodytext,,,""
+NULL,209,1512,100,centered,,,""
+NULL,209,1513,4,subhead,6. Chaṭṭhanissaggiyapācittiyasikkhāpadavaṇṇanā,,""
+NULL,209,1514,100,bodytext,,,""
+NULL,209,1515,100,centered,,,""
+NULL,209,1516,4,subhead,7. Sattamanissaggiyapācittiyasikkhāpadavaṇṇanā,,""
+NULL,209,1517,100,bodytext,,,""
+NULL,209,1518,100,bodytext,,,""
+NULL,209,1519,100,centered,,,""
+NULL,209,1520,4,subhead,8. Aṭṭhamanissaggiyapācittiyasikkhāpadavaṇṇanā,,""
+NULL,209,1521,100,bodytext,,,""
+NULL,209,1522,100,centered,,,""
+NULL,209,1523,4,subhead,9. Navamanissaggiyapācittiyasikkhāpadavaṇṇanā,,""
+NULL,209,1524,100,bodytext,,,""
+NULL,209,1525,100,centered,,,""
+NULL,209,1526,4,subhead,10. Dasamanissaggiyapācittiyasikkhāpadavaṇṇanā,,""
+NULL,209,1527,100,bodytext,,,""
+NULL,209,1528,100,centered,,,""
+NULL,209,1529,4,subhead,11. Ekādasamanissaggiyapācittiyasikkhāpadavaṇṇanā,,""
+NULL,209,1530,100,bodytext,,,""
+NULL,209,1531,100,centered,,,""
+NULL,209,1532,100,centered,,,""
+NULL,209,1533,100,centered,,,""
+NULL,209,1534,4,subhead,4. Pācittiyakaṇḍavaṇṇanā,,""
+NULL,209,1535,3,title,1. Lasuṇavaggo,,""
+NULL,209,1536,4,subhead,1. Paṭhamalasuṇasikkhāpadavaṇṇanā,,""
+NULL,209,1537,100,bodytext,,,""
+NULL,209,1538,100,centered,,,""
+NULL,209,1539,4,subhead,2. Dutiyasikkhāpadavaṇṇanā,,""
+NULL,209,1540,100,bodytext,,,""
+NULL,209,1541,100,centered,,,""
+NULL,209,1542,100,bodytext,,,""
+NULL,209,1543,4,subhead,5. Pañcamasikkhāpadavaṇṇanā,,""
+NULL,209,1544,100,bodytext,,,""
+NULL,209,1545,100,centered,,,""
+NULL,209,1546,100,bodytext,,,""
+NULL,209,1547,4,subhead,7. Sattamasikkhāpadavaṇṇanā,,""
+NULL,209,1548,100,bodytext,,,""
+NULL,209,1549,100,bodytext,,,""
+NULL,209,1550,100,centered,,,""
+NULL,209,1551,4,subhead,8. Aṭṭhamasikkhāpadavaṇṇanā,,""
+NULL,209,1552,100,bodytext,,,""
+NULL,209,1553,100,bodytext,,,""
+NULL,209,1554,100,centered,,,""
+NULL,209,1555,4,subhead,9. Navamasikkhāpadavaṇṇanā,,""
+NULL,209,1556,100,bodytext,,,""
+NULL,209,1557,100,centered,,,""
+NULL,209,1558,4,subhead,10. Dasamasikkhāpadavaṇṇanā,,""
+NULL,209,1559,100,bodytext,,,""
+NULL,209,1560,100,bodytext,,,""
+NULL,209,1561,100,bodytext,,,""
+NULL,209,1562,100,centered,,,""
+NULL,209,1563,100,centered,,,""
+NULL,209,1564,3,title,2. Andhakāravaggavaṇṇanā,,""
+NULL,209,1565,4,subhead,1. Paṭhamasikkhāpadavaṇṇanā,,""
+NULL,209,1566,100,bodytext,,,""
+NULL,209,1567,100,centered,,,""
+NULL,209,1568,4,subhead,2-3-4. Dutiyatatiyacatutthasikkhāpadavaṇṇanā,,""
+NULL,209,1569,100,bodytext,,,""
+NULL,209,1570,100,bodytext,,,""
+NULL,209,1571,100,centered,,,""
+NULL,209,1572,4,subhead,5. Pañcamasikkhāpadavaṇṇanā,,""
+NULL,209,1573,100,bodytext,,,""
+NULL,209,1574,100,centered,,,""
+NULL,209,1575,4,subhead,6. Chaṭṭhasikkhāpadavaṇṇanā,,""
+NULL,209,1576,100,bodytext,,,""
+NULL,209,1577,100,centered,,,""
+NULL,209,1578,4,subhead,7. Sattamasikkhāpadavaṇṇanā,,""
+NULL,209,1579,100,bodytext,,,""
+NULL,209,1580,100,centered,,,""
+NULL,209,1581,4,subhead,8. Aṭṭhamasikkhāpadavaṇṇanā,,""
+NULL,209,1582,100,bodytext,,,""
+NULL,209,1583,100,centered,,,""
+NULL,209,1584,4,subhead,9. Navamasikkhāpadavaṇṇanā,,""
+NULL,209,1585,100,bodytext,,,""
+NULL,209,1586,100,centered,,,""
+NULL,209,1587,4,subhead,10. Dasamasikkhāpadavaṇṇanā,,""
+NULL,209,1588,100,bodytext,,,""
+NULL,209,1589,100,centered,,,""
+NULL,209,1590,100,centered,,,""
+NULL,209,1591,3,title,3. Naggavaggavaṇṇanā,,""
+NULL,209,1592,4,subhead,1-2. Paṭhamadutiyasikkhāpadavaṇṇanā,,""
+NULL,209,1593,100,bodytext,,,""
+NULL,209,1594,100,centered,,,""
+NULL,209,1595,4,subhead,3. Tatiyasikkhāpadavaṇṇanā,,""
+NULL,209,1596,100,bodytext,,,""
+NULL,209,1597,100,centered,,,""
+NULL,209,1598,4,subhead,4. Catutthasikkhāpadavaṇṇanā,,""
+NULL,209,1599,100,bodytext,,,""
+NULL,209,1600,100,centered,,,""
+NULL,209,1601,4,subhead,5. Pañcamasikkhāpadavaṇṇanā,,""
+NULL,209,1602,100,bodytext,,,""
+NULL,209,1603,100,centered,,,""
+NULL,209,1604,100,bodytext,,,""
+NULL,209,1605,4,subhead,8. Aṭṭhamasikkhāpadavaṇṇanā,,""
+NULL,209,1606,100,bodytext,,,""
+NULL,209,1607,100,centered,,,""
+NULL,209,1608,4,subhead,9. Navamasikkhāpadavaṇṇanā,,""
+NULL,209,1609,100,bodytext,,,""
+NULL,209,1610,100,centered,,,""
+NULL,209,1611,4,subhead,10. Dasamasikkhāpadavaṇṇanā,,""
+NULL,209,1612,100,bodytext,,,""
+NULL,209,1613,100,centered,,,""
+NULL,209,1614,100,centered,,,""
+NULL,209,1615,3,title,4. Tuvaṭṭavaggavaṇṇanā,,""
+NULL,209,1616,4,subhead,1. Paṭhamasikkhāpadavaṇṇanā,,""
+NULL,209,1617,100,bodytext,,,""
+NULL,209,1618,100,centered,,,""
+NULL,209,1619,4,subhead,2. Dutiyasikkhāpadavaṇṇanā,,""
+NULL,209,1620,100,bodytext,,,""
+NULL,209,1621,100,centered,,,""
+NULL,209,1622,4,subhead,3. Tatiyasikkhāpadavaṇṇanā,,""
+NULL,209,1623,100,bodytext,,,""
+NULL,209,1624,100,centered,,,""
+NULL,209,1625,100,bodytext,,,""
+NULL,209,1626,4,subhead,6. Chaṭṭhasikkhāpadavaṇṇanā,,""
+NULL,209,1627,100,bodytext,,,""
+NULL,209,1628,100,centered,,,""
+NULL,209,1629,100,bodytext,,,""
+NULL,209,1630,4,subhead,9. Navamasikkhāpadavaṇṇanā,,""
+NULL,209,1631,100,bodytext,,,""
+NULL,209,1632,100,bodytext,,,""
+NULL,209,1633,100,bodytext,,,""
+NULL,209,1634,100,centered,,,""
+NULL,209,1635,4,subhead,10. Dasamasikkhāpadavaṇṇanā,,""
+NULL,209,1636,100,bodytext,,,""
+NULL,209,1637,100,centered,,,""
+NULL,209,1638,100,centered,,,""
+NULL,209,1639,3,title,5. Cittāgāravaggavaṇṇanā,,""
+NULL,209,1640,4,subhead,1. Paṭhamasikkhāpadavaṇṇanā,,""
+NULL,209,1641,100,bodytext,,,""
+NULL,209,1642,100,centered,,,""
+NULL,209,1643,4,subhead,2. Dutiyasikkhāpadavaṇṇanā,,""
+NULL,209,1644,100,bodytext,,,""
+NULL,209,1645,100,centered,,,""
+NULL,209,1646,4,subhead,3. Tatiyasikkhāpadavaṇṇanā,,""
+NULL,209,1647,100,bodytext,,,""
+NULL,209,1648,100,centered,,,""
+NULL,209,1649,4,subhead,4. Catutthasikkhāpadavaṇṇanā,,""
+NULL,209,1650,100,bodytext,,,""
+NULL,209,1651,100,centered,,,""
+NULL,209,1652,100,bodytext,,,""
+NULL,209,1653,4,subhead,6. Chaṭṭhasikkhāpadavaṇṇanā,,""
+NULL,209,1654,100,bodytext,,,""
+NULL,209,1655,100,centered,,,""
+NULL,209,1656,100,bodytext,,,""
+NULL,209,1657,4,subhead,9. Navamasikkhāpadavaṇṇanā,,""
+NULL,209,1658,100,bodytext,,,""
+NULL,209,1659,100,centered,,,""
+NULL,209,1660,100,bodytext,,,""
+NULL,209,1661,100,centered,,,""
+NULL,209,1662,3,title,6. Ārāmavaggavaṇṇanā,,""
+NULL,209,1663,100,bodytext,,,""
+NULL,209,1664,4,subhead,2. Dutiyasikkhāpadavaṇṇanā,,""
+NULL,209,1665,100,bodytext,,,""
+NULL,209,1666,100,bodytext,,,""
+NULL,209,1667,100,centered,,,""
+NULL,209,1668,100,bodytext,,,""
+NULL,209,1669,4,subhead,4. Catutthasikkhāpadavaṇṇanā,,""
+NULL,209,1670,100,bodytext,,,""
+NULL,209,1671,100,centered,,,""
+NULL,209,1672,100,centered,,,""
+NULL,209,1673,3,title,7. Gabbhinivaggavaṇṇanā,,""
+NULL,209,1674,4,subhead,1. Paṭhamādisikkhāpadavaṇṇanā,,""
+NULL,209,1675,100,bodytext,,,""
+NULL,209,1676,100,bodytext,,,""
+NULL,209,1677,100,bodytext,,,""
+NULL,209,1678,100,bodytext,,,""
+NULL,209,1679,100,bodytext,,,""
+NULL,209,1680,100,centered,,,""
+NULL,209,1681,100,centered,,,""
+NULL,209,1682,3,title,8. Kumāribhūtavaggavaṇṇanā,,""
+NULL,209,1683,4,subhead,2. Dutiyādisikkhāpadavaṇṇanā,,""
+NULL,209,1684,100,bodytext,,,""
+NULL,209,1685,100,bodytext,,,""
+NULL,209,1686,100,bodytext,,,""
+NULL,209,1687,100,bodytext,,,""
+NULL,209,1688,100,bodytext,,,""
+NULL,209,1689,100,bodytext,,,""
+NULL,209,1690,100,gatha1,,,""
+NULL,209,1691,100,gathalast,,,""
+NULL,209,1692,100,bodytext,,,""
+NULL,209,1693,100,centered,,,""
+NULL,209,1694,100,centered,,,""
+NULL,209,1695,3,title,9. Chattupāhanavaggavaṇṇanā,,""
+NULL,209,1696,4,subhead,11. Ekādasamādisikkhāpadavaṇṇanā,,""
+NULL,209,1697,100,bodytext,,,""
+NULL,209,1698,100,bodytext,,,""
+NULL,209,1699,100,bodytext,,,""
+NULL,209,1700,100,centered,,,""
+NULL,209,1701,100,centered,,,""
+NULL,209,1702,4,subhead,Nigamanavaṇṇanā,,""
+NULL,209,1703,100,bodytext,,,""
+NULL,209,1704,100,centered,,,""
+NULL,209,1705,100,centered,,,""
+NULL,209,1706,100,centered,,,""
+NULL,209,1707,100,centered,,,""
+NULL,209,1708,2,chapter,Mahāvaggavaṇṇanā,大品详解,""
+NULL,209,1709,4,subhead,1. Mahākhandhakavaṇṇanā,,""
+NULL,209,1710,4,subhead,Bodhikathāvaṇṇanā,,""
+NULL,209,1711,100,gatha1,,,""
+NULL,209,1712,100,gathalast,,,""
+NULL,209,1713,100,bodytext,,,""
+NULL,209,1714,100,bodytext,,,""
+NULL,209,1715,100,bodytext,,,""
+NULL,209,1716,100,bodytext,,,""
+NULL,209,1717,100,bodytext,,,""
+NULL,209,1718,100,bodytext,,,""
+NULL,209,1719,100,bodytext,,,""
+NULL,209,1720,100,bodytext,,,""
+NULL,209,1721,100,bodytext,,,""
+NULL,209,1722,4,subhead,Ajapālakathāvaṇṇanā,,""
+NULL,209,1723,100,bodytext,,,""
+NULL,209,1724,100,centered,,,""
+NULL,209,1725,4,subhead,Mucalindakathāvaṇṇanā,,""
+NULL,209,1726,100,bodytext,,,""
+NULL,209,1727,100,centered,,,""
+NULL,209,1728,4,subhead,Rājāyatanakathāvaṇṇanā,,""
+NULL,209,1729,100,bodytext,,,""
+NULL,209,1730,100,centered,,,""
+NULL,209,1731,4,subhead,Brahmayācanakathāvaṇṇanā,,""
+NULL,209,1732,100,bodytext,,,""
+NULL,209,1733,100,bodytext,,,""
+NULL,209,1734,100,bodytext,,,""
+NULL,209,1735,100,bodytext,,,""
+NULL,209,1736,100,bodytext,,,""
+NULL,209,1737,100,centered,,,""
+NULL,209,1738,4,subhead,Pañcavaggiyakathāvaṇṇanā,,""
+NULL,209,1739,100,bodytext,,,""
+NULL,209,1740,100,bodytext,,,""
+NULL,209,1741,100,bodytext,,,""
+NULL,209,1742,100,bodytext,,,""
+NULL,209,1743,100,bodytext,,,""
+NULL,209,1744,100,bodytext,,,""
+NULL,209,1745,100,bodytext,,,""
+NULL,209,1746,100,bodytext,,,""
+NULL,209,1747,100,bodytext,,,""
+NULL,209,1748,100,bodytext,,,""
+NULL,209,1749,100,gatha1,,,""
+NULL,209,1750,100,gathalast,,,""
+NULL,209,1751,100,gatha1,,,""
+NULL,209,1752,100,gathalast,,,""
+NULL,209,1753,100,gatha1,,,""
+NULL,209,1754,100,gathalast,,,""
+NULL,209,1755,100,gatha1,,,""
+NULL,209,1756,100,gathalast,,,""
+NULL,209,1757,100,gatha1,,,""
+NULL,209,1758,100,gatha2,,,""
+NULL,209,1759,100,gatha3,,,""
+NULL,209,1760,100,gathalast,,,""
+NULL,209,1761,100,gatha1,,,""
+NULL,209,1762,100,gatha2,,,""
+NULL,209,1763,100,gatha3,,,""
+NULL,209,1764,100,gathalast,,,""
+NULL,209,1765,100,gatha1,,,""
+NULL,209,1766,100,gatha2,,,""
+NULL,209,1767,100,gatha3,,,""
+NULL,209,1768,100,gatha2,,,""
+NULL,209,1769,100,gatha1,,,""
+NULL,209,1770,100,gathalast,,,""
+NULL,209,1771,100,gatha1,,,""
+NULL,209,1772,100,gatha2,,,""
+NULL,209,1773,100,gatha3,,,""
+NULL,209,1774,100,gathalast,,,""
+NULL,209,1775,100,bodytext,,,""
+NULL,209,1776,100,bodytext,,,""
+NULL,209,1777,100,bodytext,,,""
+NULL,209,1778,100,bodytext,,,""
+NULL,209,1779,100,bodytext,,,""
+NULL,209,1780,100,bodytext,,,""
+NULL,209,1781,100,bodytext,,,""
+NULL,209,1782,100,centered,,,""
+NULL,209,1783,4,subhead,Pabbajjākathāvaṇṇanā,,""
+NULL,209,1784,100,bodytext,,,""
+NULL,209,1785,100,bodytext,,,""
+NULL,209,1786,100,bodytext,,,""
+NULL,209,1787,100,bodytext,,,""
+NULL,209,1788,100,bodytext,,,""
+NULL,209,1789,100,bodytext,,,""
+NULL,209,1790,100,bodytext,,,""
+NULL,209,1791,100,bodytext,,,""
+NULL,209,1792,100,gatha1,,,""
+NULL,209,1793,100,gathalast,,,""
+NULL,209,1794,100,bodytext,,,""
+NULL,209,1795,100,gatha1,,,""
+NULL,209,1796,100,gathalast,,,""
+NULL,209,1797,100,bodytext,,,""
+NULL,209,1798,100,centered,,,""
+NULL,209,1799,4,subhead,Dutiyamārakathāvaṇṇanā,,""
+NULL,209,1800,100,bodytext,,,""
+NULL,209,1801,100,centered,,,""
+NULL,209,1802,4,subhead,Uruvelapāṭihāriyakathāvaṇṇanā,,""
+NULL,209,1803,100,bodytext,,,""
+NULL,209,1804,100,bodytext,,,""
+NULL,209,1805,100,bodytext,,,""
+NULL,209,1806,100,bodytext,,,""
+NULL,209,1807,100,bodytext,,,""
+NULL,209,1808,100,bodytext,,,""
+NULL,209,1809,100,centered,,,""
+NULL,209,1810,4,subhead,Bimbisārasamāgamakathāvaṇṇanā,,""
+NULL,209,1811,100,bodytext,,,""
+NULL,209,1812,100,bodytext,,,""
+NULL,209,1813,100,gatha1,,,""
+NULL,209,1814,100,gathalast,,,""
+NULL,209,1815,100,gatha1,,,""
+NULL,209,1816,100,gathalast,,,""
+NULL,209,1817,100,bodytext,,,""
+NULL,209,1818,100,centered,,,""
+NULL,209,1819,4,subhead,Sāriputtamoggallānapabbajjākathāvaṇṇanā,,""
+NULL,209,1820,100,bodytext,,,""
+NULL,209,1821,100,bodytext,,,""
+NULL,209,1822,100,bodytext,,,""
+NULL,209,1823,100,gatha1,,,""
+NULL,209,1824,100,gatha2,,,""
+NULL,209,1825,100,gatha3,,,""
+NULL,209,1826,100,gathalast,,,""
+NULL,209,1827,100,gatha1,,,""
+NULL,209,1828,100,gatha2,,,""
+NULL,209,1829,100,gatha3,,,""
+NULL,209,1830,100,gathalast,,,""
+NULL,209,1831,100,centered,,,""
+NULL,209,1832,4,subhead,Upajjhāyavattakathāvaṇṇanā,,""
+NULL,209,1833,100,bodytext,,,""
+NULL,209,1834,100,bodytext,,,""
+NULL,209,1835,100,bodytext,,,""
+NULL,209,1836,100,bodytext,,,""
+NULL,209,1837,100,centered,,,""
+NULL,209,1838,4,subhead,Nasammāvattanādikathāvaṇṇanā,,""
+NULL,209,1839,100,bodytext,,,""
+NULL,209,1840,100,centered,,,""
+NULL,209,1841,4,subhead,Rādhabrāhmaṇavatthukathāvaṇṇanā,,""
+NULL,209,1842,100,bodytext,,,""
+NULL,209,1843,100,centered,,,""
+NULL,209,1844,4,subhead,Ācariyavattakathāvaṇṇanā,,""
+NULL,209,1845,100,bodytext,,,""
+NULL,209,1846,100,centered,,,""
+NULL,209,1847,4,subhead,Nissayapaṭippassaddhikathāvaṇṇanā,,""
+NULL,209,1848,100,bodytext,,,""
+NULL,209,1849,100,bodytext,,,""
+NULL,209,1850,100,bodytext,,,""
+NULL,209,1851,100,centered,,,""
+NULL,209,1852,4,subhead,Upasampādetabbapañcakakathāvaṇṇanā,,""
+NULL,209,1853,100,bodytext,,,""
+NULL,209,1854,100,centered,,,""
+NULL,209,1855,4,subhead,Aññatitthiyapubbavatthukathāvaṇṇanā,,""
+NULL,209,1856,100,bodytext,,,""
+NULL,209,1857,100,centered,,,""
+NULL,209,1858,4,subhead,Pañcābādhavatthukathāvaṇṇanā,,""
+NULL,209,1859,100,bodytext,,,""
+NULL,209,1860,100,centered,,,""
+NULL,209,1861,4,subhead,Coravatthukathāvaṇṇanā,,""
+NULL,209,1862,100,bodytext,,,""
+NULL,209,1863,100,centered,,,""
+NULL,209,1864,4,subhead,Iṇāyikadāsavatthukathāvaṇṇanā,,""
+NULL,209,1865,100,bodytext,,,""
+NULL,209,1866,100,bodytext,,,""
+NULL,209,1867,100,centered,,,""
+NULL,209,1868,4,subhead,Kammārabhaṇḍuvatthādikathāvaṇṇanā,,""
+NULL,209,1869,100,bodytext,,,""
+NULL,209,1870,100,bodytext,,,""
+NULL,209,1871,100,centered,,,""
+NULL,209,1872,4,subhead,Rāhulavatthukathāvaṇṇanā,,""
+NULL,209,1873,100,bodytext,,,""
+NULL,209,1874,100,gatha1,,,""
+NULL,209,1875,100,gatha2,,,""
+NULL,209,1876,100,gatha3,,,""
+NULL,209,1877,100,gathalast,,,""
+NULL,209,1878,100,bodytext,,,""
+NULL,209,1879,100,gatha1,,,""
+NULL,209,1880,100,gatha2,,,""
+NULL,209,1881,100,gatha3,,,""
+NULL,209,1882,100,gathalast,,,""
+NULL,209,1883,100,gatha1,,,""
+NULL,209,1884,100,gatha2,,,""
+NULL,209,1885,100,gatha3,,,""
+NULL,209,1886,100,gathalast,,,""
+NULL,209,1887,100,gatha1,,,""
+NULL,209,1888,100,gatha2,,,""
+NULL,209,1889,100,gatha3,,,""
+NULL,209,1890,100,gathalast,,,""
+NULL,209,1891,100,gatha1,,,""
+NULL,209,1892,100,gatha2,,,""
+NULL,209,1893,100,gatha3,,,""
+NULL,209,1894,100,gathalast,,,""
+NULL,209,1895,100,gatha1,,,""
+NULL,209,1896,100,gatha2,,,""
+NULL,209,1897,100,gatha3,,,""
+NULL,209,1898,100,gathalast,,,""
+NULL,209,1899,100,gatha1,,,""
+NULL,209,1900,100,gatha2,,,""
+NULL,209,1901,100,gatha3,,,""
+NULL,209,1902,100,gathalast,,,""
+NULL,209,1903,100,gatha1,,,""
+NULL,209,1904,100,gatha2,,,""
+NULL,209,1905,100,gatha3,,,""
+NULL,209,1906,100,gathalast,,,""
+NULL,209,1907,100,gatha1,,,""
+NULL,209,1908,100,gatha2,,,""
+NULL,209,1909,100,gatha3,,,""
+NULL,209,1910,100,gathalast,,,""
+NULL,209,1911,100,gatha1,,,""
+NULL,209,1912,100,gatha2,,,""
+NULL,209,1913,100,gatha3,,,""
+NULL,209,1914,100,gathalast,,,""
+NULL,209,1915,100,bodytext,,,""
+NULL,209,1916,100,bodytext,,,""
+NULL,209,1917,100,bodytext,,,""
+NULL,209,1918,100,bodytext,,,""
+NULL,209,1919,100,centered,,,""
+NULL,209,1920,4,subhead,Sikkhāpadadaṇḍakammavatthukathāvaṇṇanā,,""
+NULL,209,1921,100,bodytext,,,""
+NULL,209,1922,100,centered,,,""
+NULL,209,1923,4,subhead,Anāpucchāvaraṇavatthuādikathāvaṇṇanā,,""
+NULL,209,1924,100,bodytext,,,""
+NULL,209,1925,100,centered,,,""
+NULL,209,1926,4,subhead,Paṇḍakavatthukathāvaṇṇanā,,""
+NULL,209,1927,100,bodytext,,,""
+NULL,209,1928,100,bodytext,,,""
+NULL,209,1929,100,centered,,,""
+NULL,209,1930,4,subhead,Theyyasaṃvāsakavatthukathāvaṇṇanā,,""
+NULL,209,1931,100,bodytext,,,""
+NULL,209,1932,100,bodytext,,,""
+NULL,209,1933,100,centered,,,""
+NULL,209,1934,4,subhead,Titthiyapakkantakakathāvaṇṇanā,,""
+NULL,209,1935,100,bodytext,,,""
+NULL,209,1936,100,centered,,,""
+NULL,209,1937,4,subhead,Tiracchānagatavatthukathāvaṇṇanā,,""
+NULL,209,1938,100,bodytext,,,""
+NULL,209,1939,100,centered,,,""
+NULL,209,1940,4,subhead,Mātughātakādivatthukathāvaṇṇanā,,""
+NULL,209,1941,100,bodytext,,,""
+NULL,209,1942,100,centered,,,""
+NULL,209,1943,4,subhead,Ubhatobyañjanakavatthukathāvaṇṇanā,,""
+NULL,209,1944,100,bodytext,,,""
+NULL,209,1945,100,centered,,,""
+NULL,209,1946,4,subhead,Anupajjhāyakādivatthukathāvaṇṇanā,,""
+NULL,209,1947,100,bodytext,,,""
+NULL,209,1948,100,bodytext,,,""
+NULL,209,1949,4,subhead,Apattakādivatthukathāvaṇṇanā,,""
+NULL,209,1950,100,bodytext,,,""
+NULL,209,1951,4,subhead,Hatthacchinnādivatthukathāvaṇṇanā,,""
+NULL,209,1952,100,bodytext,,,""
+NULL,209,1953,100,bodytext,,,""
+NULL,209,1954,100,bodytext,,,""
+NULL,209,1955,100,bodytext,,,""
+NULL,209,1956,100,gatha1,,,""
+NULL,209,1957,100,gathalast,,,""
+NULL,209,1958,100,bodytext,,,""
+NULL,209,1959,100,bodytext,,,""
+NULL,209,1960,100,gatha1,,,""
+NULL,209,1961,100,gathalast,,,""
+NULL,209,1962,100,bodytext,,,""
+NULL,209,1963,100,centered,,,""
+NULL,209,1964,4,subhead,Alajjīnissayavatthukathāvaṇṇanā,,""
+NULL,209,1965,100,bodytext,,,""
+NULL,209,1966,4,subhead,Gamikādinissayavatthukathāvaṇṇanā,,""
+NULL,209,1967,100,bodytext,,,""
+NULL,209,1968,100,bodytext,,,""
+NULL,209,1969,100,bodytext,,,""
+NULL,209,1970,100,bodytext,,,""
+NULL,209,1971,4,subhead,Upasampadāvidhikathāvaṇṇanā,,""
+NULL,209,1972,100,bodytext,,,""
+NULL,209,1973,4,subhead,Cattāronissayādikathāvaṇṇanā,,""
+NULL,209,1974,100,bodytext,,,""
+NULL,209,1975,100,bodytext,,,""
+NULL,209,1976,100,gatha1,,,""
+NULL,209,1977,100,gathalast,,,""
+NULL,209,1978,100,unindented,,,""
+NULL,209,1979,100,gatha1,,,""
+NULL,209,1980,100,gatha2,,,""
+NULL,209,1981,100,gatha3,,,""
+NULL,209,1982,100,gathalast,,,""
+NULL,209,1983,100,centered,,,""
+NULL,209,1984,4,subhead,2. Uposathakkhandhakavaṇṇanā,,""
+NULL,209,1985,4,subhead,Sannipātānujānanādikathāvaṇṇanā,,""
+NULL,209,1986,100,bodytext,,,""
+NULL,209,1987,100,bodytext,,,""
+NULL,209,1988,100,bodytext,,,""
+NULL,209,1989,100,bodytext,,,""
+NULL,209,1990,100,bodytext,,,""
+NULL,209,1991,100,bodytext,,,""
+NULL,209,1992,100,bodytext,,,""
+NULL,209,1993,100,bodytext,,,""
+NULL,209,1994,4,subhead,Sīmānujānanakathāvaṇṇanā,,""
+NULL,209,1995,100,bodytext,,,""
+NULL,209,1996,100,bodytext,,,""
+NULL,209,1997,100,bodytext,,,""
+NULL,209,1998,100,bodytext,,,""
+NULL,209,1999,100,bodytext,,,""
+NULL,209,2000,100,bodytext,,,""
+NULL,209,2001,100,bodytext,,,""
+NULL,209,2002,100,bodytext,,,""
+NULL,209,2003,100,bodytext,,,""
+NULL,209,2004,100,bodytext,,,""
+NULL,209,2005,100,centered,,,""
+NULL,209,2006,4,subhead,Uposathāgārādikathāvaṇṇanā,,""
+NULL,209,2007,100,bodytext,,,""
+NULL,209,2008,100,bodytext,,,""
+NULL,209,2009,4,subhead,Avippavāsasīmānujānanakathāvaṇṇanā,,""
+NULL,209,2010,100,bodytext,,,""
+NULL,209,2011,100,bodytext,,,""
+NULL,209,2012,4,subhead,Gāmasīmādikathāvaṇṇanā,,""
+NULL,209,2013,100,bodytext,,,""
+NULL,209,2014,100,bodytext,,,""
+NULL,209,2015,100,bodytext,,,""
+NULL,209,2016,100,bodytext,,,""
+NULL,209,2017,100,gatha1,,,""
+NULL,209,2018,100,gathalast,,,""
+NULL,209,2019,100,gatha1,,,""
+NULL,209,2020,100,gathalast,,,""
+NULL,209,2021,100,bodytext,,,""
+NULL,209,2022,100,bodytext,,,""
+NULL,209,2023,4,subhead,Uposathabhedādikathāvaṇṇanā,,""
+NULL,209,2024,100,bodytext,,,""
+NULL,209,2025,4,subhead,Pātimokkhuddesakathāvaṇṇanā,,""
+NULL,209,2026,100,bodytext,,,""
+NULL,209,2027,4,subhead,Adhammakammapaṭikkosanādikathāvaṇṇanā,,""
+NULL,209,2028,100,bodytext,,,""
+NULL,209,2029,4,subhead,Pātimokkhuddesakaajjhesanādikathāvaṇṇanā,,""
+NULL,209,2030,100,bodytext,,,""
+NULL,209,2031,4,subhead,Disaṃgamikādivatthukathāvaṇṇanā,,""
+NULL,209,2032,100,bodytext,,,""
+NULL,209,2033,4,subhead,Pārisuddhidānakathāvaṇṇanā,,""
+NULL,209,2034,100,bodytext,,,""
+NULL,209,2035,4,subhead,Chandadānādikathāvaṇṇanā,,""
+NULL,209,2036,100,bodytext,,,""
+NULL,209,2037,4,subhead,Āpattipaṭikammavidhikathādivaṇṇanā,,""
+NULL,209,2038,100,bodytext,,,""
+NULL,209,2039,4,subhead,Anāpattipannarasakādikathāvaṇṇanā,,""
+NULL,209,2040,100,bodytext,,,""
+NULL,209,2041,4,subhead,Sīmokkantikapeyyālakathāvaṇṇanā,,""
+NULL,209,2042,100,bodytext,,,""
+NULL,209,2043,4,subhead,Liṅgādidassanakathāvaṇṇanā,,""
+NULL,209,2044,100,bodytext,,,""
+NULL,209,2045,4,subhead,Nagantabbagantabbavārakathāvaṇṇanā,,""
+NULL,209,2046,100,bodytext,,,""
+NULL,209,2047,4,subhead,Vajjanīyapuggalasandassanakathāvaṇṇanā,,""
+NULL,209,2048,100,bodytext,,,""
+NULL,209,2049,100,centered,,,""
+NULL,209,2050,4,subhead,3. Vassūpanāyikakkhandhakavaṇṇanā,,""
+NULL,209,2051,4,subhead,Vassūpanāyikānujānanakathāvaṇṇanā,,""
+NULL,209,2052,100,bodytext,,,""
+NULL,209,2053,4,subhead,Vassānecārikāpaṭikkhepādikathāvaṇṇanā,,""
+NULL,209,2054,100,bodytext,,,""
+NULL,209,2055,4,subhead,Sattāhakaraṇīyānujānanakathāvaṇṇanā,,""
+NULL,209,2056,100,bodytext,,,""
+NULL,209,2057,4,subhead,Pahiteyevaanujānanakathāvaṇṇanā,,""
+NULL,209,2058,100,bodytext,,,""
+NULL,209,2059,100,bodytext,,,""
+NULL,209,2060,4,subhead,Antarāyeanāpattivassacchedakathāvaṇṇanā,,""
+NULL,209,2061,100,bodytext,,,""
+NULL,209,2062,4,subhead,Vajādīsuvassūpagamanakathāvaṇṇanā,,""
+NULL,209,2063,100,bodytext,,,""
+NULL,209,2064,100,bodytext,,,""
+NULL,209,2065,100,bodytext,,,""
+NULL,209,2066,4,subhead,Adhammikakatikādikathāvaṇṇanā,,""
+NULL,209,2067,100,bodytext,,,""
+NULL,209,2068,100,bodytext,,,""
+NULL,209,2069,100,bodytext,,,""
+NULL,209,2070,100,bodytext,,,""
+NULL,209,2071,100,bodytext,,,""
+NULL,209,2072,100,centered,,,""
+NULL,209,2073,4,subhead,4. Pavāraṇākkhandhakavaṇṇanā,,""
+NULL,209,2074,4,subhead,Aphāsukavihārakathāvaṇṇanā,,""
+NULL,209,2075,100,bodytext,,,""
+NULL,209,2076,4,subhead,Pavāraṇābhedavaṇṇanā,,""
+NULL,209,2077,100,bodytext,,,""
+NULL,209,2078,4,subhead,Pavāraṇādānānujānanakathāvaṇṇanā,,""
+NULL,209,2079,100,bodytext,,,""
+NULL,209,2080,4,subhead,Anāpattipannarasakādikathāvaṇṇanā,,""
+NULL,209,2081,100,bodytext,,,""
+NULL,209,2082,100,bodytext,,,""
+NULL,209,2083,100,bodytext,,,""
+NULL,209,2084,100,bodytext,,,""
+NULL,209,2085,100,centered,,,""
+NULL,209,2086,4,subhead,5. Cammakkhandhakavaṇṇanā,,""
+NULL,209,2087,4,subhead,Soṇakoḷivisavatthukathāvaṇṇanā,,""
+NULL,209,2088,100,bodytext,,,""
+NULL,209,2089,4,subhead,Soṇassapabbajjākathāvaṇṇanā,,""
+NULL,209,2090,100,bodytext,,,""
+NULL,209,2091,100,bodytext,,,""
+NULL,209,2092,4,subhead,Sabbanīlikādipaṭikkhepakathāvaṇṇanā,,""
+NULL,209,2093,100,bodytext,,,""
+NULL,209,2094,4,subhead,Yānādipaṭikkhepakathāvaṇṇanā,,""
+NULL,209,2095,100,bodytext,,,""
+NULL,209,2096,4,subhead,Sabbacammapaṭikkhepādikathāvaṇṇanā,,""
+NULL,209,2097,100,bodytext,,,""
+NULL,209,2098,100,bodytext,,,""
+NULL,209,2099,100,bodytext,,,""
+NULL,209,2100,100,centered,,,""
+NULL,209,2101,4,subhead,6. Bhesajjakkhandhakavaṇṇanā,,""
+NULL,209,2102,4,subhead,Pañcabhesajjādikathāvaṇṇanā,,""
+NULL,209,2103,100,bodytext,,,""
+NULL,209,2104,100,bodytext,,,""
+NULL,209,2105,100,bodytext,,,""
+NULL,209,2106,100,bodytext,,,""
+NULL,209,2107,100,bodytext,,,""
+NULL,209,2108,100,bodytext,,,""
+NULL,209,2109,100,bodytext,,,""
+NULL,209,2110,100,bodytext,,,""
+NULL,209,2111,4,subhead,Guḷādianujānanakathāvaṇṇanā,,""
+NULL,209,2112,100,bodytext,,,""
+NULL,209,2113,100,bodytext,,,""
+NULL,209,2114,100,bodytext,,,""
+NULL,209,2115,4,subhead,Manussamaṃsapaṭikkhepakathāvaṇṇanā,,""
+NULL,209,2116,100,bodytext,,,""
+NULL,209,2117,4,subhead,Hatthimaṃsādipaṭikkhepakathāvaṇṇanā,,""
+NULL,209,2118,100,bodytext,,,""
+NULL,209,2119,100,indent,,,""
+NULL,209,2120,100,unindented,,,""
+NULL,209,2121,4,subhead,Yāgumadhugoḷakādikathāvaṇṇanā,,""
+NULL,209,2122,100,bodytext,,,""
+NULL,209,2123,100,bodytext,,,""
+NULL,209,2124,100,bodytext,,,""
+NULL,209,2125,100,bodytext,,,""
+NULL,209,2126,4,subhead,Kappiyabhūmianujānanakathāvaṇṇanā,,""
+NULL,209,2127,100,bodytext,,,""
+NULL,209,2128,100,bodytext,,,""
+NULL,209,2129,4,subhead,Keṇiyajaṭilavatthukathāvaṇṇanā,,""
+NULL,209,2130,100,bodytext,,,""
+NULL,209,2131,100,bodytext,,,""
+NULL,209,2132,100,centered,,,""
+NULL,209,2133,4,subhead,7. Kathinakkhandhakavaṇṇanā,,""
+NULL,209,2134,4,subhead,Kathinānujānanakathāvaṇṇanā,,""
+NULL,209,2135,100,bodytext,,,""
+NULL,209,2136,100,bodytext,,,""
+NULL,209,2137,100,bodytext,,,""
+NULL,209,2138,100,bodytext,,,""
+NULL,209,2139,100,bodytext,,,""
+NULL,209,2140,100,bodytext,,,""
+NULL,209,2141,100,bodytext,,,""
+NULL,209,2142,100,bodytext,,,""
+NULL,209,2143,100,bodytext,,,""
+NULL,209,2144,4,subhead,Ādāyasattakakathāvaṇṇanā,,""
+NULL,209,2145,100,bodytext,,,""
+NULL,209,2146,100,bodytext,,,""
+NULL,209,2147,100,bodytext,,,""
+NULL,209,2148,100,bodytext,,,""
+NULL,209,2149,100,bodytext,,,""
+NULL,209,2150,100,centered,,,""
+NULL,209,2151,4,subhead,8. Cīvarakkhandhakavaṇṇanā,,""
+NULL,209,2152,4,subhead,Jīvakavatthukathāvaṇṇanā,,""
+NULL,209,2153,100,bodytext,,,""
+NULL,209,2154,100,bodytext,,,""
+NULL,209,2155,100,bodytext,,,""
+NULL,209,2156,4,subhead,Pajjotarājavatthukathāvaṇṇanā,,""
+NULL,209,2157,100,bodytext,,,""
+NULL,209,2158,4,subhead,Samattiṃsavirecanakathāvaṇṇanā,,""
+NULL,209,2159,100,bodytext,,,""
+NULL,209,2160,4,subhead,Varayācanakathāvaṇṇanā,,""
+NULL,209,2161,100,bodytext,,,""
+NULL,209,2162,4,subhead,Kambalānujānanādikathāvaṇṇanā,,""
+NULL,209,2163,100,bodytext,,,""
+NULL,209,2164,100,bodytext,,,""
+NULL,209,2165,4,subhead,Bhaṇḍāgārasammutiādikathāvaṇṇanā,,""
+NULL,209,2166,100,bodytext,,,""
+NULL,209,2167,4,subhead,Cīvararajanakathāvaṇṇanā,,""
+NULL,209,2168,100,bodytext,,,""
+NULL,209,2169,4,subhead,Nisīdanādianujānanakathāvaṇṇanā,,""
+NULL,209,2170,100,bodytext,,,""
+NULL,209,2171,100,bodytext,,,""
+NULL,209,2172,4,subhead,Saṅghikacīvaruppādakathāvaṇṇanā,,""
+NULL,209,2173,100,bodytext,,,""
+NULL,209,2174,4,subhead,Upanandasakyaputtavatthukathāvaṇṇanā,,""
+NULL,209,2175,100,bodytext,,,""
+NULL,209,2176,4,subhead,Matasantakakathāvaṇṇanā,,""
+NULL,209,2177,100,bodytext,,,""
+NULL,209,2178,100,bodytext,,,""
+NULL,209,2179,100,bodytext,,,""
+NULL,209,2180,4,subhead,Vassaṃvutthānaṃanuppannacīvarakathāvaṇṇanā,,""
+NULL,209,2181,100,bodytext,,,""
+NULL,209,2182,4,subhead,Saṅghebhinnecīvaruppādakathāvaṇṇanā,,""
+NULL,209,2183,100,bodytext,,,""
+NULL,209,2184,4,subhead,Aṭṭhacīvaramātikākathāvaṇṇanā,,""
+NULL,209,2185,100,bodytext,,,""
+NULL,209,2186,100,gatha1,,,""
+NULL,209,2187,100,gathalast,,,""
+NULL,209,2188,100,unindented,,,""
+NULL,209,2189,100,bodytext,,,""
+NULL,209,2190,100,centered,,,""
+NULL,209,2191,4,subhead,9. Campeyyakkhandhakavaṇṇanā,,""
+NULL,209,2192,4,subhead,Dvenissāraṇādikathāvaṇṇanā,,""
+NULL,209,2193,100,bodytext,,,""
+NULL,209,2194,4,subhead,Upālipucchākathāvaṇṇanā,,""
+NULL,209,2195,100,bodytext,,,""
+NULL,209,2196,100,centered,,,""
+NULL,209,2197,4,subhead,10. Kosambakakkhandhakavaṇṇanā,,""
+NULL,209,2198,4,subhead,Kosambakavivādakathāvaṇṇanā,,""
+NULL,209,2199,100,bodytext,,,""
+NULL,209,2200,100,bodytext,,,""
+NULL,209,2201,4,subhead,Dīghāvuvatthukathāvaṇṇanā,,""
+NULL,209,2202,100,bodytext,,,""
+NULL,209,2203,4,subhead,Pālileyyakagamanakathāvaṇṇanā,,""
+NULL,209,2204,100,bodytext,,,""
+NULL,209,2205,4,subhead,Aṭṭhārasavatthukathāvaṇṇanā,,""
+NULL,209,2206,100,bodytext,,,""
+NULL,209,2207,4,subhead,Saṅghasāmaggīkathāvaṇṇanā,,""
+NULL,209,2208,100,bodytext,,,""
+NULL,209,2209,100,gatha1,,,""
+NULL,209,2210,100,gathalast,,,""
+NULL,209,2211,100,gatha1,,,""
+NULL,209,2212,100,gathalast,,,""
+NULL,209,2213,100,bodytext,,,""
+NULL,209,2214,100,centered,,,""
+NULL,209,2215,100,centered,,,""
+NULL,209,2216,100,centered,,,""
+NULL,209,2217,2,chapter,Cūḷavaggavaṇṇanā,小品详解,""
+NULL,209,2218,3,title,1. Kammakkhandhakavaṇṇanā,,""
+NULL,209,2219,4,subhead,Adhammakammadvādasakakathāvaṇṇanā,,""
+NULL,209,2220,100,bodytext,,,""
+NULL,209,2221,100,bodytext,,,""
+NULL,209,2222,100,bodytext,,,""
+NULL,209,2223,100,bodytext,,,""
+NULL,209,2224,100,bodytext,,,""
+NULL,209,2225,100,bodytext,,,""
+NULL,209,2226,100,bodytext,,,""
+NULL,209,2227,100,centered,,,""
+NULL,209,2228,3,title,2. Pārivāsikakkhandhakavaṇṇanā,,""
+NULL,209,2229,4,subhead,Pārivāsikavattakathāvaṇṇanā,,""
+NULL,209,2230,100,bodytext,,,""
+NULL,209,2231,100,bodytext,,,""
+NULL,209,2232,100,bodytext,,,""
+NULL,209,2233,100,centered,,,""
+NULL,209,2234,4,subhead,Mūlāyapaṭikassanārahavattakathāvaṇṇanā,,""
+NULL,209,2235,100,bodytext,,,""
+NULL,209,2236,100,centered,,,""
+NULL,209,2237,3,title,3. Samuccayakkhandhakavaṇṇanā,,""
+NULL,209,2238,4,subhead,Sukkavissaṭṭhikathāvaṇṇanā,,""
+NULL,209,2239,100,bodytext,,,""
+NULL,209,2240,4,subhead,Parivāsakathāvaṇṇanā,,""
+NULL,209,2241,100,bodytext,,,""
+NULL,209,2242,100,bodytext,,,""
+NULL,209,2243,100,bodytext,,,""
+NULL,209,2244,100,centered,,,""
+NULL,209,2245,100,bodytext,,,""
+NULL,209,2246,4,subhead,Paṭicchannaparivāsādikathāvaṇṇanā,,""
+NULL,209,2247,100,bodytext,,,""
+NULL,209,2248,100,bodytext,,,""
+NULL,209,2249,100,bodytext,,,""
+NULL,209,2250,100,bodytext,,,""
+NULL,209,2251,100,centered,,,""
+NULL,209,2252,3,title,4. Samathakkhandhakavaṇṇanā,,""
+NULL,209,2253,4,subhead,Sammukhāvinayakathāvaṇṇanā,,""
+NULL,209,2254,100,bodytext,,,""
+NULL,209,2255,4,subhead,Sativinayakathāvaṇṇanā,,""
+NULL,209,2256,100,bodytext,,,""
+NULL,209,2257,4,subhead,Amūḷhavinayakathāvaṇṇanā,,""
+NULL,209,2258,100,bodytext,,,""
+NULL,209,2259,4,subhead,Paṭiññātakaraṇakathāvaṇṇanā,,""
+NULL,209,2260,100,bodytext,,,""
+NULL,209,2261,4,subhead,Tassapāpiyasikākathāvaṇṇanā,,""
+NULL,209,2262,100,bodytext,,,""
+NULL,209,2263,4,subhead,Tiṇavatthārakādikathāvaṇṇanā,,""
+NULL,209,2264,100,bodytext,,,""
+NULL,209,2265,4,subhead,Adhikaraṇakathāvaṇṇanā,,""
+NULL,209,2266,100,bodytext,,,""
+NULL,209,2267,100,bodytext,,,""
+NULL,209,2268,100,bodytext,,,""
+NULL,209,2269,100,bodytext,,,""
+NULL,209,2270,100,bodytext,,,""
+NULL,209,2271,100,bodytext,,,""
+NULL,209,2272,100,bodytext,,,""
+NULL,209,2273,100,bodytext,,,""
+NULL,209,2274,100,bodytext,,,""
+NULL,209,2275,100,bodytext,,,""
+NULL,209,2276,100,centered,,,""
+NULL,209,2277,3,title,5. Khuddakavatthukkhandhakavaṇṇanā,,""
+NULL,209,2278,4,subhead,Khuddakavatthukathāvaṇṇanā,,""
+NULL,209,2279,100,bodytext,,,""
+NULL,209,2280,100,bodytext,,,""
+NULL,209,2281,100,bodytext,,,""
+NULL,209,2282,100,bodytext,,,""
+NULL,209,2283,100,bodytext,,,""
+NULL,209,2284,100,bodytext,,,""
+NULL,209,2285,100,bodytext,,,""
+NULL,209,2286,100,bodytext,,,""
+NULL,209,2287,100,bodytext,,,""
+NULL,209,2288,100,bodytext,,,""
+NULL,209,2289,100,bodytext,,,""
+NULL,209,2290,100,bodytext,,,""
+NULL,209,2291,100,bodytext,,,""
+NULL,209,2292,100,bodytext,,,""
+NULL,209,2293,100,bodytext,,,""
+NULL,209,2294,100,bodytext,,,""
+NULL,209,2295,100,bodytext,,,""
+NULL,209,2296,100,centered,,,""
+NULL,209,2297,3,title,6. Senāsanakkhandhakavaṇṇanā,,""
+NULL,209,2298,4,subhead,Vihārānujānanakathāvaṇṇanā,,""
+NULL,209,2299,100,bodytext,,,""
+NULL,209,2300,100,bodytext,,,""
+NULL,209,2301,100,bodytext,,,""
+NULL,209,2302,100,bodytext,,,""
+NULL,209,2303,100,bodytext,,,""
+NULL,209,2304,100,bodytext,,,""
+NULL,209,2305,100,bodytext,,,""
+NULL,209,2306,100,bodytext,,,""
+NULL,209,2307,100,bodytext,,,""
+NULL,209,2308,100,bodytext,,,""
+NULL,209,2309,4,subhead,Senāsanaggāhakathāvaṇṇanā,,""
+NULL,209,2310,100,bodytext,,,""
+NULL,209,2311,100,bodytext,,,""
+NULL,209,2312,100,bodytext,,,""
+NULL,209,2313,4,subhead,Upanandavatthukathāvaṇṇanā,,""
+NULL,209,2314,100,bodytext,,,""
+NULL,209,2315,4,subhead,Avissajjiyavatthukathāvaṇṇanā,,""
+NULL,209,2316,100,bodytext,,,""
+NULL,209,2317,100,bodytext,,,""
+NULL,209,2318,4,subhead,Navakammadānakathāvaṇṇanā,,""
+NULL,209,2319,100,bodytext,,,""
+NULL,209,2320,4,subhead,Saṅghabhattādianujānanakathāvaṇṇanā,,""
+NULL,209,2321,4,subhead,Uddesabhattakathāvaṇṇanā,,""
+NULL,209,2322,100,bodytext,,,""
+NULL,209,2323,4,subhead,Nimantanabhattakathāvaṇṇanā,,""
+NULL,209,2324,100,bodytext,,,""
+NULL,209,2325,4,subhead,Salākabhattakathāvaṇṇanā,,""
+NULL,209,2326,100,bodytext,,,""
+NULL,209,2327,4,subhead,Pakkhikabhattakathāvaṇṇanā,,""
+NULL,209,2328,100,bodytext,,,""
+NULL,209,2329,100,centered,,,""
+NULL,209,2330,3,title,7. Saṅghabhedakakkhandhakavaṇṇanā,,""
+NULL,209,2331,4,subhead,Chasakyapabbajjākathāvaṇṇanā,,""
+NULL,209,2332,100,bodytext,,,""
+NULL,209,2333,100,bodytext,,,""
+NULL,209,2334,100,bodytext,,,""
+NULL,209,2335,100,bodytext,,,""
+NULL,209,2336,100,bodytext,,,""
+NULL,209,2337,100,bodytext,,,""
+NULL,209,2338,100,bodytext,,,""
+NULL,209,2339,100,bodytext,,,""
+NULL,209,2340,100,bodytext,,,""
+NULL,209,2341,100,bodytext,,,""
+NULL,209,2342,100,bodytext,,,""
+NULL,209,2343,100,bodytext,,,""
+NULL,209,2344,100,bodytext,,,""
+NULL,209,2345,100,centered,,,""
+NULL,209,2346,3,title,8. Vattakkhandhakavaṇṇanā,,""
+NULL,209,2347,4,subhead,Āgantukavattakathāvaṇṇanā,,""
+NULL,209,2348,100,bodytext,,,""
+NULL,209,2349,4,subhead,Anumodanavattakathāvaṇṇanā,,""
+NULL,209,2350,100,bodytext,,,""
+NULL,209,2351,100,centered,,,""
+NULL,209,2352,3,title,9. Pātimokkhaṭṭhapanakkhandhakavaṇṇanā,,""
+NULL,209,2353,4,subhead,Pātimokkhuddesayācanakathāvaṇṇanā,,""
+NULL,209,2354,100,bodytext,,,""
+NULL,209,2355,4,subhead,Attādānaaṅgakathāvaṇṇanā,,""
+NULL,209,2356,100,bodytext,,,""
+NULL,209,2357,100,bodytext,,,""
+NULL,209,2358,100,centered,,,""
+NULL,209,2359,3,title,10. Bhikkhunikkhandhakavaṇṇanā,,""
+NULL,209,2360,4,subhead,Mahāpajāpatigotamīvatthukathāvaṇṇanā,,""
+NULL,209,2361,100,bodytext,,,""
+NULL,209,2362,4,subhead,Bhikkhunīupasampadānujānanakathāvaṇṇanā,,""
+NULL,209,2363,100,bodytext,,,""
+NULL,209,2364,100,bodytext,,,""
+NULL,209,2365,100,bodytext,,,""
+NULL,209,2366,100,bodytext,,,""
+NULL,209,2367,100,bodytext,,,""
+NULL,209,2368,100,bodytext,,,""
+NULL,209,2369,100,bodytext,,,""
+NULL,209,2370,100,bodytext,,,""
+NULL,209,2371,100,bodytext,,,""
+NULL,209,2372,100,bodytext,,,""
+NULL,209,2373,100,bodytext,,,""
+NULL,209,2374,100,bodytext,,,""
+NULL,209,2375,100,bodytext,,,""
+NULL,209,2376,100,bodytext,,,""
+NULL,209,2377,100,gatha1,,,""
+NULL,209,2378,100,gathalast,,,""
+NULL,209,2379,100,gatha1,,,""
+NULL,209,2380,100,gathalast,,,""
+NULL,209,2381,100,gatha1,,,""
+NULL,209,2382,100,gathalast,,,""
+NULL,209,2383,100,gatha1,,,""
+NULL,209,2384,100,gathalast,,,""
+NULL,209,2385,100,gatha1,,,""
+NULL,209,2386,100,gathalast,,,""
+NULL,209,2387,100,gatha1,,,""
+NULL,209,2388,100,gathalast,,,""
+NULL,209,2389,100,gatha1,,,""
+NULL,209,2390,100,gatha1,,,""
+NULL,209,2391,100,gathalast,,,""
+NULL,209,2392,100,centered,,,""
+NULL,209,2393,3,title,11. Pañcasatikakkhandhakavaṇṇanā,,""
+NULL,209,2394,4,subhead,Saṅgītinidānakathāvaṇṇanā,,""
+NULL,209,2395,100,bodytext,,,""
+NULL,209,2396,4,subhead,Khuddānukhuddakakathāvaṇṇanā,,""
+NULL,209,2397,100,bodytext,,,""
+NULL,209,2398,100,bodytext,,,""
+NULL,209,2399,4,subhead,Brahmadaṇḍakathāvaṇṇanā,,""
+NULL,209,2400,100,bodytext,,,""
+NULL,209,2401,100,centered,,,""
+NULL,209,2402,3,title,12. Sattasatikakkhandhakavaṇṇanā,,""
+NULL,209,2403,4,subhead,Dasavatthukathāvaṇṇanā,,""
+NULL,209,2404,100,bodytext,,,""
+NULL,209,2405,100,bodytext,,,""
+NULL,209,2406,100,bodytext,,,""
+NULL,209,2407,100,bodytext,,,""
+NULL,209,2408,100,bodytext,,,""
+NULL,209,2409,100,bodytext,,,""
+NULL,209,2410,100,gatha1,,,""
+NULL,209,2411,100,gathalast,,,""
+NULL,209,2412,100,gatha1,,,""
+NULL,209,2413,100,gathalast,,,""
+NULL,209,2414,100,gatha1,,,""
+NULL,209,2415,100,gathalast,,,""
+NULL,209,2416,100,gatha1,,,""
+NULL,209,2417,100,gathalast,,,""
+NULL,209,2418,100,gatha1,,,""
+NULL,209,2419,100,gathalast,,,""
+NULL,209,2420,100,unindented,,,""
+NULL,209,2421,100,gatha1,,,""
+NULL,209,2422,100,gathalast,,,""
+NULL,209,2423,100,gatha1,,,""
+NULL,209,2424,100,gathalast,,,""
+NULL,209,2425,100,centered,,,""
+NULL,209,2426,100,centered,,,""
+NULL,209,2427,100,centered,,,""
+NULL,209,2428,2,chapter,Parivāravaṇṇanā,附录详解,""
+NULL,209,2429,3,title,Soḷasamahāvāravaṇṇanā,,""
+NULL,209,2430,4,subhead,Paññattivāravaṇṇanā,,""
+NULL,209,2431,100,bodytext,,,""
+NULL,209,2432,100,centered,,,""
+NULL,209,2433,4,subhead,Katāpattivārādivaṇṇanā,,""
+NULL,209,2434,100,bodytext,,,""
+NULL,209,2435,100,bodytext,,,""
+NULL,209,2436,100,bodytext,,,""
+NULL,209,2437,100,bodytext,,,""
+NULL,209,2438,100,centered,,,""
+NULL,209,2439,3,title,Samuṭṭhānasīsavaṇṇanā,,""
+NULL,209,2440,100,bodytext,,,""
+NULL,209,2441,4,subhead,Paṭhamapārājikasamuṭṭhānavaṇṇanā,,""
+NULL,209,2442,100,bodytext,,,""
+NULL,209,2443,4,subhead,Dutiyapārājikasamuṭṭhānavaṇṇanā,,""
+NULL,209,2444,100,bodytext,,,""
+NULL,209,2445,100,bodytext,,,""
+NULL,209,2446,3,title,Antarapeyyālaṃ,,""
+NULL,209,2447,4,subhead,Katipucchāvāravaṇṇanā,,""
+NULL,209,2448,100,bodytext,,,""
+NULL,209,2449,100,bodytext,,,""
+NULL,209,2450,4,subhead,Chaāpattisamuṭṭhānavārādivaṇṇanā,,""
+NULL,209,2451,100,bodytext,,,""
+NULL,209,2452,100,bodytext,,,""
+NULL,209,2453,100,bodytext,,,""
+NULL,209,2454,100,bodytext,,,""
+NULL,209,2455,100,bodytext,,,""
+NULL,209,2456,100,bodytext,,,""
+NULL,209,2457,100,centered,,,""
+NULL,209,2458,3,title,Samathabhedavaṇṇanā,,""
+NULL,209,2459,4,subhead,Adhikaraṇapariyāyavārādivaṇṇanā,,""
+NULL,209,2460,100,bodytext,,,""
+NULL,209,2461,100,bodytext,,,""
+NULL,209,2462,100,bodytext,,,""
+NULL,209,2463,100,bodytext,,,""
+NULL,209,2464,100,bodytext,,,""
+NULL,209,2465,100,bodytext,,,""
+NULL,209,2466,100,bodytext,,,""
+NULL,209,2467,100,bodytext,,,""
+NULL,209,2468,100,bodytext,,,""
+NULL,209,2469,4,subhead,Yatthavārapucchāvāravaṇṇanā,,""
+NULL,209,2470,100,bodytext,,,""
+NULL,209,2471,4,subhead,Samathavāravissajjanāvāravaṇṇanā,,""
+NULL,209,2472,100,bodytext,,,""
+NULL,209,2473,4,subhead,Saṃsaṭṭhavārādivaṇṇanā,,""
+NULL,209,2474,100,bodytext,,,""
+NULL,209,2475,100,bodytext,,,""
+NULL,209,2476,100,bodytext,,,""
+NULL,209,2477,100,bodytext,,,""
+NULL,209,2478,100,bodytext,,,""
+NULL,209,2479,100,bodytext,,,""
+NULL,209,2480,100,centered,,,""
+NULL,209,2481,3,title,Khandhakapucchāvāravaṇṇanā,,""
+NULL,209,2482,4,subhead,Pucchāvissajjanāvaṇṇanā,,""
+NULL,209,2483,100,bodytext,,,""
+NULL,209,2484,3,title,Ekuttarikanayavaṇṇanā,,""
+NULL,209,2485,4,subhead,Ekakavāravaṇṇanā,,""
+NULL,209,2486,100,bodytext,,,""
+NULL,209,2487,100,bodytext,,,""
+NULL,209,2488,100,bodytext,,,""
+NULL,209,2489,100,bodytext,,,""
+NULL,209,2490,100,bodytext,,,""
+NULL,209,2491,100,bodytext,,,""
+NULL,209,2492,4,subhead,Dukavāravaṇṇanā,,""
+NULL,209,2493,100,bodytext,,,""
+NULL,209,2494,4,subhead,Tikavāravaṇṇanā,,""
+NULL,209,2495,100,bodytext,,,""
+NULL,209,2496,4,subhead,Catukkavāravaṇṇanā,,""
+NULL,209,2497,100,bodytext,,,""
+NULL,209,2498,100,bodytext,,,""
+NULL,209,2499,4,subhead,Pañcakavāravaṇṇanā,,""
+NULL,209,2500,100,bodytext,,,""
+NULL,209,2501,4,subhead,Chakkavāravaṇṇanā,,""
+NULL,209,2502,100,bodytext,,,""
+NULL,209,2503,4,subhead,Sattakavāravaṇṇanā,,""
+NULL,209,2504,100,bodytext,,,""
+NULL,209,2505,4,subhead,Aṭṭhakavāravaṇṇanā,,""
+NULL,209,2506,100,bodytext,,,""
+NULL,209,2507,4,subhead,Navakavāravaṇṇanā,,""
+NULL,209,2508,100,bodytext,,,""
+NULL,209,2509,4,subhead,Dasakavāravaṇṇanā,,""
+NULL,209,2510,100,bodytext,,,""
+NULL,209,2511,4,subhead,Ekādasakavāravaṇṇanā,,""
+NULL,209,2512,100,bodytext,,,""
+NULL,209,2513,100,centered,,,""
+NULL,209,2514,4,subhead,Uposathādipucchāvissajjanāvaṇṇanā,,""
+NULL,209,2515,100,bodytext,,,""
+NULL,209,2516,4,subhead,Atthavasapakaraṇavaṇṇanā,,""
+NULL,209,2517,100,bodytext,,,""
+NULL,209,2518,100,gatha1,,,""
+NULL,209,2519,100,gathalast,,,""
+NULL,209,2520,100,bodytext,,,""
+NULL,209,2521,100,gatha1,,,""
+NULL,209,2522,100,gathalast,,,""
+NULL,209,2523,100,bodytext,,,""
+NULL,209,2524,100,gatha1,,,""
+NULL,209,2525,100,gathalast,,,""
+NULL,209,2526,100,gatha1,,,""
+NULL,209,2527,100,gathalast,,,""
+NULL,209,2528,100,bodytext,,,""
+NULL,209,2529,100,gatha1,,,""
+NULL,209,2530,100,gatha2,,,""
+NULL,209,2531,100,gathalast,,,""
+NULL,209,2532,100,unindented,,,""
+NULL,209,2533,100,gatha1,,,""
+NULL,209,2534,100,gatha2,,,""
+NULL,209,2535,100,gathalast,,,""
+NULL,209,2536,100,gatha1,,,""
+NULL,209,2537,100,gathalast,,,""
+NULL,209,2538,100,gatha1,,,""
+NULL,209,2539,100,gathalast,,,""
+NULL,209,2540,100,gatha1,,,""
+NULL,209,2541,100,gathalast,,,""
+NULL,209,2542,100,bodytext,,,""
+NULL,209,2543,100,centered,,,""
+NULL,209,2544,3,title,Paṭhamagāthāsaṅgaṇikavaṇṇanā,,""
+NULL,209,2545,4,subhead,Sattanagaresu paññattasikkhāpadavaṇṇanā,,""
+NULL,209,2546,100,bodytext,,,""
+NULL,209,2547,4,subhead,Catuvipattivaṇṇanā,,""
+NULL,209,2548,100,bodytext,,,""
+NULL,209,2549,4,subhead,Chedanakādivaṇṇanā,,""
+NULL,209,2550,100,bodytext,,,""
+NULL,209,2551,4,subhead,Asādhāraṇādivaṇṇanā,,""
+NULL,209,2552,100,bodytext,,,""
+NULL,209,2553,100,bodytext,,,""
+NULL,209,2554,100,gatha1,,,""
+NULL,209,2555,100,gatha2,,,""
+NULL,209,2556,100,gathalast,,,""
+NULL,209,2557,100,gatha1,,,""
+NULL,209,2558,100,gathalast,,,""
+NULL,209,2559,100,gatha1,,,""
+NULL,209,2560,100,gathalast,,,""
+NULL,209,2561,100,unindented,,,""
+NULL,209,2562,4,subhead,Pārājikādiāpattivaṇṇanā,,""
+NULL,209,2563,100,bodytext,,,""
+NULL,209,2564,100,centered,,,""
+NULL,209,2565,3,title,Adhikaraṇabhedavaṇṇanā,,""
+NULL,209,2566,4,subhead,Ukkoṭanabhedādivaṇṇanā,,""
+NULL,209,2567,100,bodytext,,,""
+NULL,209,2568,4,subhead,Adhikaraṇanidānādivaṇṇanā,,""
+NULL,209,2569,100,bodytext,,,""
+NULL,209,2570,100,bodytext,,,""
+NULL,209,2571,100,bodytext,,,""
+NULL,209,2572,100,bodytext,,,""
+NULL,209,2573,100,centered,,,""
+NULL,209,2574,3,title,Dutiyagāthāsaṅgaṇikavaṇṇanā,,""
+NULL,209,2575,4,subhead,Codanādipucchāvissajjanāvaṇṇanā,,""
+NULL,209,2576,100,bodytext,,,""
+NULL,209,2577,3,title,Codanākaṇḍavaṇṇanā,,""
+NULL,209,2578,4,subhead,Anuvijjakakiccavaṇṇanā,,""
+NULL,209,2579,100,bodytext,,,""
+NULL,209,2580,100,bodytext,,,""
+NULL,209,2581,3,title,Cūḷasaṅgāmavaṇṇanā,,""
+NULL,209,2582,4,subhead,Anuvijjakassapaṭipattivaṇṇanā,,""
+NULL,209,2583,100,bodytext,,,""
+NULL,209,2584,100,bodytext,,,""
+NULL,209,2585,3,title,Mahāsaṅgāmavaṇṇanā,,""
+NULL,209,2586,4,subhead,Voharantenajānitabbādivaṇṇanā,,""
+NULL,209,2587,100,bodytext,,,""
+NULL,209,2588,100,bodytext,,,""
+NULL,209,2589,3,title,Kathinabhedavaṇṇanā,,""
+NULL,209,2590,4,subhead,Kathinaatthatādivaṇṇanā,,""
+NULL,209,2591,100,bodytext,,,""
+NULL,209,2592,4,subhead,Kathinādijānitabbavibhāgavaṇṇanā,,""
+NULL,209,2593,100,bodytext,,,""
+NULL,209,2594,100,bodytext,,,""
+NULL,209,2595,4,subhead,Palibodhapañhābyākaraṇakathāvaṇṇanā,,""
+NULL,209,2596,100,bodytext,,,""
+NULL,209,2597,100,centered,,,""
+NULL,209,2598,100,centered,,,""
+NULL,209,2599,3,title,Upālipañcakavaṇṇanā,,""
+NULL,209,2600,4,subhead,Anissitavaggavaṇṇanā,,""
+NULL,209,2601,100,bodytext,,,""
+NULL,209,2602,4,subhead,Nappaṭippassambhanavaggavaṇṇanā,,""
+NULL,209,2603,100,bodytext,,,""
+NULL,209,2604,4,subhead,Vohāravaggavaṇṇanā,,""
+NULL,209,2605,100,bodytext,,,""
+NULL,209,2606,4,subhead,Diṭṭhāvikammavaggavaṇṇanā,,""
+NULL,209,2607,100,bodytext,,,""
+NULL,209,2608,100,bodytext,,,""
+NULL,209,2609,4,subhead,Musāvādavaggavaṇṇanā,,""
+NULL,209,2610,100,bodytext,,,""
+NULL,209,2611,100,bodytext,,,""
+NULL,209,2612,4,subhead,Bhikkhunovādavaggavaṇṇanā,,""
+NULL,209,2613,100,bodytext,,,""
+NULL,209,2614,4,subhead,Ubbāhikavaggavaṇṇanā,,""
+NULL,209,2615,100,bodytext,,,""
+NULL,209,2616,4,subhead,Adhikaraṇavūpasamavaggavaṇṇanā,,""
+NULL,209,2617,100,bodytext,,,""
+NULL,209,2618,4,subhead,Kathinatthāravaggavaṇṇanā,,""
+NULL,209,2619,100,bodytext,,,""
+NULL,209,2620,100,centered,,,""
+NULL,209,2621,4,subhead,Āpattisamuṭṭhānavaṇṇanā,,""
+NULL,209,2622,100,bodytext,,,""
+NULL,209,2623,3,title,Dutiyagāthāsaṅgaṇikavaṇṇanā,,""
+NULL,209,2624,4,subhead,Kāyikādiāpattivaṇṇanā,,""
+NULL,209,2625,100,bodytext,,,""
+NULL,209,2626,4,subhead,Pācittiyavaṇṇanā,,""
+NULL,209,2627,100,bodytext,,,""
+NULL,209,2628,4,subhead,Avandanīyapuggalādivaṇṇanā,,""
+NULL,209,2629,100,bodytext,,,""
+NULL,209,2630,4,subhead,Soḷasakammādivaṇṇanā,,""
+NULL,209,2631,100,bodytext,,,""
+NULL,209,2632,100,centered,,,""
+NULL,209,2633,3,title,Sedamocanagāthāvaṇṇanā,,""
+NULL,209,2634,4,subhead,Avippavāsapañhāvaṇṇanā,,""
+NULL,209,2635,100,bodytext,,,""
+NULL,209,2636,4,subhead,Pārājikādipañhāvaṇṇanā,,""
+NULL,209,2637,100,bodytext,,,""
+NULL,209,2638,4,subhead,Pācittiyādipañhāvaṇṇanā,,""
+NULL,209,2639,100,bodytext,,,""
+NULL,209,2640,100,centered,,,""
+NULL,209,2641,3,title,Pañcavaggo,,""
+NULL,209,2642,4,subhead,Kammavaggavaṇṇanā,,""
+NULL,209,2643,100,bodytext,,,""
+NULL,209,2644,100,bodytext,,,""
+NULL,209,2645,100,bodytext,,,""
+NULL,209,2646,100,bodytext,,,""
+NULL,209,2647,4,subhead,Apalokanakammakathāvaṇṇanā,,""
+NULL,209,2648,100,bodytext,,,""
+NULL,209,2649,100,bodytext,,,""
+NULL,209,2650,4,subhead,Apaññattepaññattavaggavaṇṇanā,,""
+NULL,209,2651,100,bodytext,,,""
+NULL,209,2652,4,subhead,Nigamanakathāvaṇṇanā,,""
+NULL,209,2653,100,bodytext,,,""
+NULL,209,2654,100,bodytext,,,""
+NULL,209,2655,100,gatha1,,,""
+NULL,209,2656,100,gathalast,,,""
+NULL,209,2657,100,unindented,,,""
+NULL,209,2658,100,bodytext,,,""
+NULL,209,2659,100,bodytext,,,""
+NULL,209,2660,100,gatha1,,,""
+NULL,209,2661,100,gatha2,,,""
+NULL,209,2662,100,gatha3,,,""
+NULL,209,2663,100,gathalast,,,""
+NULL,209,2664,100,gatha1,,,""
+NULL,209,2665,100,gatha2,,,""
+NULL,209,2666,100,gatha3,,,""
+NULL,209,2667,100,gathalast,,,""
+NULL,209,2668,100,gatha1,,,""
+NULL,209,2669,100,gatha2,,,""
+NULL,209,2670,100,gatha3,,,""
+NULL,209,2671,100,gathalast,,,""
+NULL,209,2672,100,centered,,,""
+NULL,209,2673,100,centered,,,""

File diff suppressed because it is too large
+ 258 - 258
pali_title/65_title.csv


+ 0 - 1076
pali_title/93_zh-cn.csv

@@ -1,1076 +0,0 @@
-id,book,par_num,100,class,title,text
-NULL,p93,1,100,centered,,
-NULL,p93,2,100,nikaya,,
-NULL,p93,3,1,book,Sīlakkhandhavaggapāḷi,戒蕴品
-NULL,p93,4,2,chapter,1. Brahmajālasuttaṃ,1、梵网经
-NULL,p93,5,4,subhead,Paribbājakakathā,游行者之说
-NULL,p93,6,100,bodytext,,
-NULL,p93,7,100,bodytext,,
-NULL,p93,8,100,bodytext,,
-NULL,p93,9,100,bodytext,,
-NULL,p93,10,100,bodytext,,
-NULL,p93,11,100,bodytext,,
-NULL,p93,12,4,subhead,Cūḷasīlaṃ,小戒
-NULL,p93,13,100,bodytext,,
-NULL,p93,14,100,bodytext,,
-NULL,p93,15,100,bodytext,,
-NULL,p93,16,100,bodytext,,
-NULL,p93,17,100,bodytext,,
-NULL,p93,18,100,bodytext,,
-NULL,p93,19,100,bodytext,,
-NULL,p93,20,100,bodytext,,
-NULL,p93,21,100,bodytext,,
-NULL,p93,22,100,bodytext,,
-NULL,p93,23,100,bodytext,,
-NULL,p93,24,100,bodytext,,
-NULL,p93,25,100,bodytext,,
-NULL,p93,26,100,bodytext,,
-NULL,p93,27,100,bodytext,,
-NULL,p93,28,100,bodytext,,
-NULL,p93,29,100,bodytext,,
-NULL,p93,30,100,bodytext,,
-NULL,p93,31,100,bodytext,,
-NULL,p93,32,100,bodytext,,
-NULL,p93,33,100,bodytext,,
-NULL,p93,34,100,bodytext,,
-NULL,p93,35,100,bodytext,,
-NULL,p93,36,100,bodytext,,
-NULL,p93,37,100,bodytext,,
-NULL,p93,38,100,bodytext,,
-NULL,p93,39,100,bodytext,,
-NULL,p93,40,100,centered,,
-NULL,p93,41,4,subhead,Majjhimasīlaṃ,中戒
-NULL,p93,42,100,bodytext,,
-NULL,p93,43,100,bodytext,,
-NULL,p93,44,100,bodytext,,
-NULL,p93,45,100,bodytext,,
-NULL,p93,46,100,bodytext,,
-NULL,p93,47,100,bodytext,,
-NULL,p93,48,100,bodytext,,
-NULL,p93,49,100,bodytext,,
-NULL,p93,50,100,bodytext,,
-NULL,p93,51,100,bodytext,,
-NULL,p93,52,100,centered,,
-NULL,p93,53,4,subhead,Mahāsīlaṃ,大戒
-NULL,p93,54,100,bodytext,,
-NULL,p93,55,100,bodytext,,
-NULL,p93,56,100,bodytext,,
-NULL,p93,57,100,bodytext,,
-NULL,p93,58,100,bodytext,,
-NULL,p93,59,100,bodytext,,
-NULL,p93,60,100,bodytext,,
-NULL,p93,61,100,bodytext,,
-NULL,p93,62,100,centered,,
-NULL,p93,63,4,subhead,Pubbantakappikā,属于过去时间的
-NULL,p93,64,100,bodytext,,
-NULL,p93,65,100,bodytext,,
-NULL,p93,66,4,subhead,Sassatavādo,恒常论
-NULL,p93,67,100,bodytext,,
-NULL,p93,68,100,bodytext,,
-NULL,p93,69,100,bodytext,,
-NULL,p93,70,100,bodytext,,
-NULL,p93,71,100,bodytext,,
-NULL,p93,72,100,bodytext,,
-NULL,p93,73,100,bodytext,,
-NULL,p93,74,100,bodytext,,
-NULL,p93,75,100,bodytext,,
-NULL,p93,76,100,bodytext,,
-NULL,p93,77,100,bodytext,,
-NULL,p93,78,100,centered,,
-NULL,p93,79,4,subhead,Ekaccasassatavādo,某部分恒常论
-NULL,p93,80,100,bodytext,,
-NULL,p93,81,100,bodytext,,
-NULL,p93,82,100,bodytext,,
-NULL,p93,83,100,bodytext,,
-NULL,p93,84,100,bodytext,,
-NULL,p93,85,100,bodytext,,
-NULL,p93,86,100,bodytext,,
-NULL,p93,87,100,bodytext,,
-NULL,p93,88,100,bodytext,,
-NULL,p93,89,100,bodytext,,
-NULL,p93,90,100,bodytext,,
-NULL,p93,91,100,bodytext,,
-NULL,p93,92,100,bodytext,,
-NULL,p93,93,100,bodytext,,
-NULL,p93,94,100,bodytext,,
-NULL,p93,95,100,bodytext,,
-NULL,p93,96,100,bodytext,,
-NULL,p93,97,100,bodytext,,
-NULL,p93,98,100,bodytext,,
-NULL,p93,99,4,subhead,Antānantavādo,有边无边论
-NULL,p93,100,100,bodytext,,
-NULL,p93,101,100,bodytext,,
-NULL,p93,102,100,bodytext,,
-NULL,p93,103,100,bodytext,,
-NULL,p93,104,100,bodytext,,
-NULL,p93,105,100,bodytext,,
-NULL,p93,106,100,bodytext,,
-NULL,p93,107,100,bodytext,,
-NULL,p93,108,100,bodytext,,
-NULL,p93,109,100,bodytext,,
-NULL,p93,110,100,bodytext,,
-NULL,p93,111,4,subhead,Amarāvikkhepavādo,诡辩论
-NULL,p93,112,100,bodytext,,
-NULL,p93,113,100,bodytext,,
-NULL,p93,114,100,bodytext,,
-NULL,p93,115,100,bodytext,,
-NULL,p93,116,100,bodytext,,
-NULL,p93,117,100,bodytext,,
-NULL,p93,118,4,subhead,Adhiccasamuppannavādo,自然生论
-NULL,p93,119,100,bodytext,,
-NULL,p93,120,100,bodytext,,
-NULL,p93,121,100,bodytext,,
-NULL,p93,122,100,bodytext,,
-NULL,p93,123,100,bodytext,,
-NULL,p93,124,100,bodytext,,
-NULL,p93,125,100,bodytext,,
-NULL,p93,126,100,centered,,
-NULL,p93,127,4,subhead,Aparantakappikā,属于未来时间的
-NULL,p93,128,100,bodytext,,
-NULL,p93,129,4,subhead,Saññīvādo,有想论
-NULL,p93,130,100,bodytext,,
-NULL,p93,131,100,bodytext,,
-NULL,p93,132,100,bodytext,,
-NULL,p93,133,4,subhead,Asaññīvādo,无想论
-NULL,p93,134,100,bodytext,,
-NULL,p93,135,100,bodytext,,
-NULL,p93,136,100,bodytext,,
-NULL,p93,137,4,subhead,Nevasaññīnāsaññīvādo,非想非非想论
-NULL,p93,138,100,bodytext,,
-NULL,p93,139,100,bodytext,,
-NULL,p93,140,100,bodytext,,
-NULL,p93,141,4,subhead,Ucchedavādo,断灭论
-NULL,p93,142,100,bodytext,,
-NULL,p93,143,100,bodytext,,
-NULL,p93,144,100,bodytext,,
-NULL,p93,145,100,bodytext,,
-NULL,p93,146,100,bodytext,,
-NULL,p93,147,100,bodytext,,
-NULL,p93,148,100,bodytext,,
-NULL,p93,149,100,bodytext,,
-NULL,p93,150,100,bodytext,,
-NULL,p93,151,4,subhead,Diṭṭhadhammanibbānavādo,当生涅槃论
-NULL,p93,152,100,bodytext,,
-NULL,p93,153,100,bodytext,,
-NULL,p93,154,100,bodytext,,
-NULL,p93,155,100,bodytext,,
-NULL,p93,156,100,bodytext,,
-NULL,p93,157,100,bodytext,,
-NULL,p93,158,100,bodytext,,
-NULL,p93,159,100,bodytext,,
-NULL,p93,160,100,bodytext,,
-NULL,p93,161,100,bodytext,,
-NULL,p93,162,100,bodytext,,
-NULL,p93,163,100,bodytext,,
-NULL,p93,164,4,subhead,Paritassitavipphanditavāro,(暂缺)
-NULL,p93,165,100,bodytext,,
-NULL,p93,166,100,bodytext,,
-NULL,p93,167,100,bodytext,,
-NULL,p93,168,100,bodytext,,
-NULL,p93,169,100,bodytext,,
-NULL,p93,170,100,bodytext,,
-NULL,p93,171,100,bodytext,,
-NULL,p93,172,100,bodytext,,
-NULL,p93,173,100,bodytext,,
-NULL,p93,174,100,bodytext,,
-NULL,p93,175,100,bodytext,,
-NULL,p93,176,100,bodytext,,
-NULL,p93,177,100,bodytext,,
-NULL,p93,178,4,subhead,Phassapaccayāvāro,以触为缘章
-NULL,p93,179,100,bodytext,,
-NULL,p93,180,100,bodytext,,
-NULL,p93,181,100,bodytext,,
-NULL,p93,182,100,bodytext,,
-NULL,p93,183,100,bodytext,,
-NULL,p93,184,100,bodytext,,
-NULL,p93,185,100,bodytext,,
-NULL,p93,186,100,bodytext,,
-NULL,p93,187,100,bodytext,,
-NULL,p93,188,100,bodytext,,
-NULL,p93,189,100,bodytext,,
-NULL,p93,190,100,bodytext,,
-NULL,p93,191,100,bodytext,,
-NULL,p93,192,4,subhead,Netaṃ ṭhānaṃ vijjativāro,这是不可能的章
-NULL,p93,193,100,bodytext,,
-NULL,p93,194,100,bodytext,,
-NULL,p93,195,100,bodytext,,
-NULL,p93,196,100,bodytext,,
-NULL,p93,197,100,bodytext,,
-NULL,p93,198,100,bodytext,,
-NULL,p93,199,100,bodytext,,
-NULL,p93,200,100,bodytext,,
-NULL,p93,201,100,bodytext,,
-NULL,p93,202,100,bodytext,,
-NULL,p93,203,100,bodytext,,
-NULL,p93,204,100,bodytext,,
-NULL,p93,205,100,bodytext,,
-NULL,p93,206,4,subhead,Diṭṭhigatikādhiṭṭhānavaṭṭakathā,到达见依处的轮回谈说
-NULL,p93,207,100,bodytext,,
-NULL,p93,208,4,subhead,Vivaṭṭakathādi,还灭之谈说等
-NULL,p93,209,100,bodytext,,
-NULL,p93,210,100,bodytext,,
-NULL,p93,211,100,bodytext,,
-NULL,p93,212,100,bodytext,,
-NULL,p93,213,100,bodytext,,
-NULL,p93,214,100,bodytext,,
-NULL,p93,215,100,bodytext,,
-NULL,p93,216,100,centered,,
-NULL,p93,217,2,chapter,2. Sāmaññaphalasuttaṃ,2、沙门果经
-NULL,p93,218,4,subhead,Rājāmaccakathā,国王大臣的谈论
-NULL,p93,219,100,bodytext,,
-NULL,p93,220,100,bodytext,,
-NULL,p93,221,100,bodytext,,
-NULL,p93,222,100,bodytext,,
-NULL,p93,223,100,bodytext,,
-NULL,p93,224,100,bodytext,,
-NULL,p93,225,100,bodytext,,
-NULL,p93,226,4,subhead,Komārabhaccajīvakakathā,养子耆婆的谈论
-NULL,p93,227,100,bodytext,,
-NULL,p93,228,100,bodytext,,
-NULL,p93,229,100,bodytext,,
-NULL,p93,230,100,bodytext,,
-NULL,p93,231,100,bodytext,,
-NULL,p93,232,4,subhead,Sāmaññaphalapucchā,沙门果的问题
-NULL,p93,233,100,bodytext,,
-NULL,p93,234,100,bodytext,,
-NULL,p93,235,100,bodytext,,
-NULL,p93,236,100,bodytext,,
-NULL,p93,237,100,bodytext,,
-NULL,p93,238,4,subhead,Pūraṇakassapavādo,富兰那迦叶之论
-NULL,p93,239,100,bodytext,,
-NULL,p93,240,100,bodytext,,
-NULL,p93,241,100,bodytext,,
-NULL,p93,242,4,subhead,Makkhaligosālavādo,末迦利瞿舍罗之论
-NULL,p93,243,100,bodytext,,
-NULL,p93,244,100,bodytext,,
-NULL,p93,245,100,bodytext,,
-NULL,p93,246,4,subhead,Ajitakesakambalavādo,阿夷多翅舍钦婆罗之论
-NULL,p93,247,100,bodytext,,
-NULL,p93,248,100,bodytext,,
-NULL,p93,249,100,bodytext,,
-NULL,p93,250,4,subhead,Pakudhakaccāyanavādo,浮陀迦旃延之论
-NULL,p93,251,100,bodytext,,
-NULL,p93,252,100,bodytext,,
-NULL,p93,253,100,bodytext,,
-NULL,p93,254,4,subhead,Nigaṇṭhanāṭaputtavādo,尼干子若提子之论
-NULL,p93,255,100,bodytext,,
-NULL,p93,256,100,bodytext,,
-NULL,p93,257,100,bodytext,,
-NULL,p93,258,4,subhead,Sañcayabelaṭṭhaputtavādo,散惹耶毗罗梨子之论
-NULL,p93,259,100,bodytext,,
-NULL,p93,260,100,bodytext,,
-NULL,p93,261,100,bodytext,,
-NULL,p93,262,4,subhead,Paṭhamasandiṭṭhikasāmaññaphalaṃ,第一个当生看得见的沙门果
-NULL,p93,263,100,bodytext,,
-NULL,p93,264,100,bodytext,,
-NULL,p93,265,100,bodytext,,
-NULL,p93,266,100,bodytext,,
-NULL,p93,267,4,subhead,Dutiyasandiṭṭhikasāmaññaphalaṃ,第二个当生看得见的沙门果
-NULL,p93,268,100,bodytext,,
-NULL,p93,269,100,bodytext,,
-NULL,p93,270,100,bodytext,,
-NULL,p93,271,100,bodytext,,
-NULL,p93,272,4,subhead,Paṇītatarasāmaññaphalaṃ,更胜妙的沙门果
-NULL,p93,273,100,bodytext,,
-NULL,p93,274,100,bodytext,,
-NULL,p93,275,100,bodytext,,
-NULL,p93,276,100,bodytext,,
-NULL,p93,277,100,bodytext,,
-NULL,p93,278,4,subhead,Cūḷasīlaṃ,小戒
-NULL,p93,279,100,bodytext,,
-NULL,p93,280,100,bodytext,,
-NULL,p93,281,100,bodytext,,
-NULL,p93,282,100,bodytext,,
-NULL,p93,283,100,bodytext,,
-NULL,p93,284,100,bodytext,,
-NULL,p93,285,100,bodytext,,
-NULL,p93,286,100,bodytext,,
-NULL,p93,287,100,centered,,
-NULL,p93,288,4,subhead,Majjhimasīlaṃ,中戒
-NULL,p93,289,100,bodytext,,
-NULL,p93,290,100,bodytext,,
-NULL,p93,291,100,bodytext,,
-NULL,p93,292,100,bodytext,,
-NULL,p93,293,100,bodytext,,
-NULL,p93,294,100,bodytext,,
-NULL,p93,295,100,bodytext,,
-NULL,p93,296,100,bodytext,,
-NULL,p93,297,100,bodytext,,
-NULL,p93,298,100,bodytext,,
-NULL,p93,299,100,centered,,
-NULL,p93,300,4,subhead,Mahāsīlaṃ,大戒
-NULL,p93,301,100,bodytext,,
-NULL,p93,302,100,bodytext,,
-NULL,p93,303,100,bodytext,,
-NULL,p93,304,100,bodytext,,
-NULL,p93,305,100,bodytext,,
-NULL,p93,306,100,bodytext,,
-NULL,p93,307,100,bodytext,,
-NULL,p93,308,100,bodytext,,
-NULL,p93,309,100,centered,,
-NULL,p93,310,4,subhead,Indriyasaṃvaro,根的自制
-NULL,p93,311,100,bodytext,,
-NULL,p93,312,4,subhead,Satisampajaññaṃ,正念与正知
-NULL,p93,313,100,bodytext,,
-NULL,p93,314,4,subhead,Santoso,知足
-NULL,p93,315,100,bodytext,,
-NULL,p93,316,4,subhead,Nīvaraṇappahānaṃ,(暂缺)
-NULL,p93,317,100,bodytext,,
-NULL,p93,318,100,bodytext,,
-NULL,p93,319,100,bodytext,,
-NULL,p93,320,100,bodytext,,
-NULL,p93,321,100,bodytext,,
-NULL,p93,322,100,bodytext,,
-NULL,p93,323,100,bodytext,,
-NULL,p93,324,100,bodytext,,
-NULL,p93,325,100,bodytext,,
-NULL,p93,326,100,bodytext,,
-NULL,p93,327,4,subhead,Paṭhamajjhānaṃ,初禅
-NULL,p93,328,100,bodytext,,
-NULL,p93,329,100,bodytext,,
-NULL,p93,330,4,subhead,Dutiyajjhānaṃ,第二禅
-NULL,p93,331,100,bodytext,,
-NULL,p93,332,100,bodytext,,
-NULL,p93,333,4,subhead,Tatiyajjhānaṃ,第三禅
-NULL,p93,334,100,bodytext,,
-NULL,p93,335,100,bodytext,,
-NULL,p93,336,4,subhead,Catutthajjhānaṃ,第四禅
-NULL,p93,337,100,bodytext,,
-NULL,p93,338,100,bodytext,,
-NULL,p93,339,4,subhead,Vipassanāñāṇaṃ,毗婆舍那智
-NULL,p93,340,100,bodytext,,
-NULL,p93,341,100,bodytext,,
-NULL,p93,342,4,subhead,Manomayiddhiñāṇaṃ,意生神通智
-NULL,p93,343,100,bodytext,,
-NULL,p93,344,100,bodytext,,
-NULL,p93,345,4,subhead,Iddhividhañāṇaṃ,各种神通智
-NULL,p93,346,100,bodytext,,
-NULL,p93,347,100,bodytext,,
-NULL,p93,348,4,subhead,Dibbasotañāṇaṃ,天耳智
-NULL,p93,349,100,bodytext,,
-NULL,p93,350,100,bodytext,,
-NULL,p93,351,4,subhead,Cetopariyañāṇaṃ,他心智
-NULL,p93,352,100,bodytext,,
-NULL,p93,353,100,bodytext,,
-NULL,p93,354,4,subhead,Pubbenivāsānussatiñāṇaṃ,前世住处之回忆智
-NULL,p93,355,100,bodytext,,
-NULL,p93,356,100,bodytext,,
-NULL,p93,357,4,subhead,Dibbacakkhuñāṇaṃ,天眼智
-NULL,p93,358,100,bodytext,,
-NULL,p93,359,100,bodytext,,
-NULL,p93,360,4,subhead,Āsavakkhayañāṇaṃ,烦恼之灭尽智
-NULL,p93,361,100,bodytext,,
-NULL,p93,362,100,bodytext,,
-NULL,p93,363,4,subhead,Ajātasattuupāsakattapaṭivedanā,阿阇世-作为优婆塞的陈述
-NULL,p93,364,100,bodytext,,
-NULL,p93,365,100,bodytext,,
-NULL,p93,366,100,bodytext,,
-NULL,p93,367,100,bodytext,,
-NULL,p93,368,100,centered,,
-NULL,p93,369,2,chapter,3. Ambaṭṭhasuttaṃ,3、安玻德经
-NULL,p93,370,100,bodytext,,
-NULL,p93,371,4,subhead,Pokkharasātivatthu,玻科勒沙低的事
-NULL,p93,372,100,bodytext,,
-NULL,p93,373,4,subhead,Ambaṭṭhamāṇavo,安玻德学生婆罗门
-NULL,p93,374,100,bodytext,,
-NULL,p93,375,100,bodytext,,
-NULL,p93,376,100,bodytext,,
-NULL,p93,377,100,bodytext,,
-NULL,p93,378,100,bodytext,,
-NULL,p93,379,100,bodytext,,
-NULL,p93,380,100,bodytext,,
-NULL,p93,381,100,bodytext,,
-NULL,p93,382,4,subhead,Paṭhamaibbhavādo,第一次卑贱说
-NULL,p93,383,100,bodytext,,
-NULL,p93,384,100,bodytext,,
-NULL,p93,385,4,subhead,Dutiyaibbhavādo,第二次卑贱说
-NULL,p93,386,100,bodytext,,
-NULL,p93,387,4,subhead,Tatiyaibbhavādo,第三次卑贱说
-NULL,p93,388,100,bodytext,,
-NULL,p93,389,4,subhead,Dāsiputtavādo,婢女之子说
-NULL,p93,390,100,bodytext,,
-NULL,p93,391,100,bodytext,,
-NULL,p93,392,100,bodytext,,
-NULL,p93,393,100,bodytext,,
-NULL,p93,394,100,bodytext,,
-NULL,p93,395,100,bodytext,,
-NULL,p93,396,100,bodytext,,
-NULL,p93,397,100,bodytext,,
-NULL,p93,398,100,bodytext,,
-NULL,p93,399,100,bodytext,,
-NULL,p93,400,100,bodytext,,
-NULL,p93,401,100,bodytext,,
-NULL,p93,402,4,subhead,Ambaṭṭhavaṃsakathā,安玻德的种姓说
-NULL,p93,403,100,bodytext,,
-NULL,p93,404,100,bodytext,,
-NULL,p93,405,100,bodytext,,
-NULL,p93,406,4,subhead,Khattiyaseṭṭhabhāvo,刹帝利的最胜性
-NULL,p93,407,100,bodytext,,
-NULL,p93,408,100,bodytext,,
-NULL,p93,409,100,bodytext,,
-NULL,p93,410,100,bodytext,,
-NULL,p93,411,100,bodytext,,
-NULL,p93,412,100,gatha1,,
-NULL,p93,413,100,gatha2,,
-NULL,p93,414,100,gatha3,,
-NULL,p93,415,100,gathalast,,
-NULL,p93,416,100,bodytext,,
-NULL,p93,417,100,gatha1,,
-NULL,p93,418,100,gatha2,,
-NULL,p93,419,100,gatha3,,
-NULL,p93,420,100,gathalast,,
-NULL,p93,421,100,centered,,
-NULL,p93,422,4,subhead,Vijjācaraṇakathā,明与行之说
-NULL,p93,423,100,bodytext,,
-NULL,p93,424,100,bodytext,,
-NULL,p93,425,100,bodytext,,
-NULL,p93,426,100,bodytext,,
-NULL,p93,427,100,bodytext,,
-NULL,p93,428,100,bodytext,,
-NULL,p93,429,100,bodytext,,
-NULL,p93,430,100,bodytext,,
-NULL,p93,431,4,subhead,Catuapāyamukhaṃ,四个败散口
-NULL,p93,432,100,bodytext,,
-NULL,p93,433,100,bodytext,,
-NULL,p93,434,100,bodytext,,
-NULL,p93,435,100,bodytext,,
-NULL,p93,436,100,bodytext,,
-NULL,p93,437,100,bodytext,,
-NULL,p93,438,100,bodytext,,
-NULL,p93,439,100,bodytext,,
-NULL,p93,440,100,bodytext,,
-NULL,p93,441,100,bodytext,,
-NULL,p93,442,4,subhead,Pubbakaisibhāvānuyogo,以前仙人状态的实行
-NULL,p93,443,100,bodytext,,
-NULL,p93,444,100,bodytext,,
-NULL,p93,445,100,bodytext,,
-NULL,p93,446,100,bodytext,,
-NULL,p93,447,100,bodytext,,
-NULL,p93,448,100,bodytext,,
-NULL,p93,449,100,bodytext,,
-NULL,p93,450,100,bodytext,,
-NULL,p93,451,100,bodytext,,
-NULL,p93,452,4,subhead,Dvelakkhaṇādassanaṃ,二相的未见
-NULL,p93,453,100,bodytext,,
-NULL,p93,454,100,bodytext,,
-NULL,p93,455,100,bodytext,,
-NULL,p93,456,100,bodytext,,
-NULL,p93,457,100,bodytext,,
-NULL,p93,458,4,subhead,Pokkharasātibuddhupasaṅkamanaṃ,玻科勒沙低往见佛陀
-NULL,p93,459,100,bodytext,,
-NULL,p93,460,100,bodytext,,
-NULL,p93,461,100,bodytext,,
-NULL,p93,462,100,bodytext,,
-NULL,p93,463,100,bodytext,,
-NULL,p93,464,100,bodytext,,
-NULL,p93,465,100,bodytext,,
-NULL,p93,466,4,subhead,Pokkharasātiupāsakattapaṭivedanā,玻科勒沙低-作为优婆塞的陈述
-NULL,p93,467,100,bodytext,,
-NULL,p93,468,100,centered,,
-NULL,p93,469,2,chapter,4. Soṇadaṇḍasuttaṃ,4、犬杖经
-NULL,p93,470,4,subhead,Campeyyakabrāhmaṇagahapatikā,瞻波城的婆罗门、屋主
-NULL,p93,471,100,bodytext,,
-NULL,p93,472,100,bodytext,,
-NULL,p93,473,100,bodytext,,
-NULL,p93,474,4,subhead,Soṇadaṇḍaguṇakathā,犬杖的种种谈说
-NULL,p93,475,100,bodytext,,
-NULL,p93,476,100,bodytext,,
-NULL,p93,477,100,bodytext,,
-NULL,p93,478,100,bodytext,,
-NULL,p93,479,100,bodytext,,
-NULL,p93,480,100,bodytext,,
-NULL,p93,481,100,bodytext,,
-NULL,p93,482,100,bodytext,,
-NULL,p93,483,100,bodytext,,
-NULL,p93,484,100,bodytext,,
-NULL,p93,485,100,bodytext,,
-NULL,p93,486,100,bodytext,,
-NULL,p93,487,100,bodytext,,
-NULL,p93,488,4,subhead,Buddhaguṇakathā,佛陀的种种谈说
-NULL,p93,489,100,bodytext,,
-NULL,p93,490,100,bodytext,,
-NULL,p93,491,100,bodytext,,
-NULL,p93,492,100,bodytext,,
-NULL,p93,493,100,bodytext,,
-NULL,p93,494,100,bodytext,,
-NULL,p93,495,100,bodytext,,
-NULL,p93,496,100,bodytext,,
-NULL,p93,497,100,bodytext,,
-NULL,p93,498,100,bodytext,,
-NULL,p93,499,100,bodytext,,
-NULL,p93,500,100,bodytext,,
-NULL,p93,501,100,bodytext,,
-NULL,p93,502,100,bodytext,,
-NULL,p93,503,100,bodytext,,
-NULL,p93,504,100,bodytext,,
-NULL,p93,505,100,bodytext,,
-NULL,p93,506,100,bodytext,,
-NULL,p93,507,100,bodytext,,
-NULL,p93,508,100,bodytext,,
-NULL,p93,509,100,bodytext,,
-NULL,p93,510,100,bodytext,,
-NULL,p93,511,100,bodytext,,
-NULL,p93,512,100,bodytext,,
-NULL,p93,513,100,bodytext,,
-NULL,p93,514,100,bodytext,,
-NULL,p93,515,100,bodytext,,
-NULL,p93,516,100,bodytext,,
-NULL,p93,517,100,bodytext,,
-NULL,p93,518,100,bodytext,,
-NULL,p93,519,100,bodytext,,
-NULL,p93,520,4,subhead,Soṇadaṇḍaparivitakko,犬杖的深思
-NULL,p93,521,100,bodytext,,
-NULL,p93,522,100,bodytext,,
-NULL,p93,523,100,bodytext,,
-NULL,p93,524,4,subhead,Brāhmaṇapaññatti,婆罗门的安立
-NULL,p93,525,100,bodytext,,
-NULL,p93,526,100,bodytext,,
-NULL,p93,527,100,bodytext,,
-NULL,p93,528,100,bodytext,,
-NULL,p93,529,100,bodytext,,
-NULL,p93,530,100,bodytext,,
-NULL,p93,531,100,bodytext,,
-NULL,p93,532,100,bodytext,,
-NULL,p93,533,100,bodytext,,
-NULL,p93,534,100,bodytext,,
-NULL,p93,535,4,subhead,Sīlapaññākathā,戒、慧的谈说
-NULL,p93,536,100,bodytext,,
-NULL,p93,537,100,bodytext,,
-NULL,p93,538,4,subhead,Soṇadaṇḍaupāsakattapaṭivedanā,犬杖-作为优婆塞的陈述
-NULL,p93,539,100,bodytext,,
-NULL,p93,540,100,bodytext,,
-NULL,p93,541,100,bodytext,,
-NULL,p93,542,100,bodytext,,
-NULL,p93,543,100,centered,,
-NULL,p93,544,2,chapter,5. Kūṭadantasuttaṃ,5、古得旦得经
-NULL,p93,545,4,subhead,Khāṇumatakabrāhmaṇagahapatikā,柯奴玛得的婆罗门、屋主
-NULL,p93,546,100,bodytext,,
-NULL,p93,547,100,bodytext,,
-NULL,p93,548,100,bodytext,,
-NULL,p93,549,100,bodytext,,
-NULL,p93,550,100,bodytext,,
-NULL,p93,551,100,bodytext,,
-NULL,p93,552,100,bodytext,,
-NULL,p93,553,4,subhead,Kūṭadantaguṇakathā,古得旦得的种种谈说
-NULL,p93,554,100,bodytext,,
-NULL,p93,555,100,bodytext,,
-NULL,p93,556,100,bodytext,,
-NULL,p93,557,100,bodytext,,
-NULL,p93,558,100,bodytext,,
-NULL,p93,559,100,bodytext,,
-NULL,p93,560,100,bodytext,,
-NULL,p93,561,100,bodytext,,
-NULL,p93,562,100,bodytext,,
-NULL,p93,563,100,bodytext,,
-NULL,p93,564,100,bodytext,,
-NULL,p93,565,100,bodytext,,
-NULL,p93,566,100,bodytext,,
-NULL,p93,567,100,bodytext,,
-NULL,p93,568,4,subhead,Buddhaguṇakathā,佛陀的种种谈说
-NULL,p93,569,100,bodytext,,
-NULL,p93,570,100,bodytext,,
-NULL,p93,571,100,bodytext,,
-NULL,p93,572,100,bodytext,,
-NULL,p93,573,100,bodytext,,
-NULL,p93,574,100,bodytext,,
-NULL,p93,575,100,bodytext,,
-NULL,p93,576,100,bodytext,,
-NULL,p93,577,100,bodytext,,
-NULL,p93,578,100,bodytext,,
-NULL,p93,579,100,bodytext,,
-NULL,p93,580,100,bodytext,,
-NULL,p93,581,100,bodytext,,
-NULL,p93,582,100,bodytext,,
-NULL,p93,583,100,bodytext,,
-NULL,p93,584,100,bodytext,,
-NULL,p93,585,100,bodytext,,
-NULL,p93,586,100,bodytext,,
-NULL,p93,587,100,bodytext,,
-NULL,p93,588,100,bodytext,,
-NULL,p93,589,100,bodytext,,
-NULL,p93,590,100,bodytext,,
-NULL,p93,591,100,bodytext,,
-NULL,p93,592,100,bodytext,,
-NULL,p93,593,100,bodytext,,
-NULL,p93,594,100,bodytext,,
-NULL,p93,595,100,bodytext,,
-NULL,p93,596,100,bodytext,,
-NULL,p93,597,100,bodytext,,
-NULL,p93,598,100,bodytext,,
-NULL,p93,599,100,bodytext,,
-NULL,p93,600,4,subhead,Mahāvijitarājayaññakathā,(暂缺)
-NULL,p93,601,100,bodytext,,
-NULL,p93,602,100,bodytext,,
-NULL,p93,603,100,bodytext,,
-NULL,p93,604,100,bodytext,,
-NULL,p93,605,100,bodytext,,
-NULL,p93,606,4,subhead,Catuparikkhāraṃ,四个资助
-NULL,p93,607,100,bodytext,,
-NULL,p93,608,4,subhead,Aṭṭha parikkhārā,八个资助
-NULL,p93,609,100,bodytext,,
-NULL,p93,610,4,subhead,Catuparikkhāraṃ,四个资助
-NULL,p93,611,100,bodytext,,
-NULL,p93,612,4,subhead,Tisso vidhā,三种
-NULL,p93,613,100,bodytext,,
-NULL,p93,614,4,subhead,Dasa ākārā,十相
-NULL,p93,615,100,bodytext,,
-NULL,p93,616,4,subhead,Soḷasa ākārā,十六相
-NULL,p93,617,100,bodytext,,
-NULL,p93,618,100,bodytext,,
-NULL,p93,619,100,bodytext,,
-NULL,p93,620,100,bodytext,,
-NULL,p93,621,100,bodytext,,
-NULL,p93,622,100,bodytext,,
-NULL,p93,623,100,bodytext,,
-NULL,p93,624,100,bodytext,,
-NULL,p93,625,100,bodytext,,
-NULL,p93,626,100,bodytext,,
-NULL,p93,627,100,bodytext,,
-NULL,p93,628,100,bodytext,,
-NULL,p93,629,4,subhead,Niccadānaanukulayaññaṃ,经常性施物-随家牲祭
-NULL,p93,630,100,bodytext,,
-NULL,p93,631,100,bodytext,,
-NULL,p93,632,100,bodytext,,
-NULL,p93,633,100,bodytext,,
-NULL,p93,634,100,bodytext,,
-NULL,p93,635,100,bodytext,,
-NULL,p93,636,100,bodytext,,
-NULL,p93,637,100,bodytext,,
-NULL,p93,638,100,bodytext,,
-NULL,p93,639,100,bodytext,,
-NULL,p93,640,100,bodytext,,
-NULL,p93,641,100,bodytext,,
-NULL,p93,642,100,bodytext,,
-NULL,p93,643,100,bodytext,,
-NULL,p93,644,100,bodytext,,
-NULL,p93,645,100,bodytext,,
-NULL,p93,646,100,bodytext,,
-NULL,p93,647,100,bodytext,,
-NULL,p93,648,100,bodytext,,
-NULL,p93,649,100,bodytext,,
-NULL,p93,650,100,bodytext,,
-NULL,p93,651,100,bodytext,,
-NULL,p93,652,4,subhead,Kūṭadantaupāsakattapaṭivedanā,古得旦得-作为优婆塞的陈述
-NULL,p93,653,100,bodytext,,
-NULL,p93,654,4,subhead,Sotāpattiphalasacchikiriyā,入流果的作证
-NULL,p93,655,100,bodytext,,
-NULL,p93,656,100,bodytext,,
-NULL,p93,657,100,bodytext,,
-NULL,p93,658,100,bodytext,,
-NULL,p93,659,100,bodytext,,
-NULL,p93,660,100,centered,,
-NULL,p93,661,2,chapter,6. Mahālisuttaṃ,6、摩诃里经
-NULL,p93,662,4,subhead,Brāhmaṇadūtavatthu,婆罗门使者的事
-NULL,p93,663,100,bodytext,,
-NULL,p93,664,100,bodytext,,
-NULL,p93,665,4,subhead,Oṭṭhaddhalicchavīvatthu,(暂缺)
-NULL,p93,666,100,bodytext,,
-NULL,p93,667,100,bodytext,,
-NULL,p93,668,100,bodytext,,
-NULL,p93,669,100,bodytext,,
-NULL,p93,670,100,bodytext,,
-NULL,p93,671,4,subhead,Ekaṃsabhāvitasamādhi,修习一边之定
-NULL,p93,672,100,bodytext,,
-NULL,p93,673,100,bodytext,,
-NULL,p93,674,100,bodytext,,
-NULL,p93,675,100,bodytext,,
-NULL,p93,676,100,bodytext,,
-NULL,p93,677,100,bodytext,,
-NULL,p93,678,100,bodytext,,
-NULL,p93,679,100,bodytext,,
-NULL,p93,680,4,subhead,Catuariyaphalaṃ,四种圣者之果
-NULL,p93,681,100,bodytext,,
-NULL,p93,682,100,bodytext,,
-NULL,p93,683,100,bodytext,,
-NULL,p93,684,100,bodytext,,
-NULL,p93,685,4,subhead,Ariyaaṭṭhaṅgikamaggo,八支圣道
-NULL,p93,686,100,bodytext,,
-NULL,p93,687,100,bodytext,,
-NULL,p93,688,4,subhead,Dvepabbajitavatthu,二位出家者的事
-NULL,p93,689,100,bodytext,,
-NULL,p93,690,100,bodytext,,
-NULL,p93,691,100,centered,,
-NULL,p93,692,2,chapter,7. Jāliyasuttaṃ,7、若里亚经
-NULL,p93,693,4,subhead,Dvepabbajitavatthu,二位出家者的事
-NULL,p93,694,100,bodytext,,
-NULL,p93,695,100,bodytext,,
-NULL,p93,696,100,bodytext,,
-NULL,p93,697,100,centered,,
-NULL,p93,698,2,chapter,8. Mahāsīhanādasuttaṃ,8、狮子吼大经
-NULL,p93,699,4,subhead,Acelakassapavatthu,裸体迦叶的事
-NULL,p93,700,100,bodytext,,
-NULL,p93,701,100,bodytext,,
-NULL,p93,702,100,bodytext,,
-NULL,p93,703,100,bodytext,,
-NULL,p93,704,100,bodytext,,
-NULL,p93,705,4,subhead,Samanuyuñjāpanakathā,审问的谈说
-NULL,p93,706,100,bodytext,,
-NULL,p93,707,100,bodytext,,
-NULL,p93,708,100,bodytext,,
-NULL,p93,709,100,bodytext,,
-NULL,p93,710,100,bodytext,,
-NULL,p93,711,100,bodytext,,
-NULL,p93,712,100,bodytext,,
-NULL,p93,713,100,bodytext,,
-NULL,p93,714,4,subhead,Ariyo aṭṭhaṅgiko maggo,八支圣道
-NULL,p93,715,100,bodytext,,
-NULL,p93,716,4,subhead,Tapopakkamakathā,苦行着手者的谈说
-NULL,p93,717,100,bodytext,,
-NULL,p93,718,100,bodytext,,
-NULL,p93,719,100,bodytext,,
-NULL,p93,720,4,subhead,Tapopakkamaniratthakathā,无利益的苦行着手者的谈说
-NULL,p93,721,100,bodytext,,
-NULL,p93,722,100,bodytext,,
-NULL,p93,723,100,bodytext,,
-NULL,p93,724,100,bodytext,,
-NULL,p93,725,100,bodytext,,
-NULL,p93,726,100,bodytext,,
-NULL,p93,727,100,bodytext,,
-NULL,p93,728,100,bodytext,,
-NULL,p93,729,100,bodytext,,
-NULL,p93,730,100,bodytext,,
-NULL,p93,731,100,bodytext,,
-NULL,p93,732,100,bodytext,,
-NULL,p93,733,100,bodytext,,
-NULL,p93,734,100,bodytext,,
-NULL,p93,735,100,bodytext,,
-NULL,p93,736,100,bodytext,,
-NULL,p93,737,100,bodytext,,
-NULL,p93,738,100,bodytext,,
-NULL,p93,739,100,bodytext,,
-NULL,p93,740,100,bodytext,,
-NULL,p93,741,100,bodytext,,
-NULL,p93,742,4,subhead,Sīlasamādhipaññāsampadā,戒定慧具足
-NULL,p93,743,100,bodytext,,
-NULL,p93,744,100,bodytext,,
-NULL,p93,745,100,bodytext,,
-NULL,p93,746,100,bodytext,,
-NULL,p93,747,100,bodytext,,
-NULL,p93,748,100,bodytext,,
-NULL,p93,749,4,subhead,Sīhanādakathā,狮子吼的谈说
-NULL,p93,750,100,bodytext,,
-NULL,p93,751,100,bodytext,,
-NULL,p93,752,100,bodytext,,
-NULL,p93,753,100,bodytext,,
-NULL,p93,754,100,bodytext,,
-NULL,p93,755,100,bodytext,,
-NULL,p93,756,100,bodytext,,
-NULL,p93,757,4,subhead,Titthiyaparivāsakathā,外道别住的谈说
-NULL,p93,758,100,bodytext,,
-NULL,p93,759,100,bodytext,,
-NULL,p93,760,100,bodytext,,
-NULL,p93,761,100,centered,,
-NULL,p93,762,2,chapter,9. Poṭṭhapādasuttaṃ,9、玻得播达经
-NULL,p93,763,4,subhead,Poṭṭhapādaparibbājakavatthu,游行者玻得播达的事
-NULL,p93,764,100,bodytext,,
-NULL,p93,765,100,bodytext,,
-NULL,p93,766,100,bodytext,,
-NULL,p93,767,100,bodytext,,
-NULL,p93,768,100,bodytext,,
-NULL,p93,769,100,bodytext,,
-NULL,p93,770,4,subhead,Abhisaññānirodhakathā,增上想灭的谈说
-NULL,p93,771,100,bodytext,,
-NULL,p93,772,100,bodytext,,
-NULL,p93,773,100,bodytext,,
-NULL,p93,774,100,bodytext,,
-NULL,p93,775,100,bodytext,,
-NULL,p93,776,4,subhead,Sahetukasaññuppādanirodhakathā,想生灭有因的谈说
-NULL,p93,777,100,bodytext,,
-NULL,p93,778,100,bodytext,,
-NULL,p93,779,100,bodytext,,
-NULL,p93,780,100,bodytext,,
-NULL,p93,781,100,bodytext,,
-NULL,p93,782,100,bodytext,,
-NULL,p93,783,100,bodytext,,
-NULL,p93,784,100,bodytext,,
-NULL,p93,785,100,bodytext,,
-NULL,p93,786,100,bodytext,,
-NULL,p93,787,100,bodytext,,
-NULL,p93,788,100,bodytext,,
-NULL,p93,789,4,subhead,Saññāattakathā,想-真我的谈说
-NULL,p93,790,100,bodytext,,
-NULL,p93,791,100,bodytext,,
-NULL,p93,792,100,bodytext,,
-NULL,p93,793,100,bodytext,,
-NULL,p93,794,100,bodytext,,
-NULL,p93,795,100,bodytext,,
-NULL,p93,796,100,bodytext,,
-NULL,p93,797,100,bodytext,,
-NULL,p93,798,100,bodytext,,
-NULL,p93,799,100,bodytext,,
-NULL,p93,800,100,bodytext,,
-NULL,p93,801,100,bodytext,,
-NULL,p93,802,4,subhead,Cittahatthisāriputtapoṭṭhapādavatthu,质多象舍利弗与玻得播达的事
-NULL,p93,803,100,bodytext,,
-NULL,p93,804,100,bodytext,,
-NULL,p93,805,100,bodytext,,
-NULL,p93,806,100,bodytext,,
-NULL,p93,807,4,subhead,Ekaṃsikadhammo,明确法
-NULL,p93,808,100,bodytext,,
-NULL,p93,809,100,bodytext,,
-NULL,p93,810,100,bodytext,,
-NULL,p93,811,100,bodytext,,
-NULL,p93,812,100,bodytext,,
-NULL,p93,813,100,bodytext,,
-NULL,p93,814,100,bodytext,,
-NULL,p93,815,100,bodytext,,
-NULL,p93,816,100,bodytext,,
-NULL,p93,817,100,bodytext,,
-NULL,p93,818,100,bodytext,,
-NULL,p93,819,100,bodytext,,
-NULL,p93,820,100,bodytext,,
-NULL,p93,821,100,bodytext,,
-NULL,p93,822,100,bodytext,,
-NULL,p93,823,100,bodytext,,
-NULL,p93,824,100,bodytext,,
-NULL,p93,825,100,bodytext,,
-NULL,p93,826,4,subhead,Tayo attapaṭilābhā,三种真我取得
-NULL,p93,827,100,bodytext,,
-NULL,p93,828,100,bodytext,,
-NULL,p93,829,100,bodytext,,
-NULL,p93,830,100,bodytext,,
-NULL,p93,831,100,bodytext,,
-NULL,p93,832,100,bodytext,,
-NULL,p93,833,100,bodytext,,
-NULL,p93,834,100,bodytext,,
-NULL,p93,835,100,bodytext,,
-NULL,p93,836,100,bodytext,,
-NULL,p93,837,100,bodytext,,
-NULL,p93,838,100,bodytext,,
-NULL,p93,839,100,bodytext,,
-NULL,p93,840,100,bodytext,,
-NULL,p93,841,100,bodytext,,
-NULL,p93,842,100,bodytext,,
-NULL,p93,843,100,bodytext,,
-NULL,p93,844,100,bodytext,,
-NULL,p93,845,100,bodytext,,
-NULL,p93,846,100,bodytext,,
-NULL,p93,847,100,bodytext,,
-NULL,p93,848,4,subhead,Cittahatthisāriputtaupasampadā,质多象舍利弗受具足戒
-NULL,p93,849,100,bodytext,,
-NULL,p93,850,100,bodytext,,
-NULL,p93,851,100,centered,,
-NULL,p93,852,2,chapter,10. Subhasuttaṃ,10、苏玻经
-NULL,p93,853,4,subhead,Subhamāṇavavatthu,学生婆罗门苏玻的事
-NULL,p93,854,100,bodytext,,
-NULL,p93,855,100,bodytext,,
-NULL,p93,856,100,bodytext,,
-NULL,p93,857,100,bodytext,,
-NULL,p93,858,100,bodytext,,
-NULL,p93,859,100,bodytext,,
-NULL,p93,860,100,bodytext,,
-NULL,p93,861,100,bodytext,,
-NULL,p93,862,4,subhead,Sīlakkhandho,戒蕴
-NULL,p93,863,100,bodytext,,
-NULL,p93,864,100,bodytext,,
-NULL,p93,865,100,bodytext,,
-NULL,p93,866,100,bodytext,,
-NULL,p93,867,100,bodytext,,
-NULL,p93,868,100,bodytext,,
-NULL,p93,869,100,bodytext,,
-NULL,p93,870,4,subhead,Samādhikkhandho,定蕴
-NULL,p93,871,100,bodytext,,
-NULL,p93,872,100,bodytext,,
-NULL,p93,873,100,bodytext,,
-NULL,p93,874,100,bodytext,,
-NULL,p93,875,100,bodytext,,
-NULL,p93,876,100,bodytext,,
-NULL,p93,877,100,bodytext,,
-NULL,p93,878,100,bodytext,,
-NULL,p93,879,100,bodytext,,
-NULL,p93,880,100,bodytext,,
-NULL,p93,881,100,bodytext,,
-NULL,p93,882,100,bodytext,,
-NULL,p93,883,100,bodytext,,
-NULL,p93,884,100,bodytext,,
-NULL,p93,885,100,bodytext,,
-NULL,p93,886,100,bodytext,,
-NULL,p93,887,100,bodytext,,
-NULL,p93,888,100,bodytext,,
-NULL,p93,889,100,bodytext,,
-NULL,p93,890,100,bodytext,,
-NULL,p93,891,100,bodytext,,
-NULL,p93,892,100,bodytext,,
-NULL,p93,893,100,bodytext,,
-NULL,p93,894,100,bodytext,,
-NULL,p93,895,4,subhead,Paññākkhandho,慧蕴
-NULL,p93,896,100,bodytext,,
-NULL,p93,897,100,bodytext,,
-NULL,p93,898,100,bodytext,,
-NULL,p93,899,100,bodytext,,
-NULL,p93,900,100,bodytext,,
-NULL,p93,901,100,bodytext,,
-NULL,p93,902,100,bodytext,,
-NULL,p93,903,100,bodytext,,
-NULL,p93,904,100,bodytext,,
-NULL,p93,905,100,bodytext,,
-NULL,p93,906,100,bodytext,,
-NULL,p93,907,100,bodytext,,
-NULL,p93,908,100,bodytext,,
-NULL,p93,909,100,bodytext,,
-NULL,p93,910,100,bodytext,,
-NULL,p93,911,100,bodytext,,
-NULL,p93,912,100,bodytext,,
-NULL,p93,913,100,bodytext,,
-NULL,p93,914,100,centered,,
-NULL,p93,915,2,chapter,11. Kevaṭṭasuttaṃ,11、给哇得经
-NULL,p93,916,4,subhead,Kevaṭṭagahapatiputtavatthu,屋主之子给哇得的事
-NULL,p93,917,100,bodytext,,
-NULL,p93,918,100,bodytext,,
-NULL,p93,919,100,bodytext,,
-NULL,p93,920,4,subhead,Iddhipāṭihāriyaṃ,神通神变
-NULL,p93,921,100,bodytext,,
-NULL,p93,922,100,bodytext,,
-NULL,p93,923,100,bodytext,,
-NULL,p93,924,100,bodytext,,
-NULL,p93,925,100,bodytext,,
-NULL,p93,926,100,bodytext,,
-NULL,p93,927,4,subhead,Ādesanāpāṭihāriyaṃ,记心神变
-NULL,p93,928,100,bodytext,,
-NULL,p93,929,100,bodytext,,
-NULL,p93,930,100,bodytext,,
-NULL,p93,931,100,bodytext,,
-NULL,p93,932,4,subhead,Anusāsanīpāṭihāriyaṃ,教诫神变
-NULL,p93,933,100,bodytext,,
-NULL,p93,934,100,bodytext,,
-NULL,p93,935,100,bodytext,,
-NULL,p93,936,4,subhead,Bhūtanirodhesakabhikkhuvatthu,比丘寻求存在的灭的事
-NULL,p93,937,100,bodytext,,
-NULL,p93,938,100,bodytext,,
-NULL,p93,939,100,bodytext,,
-NULL,p93,940,100,bodytext,,
-NULL,p93,941,100,bodytext,,
-NULL,p93,942,100,bodytext,,
-NULL,p93,943,100,bodytext,,
-NULL,p93,944,100,bodytext,,
-NULL,p93,945,100,bodytext,,
-NULL,p93,946,100,bodytext,,
-NULL,p93,947,100,bodytext,,
-NULL,p93,948,100,bodytext,,
-NULL,p93,949,100,bodytext,,
-NULL,p93,950,100,bodytext,,
-NULL,p93,951,4,subhead,Tīradassisakuṇupamā,寻岸鸟的譬喻
-NULL,p93,952,100,bodytext,,
-NULL,p93,953,100,bodytext,,
-NULL,p93,954,100,gatha1,,
-NULL,p93,955,100,gatha2,,
-NULL,p93,956,100,gathalast,,
-NULL,p93,957,100,bodytext,,
-NULL,p93,958,100,gatha1,,
-NULL,p93,959,100,gathalast,,
-NULL,p93,960,100,gatha1,,
-NULL,p93,961,100,gatha2,,
-NULL,p93,962,100,gathalast,,
-NULL,p93,963,100,bodytext,,
-NULL,p93,964,100,centered,,
-NULL,p93,965,2,chapter,12. Lohiccasuttaṃ,12、罗希者经
-NULL,p93,966,4,subhead,Lohiccabrāhmaṇavatthu,罗希者婆罗门的事
-NULL,p93,967,100,bodytext,,
-NULL,p93,968,100,bodytext,,
-NULL,p93,969,100,bodytext,,
-NULL,p93,970,100,bodytext,,
-NULL,p93,971,100,bodytext,,
-NULL,p93,972,100,bodytext,,
-NULL,p93,973,100,bodytext,,
-NULL,p93,974,100,bodytext,,
-NULL,p93,975,100,bodytext,,
-NULL,p93,976,4,subhead,Lohiccabrāhmaṇānuyogo,罗希者婆罗门的实行
-NULL,p93,977,100,bodytext,,
-NULL,p93,978,100,bodytext,,
-NULL,p93,979,100,bodytext,,
-NULL,p93,980,100,bodytext,,
-NULL,p93,981,100,bodytext,,
-NULL,p93,982,100,bodytext,,
-NULL,p93,983,4,subhead,Tayo codanārahā,三种适合呵责者
-NULL,p93,984,100,bodytext,,
-NULL,p93,985,100,bodytext,,
-NULL,p93,986,100,bodytext,,
-NULL,p93,987,4,subhead,Nacodanārahasatthu,不适合呵责的大师
-NULL,p93,988,100,bodytext,,
-NULL,p93,989,100,bodytext,,
-NULL,p93,990,100,bodytext,,
-NULL,p93,991,100,centered,,
-NULL,p93,992,2,chapter,13. Tevijjasuttaṃ,13、三明经
-NULL,p93,993,100,bodytext,,
-NULL,p93,994,100,bodytext,,
-NULL,p93,995,100,bodytext,,
-NULL,p93,996,100,bodytext,,
-NULL,p93,997,4,subhead,Maggāmaggakathā,道、非道的谈说
-NULL,p93,998,100,bodytext,,
-NULL,p93,999,100,bodytext,,
-NULL,p93,1000,100,bodytext,,
-NULL,p93,1001,100,bodytext,,
-NULL,p93,1002,4,subhead,Vāseṭṭhamāṇavānuyogo,学生婆罗门袜谢德的实行
-NULL,p93,1003,100,bodytext,,
-NULL,p93,1004,100,bodytext,,
-NULL,p93,1005,100,bodytext,,
-NULL,p93,1006,100,bodytext,,
-NULL,p93,1007,100,bodytext,,
-NULL,p93,1008,100,bodytext,,
-NULL,p93,1009,100,bodytext,,
-NULL,p93,1010,100,bodytext,,
-NULL,p93,1011,100,bodytext,,
-NULL,p93,1012,100,bodytext,,
-NULL,p93,1013,100,bodytext,,
-NULL,p93,1014,100,bodytext,,
-NULL,p93,1015,100,bodytext,,
-NULL,p93,1016,100,bodytext,,
-NULL,p93,1017,100,bodytext,,
-NULL,p93,1018,100,bodytext,,
-NULL,p93,1019,100,bodytext,,
-NULL,p93,1020,4,subhead,Janapadakalyāṇīupamā,地方上美女的譬喻
-NULL,p93,1021,100,bodytext,,
-NULL,p93,1022,100,bodytext,,
-NULL,p93,1023,100,bodytext,,
-NULL,p93,1024,100,bodytext,,
-NULL,p93,1025,100,bodytext,,
-NULL,p93,1026,100,bodytext,,
-NULL,p93,1027,4,subhead,Nisseṇīupamā,阶梯的譬喻
-NULL,p93,1028,100,bodytext,,
-NULL,p93,1029,100,bodytext,,
-NULL,p93,1030,100,bodytext,,
-NULL,p93,1031,100,bodytext,,
-NULL,p93,1032,100,bodytext,,
-NULL,p93,1033,100,bodytext,,
-NULL,p93,1034,4,subhead,Aciravatīnadīupamā,阿致罗筏底河的譬喻
-NULL,p93,1035,100,bodytext,,
-NULL,p93,1036,100,bodytext,,
-NULL,p93,1037,100,bodytext,,
-NULL,p93,1038,100,bodytext,,
-NULL,p93,1039,100,bodytext,,
-NULL,p93,1040,100,bodytext,,
-NULL,p93,1041,100,bodytext,,
-NULL,p93,1042,100,bodytext,,
-NULL,p93,1043,100,bodytext,,
-NULL,p93,1044,100,bodytext,,
-NULL,p93,1045,100,bodytext,,
-NULL,p93,1046,100,bodytext,,
-NULL,p93,1047,4,subhead,Saṃsandanakathā,合流的谈说
-NULL,p93,1048,100,bodytext,,
-NULL,p93,1049,100,bodytext,,
-NULL,p93,1050,100,bodytext,,
-NULL,p93,1051,100,bodytext,,
-NULL,p93,1052,100,bodytext,,
-NULL,p93,1053,100,bodytext,,
-NULL,p93,1054,100,bodytext,,
-NULL,p93,1055,100,bodytext,,
-NULL,p93,1056,100,bodytext,,
-NULL,p93,1057,4,subhead,Brahmalokamaggadesanā,梵天世界之道的教导
-NULL,p93,1058,100,bodytext,,
-NULL,p93,1059,100,bodytext,,
-NULL,p93,1060,100,bodytext,,
-NULL,p93,1061,100,bodytext,,
-NULL,p93,1062,100,bodytext,,
-NULL,p93,1063,100,bodytext,,
-NULL,p93,1064,100,bodytext,,
-NULL,p93,1065,100,bodytext,,
-NULL,p93,1066,100,bodytext,,
-NULL,p93,1067,100,centered,,
-NULL,p93,1068,100,centered,,
-NULL,p93,1069,100,bodytext,,
-NULL,p93,1070,100,gatha1,,
-NULL,p93,1071,100,gatha2,,
-NULL,p93,1072,100,gatha3,,
-NULL,p93,1073,100,gathalast,,
-NULL,p93,1074,100,centered,,
-"","","","","","",""

+ 1075 - 0
pali_title/93_zh-hans.csv

@@ -0,0 +1,1075 @@
+id,book,par_num,100,class,title,text,auther
+NULL,93,1,100,centered,,,庄春江
+NULL,93,2,100,nikaya,,,庄春江
+NULL,93,3,1,book,Sīlakkhandhavaggapāḷi,戒蕴品,庄春江
+NULL,93,4,2,chapter,1. Brahmajālasuttaṃ,1、梵网经,庄春江
+NULL,93,5,4,subhead,Paribbājakakathā,游行者之说,庄春江
+NULL,93,6,100,bodytext,,,庄春江
+NULL,93,7,100,bodytext,,,庄春江
+NULL,93,8,100,bodytext,,,庄春江
+NULL,93,9,100,bodytext,,,庄春江
+NULL,93,10,100,bodytext,,,庄春江
+NULL,93,11,100,bodytext,,,庄春江
+NULL,93,12,4,subhead,Cūḷasīlaṃ,小戒,庄春江
+NULL,93,13,100,bodytext,,,庄春江
+NULL,93,14,100,bodytext,,,庄春江
+NULL,93,15,100,bodytext,,,庄春江
+NULL,93,16,100,bodytext,,,庄春江
+NULL,93,17,100,bodytext,,,庄春江
+NULL,93,18,100,bodytext,,,庄春江
+NULL,93,19,100,bodytext,,,庄春江
+NULL,93,20,100,bodytext,,,庄春江
+NULL,93,21,100,bodytext,,,庄春江
+NULL,93,22,100,bodytext,,,庄春江
+NULL,93,23,100,bodytext,,,庄春江
+NULL,93,24,100,bodytext,,,庄春江
+NULL,93,25,100,bodytext,,,庄春江
+NULL,93,26,100,bodytext,,,庄春江
+NULL,93,27,100,bodytext,,,庄春江
+NULL,93,28,100,bodytext,,,庄春江
+NULL,93,29,100,bodytext,,,庄春江
+NULL,93,30,100,bodytext,,,庄春江
+NULL,93,31,100,bodytext,,,庄春江
+NULL,93,32,100,bodytext,,,庄春江
+NULL,93,33,100,bodytext,,,庄春江
+NULL,93,34,100,bodytext,,,庄春江
+NULL,93,35,100,bodytext,,,庄春江
+NULL,93,36,100,bodytext,,,庄春江
+NULL,93,37,100,bodytext,,,庄春江
+NULL,93,38,100,bodytext,,,庄春江
+NULL,93,39,100,bodytext,,,庄春江
+NULL,93,40,100,centered,,,庄春江
+NULL,93,41,4,subhead,Majjhimasīlaṃ,中戒,庄春江
+NULL,93,42,100,bodytext,,,庄春江
+NULL,93,43,100,bodytext,,,庄春江
+NULL,93,44,100,bodytext,,,庄春江
+NULL,93,45,100,bodytext,,,庄春江
+NULL,93,46,100,bodytext,,,庄春江
+NULL,93,47,100,bodytext,,,庄春江
+NULL,93,48,100,bodytext,,,庄春江
+NULL,93,49,100,bodytext,,,庄春江
+NULL,93,50,100,bodytext,,,庄春江
+NULL,93,51,100,bodytext,,,庄春江
+NULL,93,52,100,centered,,,庄春江
+NULL,93,53,4,subhead,Mahāsīlaṃ,大戒,庄春江
+NULL,93,54,100,bodytext,,,庄春江
+NULL,93,55,100,bodytext,,,庄春江
+NULL,93,56,100,bodytext,,,庄春江
+NULL,93,57,100,bodytext,,,庄春江
+NULL,93,58,100,bodytext,,,庄春江
+NULL,93,59,100,bodytext,,,庄春江
+NULL,93,60,100,bodytext,,,庄春江
+NULL,93,61,100,bodytext,,,庄春江
+NULL,93,62,100,centered,,,庄春江
+NULL,93,63,4,subhead,Pubbantakappikā,属于过去时间的,庄春江
+NULL,93,64,100,bodytext,,,庄春江
+NULL,93,65,100,bodytext,,,庄春江
+NULL,93,66,4,subhead,Sassatavādo,恒常论,庄春江
+NULL,93,67,100,bodytext,,,庄春江
+NULL,93,68,100,bodytext,,,庄春江
+NULL,93,69,100,bodytext,,,庄春江
+NULL,93,70,100,bodytext,,,庄春江
+NULL,93,71,100,bodytext,,,庄春江
+NULL,93,72,100,bodytext,,,庄春江
+NULL,93,73,100,bodytext,,,庄春江
+NULL,93,74,100,bodytext,,,庄春江
+NULL,93,75,100,bodytext,,,庄春江
+NULL,93,76,100,bodytext,,,庄春江
+NULL,93,77,100,bodytext,,,庄春江
+NULL,93,78,100,centered,,,庄春江
+NULL,93,79,4,subhead,Ekaccasassatavādo,某部分恒常论,庄春江
+NULL,93,80,100,bodytext,,,庄春江
+NULL,93,81,100,bodytext,,,庄春江
+NULL,93,82,100,bodytext,,,庄春江
+NULL,93,83,100,bodytext,,,庄春江
+NULL,93,84,100,bodytext,,,庄春江
+NULL,93,85,100,bodytext,,,庄春江
+NULL,93,86,100,bodytext,,,庄春江
+NULL,93,87,100,bodytext,,,庄春江
+NULL,93,88,100,bodytext,,,庄春江
+NULL,93,89,100,bodytext,,,庄春江
+NULL,93,90,100,bodytext,,,庄春江
+NULL,93,91,100,bodytext,,,庄春江
+NULL,93,92,100,bodytext,,,庄春江
+NULL,93,93,100,bodytext,,,庄春江
+NULL,93,94,100,bodytext,,,庄春江
+NULL,93,95,100,bodytext,,,庄春江
+NULL,93,96,100,bodytext,,,庄春江
+NULL,93,97,100,bodytext,,,庄春江
+NULL,93,98,100,bodytext,,,庄春江
+NULL,93,99,4,subhead,Antānantavādo,有边无边论,庄春江
+NULL,93,100,100,bodytext,,,庄春江
+NULL,93,101,100,bodytext,,,庄春江
+NULL,93,102,100,bodytext,,,庄春江
+NULL,93,103,100,bodytext,,,庄春江
+NULL,93,104,100,bodytext,,,庄春江
+NULL,93,105,100,bodytext,,,庄春江
+NULL,93,106,100,bodytext,,,庄春江
+NULL,93,107,100,bodytext,,,庄春江
+NULL,93,108,100,bodytext,,,庄春江
+NULL,93,109,100,bodytext,,,庄春江
+NULL,93,110,100,bodytext,,,庄春江
+NULL,93,111,4,subhead,Amarāvikkhepavādo,诡辩论,庄春江
+NULL,93,112,100,bodytext,,,庄春江
+NULL,93,113,100,bodytext,,,庄春江
+NULL,93,114,100,bodytext,,,庄春江
+NULL,93,115,100,bodytext,,,庄春江
+NULL,93,116,100,bodytext,,,庄春江
+NULL,93,117,100,bodytext,,,庄春江
+NULL,93,118,4,subhead,Adhiccasamuppannavādo,自然生论,庄春江
+NULL,93,119,100,bodytext,,,庄春江
+NULL,93,120,100,bodytext,,,庄春江
+NULL,93,121,100,bodytext,,,庄春江
+NULL,93,122,100,bodytext,,,庄春江
+NULL,93,123,100,bodytext,,,庄春江
+NULL,93,124,100,bodytext,,,庄春江
+NULL,93,125,100,bodytext,,,庄春江
+NULL,93,126,100,centered,,,庄春江
+NULL,93,127,4,subhead,Aparantakappikā,属于未来时间的,庄春江
+NULL,93,128,100,bodytext,,,庄春江
+NULL,93,129,4,subhead,Saññīvādo,有想论,庄春江
+NULL,93,130,100,bodytext,,,庄春江
+NULL,93,131,100,bodytext,,,庄春江
+NULL,93,132,100,bodytext,,,庄春江
+NULL,93,133,4,subhead,Asaññīvādo,无想论,庄春江
+NULL,93,134,100,bodytext,,,庄春江
+NULL,93,135,100,bodytext,,,庄春江
+NULL,93,136,100,bodytext,,,庄春江
+NULL,93,137,4,subhead,Nevasaññīnāsaññīvādo,非想非非想论,庄春江
+NULL,93,138,100,bodytext,,,庄春江
+NULL,93,139,100,bodytext,,,庄春江
+NULL,93,140,100,bodytext,,,庄春江
+NULL,93,141,4,subhead,Ucchedavādo,断灭论,庄春江
+NULL,93,142,100,bodytext,,,庄春江
+NULL,93,143,100,bodytext,,,庄春江
+NULL,93,144,100,bodytext,,,庄春江
+NULL,93,145,100,bodytext,,,庄春江
+NULL,93,146,100,bodytext,,,庄春江
+NULL,93,147,100,bodytext,,,庄春江
+NULL,93,148,100,bodytext,,,庄春江
+NULL,93,149,100,bodytext,,,庄春江
+NULL,93,150,100,bodytext,,,庄春江
+NULL,93,151,4,subhead,Diṭṭhadhammanibbānavādo,当生涅槃论,庄春江
+NULL,93,152,100,bodytext,,,庄春江
+NULL,93,153,100,bodytext,,,庄春江
+NULL,93,154,100,bodytext,,,庄春江
+NULL,93,155,100,bodytext,,,庄春江
+NULL,93,156,100,bodytext,,,庄春江
+NULL,93,157,100,bodytext,,,庄春江
+NULL,93,158,100,bodytext,,,庄春江
+NULL,93,159,100,bodytext,,,庄春江
+NULL,93,160,100,bodytext,,,庄春江
+NULL,93,161,100,bodytext,,,庄春江
+NULL,93,162,100,bodytext,,,庄春江
+NULL,93,163,100,bodytext,,,庄春江
+NULL,93,164,4,subhead,Paritassitavipphanditavāro,(暂缺),庄春江
+NULL,93,165,100,bodytext,,,庄春江
+NULL,93,166,100,bodytext,,,庄春江
+NULL,93,167,100,bodytext,,,庄春江
+NULL,93,168,100,bodytext,,,庄春江
+NULL,93,169,100,bodytext,,,庄春江
+NULL,93,170,100,bodytext,,,庄春江
+NULL,93,171,100,bodytext,,,庄春江
+NULL,93,172,100,bodytext,,,庄春江
+NULL,93,173,100,bodytext,,,庄春江
+NULL,93,174,100,bodytext,,,庄春江
+NULL,93,175,100,bodytext,,,庄春江
+NULL,93,176,100,bodytext,,,庄春江
+NULL,93,177,100,bodytext,,,庄春江
+NULL,93,178,4,subhead,Phassapaccayāvāro,以触为缘章,庄春江
+NULL,93,179,100,bodytext,,,庄春江
+NULL,93,180,100,bodytext,,,庄春江
+NULL,93,181,100,bodytext,,,庄春江
+NULL,93,182,100,bodytext,,,庄春江
+NULL,93,183,100,bodytext,,,庄春江
+NULL,93,184,100,bodytext,,,庄春江
+NULL,93,185,100,bodytext,,,庄春江
+NULL,93,186,100,bodytext,,,庄春江
+NULL,93,187,100,bodytext,,,庄春江
+NULL,93,188,100,bodytext,,,庄春江
+NULL,93,189,100,bodytext,,,庄春江
+NULL,93,190,100,bodytext,,,庄春江
+NULL,93,191,100,bodytext,,,庄春江
+NULL,93,192,4,subhead,Netaṃ ṭhānaṃ vijjativāro,这是不可能的章,庄春江
+NULL,93,193,100,bodytext,,,庄春江
+NULL,93,194,100,bodytext,,,庄春江
+NULL,93,195,100,bodytext,,,庄春江
+NULL,93,196,100,bodytext,,,庄春江
+NULL,93,197,100,bodytext,,,庄春江
+NULL,93,198,100,bodytext,,,庄春江
+NULL,93,199,100,bodytext,,,庄春江
+NULL,93,200,100,bodytext,,,庄春江
+NULL,93,201,100,bodytext,,,庄春江
+NULL,93,202,100,bodytext,,,庄春江
+NULL,93,203,100,bodytext,,,庄春江
+NULL,93,204,100,bodytext,,,庄春江
+NULL,93,205,100,bodytext,,,庄春江
+NULL,93,206,4,subhead,Diṭṭhigatikādhiṭṭhānavaṭṭakathā,到达见依处的轮回谈说,庄春江
+NULL,93,207,100,bodytext,,,庄春江
+NULL,93,208,4,subhead,Vivaṭṭakathādi,还灭之谈说等,庄春江
+NULL,93,209,100,bodytext,,,庄春江
+NULL,93,210,100,bodytext,,,庄春江
+NULL,93,211,100,bodytext,,,庄春江
+NULL,93,212,100,bodytext,,,庄春江
+NULL,93,213,100,bodytext,,,庄春江
+NULL,93,214,100,bodytext,,,庄春江
+NULL,93,215,100,bodytext,,,庄春江
+NULL,93,216,100,centered,,,庄春江
+NULL,93,217,2,chapter,2. Sāmaññaphalasuttaṃ,2、沙门果经,庄春江
+NULL,93,218,4,subhead,Rājāmaccakathā,国王大臣的谈论,庄春江
+NULL,93,219,100,bodytext,,,庄春江
+NULL,93,220,100,bodytext,,,庄春江
+NULL,93,221,100,bodytext,,,庄春江
+NULL,93,222,100,bodytext,,,庄春江
+NULL,93,223,100,bodytext,,,庄春江
+NULL,93,224,100,bodytext,,,庄春江
+NULL,93,225,100,bodytext,,,庄春江
+NULL,93,226,4,subhead,Komārabhaccajīvakakathā,养子耆婆的谈论,庄春江
+NULL,93,227,100,bodytext,,,庄春江
+NULL,93,228,100,bodytext,,,庄春江
+NULL,93,229,100,bodytext,,,庄春江
+NULL,93,230,100,bodytext,,,庄春江
+NULL,93,231,100,bodytext,,,庄春江
+NULL,93,232,4,subhead,Sāmaññaphalapucchā,沙门果的问题,庄春江
+NULL,93,233,100,bodytext,,,庄春江
+NULL,93,234,100,bodytext,,,庄春江
+NULL,93,235,100,bodytext,,,庄春江
+NULL,93,236,100,bodytext,,,庄春江
+NULL,93,237,100,bodytext,,,庄春江
+NULL,93,238,4,subhead,Pūraṇakassapavādo,富兰那迦叶之论,庄春江
+NULL,93,239,100,bodytext,,,庄春江
+NULL,93,240,100,bodytext,,,庄春江
+NULL,93,241,100,bodytext,,,庄春江
+NULL,93,242,4,subhead,Makkhaligosālavādo,末迦利瞿舍罗之论,庄春江
+NULL,93,243,100,bodytext,,,庄春江
+NULL,93,244,100,bodytext,,,庄春江
+NULL,93,245,100,bodytext,,,庄春江
+NULL,93,246,4,subhead,Ajitakesakambalavādo,阿夷多翅舍钦婆罗之论,庄春江
+NULL,93,247,100,bodytext,,,庄春江
+NULL,93,248,100,bodytext,,,庄春江
+NULL,93,249,100,bodytext,,,庄春江
+NULL,93,250,4,subhead,Pakudhakaccāyanavādo,浮陀迦旃延之论,庄春江
+NULL,93,251,100,bodytext,,,庄春江
+NULL,93,252,100,bodytext,,,庄春江
+NULL,93,253,100,bodytext,,,庄春江
+NULL,93,254,4,subhead,Nigaṇṭhanāṭaputtavādo,尼干子若提子之论,庄春江
+NULL,93,255,100,bodytext,,,庄春江
+NULL,93,256,100,bodytext,,,庄春江
+NULL,93,257,100,bodytext,,,庄春江
+NULL,93,258,4,subhead,Sañcayabelaṭṭhaputtavādo,散惹耶毗罗梨子之论,庄春江
+NULL,93,259,100,bodytext,,,庄春江
+NULL,93,260,100,bodytext,,,庄春江
+NULL,93,261,100,bodytext,,,庄春江
+NULL,93,262,4,subhead,Paṭhamasandiṭṭhikasāmaññaphalaṃ,第一个当生看得见的沙门果,庄春江
+NULL,93,263,100,bodytext,,,庄春江
+NULL,93,264,100,bodytext,,,庄春江
+NULL,93,265,100,bodytext,,,庄春江
+NULL,93,266,100,bodytext,,,庄春江
+NULL,93,267,4,subhead,Dutiyasandiṭṭhikasāmaññaphalaṃ,第二个当生看得见的沙门果,庄春江
+NULL,93,268,100,bodytext,,,庄春江
+NULL,93,269,100,bodytext,,,庄春江
+NULL,93,270,100,bodytext,,,庄春江
+NULL,93,271,100,bodytext,,,庄春江
+NULL,93,272,4,subhead,Paṇītatarasāmaññaphalaṃ,更胜妙的沙门果,庄春江
+NULL,93,273,100,bodytext,,,庄春江
+NULL,93,274,100,bodytext,,,庄春江
+NULL,93,275,100,bodytext,,,庄春江
+NULL,93,276,100,bodytext,,,庄春江
+NULL,93,277,100,bodytext,,,庄春江
+NULL,93,278,4,subhead,Cūḷasīlaṃ,小戒,庄春江
+NULL,93,279,100,bodytext,,,庄春江
+NULL,93,280,100,bodytext,,,庄春江
+NULL,93,281,100,bodytext,,,庄春江
+NULL,93,282,100,bodytext,,,庄春江
+NULL,93,283,100,bodytext,,,庄春江
+NULL,93,284,100,bodytext,,,庄春江
+NULL,93,285,100,bodytext,,,庄春江
+NULL,93,286,100,bodytext,,,庄春江
+NULL,93,287,100,centered,,,庄春江
+NULL,93,288,4,subhead,Majjhimasīlaṃ,中戒,庄春江
+NULL,93,289,100,bodytext,,,庄春江
+NULL,93,290,100,bodytext,,,庄春江
+NULL,93,291,100,bodytext,,,庄春江
+NULL,93,292,100,bodytext,,,庄春江
+NULL,93,293,100,bodytext,,,庄春江
+NULL,93,294,100,bodytext,,,庄春江
+NULL,93,295,100,bodytext,,,庄春江
+NULL,93,296,100,bodytext,,,庄春江
+NULL,93,297,100,bodytext,,,庄春江
+NULL,93,298,100,bodytext,,,庄春江
+NULL,93,299,100,centered,,,庄春江
+NULL,93,300,4,subhead,Mahāsīlaṃ,大戒,庄春江
+NULL,93,301,100,bodytext,,,庄春江
+NULL,93,302,100,bodytext,,,庄春江
+NULL,93,303,100,bodytext,,,庄春江
+NULL,93,304,100,bodytext,,,庄春江
+NULL,93,305,100,bodytext,,,庄春江
+NULL,93,306,100,bodytext,,,庄春江
+NULL,93,307,100,bodytext,,,庄春江
+NULL,93,308,100,bodytext,,,庄春江
+NULL,93,309,100,centered,,,庄春江
+NULL,93,310,4,subhead,Indriyasaṃvaro,根的自制,庄春江
+NULL,93,311,100,bodytext,,,庄春江
+NULL,93,312,4,subhead,Satisampajaññaṃ,正念与正知,庄春江
+NULL,93,313,100,bodytext,,,庄春江
+NULL,93,314,4,subhead,Santoso,知足,庄春江
+NULL,93,315,100,bodytext,,,庄春江
+NULL,93,316,4,subhead,Nīvaraṇappahānaṃ,(暂缺),庄春江
+NULL,93,317,100,bodytext,,,庄春江
+NULL,93,318,100,bodytext,,,庄春江
+NULL,93,319,100,bodytext,,,庄春江
+NULL,93,320,100,bodytext,,,庄春江
+NULL,93,321,100,bodytext,,,庄春江
+NULL,93,322,100,bodytext,,,庄春江
+NULL,93,323,100,bodytext,,,庄春江
+NULL,93,324,100,bodytext,,,庄春江
+NULL,93,325,100,bodytext,,,庄春江
+NULL,93,326,100,bodytext,,,庄春江
+NULL,93,327,4,subhead,Paṭhamajjhānaṃ,初禅,庄春江
+NULL,93,328,100,bodytext,,,庄春江
+NULL,93,329,100,bodytext,,,庄春江
+NULL,93,330,4,subhead,Dutiyajjhānaṃ,第二禅,庄春江
+NULL,93,331,100,bodytext,,,庄春江
+NULL,93,332,100,bodytext,,,庄春江
+NULL,93,333,4,subhead,Tatiyajjhānaṃ,第三禅,庄春江
+NULL,93,334,100,bodytext,,,庄春江
+NULL,93,335,100,bodytext,,,庄春江
+NULL,93,336,4,subhead,Catutthajjhānaṃ,第四禅,庄春江
+NULL,93,337,100,bodytext,,,庄春江
+NULL,93,338,100,bodytext,,,庄春江
+NULL,93,339,4,subhead,Vipassanāñāṇaṃ,毗婆舍那智,庄春江
+NULL,93,340,100,bodytext,,,庄春江
+NULL,93,341,100,bodytext,,,庄春江
+NULL,93,342,4,subhead,Manomayiddhiñāṇaṃ,意生神通智,庄春江
+NULL,93,343,100,bodytext,,,庄春江
+NULL,93,344,100,bodytext,,,庄春江
+NULL,93,345,4,subhead,Iddhividhañāṇaṃ,各种神通智,庄春江
+NULL,93,346,100,bodytext,,,庄春江
+NULL,93,347,100,bodytext,,,庄春江
+NULL,93,348,4,subhead,Dibbasotañāṇaṃ,天耳智,庄春江
+NULL,93,349,100,bodytext,,,庄春江
+NULL,93,350,100,bodytext,,,庄春江
+NULL,93,351,4,subhead,Cetopariyañāṇaṃ,他心智,庄春江
+NULL,93,352,100,bodytext,,,庄春江
+NULL,93,353,100,bodytext,,,庄春江
+NULL,93,354,4,subhead,Pubbenivāsānussatiñāṇaṃ,前世住处之回忆智,庄春江
+NULL,93,355,100,bodytext,,,庄春江
+NULL,93,356,100,bodytext,,,庄春江
+NULL,93,357,4,subhead,Dibbacakkhuñāṇaṃ,天眼智,庄春江
+NULL,93,358,100,bodytext,,,庄春江
+NULL,93,359,100,bodytext,,,庄春江
+NULL,93,360,4,subhead,Āsavakkhayañāṇaṃ,烦恼之灭尽智,庄春江
+NULL,93,361,100,bodytext,,,庄春江
+NULL,93,362,100,bodytext,,,庄春江
+NULL,93,363,4,subhead,Ajātasattuupāsakattapaṭivedanā,阿阇世-作为优婆塞的陈述,庄春江
+NULL,93,364,100,bodytext,,,庄春江
+NULL,93,365,100,bodytext,,,庄春江
+NULL,93,366,100,bodytext,,,庄春江
+NULL,93,367,100,bodytext,,,庄春江
+NULL,93,368,100,centered,,,庄春江
+NULL,93,369,2,chapter,3. Ambaṭṭhasuttaṃ,3、安玻德经,庄春江
+NULL,93,370,100,bodytext,,,庄春江
+NULL,93,371,4,subhead,Pokkharasātivatthu,玻科勒沙低的事,庄春江
+NULL,93,372,100,bodytext,,,庄春江
+NULL,93,373,4,subhead,Ambaṭṭhamāṇavo,安玻德学生婆罗门,庄春江
+NULL,93,374,100,bodytext,,,庄春江
+NULL,93,375,100,bodytext,,,庄春江
+NULL,93,376,100,bodytext,,,庄春江
+NULL,93,377,100,bodytext,,,庄春江
+NULL,93,378,100,bodytext,,,庄春江
+NULL,93,379,100,bodytext,,,庄春江
+NULL,93,380,100,bodytext,,,庄春江
+NULL,93,381,100,bodytext,,,庄春江
+NULL,93,382,4,subhead,Paṭhamaibbhavādo,第一次卑贱说,庄春江
+NULL,93,383,100,bodytext,,,庄春江
+NULL,93,384,100,bodytext,,,庄春江
+NULL,93,385,4,subhead,Dutiyaibbhavādo,第二次卑贱说,庄春江
+NULL,93,386,100,bodytext,,,庄春江
+NULL,93,387,4,subhead,Tatiyaibbhavādo,第三次卑贱说,庄春江
+NULL,93,388,100,bodytext,,,庄春江
+NULL,93,389,4,subhead,Dāsiputtavādo,婢女之子说,庄春江
+NULL,93,390,100,bodytext,,,庄春江
+NULL,93,391,100,bodytext,,,庄春江
+NULL,93,392,100,bodytext,,,庄春江
+NULL,93,393,100,bodytext,,,庄春江
+NULL,93,394,100,bodytext,,,庄春江
+NULL,93,395,100,bodytext,,,庄春江
+NULL,93,396,100,bodytext,,,庄春江
+NULL,93,397,100,bodytext,,,庄春江
+NULL,93,398,100,bodytext,,,庄春江
+NULL,93,399,100,bodytext,,,庄春江
+NULL,93,400,100,bodytext,,,庄春江
+NULL,93,401,100,bodytext,,,庄春江
+NULL,93,402,4,subhead,Ambaṭṭhavaṃsakathā,安玻德的种姓说,庄春江
+NULL,93,403,100,bodytext,,,庄春江
+NULL,93,404,100,bodytext,,,庄春江
+NULL,93,405,100,bodytext,,,庄春江
+NULL,93,406,4,subhead,Khattiyaseṭṭhabhāvo,刹帝利的最胜性,庄春江
+NULL,93,407,100,bodytext,,,庄春江
+NULL,93,408,100,bodytext,,,庄春江
+NULL,93,409,100,bodytext,,,庄春江
+NULL,93,410,100,bodytext,,,庄春江
+NULL,93,411,100,bodytext,,,庄春江
+NULL,93,412,100,gatha1,,,庄春江
+NULL,93,413,100,gatha2,,,庄春江
+NULL,93,414,100,gatha3,,,庄春江
+NULL,93,415,100,gathalast,,,庄春江
+NULL,93,416,100,bodytext,,,庄春江
+NULL,93,417,100,gatha1,,,庄春江
+NULL,93,418,100,gatha2,,,庄春江
+NULL,93,419,100,gatha3,,,庄春江
+NULL,93,420,100,gathalast,,,庄春江
+NULL,93,421,100,centered,,,庄春江
+NULL,93,422,4,subhead,Vijjācaraṇakathā,明与行之说,庄春江
+NULL,93,423,100,bodytext,,,庄春江
+NULL,93,424,100,bodytext,,,庄春江
+NULL,93,425,100,bodytext,,,庄春江
+NULL,93,426,100,bodytext,,,庄春江
+NULL,93,427,100,bodytext,,,庄春江
+NULL,93,428,100,bodytext,,,庄春江
+NULL,93,429,100,bodytext,,,庄春江
+NULL,93,430,100,bodytext,,,庄春江
+NULL,93,431,4,subhead,Catuapāyamukhaṃ,四个败散口,庄春江
+NULL,93,432,100,bodytext,,,庄春江
+NULL,93,433,100,bodytext,,,庄春江
+NULL,93,434,100,bodytext,,,庄春江
+NULL,93,435,100,bodytext,,,庄春江
+NULL,93,436,100,bodytext,,,庄春江
+NULL,93,437,100,bodytext,,,庄春江
+NULL,93,438,100,bodytext,,,庄春江
+NULL,93,439,100,bodytext,,,庄春江
+NULL,93,440,100,bodytext,,,庄春江
+NULL,93,441,100,bodytext,,,庄春江
+NULL,93,442,4,subhead,Pubbakaisibhāvānuyogo,以前仙人状态的实行,庄春江
+NULL,93,443,100,bodytext,,,庄春江
+NULL,93,444,100,bodytext,,,庄春江
+NULL,93,445,100,bodytext,,,庄春江
+NULL,93,446,100,bodytext,,,庄春江
+NULL,93,447,100,bodytext,,,庄春江
+NULL,93,448,100,bodytext,,,庄春江
+NULL,93,449,100,bodytext,,,庄春江
+NULL,93,450,100,bodytext,,,庄春江
+NULL,93,451,100,bodytext,,,庄春江
+NULL,93,452,4,subhead,Dvelakkhaṇādassanaṃ,二相的未见,庄春江
+NULL,93,453,100,bodytext,,,庄春江
+NULL,93,454,100,bodytext,,,庄春江
+NULL,93,455,100,bodytext,,,庄春江
+NULL,93,456,100,bodytext,,,庄春江
+NULL,93,457,100,bodytext,,,庄春江
+NULL,93,458,4,subhead,Pokkharasātibuddhupasaṅkamanaṃ,玻科勒沙低往见佛陀,庄春江
+NULL,93,459,100,bodytext,,,庄春江
+NULL,93,460,100,bodytext,,,庄春江
+NULL,93,461,100,bodytext,,,庄春江
+NULL,93,462,100,bodytext,,,庄春江
+NULL,93,463,100,bodytext,,,庄春江
+NULL,93,464,100,bodytext,,,庄春江
+NULL,93,465,100,bodytext,,,庄春江
+NULL,93,466,4,subhead,Pokkharasātiupāsakattapaṭivedanā,玻科勒沙低-作为优婆塞的陈述,庄春江
+NULL,93,467,100,bodytext,,,庄春江
+NULL,93,468,100,centered,,,庄春江
+NULL,93,469,2,chapter,4. Soṇadaṇḍasuttaṃ,4、犬杖经,庄春江
+NULL,93,470,4,subhead,Campeyyakabrāhmaṇagahapatikā,瞻波城的婆罗门、屋主,庄春江
+NULL,93,471,100,bodytext,,,庄春江
+NULL,93,472,100,bodytext,,,庄春江
+NULL,93,473,100,bodytext,,,庄春江
+NULL,93,474,4,subhead,Soṇadaṇḍaguṇakathā,犬杖的种种谈说,庄春江
+NULL,93,475,100,bodytext,,,庄春江
+NULL,93,476,100,bodytext,,,庄春江
+NULL,93,477,100,bodytext,,,庄春江
+NULL,93,478,100,bodytext,,,庄春江
+NULL,93,479,100,bodytext,,,庄春江
+NULL,93,480,100,bodytext,,,庄春江
+NULL,93,481,100,bodytext,,,庄春江
+NULL,93,482,100,bodytext,,,庄春江
+NULL,93,483,100,bodytext,,,庄春江
+NULL,93,484,100,bodytext,,,庄春江
+NULL,93,485,100,bodytext,,,庄春江
+NULL,93,486,100,bodytext,,,庄春江
+NULL,93,487,100,bodytext,,,庄春江
+NULL,93,488,4,subhead,Buddhaguṇakathā,佛陀的种种谈说,庄春江
+NULL,93,489,100,bodytext,,,庄春江
+NULL,93,490,100,bodytext,,,庄春江
+NULL,93,491,100,bodytext,,,庄春江
+NULL,93,492,100,bodytext,,,庄春江
+NULL,93,493,100,bodytext,,,庄春江
+NULL,93,494,100,bodytext,,,庄春江
+NULL,93,495,100,bodytext,,,庄春江
+NULL,93,496,100,bodytext,,,庄春江
+NULL,93,497,100,bodytext,,,庄春江
+NULL,93,498,100,bodytext,,,庄春江
+NULL,93,499,100,bodytext,,,庄春江
+NULL,93,500,100,bodytext,,,庄春江
+NULL,93,501,100,bodytext,,,庄春江
+NULL,93,502,100,bodytext,,,庄春江
+NULL,93,503,100,bodytext,,,庄春江
+NULL,93,504,100,bodytext,,,庄春江
+NULL,93,505,100,bodytext,,,庄春江
+NULL,93,506,100,bodytext,,,庄春江
+NULL,93,507,100,bodytext,,,庄春江
+NULL,93,508,100,bodytext,,,庄春江
+NULL,93,509,100,bodytext,,,庄春江
+NULL,93,510,100,bodytext,,,庄春江
+NULL,93,511,100,bodytext,,,庄春江
+NULL,93,512,100,bodytext,,,庄春江
+NULL,93,513,100,bodytext,,,庄春江
+NULL,93,514,100,bodytext,,,庄春江
+NULL,93,515,100,bodytext,,,庄春江
+NULL,93,516,100,bodytext,,,庄春江
+NULL,93,517,100,bodytext,,,庄春江
+NULL,93,518,100,bodytext,,,庄春江
+NULL,93,519,100,bodytext,,,庄春江
+NULL,93,520,4,subhead,Soṇadaṇḍaparivitakko,犬杖的深思,庄春江
+NULL,93,521,100,bodytext,,,庄春江
+NULL,93,522,100,bodytext,,,庄春江
+NULL,93,523,100,bodytext,,,庄春江
+NULL,93,524,4,subhead,Brāhmaṇapaññatti,婆罗门的安立,庄春江
+NULL,93,525,100,bodytext,,,庄春江
+NULL,93,526,100,bodytext,,,庄春江
+NULL,93,527,100,bodytext,,,庄春江
+NULL,93,528,100,bodytext,,,庄春江
+NULL,93,529,100,bodytext,,,庄春江
+NULL,93,530,100,bodytext,,,庄春江
+NULL,93,531,100,bodytext,,,庄春江
+NULL,93,532,100,bodytext,,,庄春江
+NULL,93,533,100,bodytext,,,庄春江
+NULL,93,534,100,bodytext,,,庄春江
+NULL,93,535,4,subhead,Sīlapaññākathā,戒、慧的谈说,庄春江
+NULL,93,536,100,bodytext,,,庄春江
+NULL,93,537,100,bodytext,,,庄春江
+NULL,93,538,4,subhead,Soṇadaṇḍaupāsakattapaṭivedanā,犬杖-作为优婆塞的陈述,庄春江
+NULL,93,539,100,bodytext,,,庄春江
+NULL,93,540,100,bodytext,,,庄春江
+NULL,93,541,100,bodytext,,,庄春江
+NULL,93,542,100,bodytext,,,庄春江
+NULL,93,543,100,centered,,,庄春江
+NULL,93,544,2,chapter,5. Kūṭadantasuttaṃ,5、古得旦得经,庄春江
+NULL,93,545,4,subhead,Khāṇumatakabrāhmaṇagahapatikā,柯奴玛得的婆罗门、屋主,庄春江
+NULL,93,546,100,bodytext,,,庄春江
+NULL,93,547,100,bodytext,,,庄春江
+NULL,93,548,100,bodytext,,,庄春江
+NULL,93,549,100,bodytext,,,庄春江
+NULL,93,550,100,bodytext,,,庄春江
+NULL,93,551,100,bodytext,,,庄春江
+NULL,93,552,100,bodytext,,,庄春江
+NULL,93,553,4,subhead,Kūṭadantaguṇakathā,古得旦得的种种谈说,庄春江
+NULL,93,554,100,bodytext,,,庄春江
+NULL,93,555,100,bodytext,,,庄春江
+NULL,93,556,100,bodytext,,,庄春江
+NULL,93,557,100,bodytext,,,庄春江
+NULL,93,558,100,bodytext,,,庄春江
+NULL,93,559,100,bodytext,,,庄春江
+NULL,93,560,100,bodytext,,,庄春江
+NULL,93,561,100,bodytext,,,庄春江
+NULL,93,562,100,bodytext,,,庄春江
+NULL,93,563,100,bodytext,,,庄春江
+NULL,93,564,100,bodytext,,,庄春江
+NULL,93,565,100,bodytext,,,庄春江
+NULL,93,566,100,bodytext,,,庄春江
+NULL,93,567,100,bodytext,,,庄春江
+NULL,93,568,4,subhead,Buddhaguṇakathā,佛陀的种种谈说,庄春江
+NULL,93,569,100,bodytext,,,庄春江
+NULL,93,570,100,bodytext,,,庄春江
+NULL,93,571,100,bodytext,,,庄春江
+NULL,93,572,100,bodytext,,,庄春江
+NULL,93,573,100,bodytext,,,庄春江
+NULL,93,574,100,bodytext,,,庄春江
+NULL,93,575,100,bodytext,,,庄春江
+NULL,93,576,100,bodytext,,,庄春江
+NULL,93,577,100,bodytext,,,庄春江
+NULL,93,578,100,bodytext,,,庄春江
+NULL,93,579,100,bodytext,,,庄春江
+NULL,93,580,100,bodytext,,,庄春江
+NULL,93,581,100,bodytext,,,庄春江
+NULL,93,582,100,bodytext,,,庄春江
+NULL,93,583,100,bodytext,,,庄春江
+NULL,93,584,100,bodytext,,,庄春江
+NULL,93,585,100,bodytext,,,庄春江
+NULL,93,586,100,bodytext,,,庄春江
+NULL,93,587,100,bodytext,,,庄春江
+NULL,93,588,100,bodytext,,,庄春江
+NULL,93,589,100,bodytext,,,庄春江
+NULL,93,590,100,bodytext,,,庄春江
+NULL,93,591,100,bodytext,,,庄春江
+NULL,93,592,100,bodytext,,,庄春江
+NULL,93,593,100,bodytext,,,庄春江
+NULL,93,594,100,bodytext,,,庄春江
+NULL,93,595,100,bodytext,,,庄春江
+NULL,93,596,100,bodytext,,,庄春江
+NULL,93,597,100,bodytext,,,庄春江
+NULL,93,598,100,bodytext,,,庄春江
+NULL,93,599,100,bodytext,,,庄春江
+NULL,93,600,4,subhead,Mahāvijitarājayaññakathā,(暂缺),庄春江
+NULL,93,601,100,bodytext,,,庄春江
+NULL,93,602,100,bodytext,,,庄春江
+NULL,93,603,100,bodytext,,,庄春江
+NULL,93,604,100,bodytext,,,庄春江
+NULL,93,605,100,bodytext,,,庄春江
+NULL,93,606,4,subhead,Catuparikkhāraṃ,四个资助,庄春江
+NULL,93,607,100,bodytext,,,庄春江
+NULL,93,608,4,subhead,Aṭṭha parikkhārā,八个资助,庄春江
+NULL,93,609,100,bodytext,,,庄春江
+NULL,93,610,4,subhead,Catuparikkhāraṃ,四个资助,庄春江
+NULL,93,611,100,bodytext,,,庄春江
+NULL,93,612,4,subhead,Tisso vidhā,三种,庄春江
+NULL,93,613,100,bodytext,,,庄春江
+NULL,93,614,4,subhead,Dasa ākārā,十相,庄春江
+NULL,93,615,100,bodytext,,,庄春江
+NULL,93,616,4,subhead,Soḷasa ākārā,十六相,庄春江
+NULL,93,617,100,bodytext,,,庄春江
+NULL,93,618,100,bodytext,,,庄春江
+NULL,93,619,100,bodytext,,,庄春江
+NULL,93,620,100,bodytext,,,庄春江
+NULL,93,621,100,bodytext,,,庄春江
+NULL,93,622,100,bodytext,,,庄春江
+NULL,93,623,100,bodytext,,,庄春江
+NULL,93,624,100,bodytext,,,庄春江
+NULL,93,625,100,bodytext,,,庄春江
+NULL,93,626,100,bodytext,,,庄春江
+NULL,93,627,100,bodytext,,,庄春江
+NULL,93,628,100,bodytext,,,庄春江
+NULL,93,629,4,subhead,Niccadānaanukulayaññaṃ,经常性施物-随家牲祭,庄春江
+NULL,93,630,100,bodytext,,,庄春江
+NULL,93,631,100,bodytext,,,庄春江
+NULL,93,632,100,bodytext,,,庄春江
+NULL,93,633,100,bodytext,,,庄春江
+NULL,93,634,100,bodytext,,,庄春江
+NULL,93,635,100,bodytext,,,庄春江
+NULL,93,636,100,bodytext,,,庄春江
+NULL,93,637,100,bodytext,,,庄春江
+NULL,93,638,100,bodytext,,,庄春江
+NULL,93,639,100,bodytext,,,庄春江
+NULL,93,640,100,bodytext,,,庄春江
+NULL,93,641,100,bodytext,,,庄春江
+NULL,93,642,100,bodytext,,,庄春江
+NULL,93,643,100,bodytext,,,庄春江
+NULL,93,644,100,bodytext,,,庄春江
+NULL,93,645,100,bodytext,,,庄春江
+NULL,93,646,100,bodytext,,,庄春江
+NULL,93,647,100,bodytext,,,庄春江
+NULL,93,648,100,bodytext,,,庄春江
+NULL,93,649,100,bodytext,,,庄春江
+NULL,93,650,100,bodytext,,,庄春江
+NULL,93,651,100,bodytext,,,庄春江
+NULL,93,652,4,subhead,Kūṭadantaupāsakattapaṭivedanā,古得旦得-作为优婆塞的陈述,庄春江
+NULL,93,653,100,bodytext,,,庄春江
+NULL,93,654,4,subhead,Sotāpattiphalasacchikiriyā,入流果的作证,庄春江
+NULL,93,655,100,bodytext,,,庄春江
+NULL,93,656,100,bodytext,,,庄春江
+NULL,93,657,100,bodytext,,,庄春江
+NULL,93,658,100,bodytext,,,庄春江
+NULL,93,659,100,bodytext,,,庄春江
+NULL,93,660,100,centered,,,庄春江
+NULL,93,661,2,chapter,6. Mahālisuttaṃ,6、摩诃里经,庄春江
+NULL,93,662,4,subhead,Brāhmaṇadūtavatthu,婆罗门使者的事,庄春江
+NULL,93,663,100,bodytext,,,庄春江
+NULL,93,664,100,bodytext,,,庄春江
+NULL,93,665,4,subhead,Oṭṭhaddhalicchavīvatthu,(暂缺),庄春江
+NULL,93,666,100,bodytext,,,庄春江
+NULL,93,667,100,bodytext,,,庄春江
+NULL,93,668,100,bodytext,,,庄春江
+NULL,93,669,100,bodytext,,,庄春江
+NULL,93,670,100,bodytext,,,庄春江
+NULL,93,671,4,subhead,Ekaṃsabhāvitasamādhi,修习一边之定,庄春江
+NULL,93,672,100,bodytext,,,庄春江
+NULL,93,673,100,bodytext,,,庄春江
+NULL,93,674,100,bodytext,,,庄春江
+NULL,93,675,100,bodytext,,,庄春江
+NULL,93,676,100,bodytext,,,庄春江
+NULL,93,677,100,bodytext,,,庄春江
+NULL,93,678,100,bodytext,,,庄春江
+NULL,93,679,100,bodytext,,,庄春江
+NULL,93,680,4,subhead,Catuariyaphalaṃ,四种圣者之果,庄春江
+NULL,93,681,100,bodytext,,,庄春江
+NULL,93,682,100,bodytext,,,庄春江
+NULL,93,683,100,bodytext,,,庄春江
+NULL,93,684,100,bodytext,,,庄春江
+NULL,93,685,4,subhead,Ariyaaṭṭhaṅgikamaggo,八支圣道,庄春江
+NULL,93,686,100,bodytext,,,庄春江
+NULL,93,687,100,bodytext,,,庄春江
+NULL,93,688,4,subhead,Dvepabbajitavatthu,二位出家者的事,庄春江
+NULL,93,689,100,bodytext,,,庄春江
+NULL,93,690,100,bodytext,,,庄春江
+NULL,93,691,100,centered,,,庄春江
+NULL,93,692,2,chapter,7. Jāliyasuttaṃ,7、若里亚经,庄春江
+NULL,93,693,4,subhead,Dvepabbajitavatthu,二位出家者的事,庄春江
+NULL,93,694,100,bodytext,,,庄春江
+NULL,93,695,100,bodytext,,,庄春江
+NULL,93,696,100,bodytext,,,庄春江
+NULL,93,697,100,centered,,,庄春江
+NULL,93,698,2,chapter,8. Mahāsīhanādasuttaṃ,8、狮子吼大经,庄春江
+NULL,93,699,4,subhead,Acelakassapavatthu,裸体迦叶的事,庄春江
+NULL,93,700,100,bodytext,,,庄春江
+NULL,93,701,100,bodytext,,,庄春江
+NULL,93,702,100,bodytext,,,庄春江
+NULL,93,703,100,bodytext,,,庄春江
+NULL,93,704,100,bodytext,,,庄春江
+NULL,93,705,4,subhead,Samanuyuñjāpanakathā,审问的谈说,庄春江
+NULL,93,706,100,bodytext,,,庄春江
+NULL,93,707,100,bodytext,,,庄春江
+NULL,93,708,100,bodytext,,,庄春江
+NULL,93,709,100,bodytext,,,庄春江
+NULL,93,710,100,bodytext,,,庄春江
+NULL,93,711,100,bodytext,,,庄春江
+NULL,93,712,100,bodytext,,,庄春江
+NULL,93,713,100,bodytext,,,庄春江
+NULL,93,714,4,subhead,Ariyo aṭṭhaṅgiko maggo,八支圣道,庄春江
+NULL,93,715,100,bodytext,,,庄春江
+NULL,93,716,4,subhead,Tapopakkamakathā,苦行着手者的谈说,庄春江
+NULL,93,717,100,bodytext,,,庄春江
+NULL,93,718,100,bodytext,,,庄春江
+NULL,93,719,100,bodytext,,,庄春江
+NULL,93,720,4,subhead,Tapopakkamaniratthakathā,无利益的苦行着手者的谈说,庄春江
+NULL,93,721,100,bodytext,,,庄春江
+NULL,93,722,100,bodytext,,,庄春江
+NULL,93,723,100,bodytext,,,庄春江
+NULL,93,724,100,bodytext,,,庄春江
+NULL,93,725,100,bodytext,,,庄春江
+NULL,93,726,100,bodytext,,,庄春江
+NULL,93,727,100,bodytext,,,庄春江
+NULL,93,728,100,bodytext,,,庄春江
+NULL,93,729,100,bodytext,,,庄春江
+NULL,93,730,100,bodytext,,,庄春江
+NULL,93,731,100,bodytext,,,庄春江
+NULL,93,732,100,bodytext,,,庄春江
+NULL,93,733,100,bodytext,,,庄春江
+NULL,93,734,100,bodytext,,,庄春江
+NULL,93,735,100,bodytext,,,庄春江
+NULL,93,736,100,bodytext,,,庄春江
+NULL,93,737,100,bodytext,,,庄春江
+NULL,93,738,100,bodytext,,,庄春江
+NULL,93,739,100,bodytext,,,庄春江
+NULL,93,740,100,bodytext,,,庄春江
+NULL,93,741,100,bodytext,,,庄春江
+NULL,93,742,4,subhead,Sīlasamādhipaññāsampadā,戒定慧具足,庄春江
+NULL,93,743,100,bodytext,,,庄春江
+NULL,93,744,100,bodytext,,,庄春江
+NULL,93,745,100,bodytext,,,庄春江
+NULL,93,746,100,bodytext,,,庄春江
+NULL,93,747,100,bodytext,,,庄春江
+NULL,93,748,100,bodytext,,,庄春江
+NULL,93,749,4,subhead,Sīhanādakathā,狮子吼的谈说,庄春江
+NULL,93,750,100,bodytext,,,庄春江
+NULL,93,751,100,bodytext,,,庄春江
+NULL,93,752,100,bodytext,,,庄春江
+NULL,93,753,100,bodytext,,,庄春江
+NULL,93,754,100,bodytext,,,庄春江
+NULL,93,755,100,bodytext,,,庄春江
+NULL,93,756,100,bodytext,,,庄春江
+NULL,93,757,4,subhead,Titthiyaparivāsakathā,外道别住的谈说,庄春江
+NULL,93,758,100,bodytext,,,庄春江
+NULL,93,759,100,bodytext,,,庄春江
+NULL,93,760,100,bodytext,,,庄春江
+NULL,93,761,100,centered,,,庄春江
+NULL,93,762,2,chapter,9. Poṭṭhapādasuttaṃ,9、玻得播达经,庄春江
+NULL,93,763,4,subhead,Poṭṭhapādaparibbājakavatthu,游行者玻得播达的事,庄春江
+NULL,93,764,100,bodytext,,,庄春江
+NULL,93,765,100,bodytext,,,庄春江
+NULL,93,766,100,bodytext,,,庄春江
+NULL,93,767,100,bodytext,,,庄春江
+NULL,93,768,100,bodytext,,,庄春江
+NULL,93,769,100,bodytext,,,庄春江
+NULL,93,770,4,subhead,Abhisaññānirodhakathā,增上想灭的谈说,庄春江
+NULL,93,771,100,bodytext,,,庄春江
+NULL,93,772,100,bodytext,,,庄春江
+NULL,93,773,100,bodytext,,,庄春江
+NULL,93,774,100,bodytext,,,庄春江
+NULL,93,775,100,bodytext,,,庄春江
+NULL,93,776,4,subhead,Sahetukasaññuppādanirodhakathā,想生灭有因的谈说,庄春江
+NULL,93,777,100,bodytext,,,庄春江
+NULL,93,778,100,bodytext,,,庄春江
+NULL,93,779,100,bodytext,,,庄春江
+NULL,93,780,100,bodytext,,,庄春江
+NULL,93,781,100,bodytext,,,庄春江
+NULL,93,782,100,bodytext,,,庄春江
+NULL,93,783,100,bodytext,,,庄春江
+NULL,93,784,100,bodytext,,,庄春江
+NULL,93,785,100,bodytext,,,庄春江
+NULL,93,786,100,bodytext,,,庄春江
+NULL,93,787,100,bodytext,,,庄春江
+NULL,93,788,100,bodytext,,,庄春江
+NULL,93,789,4,subhead,Saññāattakathā,想-真我的谈说,庄春江
+NULL,93,790,100,bodytext,,,庄春江
+NULL,93,791,100,bodytext,,,庄春江
+NULL,93,792,100,bodytext,,,庄春江
+NULL,93,793,100,bodytext,,,庄春江
+NULL,93,794,100,bodytext,,,庄春江
+NULL,93,795,100,bodytext,,,庄春江
+NULL,93,796,100,bodytext,,,庄春江
+NULL,93,797,100,bodytext,,,庄春江
+NULL,93,798,100,bodytext,,,庄春江
+NULL,93,799,100,bodytext,,,庄春江
+NULL,93,800,100,bodytext,,,庄春江
+NULL,93,801,100,bodytext,,,庄春江
+NULL,93,802,4,subhead,Cittahatthisāriputtapoṭṭhapādavatthu,质多象舍利弗与玻得播达的事,庄春江
+NULL,93,803,100,bodytext,,,庄春江
+NULL,93,804,100,bodytext,,,庄春江
+NULL,93,805,100,bodytext,,,庄春江
+NULL,93,806,100,bodytext,,,庄春江
+NULL,93,807,4,subhead,Ekaṃsikadhammo,明确法,庄春江
+NULL,93,808,100,bodytext,,,庄春江
+NULL,93,809,100,bodytext,,,庄春江
+NULL,93,810,100,bodytext,,,庄春江
+NULL,93,811,100,bodytext,,,庄春江
+NULL,93,812,100,bodytext,,,庄春江
+NULL,93,813,100,bodytext,,,庄春江
+NULL,93,814,100,bodytext,,,庄春江
+NULL,93,815,100,bodytext,,,庄春江
+NULL,93,816,100,bodytext,,,庄春江
+NULL,93,817,100,bodytext,,,庄春江
+NULL,93,818,100,bodytext,,,庄春江
+NULL,93,819,100,bodytext,,,庄春江
+NULL,93,820,100,bodytext,,,庄春江
+NULL,93,821,100,bodytext,,,庄春江
+NULL,93,822,100,bodytext,,,庄春江
+NULL,93,823,100,bodytext,,,庄春江
+NULL,93,824,100,bodytext,,,庄春江
+NULL,93,825,100,bodytext,,,庄春江
+NULL,93,826,4,subhead,Tayo attapaṭilābhā,三种真我取得,庄春江
+NULL,93,827,100,bodytext,,,庄春江
+NULL,93,828,100,bodytext,,,庄春江
+NULL,93,829,100,bodytext,,,庄春江
+NULL,93,830,100,bodytext,,,庄春江
+NULL,93,831,100,bodytext,,,庄春江
+NULL,93,832,100,bodytext,,,庄春江
+NULL,93,833,100,bodytext,,,庄春江
+NULL,93,834,100,bodytext,,,庄春江
+NULL,93,835,100,bodytext,,,庄春江
+NULL,93,836,100,bodytext,,,庄春江
+NULL,93,837,100,bodytext,,,庄春江
+NULL,93,838,100,bodytext,,,庄春江
+NULL,93,839,100,bodytext,,,庄春江
+NULL,93,840,100,bodytext,,,庄春江
+NULL,93,841,100,bodytext,,,庄春江
+NULL,93,842,100,bodytext,,,庄春江
+NULL,93,843,100,bodytext,,,庄春江
+NULL,93,844,100,bodytext,,,庄春江
+NULL,93,845,100,bodytext,,,庄春江
+NULL,93,846,100,bodytext,,,庄春江
+NULL,93,847,100,bodytext,,,庄春江
+NULL,93,848,4,subhead,Cittahatthisāriputtaupasampadā,质多象舍利弗受具足戒,庄春江
+NULL,93,849,100,bodytext,,,庄春江
+NULL,93,850,100,bodytext,,,庄春江
+NULL,93,851,100,centered,,,庄春江
+NULL,93,852,2,chapter,10. Subhasuttaṃ,10、苏玻经,庄春江
+NULL,93,853,4,subhead,Subhamāṇavavatthu,学生婆罗门苏玻的事,庄春江
+NULL,93,854,100,bodytext,,,庄春江
+NULL,93,855,100,bodytext,,,庄春江
+NULL,93,856,100,bodytext,,,庄春江
+NULL,93,857,100,bodytext,,,庄春江
+NULL,93,858,100,bodytext,,,庄春江
+NULL,93,859,100,bodytext,,,庄春江
+NULL,93,860,100,bodytext,,,庄春江
+NULL,93,861,100,bodytext,,,庄春江
+NULL,93,862,4,subhead,Sīlakkhandho,戒蕴,庄春江
+NULL,93,863,100,bodytext,,,庄春江
+NULL,93,864,100,bodytext,,,庄春江
+NULL,93,865,100,bodytext,,,庄春江
+NULL,93,866,100,bodytext,,,庄春江
+NULL,93,867,100,bodytext,,,庄春江
+NULL,93,868,100,bodytext,,,庄春江
+NULL,93,869,100,bodytext,,,庄春江
+NULL,93,870,4,subhead,Samādhikkhandho,定蕴,庄春江
+NULL,93,871,100,bodytext,,,庄春江
+NULL,93,872,100,bodytext,,,庄春江
+NULL,93,873,100,bodytext,,,庄春江
+NULL,93,874,100,bodytext,,,庄春江
+NULL,93,875,100,bodytext,,,庄春江
+NULL,93,876,100,bodytext,,,庄春江
+NULL,93,877,100,bodytext,,,庄春江
+NULL,93,878,100,bodytext,,,庄春江
+NULL,93,879,100,bodytext,,,庄春江
+NULL,93,880,100,bodytext,,,庄春江
+NULL,93,881,100,bodytext,,,庄春江
+NULL,93,882,100,bodytext,,,庄春江
+NULL,93,883,100,bodytext,,,庄春江
+NULL,93,884,100,bodytext,,,庄春江
+NULL,93,885,100,bodytext,,,庄春江
+NULL,93,886,100,bodytext,,,庄春江
+NULL,93,887,100,bodytext,,,庄春江
+NULL,93,888,100,bodytext,,,庄春江
+NULL,93,889,100,bodytext,,,庄春江
+NULL,93,890,100,bodytext,,,庄春江
+NULL,93,891,100,bodytext,,,庄春江
+NULL,93,892,100,bodytext,,,庄春江
+NULL,93,893,100,bodytext,,,庄春江
+NULL,93,894,100,bodytext,,,庄春江
+NULL,93,895,4,subhead,Paññākkhandho,慧蕴,庄春江
+NULL,93,896,100,bodytext,,,庄春江
+NULL,93,897,100,bodytext,,,庄春江
+NULL,93,898,100,bodytext,,,庄春江
+NULL,93,899,100,bodytext,,,庄春江
+NULL,93,900,100,bodytext,,,庄春江
+NULL,93,901,100,bodytext,,,庄春江
+NULL,93,902,100,bodytext,,,庄春江
+NULL,93,903,100,bodytext,,,庄春江
+NULL,93,904,100,bodytext,,,庄春江
+NULL,93,905,100,bodytext,,,庄春江
+NULL,93,906,100,bodytext,,,庄春江
+NULL,93,907,100,bodytext,,,庄春江
+NULL,93,908,100,bodytext,,,庄春江
+NULL,93,909,100,bodytext,,,庄春江
+NULL,93,910,100,bodytext,,,庄春江
+NULL,93,911,100,bodytext,,,庄春江
+NULL,93,912,100,bodytext,,,庄春江
+NULL,93,913,100,bodytext,,,庄春江
+NULL,93,914,100,centered,,,庄春江
+NULL,93,915,2,chapter,11. Kevaṭṭasuttaṃ,11、给哇得经,庄春江
+NULL,93,916,4,subhead,Kevaṭṭagahapatiputtavatthu,屋主之子给哇得的事,庄春江
+NULL,93,917,100,bodytext,,,庄春江
+NULL,93,918,100,bodytext,,,庄春江
+NULL,93,919,100,bodytext,,,庄春江
+NULL,93,920,4,subhead,Iddhipāṭihāriyaṃ,神通神变,庄春江
+NULL,93,921,100,bodytext,,,庄春江
+NULL,93,922,100,bodytext,,,庄春江
+NULL,93,923,100,bodytext,,,庄春江
+NULL,93,924,100,bodytext,,,庄春江
+NULL,93,925,100,bodytext,,,庄春江
+NULL,93,926,100,bodytext,,,庄春江
+NULL,93,927,4,subhead,Ādesanāpāṭihāriyaṃ,记心神变,庄春江
+NULL,93,928,100,bodytext,,,庄春江
+NULL,93,929,100,bodytext,,,庄春江
+NULL,93,930,100,bodytext,,,庄春江
+NULL,93,931,100,bodytext,,,庄春江
+NULL,93,932,4,subhead,Anusāsanīpāṭihāriyaṃ,教诫神变,庄春江
+NULL,93,933,100,bodytext,,,庄春江
+NULL,93,934,100,bodytext,,,庄春江
+NULL,93,935,100,bodytext,,,庄春江
+NULL,93,936,4,subhead,Bhūtanirodhesakabhikkhuvatthu,比丘寻求存在的灭的事,庄春江
+NULL,93,937,100,bodytext,,,庄春江
+NULL,93,938,100,bodytext,,,庄春江
+NULL,93,939,100,bodytext,,,庄春江
+NULL,93,940,100,bodytext,,,庄春江
+NULL,93,941,100,bodytext,,,庄春江
+NULL,93,942,100,bodytext,,,庄春江
+NULL,93,943,100,bodytext,,,庄春江
+NULL,93,944,100,bodytext,,,庄春江
+NULL,93,945,100,bodytext,,,庄春江
+NULL,93,946,100,bodytext,,,庄春江
+NULL,93,947,100,bodytext,,,庄春江
+NULL,93,948,100,bodytext,,,庄春江
+NULL,93,949,100,bodytext,,,庄春江
+NULL,93,950,100,bodytext,,,庄春江
+NULL,93,951,4,subhead,Tīradassisakuṇupamā,寻岸鸟的譬喻,庄春江
+NULL,93,952,100,bodytext,,,庄春江
+NULL,93,953,100,bodytext,,,庄春江
+NULL,93,954,100,gatha1,,,庄春江
+NULL,93,955,100,gatha2,,,庄春江
+NULL,93,956,100,gathalast,,,庄春江
+NULL,93,957,100,bodytext,,,庄春江
+NULL,93,958,100,gatha1,,,庄春江
+NULL,93,959,100,gathalast,,,庄春江
+NULL,93,960,100,gatha1,,,庄春江
+NULL,93,961,100,gatha2,,,庄春江
+NULL,93,962,100,gathalast,,,庄春江
+NULL,93,963,100,bodytext,,,庄春江
+NULL,93,964,100,centered,,,庄春江
+NULL,93,965,2,chapter,12. Lohiccasuttaṃ,12、罗希者经,庄春江
+NULL,93,966,4,subhead,Lohiccabrāhmaṇavatthu,罗希者婆罗门的事,庄春江
+NULL,93,967,100,bodytext,,,庄春江
+NULL,93,968,100,bodytext,,,庄春江
+NULL,93,969,100,bodytext,,,庄春江
+NULL,93,970,100,bodytext,,,庄春江
+NULL,93,971,100,bodytext,,,庄春江
+NULL,93,972,100,bodytext,,,庄春江
+NULL,93,973,100,bodytext,,,庄春江
+NULL,93,974,100,bodytext,,,庄春江
+NULL,93,975,100,bodytext,,,庄春江
+NULL,93,976,4,subhead,Lohiccabrāhmaṇānuyogo,罗希者婆罗门的实行,庄春江
+NULL,93,977,100,bodytext,,,庄春江
+NULL,93,978,100,bodytext,,,庄春江
+NULL,93,979,100,bodytext,,,庄春江
+NULL,93,980,100,bodytext,,,庄春江
+NULL,93,981,100,bodytext,,,庄春江
+NULL,93,982,100,bodytext,,,庄春江
+NULL,93,983,4,subhead,Tayo codanārahā,三种适合呵责者,庄春江
+NULL,93,984,100,bodytext,,,庄春江
+NULL,93,985,100,bodytext,,,庄春江
+NULL,93,986,100,bodytext,,,庄春江
+NULL,93,987,4,subhead,Nacodanārahasatthu,不适合呵责的大师,庄春江
+NULL,93,988,100,bodytext,,,庄春江
+NULL,93,989,100,bodytext,,,庄春江
+NULL,93,990,100,bodytext,,,庄春江
+NULL,93,991,100,centered,,,庄春江
+NULL,93,992,2,chapter,13. Tevijjasuttaṃ,13、三明经,庄春江
+NULL,93,993,100,bodytext,,,庄春江
+NULL,93,994,100,bodytext,,,庄春江
+NULL,93,995,100,bodytext,,,庄春江
+NULL,93,996,100,bodytext,,,庄春江
+NULL,93,997,4,subhead,Maggāmaggakathā,道、非道的谈说,庄春江
+NULL,93,998,100,bodytext,,,庄春江
+NULL,93,999,100,bodytext,,,庄春江
+NULL,93,1000,100,bodytext,,,庄春江
+NULL,93,1001,100,bodytext,,,庄春江
+NULL,93,1002,4,subhead,Vāseṭṭhamāṇavānuyogo,学生婆罗门袜谢德的实行,庄春江
+NULL,93,1003,100,bodytext,,,庄春江
+NULL,93,1004,100,bodytext,,,庄春江
+NULL,93,1005,100,bodytext,,,庄春江
+NULL,93,1006,100,bodytext,,,庄春江
+NULL,93,1007,100,bodytext,,,庄春江
+NULL,93,1008,100,bodytext,,,庄春江
+NULL,93,1009,100,bodytext,,,庄春江
+NULL,93,1010,100,bodytext,,,庄春江
+NULL,93,1011,100,bodytext,,,庄春江
+NULL,93,1012,100,bodytext,,,庄春江
+NULL,93,1013,100,bodytext,,,庄春江
+NULL,93,1014,100,bodytext,,,庄春江
+NULL,93,1015,100,bodytext,,,庄春江
+NULL,93,1016,100,bodytext,,,庄春江
+NULL,93,1017,100,bodytext,,,庄春江
+NULL,93,1018,100,bodytext,,,庄春江
+NULL,93,1019,100,bodytext,,,庄春江
+NULL,93,1020,4,subhead,Janapadakalyāṇīupamā,地方上美女的譬喻,庄春江
+NULL,93,1021,100,bodytext,,,庄春江
+NULL,93,1022,100,bodytext,,,庄春江
+NULL,93,1023,100,bodytext,,,庄春江
+NULL,93,1024,100,bodytext,,,庄春江
+NULL,93,1025,100,bodytext,,,庄春江
+NULL,93,1026,100,bodytext,,,庄春江
+NULL,93,1027,4,subhead,Nisseṇīupamā,阶梯的譬喻,庄春江
+NULL,93,1028,100,bodytext,,,庄春江
+NULL,93,1029,100,bodytext,,,庄春江
+NULL,93,1030,100,bodytext,,,庄春江
+NULL,93,1031,100,bodytext,,,庄春江
+NULL,93,1032,100,bodytext,,,庄春江
+NULL,93,1033,100,bodytext,,,庄春江
+NULL,93,1034,4,subhead,Aciravatīnadīupamā,阿致罗筏底河的譬喻,庄春江
+NULL,93,1035,100,bodytext,,,庄春江
+NULL,93,1036,100,bodytext,,,庄春江
+NULL,93,1037,100,bodytext,,,庄春江
+NULL,93,1038,100,bodytext,,,庄春江
+NULL,93,1039,100,bodytext,,,庄春江
+NULL,93,1040,100,bodytext,,,庄春江
+NULL,93,1041,100,bodytext,,,庄春江
+NULL,93,1042,100,bodytext,,,庄春江
+NULL,93,1043,100,bodytext,,,庄春江
+NULL,93,1044,100,bodytext,,,庄春江
+NULL,93,1045,100,bodytext,,,庄春江
+NULL,93,1046,100,bodytext,,,庄春江
+NULL,93,1047,4,subhead,Saṃsandanakathā,合流的谈说,庄春江
+NULL,93,1048,100,bodytext,,,庄春江
+NULL,93,1049,100,bodytext,,,庄春江
+NULL,93,1050,100,bodytext,,,庄春江
+NULL,93,1051,100,bodytext,,,庄春江
+NULL,93,1052,100,bodytext,,,庄春江
+NULL,93,1053,100,bodytext,,,庄春江
+NULL,93,1054,100,bodytext,,,庄春江
+NULL,93,1055,100,bodytext,,,庄春江
+NULL,93,1056,100,bodytext,,,庄春江
+NULL,93,1057,4,subhead,Brahmalokamaggadesanā,梵天世界之道的教导,庄春江
+NULL,93,1058,100,bodytext,,,庄春江
+NULL,93,1059,100,bodytext,,,庄春江
+NULL,93,1060,100,bodytext,,,庄春江
+NULL,93,1061,100,bodytext,,,庄春江
+NULL,93,1062,100,bodytext,,,庄春江
+NULL,93,1063,100,bodytext,,,庄春江
+NULL,93,1064,100,bodytext,,,庄春江
+NULL,93,1065,100,bodytext,,,庄春江
+NULL,93,1066,100,bodytext,,,庄春江
+NULL,93,1067,100,centered,,,庄春江
+NULL,93,1068,100,centered,,,庄春江
+NULL,93,1069,100,bodytext,,,庄春江
+NULL,93,1070,100,gatha1,,,庄春江
+NULL,93,1071,100,gatha2,,,庄春江
+NULL,93,1072,100,gatha3,,,庄春江
+NULL,93,1073,100,gathalast,,,庄春江
+NULL,93,1074,100,centered,,,庄春江

+ 0 - 1560
pali_title/94_zh-cn.csv

@@ -1,1560 +0,0 @@
-id,book,par_num,100,class,title,text
-NULL,p94,1,100,centered,,
-NULL,p94,2,100,nikaya,,
-NULL,p94,3,1,book,Mahāvaggapāḷi,大品
-NULL,p94,4,2,chapter,1. Mahāpadānasuttaṃ,14、譬喻大经
-NULL,p94,5,4,subhead,Pubbenivāsapaṭisaṃyuttakathā,与前世住处有关的谈说
-NULL,p94,6,100,bodytext,,
-NULL,p94,7,100,bodytext,,
-NULL,p94,8,100,bodytext,,
-NULL,p94,9,100,bodytext,,
-NULL,p94,10,100,bodytext,,
-NULL,p94,11,100,bodytext,,
-NULL,p94,12,100,bodytext,,
-NULL,p94,13,100,bodytext,,
-NULL,p94,14,100,bodytext,,
-NULL,p94,15,100,bodytext,,
-NULL,p94,16,100,bodytext,,
-NULL,p94,17,100,bodytext,,
-NULL,p94,18,100,bodytext,,
-NULL,p94,19,100,bodytext,,
-NULL,p94,20,100,bodytext,,
-NULL,p94,21,100,bodytext,,
-NULL,p94,22,100,bodytext,,
-NULL,p94,23,100,bodytext,,
-NULL,p94,24,100,bodytext,,
-NULL,p94,25,100,bodytext,,
-NULL,p94,26,100,bodytext,,
-NULL,p94,27,100,bodytext,,
-NULL,p94,28,100,bodytext,,
-NULL,p94,29,100,bodytext,,
-NULL,p94,30,100,bodytext,,
-NULL,p94,31,100,bodytext,,
-NULL,p94,32,100,bodytext,,
-NULL,p94,33,100,bodytext,,
-NULL,p94,34,100,bodytext,,
-NULL,p94,35,100,bodytext,,
-NULL,p94,36,100,bodytext,,
-NULL,p94,37,100,bodytext,,
-NULL,p94,38,4,subhead,Bodhisattadhammatā,菩萨常法
-NULL,p94,39,100,bodytext,,
-NULL,p94,40,100,bodytext,,
-NULL,p94,41,100,bodytext,,
-NULL,p94,42,100,bodytext,,
-NULL,p94,43,100,bodytext,,
-NULL,p94,44,100,bodytext,,
-NULL,p94,45,100,bodytext,,
-NULL,p94,46,100,bodytext,,
-NULL,p94,47,100,bodytext,,
-NULL,p94,48,100,bodytext,,
-NULL,p94,49,100,bodytext,,
-NULL,p94,50,100,bodytext,,
-NULL,p94,51,100,bodytext,,
-NULL,p94,52,100,bodytext,,
-NULL,p94,53,100,bodytext,,
-NULL,p94,54,100,bodytext,,
-NULL,p94,55,4,subhead,Dvattiṃsamahāpurisalakkhaṇā,三十二大丈夫相
-NULL,p94,56,100,bodytext,,
-NULL,p94,57,100,bodytext,,
-NULL,p94,58,100,bodytext,,
-NULL,p94,59,100,bodytext,,
-NULL,p94,60,100,bodytext,,
-NULL,p94,61,100,bodytext,,
-NULL,p94,62,100,bodytext,,
-NULL,p94,63,100,bodytext,,
-NULL,p94,64,100,bodytext,,
-NULL,p94,65,100,bodytext,,
-NULL,p94,66,100,bodytext,,
-NULL,p94,67,100,bodytext,,
-NULL,p94,68,100,bodytext,,
-NULL,p94,69,100,bodytext,,
-NULL,p94,70,100,bodytext,,
-NULL,p94,71,100,bodytext,,
-NULL,p94,72,100,bodytext,,
-NULL,p94,73,100,bodytext,,
-NULL,p94,74,100,bodytext,,
-NULL,p94,75,100,bodytext,,
-NULL,p94,76,100,bodytext,,
-NULL,p94,77,100,bodytext,,
-NULL,p94,78,100,bodytext,,
-NULL,p94,79,100,bodytext,,
-NULL,p94,80,100,bodytext,,
-NULL,p94,81,100,bodytext,,
-NULL,p94,82,100,bodytext,,
-NULL,p94,83,100,bodytext,,
-NULL,p94,84,100,bodytext,,
-NULL,p94,85,100,bodytext,,
-NULL,p94,86,100,bodytext,,
-NULL,p94,87,100,bodytext,,
-NULL,p94,88,100,bodytext,,
-NULL,p94,89,100,bodytext,,
-NULL,p94,90,100,bodytext,,
-NULL,p94,91,4,subhead,Vipassīsamaññā,毗婆尸的称呼
-NULL,p94,92,100,bodytext,,
-NULL,p94,93,100,bodytext,,
-NULL,p94,94,100,bodytext,,
-NULL,p94,95,100,bodytext,,
-NULL,p94,96,100,bodytext,,
-NULL,p94,97,100,bodytext,,
-NULL,p94,98,100,centered,,
-NULL,p94,99,4,subhead,Jiṇṇapuriso,老年人
-NULL,p94,100,100,bodytext,,
-NULL,p94,101,100,bodytext,,
-NULL,p94,102,100,bodytext,,
-NULL,p94,103,100,bodytext,,
-NULL,p94,104,4,subhead,Byādhitapuriso,病人
-NULL,p94,105,100,bodytext,,
-NULL,p94,106,100,bodytext,,
-NULL,p94,107,100,bodytext,,
-NULL,p94,108,100,bodytext,,
-NULL,p94,109,100,bodytext,,
-NULL,p94,110,4,subhead,Kālaṅkatapuriso,死人
-NULL,p94,111,100,bodytext,,
-NULL,p94,112,100,bodytext,,
-NULL,p94,113,100,bodytext,,
-NULL,p94,114,100,bodytext,,
-NULL,p94,115,4,subhead,Pabbajito,出家
-NULL,p94,116,100,bodytext,,
-NULL,p94,117,100,bodytext,,
-NULL,p94,118,100,bodytext,,
-NULL,p94,119,4,subhead,Bodhisattapabbajjā,菩萨出家
-NULL,p94,120,100,bodytext,,
-NULL,p94,121,4,subhead,Mahājanakāyaanupabbajjā,大群众跟随出家
-NULL,p94,122,100,bodytext,,
-NULL,p94,123,100,bodytext,,
-NULL,p94,124,100,bodytext,,
-NULL,p94,125,4,subhead,Bodhisattaabhiniveso,菩萨-上安住
-NULL,p94,126,100,bodytext,,
-NULL,p94,127,100,bodytext,,
-NULL,p94,128,100,bodytext,,
-NULL,p94,129,100,bodytext,,
-NULL,p94,130,100,bodytext,,
-NULL,p94,131,100,bodytext,,
-NULL,p94,132,100,bodytext,,
-NULL,p94,133,100,bodytext,,
-NULL,p94,134,100,bodytext,,
-NULL,p94,135,100,bodytext,,
-NULL,p94,136,100,bodytext,,
-NULL,p94,137,100,bodytext,,
-NULL,p94,138,100,bodytext,,
-NULL,p94,139,100,bodytext,,
-NULL,p94,140,100,bodytext,,
-NULL,p94,141,100,bodytext,,
-NULL,p94,142,100,bodytext,,
-NULL,p94,143,100,bodytext,,
-NULL,p94,144,100,bodytext,,
-NULL,p94,145,100,bodytext,,
-NULL,p94,146,100,bodytext,,
-NULL,p94,147,100,bodytext,,
-NULL,p94,148,100,bodytext,,
-NULL,p94,149,100,bodytext,,
-NULL,p94,150,100,bodytext,,
-NULL,p94,151,100,bodytext,,
-NULL,p94,152,100,centered,,
-NULL,p94,153,4,subhead,Brahmayācanakathā,梵天劝请的谈说
-NULL,p94,154,100,bodytext,,
-NULL,p94,155,100,bodytext,,
-NULL,p94,156,100,gatha1,,
-NULL,p94,157,100,gathalast,,
-NULL,p94,158,100,gatha1,,
-NULL,p94,159,100,gathalast,,
-NULL,p94,160,100,bodytext,,
-NULL,p94,161,100,bodytext,,
-NULL,p94,162,100,bodytext,,
-NULL,p94,163,100,gatha1,,
-NULL,p94,164,100,gathalast,,
-NULL,p94,165,100,gatha1,,
-NULL,p94,166,100,gathalast,,
-NULL,p94,167,100,bodytext,,
-NULL,p94,168,100,bodytext,,
-NULL,p94,169,100,bodytext,,
-NULL,p94,170,100,bodytext,,
-NULL,p94,171,100,gatha1,,
-NULL,p94,172,100,gathalast,,
-NULL,p94,173,100,gatha1,,
-NULL,p94,174,100,gatha2,,
-NULL,p94,175,100,gatha3,,
-NULL,p94,176,100,gatha2,,
-NULL,p94,177,100,gatha3,,
-NULL,p94,178,100,gathalast,,
-NULL,p94,179,100,bodytext,,
-NULL,p94,180,100,gatha1,,
-NULL,p94,181,100,gatha2,,
-NULL,p94,182,100,gatha3,,
-NULL,p94,183,100,gathalast,,
-NULL,p94,184,100,bodytext,,
-NULL,p94,185,4,subhead,Aggasāvakayugaṃ,最上双弟子
-NULL,p94,186,100,bodytext,,
-NULL,p94,187,100,bodytext,,
-NULL,p94,188,100,bodytext,,
-NULL,p94,189,100,bodytext,,
-NULL,p94,190,100,bodytext,,
-NULL,p94,191,100,bodytext,,
-NULL,p94,192,4,subhead,Mahājanakāyapabbajjā,大群众的出家
-NULL,p94,193,100,bodytext,,
-NULL,p94,194,100,bodytext,,
-NULL,p94,195,100,bodytext,,
-NULL,p94,196,100,bodytext,,
-NULL,p94,197,4,subhead,Purimapabbajitānaṃ dhammābhisamayo,最初出家者的现观
-NULL,p94,198,100,bodytext,,
-NULL,p94,199,100,bodytext,,
-NULL,p94,200,100,bodytext,,
-NULL,p94,201,100,bodytext,,
-NULL,p94,202,4,subhead,Cārikāanujānanaṃ,允许游行
-NULL,p94,203,100,bodytext,,
-NULL,p94,204,100,bodytext,,
-NULL,p94,205,100,bodytext,,
-NULL,p94,206,100,bodytext,,
-NULL,p94,207,100,bodytext,,
-NULL,p94,208,100,bodytext,,
-NULL,p94,209,100,bodytext,,
-NULL,p94,210,100,gatha1,,
-NULL,p94,211,100,gatha2,,
-NULL,p94,212,100,gatha3,,
-NULL,p94,213,100,gathalast,,
-NULL,p94,214,100,gatha1,,
-NULL,p94,215,100,gathalast,,
-NULL,p94,216,100,gatha1,,
-NULL,p94,217,100,gatha2,,
-NULL,p94,218,100,gathalast,,
-NULL,p94,219,4,subhead,Devatārocanaṃ,天神的告示
-NULL,p94,220,100,bodytext,,
-NULL,p94,221,100,bodytext,,
-NULL,p94,222,100,bodytext,,
-NULL,p94,223,100,bodytext,,
-NULL,p94,224,100,bodytext,,
-NULL,p94,225,100,bodytext,,
-NULL,p94,226,100,bodytext,,
-NULL,p94,227,100,bodytext,,
-NULL,p94,228,100,centered,,
-NULL,p94,229,2,chapter,2. Mahānidānasuttaṃ,15、大因缘经
-NULL,p94,230,4,subhead,Paṭiccasamuppādo,缘起
-NULL,p94,231,100,bodytext,,
-NULL,p94,232,100,bodytext,,
-NULL,p94,233,100,bodytext,,
-NULL,p94,234,100,bodytext,,
-NULL,p94,235,100,bodytext,,
-NULL,p94,236,100,bodytext,,
-NULL,p94,237,100,bodytext,,
-NULL,p94,238,100,bodytext,,
-NULL,p94,239,100,bodytext,,
-NULL,p94,240,100,bodytext,,
-NULL,p94,241,100,bodytext,,
-NULL,p94,242,100,bodytext,,
-NULL,p94,243,100,bodytext,,
-NULL,p94,244,100,bodytext,,
-NULL,p94,245,100,bodytext,,
-NULL,p94,246,100,bodytext,,
-NULL,p94,247,100,bodytext,,
-NULL,p94,248,100,bodytext,,
-NULL,p94,249,100,bodytext,,
-NULL,p94,250,100,bodytext,,
-NULL,p94,251,100,bodytext,,
-NULL,p94,252,100,bodytext,,
-NULL,p94,253,100,bodytext,,
-NULL,p94,254,100,bodytext,,
-NULL,p94,255,100,bodytext,,
-NULL,p94,256,100,bodytext,,
-NULL,p94,257,100,bodytext,,
-NULL,p94,258,100,bodytext,,
-NULL,p94,259,100,bodytext,,
-NULL,p94,260,100,bodytext,,
-NULL,p94,261,4,subhead,Attapaññatti,真我之安立
-NULL,p94,262,100,bodytext,,
-NULL,p94,263,100,bodytext,,
-NULL,p94,264,100,bodytext,,
-NULL,p94,265,100,bodytext,,
-NULL,p94,266,100,bodytext,,
-NULL,p94,267,4,subhead,Naattapaññatti,真我之不安立
-NULL,p94,268,100,bodytext,,
-NULL,p94,269,100,bodytext,,
-NULL,p94,270,100,bodytext,,
-NULL,p94,271,100,bodytext,,
-NULL,p94,272,100,bodytext,,
-NULL,p94,273,4,subhead,Attasamanupassanā,真我之认为
-NULL,p94,274,100,bodytext,,
-NULL,p94,275,100,bodytext,,
-NULL,p94,276,100,bodytext,,
-NULL,p94,277,100,bodytext,,
-NULL,p94,278,100,bodytext,,
-NULL,p94,279,100,bodytext,,
-NULL,p94,280,4,subhead,Satta viññāṇaṭṭhiti,七识住
-NULL,p94,281,100,bodytext,,
-NULL,p94,282,100,bodytext,,
-NULL,p94,283,4,subhead,Aṭṭha vimokkhā,(暂缺)
-NULL,p94,284,100,bodytext,,
-NULL,p94,285,100,bodytext,,
-NULL,p94,286,100,centered,,
-NULL,p94,287,2,chapter,3. Mahāparinibbānasuttaṃ,16、大般涅槃经
-NULL,p94,288,100,bodytext,,
-NULL,p94,289,100,bodytext,,
-NULL,p94,290,4,subhead,Vassakārabrāhmaṇo,作雨者婆罗门
-NULL,p94,291,100,bodytext,,
-NULL,p94,292,4,subhead,Rājaaparihāniyadhammā,国王-不衰退法
-NULL,p94,293,100,bodytext,,
-NULL,p94,294,100,bodytext,,
-NULL,p94,295,100,bodytext,,
-NULL,p94,296,100,bodytext,,
-NULL,p94,297,100,bodytext,,
-NULL,p94,298,100,centered,,
-NULL,p94,299,100,bodytext,,
-NULL,p94,300,100,bodytext,,
-NULL,p94,301,100,bodytext,,
-NULL,p94,302,100,bodytext,,
-NULL,p94,303,4,subhead,Bhikkhuaparihāniyadhammā,比丘-不衰退法
-NULL,p94,304,100,bodytext,,
-NULL,p94,305,100,bodytext,,
-NULL,p94,306,100,bodytext,,
-NULL,p94,307,100,bodytext,,
-NULL,p94,308,100,bodytext,,
-NULL,p94,309,100,bodytext,,
-NULL,p94,310,100,bodytext,,
-NULL,p94,311,100,bodytext,,
-NULL,p94,312,100,bodytext,,
-NULL,p94,313,100,bodytext,,
-NULL,p94,314,100,bodytext,,
-NULL,p94,315,100,bodytext,,
-NULL,p94,316,100,bodytext,,
-NULL,p94,317,100,bodytext,,
-NULL,p94,318,100,bodytext,,
-NULL,p94,319,100,bodytext,,
-NULL,p94,320,100,bodytext,,
-NULL,p94,321,100,bodytext,,
-NULL,p94,322,100,bodytext,,
-NULL,p94,323,100,bodytext,,
-NULL,p94,324,100,bodytext,,
-NULL,p94,325,100,bodytext,,
-NULL,p94,326,100,bodytext,,
-NULL,p94,327,100,bodytext,,
-NULL,p94,328,100,bodytext,,
-NULL,p94,329,100,bodytext,,
-NULL,p94,330,100,bodytext,,
-NULL,p94,331,100,bodytext,,
-NULL,p94,332,100,bodytext,,
-NULL,p94,333,100,bodytext,,
-NULL,p94,334,100,bodytext,,
-NULL,p94,335,100,bodytext,,
-NULL,p94,336,100,bodytext,,
-NULL,p94,337,100,bodytext,,
-NULL,p94,338,100,bodytext,,
-NULL,p94,339,100,bodytext,,
-NULL,p94,340,4,subhead,Sāriputtasīhanādo,舍利弗的狮子吼
-NULL,p94,341,100,bodytext,,
-NULL,p94,342,100,bodytext,,
-NULL,p94,343,100,bodytext,,
-NULL,p94,344,100,bodytext,,
-NULL,p94,345,100,bodytext,,
-NULL,p94,346,100,bodytext,,
-NULL,p94,347,100,bodytext,,
-NULL,p94,348,4,subhead,Dussīlaādīnavā,破戒(坏品德)的过患
-NULL,p94,349,100,bodytext,,
-NULL,p94,350,100,bodytext,,
-NULL,p94,351,100,bodytext,,
-NULL,p94,352,100,bodytext,,
-NULL,p94,353,100,bodytext,,
-NULL,p94,354,100,bodytext,,
-NULL,p94,355,4,subhead,Sīlavanttaānisaṃsā,持戒(有品德)的效益
-NULL,p94,356,100,bodytext,,
-NULL,p94,357,100,bodytext,,
-NULL,p94,358,100,bodytext,,
-NULL,p94,359,100,bodytext,,
-NULL,p94,360,100,bodytext,,
-NULL,p94,361,100,bodytext,,
-NULL,p94,362,4,subhead,Pāṭaliputtanagaramāpanaṃ,华氏城的建筑
-NULL,p94,363,100,bodytext,,
-NULL,p94,364,100,bodytext,,
-NULL,p94,365,100,bodytext,,
-NULL,p94,366,100,gatha1,,
-NULL,p94,367,100,gathalast,,
-NULL,p94,368,100,gatha1,,
-NULL,p94,369,100,gathalast,,
-NULL,p94,370,100,gatha1,,
-NULL,p94,371,100,gathalast,,
-NULL,p94,372,100,bodytext,,
-NULL,p94,373,100,bodytext,,
-NULL,p94,374,100,gatha1,,
-NULL,p94,375,100,gathalast,,
-NULL,p94,376,100,centered,,
-NULL,p94,377,4,subhead,Ariyasaccakathā,圣谛的谈说
-NULL,p94,378,100,bodytext,,
-NULL,p94,379,100,bodytext,,
-NULL,p94,380,100,gatha1,,
-NULL,p94,381,100,gathalast,,
-NULL,p94,382,100,gatha1,,
-NULL,p94,383,100,gathalast,,
-NULL,p94,384,100,bodytext,,
-NULL,p94,385,4,subhead,Anāvattidhammasambodhiparāyaṇā,不还者与以正觉为彼岸
-NULL,p94,386,100,bodytext,,
-NULL,p94,387,100,bodytext,,
-NULL,p94,388,4,subhead,Dhammādāsadhammapariyāyā,法镜法门
-NULL,p94,389,100,bodytext,,
-NULL,p94,390,100,bodytext,,
-NULL,p94,391,100,bodytext,,
-NULL,p94,392,100,bodytext,,
-NULL,p94,393,100,bodytext,,
-NULL,p94,394,100,bodytext,,
-NULL,p94,395,100,bodytext,,
-NULL,p94,396,100,bodytext,,
-NULL,p94,397,100,bodytext,,
-NULL,p94,398,100,bodytext,,
-NULL,p94,399,100,bodytext,,
-NULL,p94,400,100,bodytext,,
-NULL,p94,401,4,subhead,Ambapālīgaṇikā,艺妓蓭婆巴利
-NULL,p94,402,100,bodytext,,
-NULL,p94,403,100,bodytext,,
-NULL,p94,404,100,bodytext,,
-NULL,p94,405,100,bodytext,,
-NULL,p94,406,4,subhead,Veḷuvagāmavassūpagamanaṃ,在木瓜树村进入雨季安居
-NULL,p94,407,100,bodytext,,
-NULL,p94,408,100,bodytext,,
-NULL,p94,409,100,bodytext,,
-NULL,p94,410,100,centered,,
-NULL,p94,411,4,subhead,Nimittobhāsakathā,征相与暗示的谈说
-NULL,p94,412,100,bodytext,,
-NULL,p94,413,100,bodytext,,
-NULL,p94,414,4,subhead,Mārayācanakathā,魔请求的谈说
-NULL,p94,415,100,bodytext,,
-NULL,p94,416,100,bodytext,,
-NULL,p94,417,100,bodytext,,
-NULL,p94,418,100,bodytext,,
-NULL,p94,419,100,bodytext,,
-NULL,p94,420,100,bodytext,,
-NULL,p94,421,4,subhead,Āyusaṅkhāraossajjanaṃ,寿行的舍弃
-NULL,p94,422,100,bodytext,,
-NULL,p94,423,100,gatha1,,
-NULL,p94,424,100,gathalast,,
-NULL,p94,425,4,subhead,Mahābhūmicālahetu,大地震的原因
-NULL,p94,426,100,bodytext,,
-NULL,p94,427,100,bodytext,,
-NULL,p94,428,100,bodytext,,
-NULL,p94,429,100,bodytext,,
-NULL,p94,430,100,bodytext,,
-NULL,p94,431,100,bodytext,,
-NULL,p94,432,100,bodytext,,
-NULL,p94,433,100,bodytext,,
-NULL,p94,434,100,bodytext,,
-NULL,p94,435,100,bodytext,,
-NULL,p94,436,4,subhead,Aṭṭha parisā,八众
-NULL,p94,437,100,bodytext,,
-NULL,p94,438,4,subhead,Aṭṭha abhibhāyatanāni,八胜处
-NULL,p94,439,100,bodytext,,
-NULL,p94,440,100,bodytext,,
-NULL,p94,441,100,bodytext,,
-NULL,p94,442,100,bodytext,,
-NULL,p94,443,100,bodytext,,
-NULL,p94,444,100,bodytext,,
-NULL,p94,445,100,bodytext,,
-NULL,p94,446,100,bodytext,,
-NULL,p94,447,4,subhead,Aṭṭha vimokkhā,八解脱
-NULL,p94,448,100,bodytext,,
-NULL,p94,449,100,bodytext,,
-NULL,p94,450,100,bodytext,,
-NULL,p94,451,100,bodytext,,
-NULL,p94,452,100,bodytext,,
-NULL,p94,453,100,bodytext,,
-NULL,p94,454,100,bodytext,,
-NULL,p94,455,100,bodytext,,
-NULL,p94,456,100,bodytext,,
-NULL,p94,457,4,subhead,Ānandayācanakathā,阿难请求的谈说
-NULL,p94,458,100,bodytext,,
-NULL,p94,459,100,bodytext,,
-NULL,p94,460,100,bodytext,,
-NULL,p94,461,100,bodytext,,
-NULL,p94,462,100,bodytext,,
-NULL,p94,463,100,bodytext,,
-NULL,p94,464,100,bodytext,,
-NULL,p94,465,100,bodytext,,
-NULL,p94,466,100,bodytext,,
-NULL,p94,467,100,bodytext,,
-NULL,p94,468,100,bodytext,,
-NULL,p94,469,100,gatha1,,
-NULL,p94,470,100,gathalast,,
-NULL,p94,471,100,gatha1,,
-NULL,p94,472,100,gathalast,,
-NULL,p94,473,100,gatha1,,
-NULL,p94,474,100,gathalast,,
-NULL,p94,475,100,centered,,
-NULL,p94,476,4,subhead,Nāgāpalokitaṃ,龙象回顾
-NULL,p94,477,100,bodytext,,
-NULL,p94,478,100,bodytext,,
-NULL,p94,479,100,gatha1,,
-NULL,p94,480,100,gathalast,,
-NULL,p94,481,100,gatha1,,
-NULL,p94,482,100,gathalast,,
-NULL,p94,483,100,bodytext,,
-NULL,p94,484,4,subhead,Catumahāpadesakathā,四大法教
-NULL,p94,485,100,bodytext,,
-NULL,p94,486,100,bodytext,,
-NULL,p94,487,100,bodytext,,
-NULL,p94,488,100,bodytext,,
-NULL,p94,489,100,bodytext,,
-NULL,p94,490,100,bodytext,,
-NULL,p94,491,4,subhead,Kammāraputtacundavatthu,铁匠之子纯陀的事
-NULL,p94,492,100,bodytext,,
-NULL,p94,493,100,bodytext,,
-NULL,p94,494,100,bodytext,,
-NULL,p94,495,100,gatha1,,
-NULL,p94,496,100,gathalast,,
-NULL,p94,497,100,gatha1,,
-NULL,p94,498,100,gatha2,,
-NULL,p94,499,100,gatha3,,
-NULL,p94,500,100,gathalast,,
-NULL,p94,501,4,subhead,Pānīyāharaṇaṃ,取水
-NULL,p94,502,100,bodytext,,
-NULL,p94,503,100,bodytext,,
-NULL,p94,504,100,bodytext,,
-NULL,p94,505,4,subhead,Pukkusamallaputtavatthu,末罗人之子晡古色的事
-NULL,p94,506,100,bodytext,,
-NULL,p94,507,100,bodytext,,
-NULL,p94,508,100,bodytext,,
-NULL,p94,509,100,bodytext,,
-NULL,p94,510,100,bodytext,,
-NULL,p94,511,100,bodytext,,
-NULL,p94,512,100,bodytext,,
-NULL,p94,513,100,gatha1,,
-NULL,p94,514,100,gathalast,,
-NULL,p94,515,100,bodytext,,
-NULL,p94,516,100,bodytext,,
-NULL,p94,517,100,gatha1,,
-NULL,p94,518,100,gatha2,,
-NULL,p94,519,100,gatha3,,
-NULL,p94,520,100,gathalast,,
-NULL,p94,521,100,gatha1,,
-NULL,p94,522,100,gatha2,,
-NULL,p94,523,100,gatha3,,
-NULL,p94,524,100,gathalast,,
-NULL,p94,525,100,gatha1,,
-NULL,p94,526,100,gatha2,,
-NULL,p94,527,100,gatha3,,
-NULL,p94,528,100,gathalast,,
-NULL,p94,529,100,gatha1,,
-NULL,p94,530,100,gathalast,,
-NULL,p94,531,100,bodytext,,
-NULL,p94,532,100,gatha1,,
-NULL,p94,533,100,gatha2,,
-NULL,p94,534,100,gatha3,,
-NULL,p94,535,100,gathalast,,
-NULL,p94,536,100,centered,,
-NULL,p94,537,4,subhead,Yamakasālā,双沙罗树
-NULL,p94,538,100,bodytext,,
-NULL,p94,539,100,bodytext,,
-NULL,p94,540,100,bodytext,,
-NULL,p94,541,4,subhead,Upavāṇatthero,优波哇那上座
-NULL,p94,542,100,bodytext,,
-NULL,p94,543,100,bodytext,,
-NULL,p94,544,100,bodytext,,
-NULL,p94,545,100,bodytext,,
-NULL,p94,546,4,subhead,Catusaṃvejanīyaṭṭhānāni,四个能激起宗教信仰心之处
-NULL,p94,547,100,bodytext,,
-NULL,p94,548,100,bodytext,,
-NULL,p94,549,100,bodytext,,
-NULL,p94,550,4,subhead,Ānandapucchākathā,阿难问题的谈说
-NULL,p94,551,100,bodytext,,
-NULL,p94,552,100,bodytext,,
-NULL,p94,553,100,bodytext,,
-NULL,p94,554,4,subhead,Thūpārahapuggalo,值得领受塔的人
-NULL,p94,555,100,bodytext,,
-NULL,p94,556,100,bodytext,,
-NULL,p94,557,100,bodytext,,
-NULL,p94,558,100,bodytext,,
-NULL,p94,559,100,bodytext,,
-NULL,p94,560,4,subhead,Ānandaacchariyadhammo,阿难的未曾有法
-NULL,p94,561,100,bodytext,,
-NULL,p94,562,100,bodytext,,
-NULL,p94,563,100,bodytext,,
-NULL,p94,564,100,bodytext,,
-NULL,p94,565,4,subhead,Mahāsudassanasuttadesanā,大善见经的教导
-NULL,p94,566,100,bodytext,,
-NULL,p94,567,100,bodytext,,
-NULL,p94,568,100,bodytext,,
-NULL,p94,569,4,subhead,Mallānaṃ vandanā,末罗人的礼拜
-NULL,p94,570,100,bodytext,,
-NULL,p94,571,4,subhead,Subhaddaparibbājakavatthu,游行者须跋陀的事
-NULL,p94,572,100,bodytext,,
-NULL,p94,573,100,bodytext,,
-NULL,p94,574,100,bodytext,,
-NULL,p94,575,100,gatha1,,
-NULL,p94,576,100,gatha2,,
-NULL,p94,577,100,gatha3,,
-NULL,p94,578,100,gathalast,,
-NULL,p94,579,100,gatha1,,
-NULL,p94,580,100,gathalast,,
-NULL,p94,581,100,bodytext,,
-NULL,p94,582,100,bodytext,,
-NULL,p94,583,100,bodytext,,
-NULL,p94,584,100,centered,,
-NULL,p94,585,4,subhead,Tathāgatapacchimavācā,如来最后的话
-NULL,p94,586,100,bodytext,,
-NULL,p94,587,100,bodytext,,
-NULL,p94,588,100,bodytext,,
-NULL,p94,589,4,subhead,Parinibbutakathā,般涅槃的谈说
-NULL,p94,590,100,bodytext,,
-NULL,p94,591,100,bodytext,,
-NULL,p94,592,100,bodytext,,
-NULL,p94,593,100,bodytext,,
-NULL,p94,594,100,gatha1,,
-NULL,p94,595,100,gatha2,,
-NULL,p94,596,100,gathalast,,
-NULL,p94,597,100,bodytext,,
-NULL,p94,598,100,gatha1,,
-NULL,p94,599,100,gathalast,,
-NULL,p94,600,100,bodytext,,
-NULL,p94,601,100,gatha1,,
-NULL,p94,602,100,gathalast,,
-NULL,p94,603,100,gatha1,,
-NULL,p94,604,100,gathalast,,
-NULL,p94,605,100,bodytext,,
-NULL,p94,606,100,gatha1,,
-NULL,p94,607,100,gathalast,,
-NULL,p94,608,100,bodytext,,
-NULL,p94,609,100,bodytext,,
-NULL,p94,610,100,bodytext,,
-NULL,p94,611,100,bodytext,,
-NULL,p94,612,4,subhead,Buddhasarīrapūjā,世尊遗体供养
-NULL,p94,613,100,bodytext,,
-NULL,p94,614,100,bodytext,,
-NULL,p94,615,100,bodytext,,
-NULL,p94,616,100,bodytext,,
-NULL,p94,617,100,bodytext,,
-NULL,p94,618,100,bodytext,,
-NULL,p94,619,100,bodytext,,
-NULL,p94,620,4,subhead,Mahākassapattheravatthu,大迦叶的事
-NULL,p94,621,100,bodytext,,
-NULL,p94,622,100,bodytext,,
-NULL,p94,623,100,bodytext,,
-NULL,p94,624,100,bodytext,,
-NULL,p94,625,100,bodytext,,
-NULL,p94,626,4,subhead,Sarīradhātuvibhājanaṃ,遗骨的分配
-NULL,p94,627,100,bodytext,,
-NULL,p94,628,100,bodytext,,
-NULL,p94,629,100,bodytext,,
-NULL,p94,630,100,bodytext,,
-NULL,p94,631,100,bodytext,,
-NULL,p94,632,100,bodytext,,
-NULL,p94,633,100,bodytext,,
-NULL,p94,634,100,bodytext,,
-NULL,p94,635,100,bodytext,,
-NULL,p94,636,100,gatha1,,
-NULL,p94,637,100,gatha2,,
-NULL,p94,638,100,gatha3,,
-NULL,p94,639,100,gathalast,,
-NULL,p94,640,100,gatha1,,
-NULL,p94,641,100,gatha2,,
-NULL,p94,642,100,gatha3,,
-NULL,p94,643,100,gathalast,,
-NULL,p94,644,100,bodytext,,
-NULL,p94,645,100,bodytext,,
-NULL,p94,646,4,subhead,Dhātuthūpapūjā,遗骨塔的尊敬
-NULL,p94,647,100,bodytext,,
-NULL,p94,648,100,bodytext,,
-NULL,p94,649,100,gathalast,,
-NULL,p94,650,100,gatha1,,
-NULL,p94,651,100,gathalast,,
-NULL,p94,652,100,gatha1,,
-NULL,p94,653,100,gatha2,,
-NULL,p94,654,100,gatha3,,
-NULL,p94,655,100,gathalast,,
-NULL,p94,656,100,gatha1,,
-NULL,p94,657,100,gatha2,,
-NULL,p94,658,100,gatha3,,
-NULL,p94,659,100,gathalast,,
-NULL,p94,660,100,gatha1,,
-NULL,p94,661,100,gathalast,,
-NULL,p94,662,100,centered,,
-NULL,p94,663,2,chapter,4. Mahāsudassanasuttaṃ,17、大善见经
-NULL,p94,664,100,bodytext,,
-NULL,p94,665,100,bodytext,,
-NULL,p94,666,4,subhead,Kusāvatīrājadhānī,咕萨瓦帝王都
-NULL,p94,667,100,bodytext,,
-NULL,p94,668,100,bodytext,,
-NULL,p94,669,4,subhead,Cakkaratanaṃ,轮宝
-NULL,p94,670,100,bodytext,,
-NULL,p94,671,100,bodytext,,
-NULL,p94,672,100,bodytext,,
-NULL,p94,673,4,subhead,Hatthiratanaṃ,象宝
-NULL,p94,674,100,bodytext,,
-NULL,p94,675,4,subhead,Assaratanaṃ,马宝
-NULL,p94,676,100,bodytext,,
-NULL,p94,677,4,subhead,Maṇiratanaṃ,珠宝
-NULL,p94,678,100,bodytext,,
-NULL,p94,679,4,subhead,Itthiratanaṃ,女宝
-NULL,p94,680,100,bodytext,,
-NULL,p94,681,4,subhead,Gahapatiratanaṃ,屋主宝
-NULL,p94,682,100,bodytext,,
-NULL,p94,683,4,subhead,Pariṇāyakaratanaṃ,主兵臣宝
-NULL,p94,684,100,bodytext,,
-NULL,p94,685,100,bodytext,,
-NULL,p94,686,4,subhead,Catuiddhisamannāgato,具备四种成就
-NULL,p94,687,100,bodytext,,
-NULL,p94,688,100,bodytext,,
-NULL,p94,689,100,bodytext,,
-NULL,p94,690,100,bodytext,,
-NULL,p94,691,100,bodytext,,
-NULL,p94,692,4,subhead,Dhammapāsādapokkharaṇī,达摩宫殿的莲花池
-NULL,p94,693,100,bodytext,,
-NULL,p94,694,100,bodytext,,
-NULL,p94,695,100,bodytext,,
-NULL,p94,696,100,bodytext,,
-NULL,p94,697,100,bodytext,,
-NULL,p94,698,100,bodytext,,
-NULL,p94,699,100,bodytext,,
-NULL,p94,700,100,bodytext,,
-NULL,p94,701,100,bodytext,,
-NULL,p94,702,100,bodytext,,
-NULL,p94,703,100,bodytext,,
-NULL,p94,704,100,bodytext,,
-NULL,p94,705,100,bodytext,,
-NULL,p94,706,100,bodytext,,
-NULL,p94,707,100,bodytext,,
-NULL,p94,708,100,bodytext,,
-NULL,p94,709,100,bodytext,,
-NULL,p94,710,100,bodytext,,
-NULL,p94,711,100,centered,,
-NULL,p94,712,4,subhead,Jhānasampatti,到达禅
-NULL,p94,713,100,bodytext,,
-NULL,p94,714,100,bodytext,,
-NULL,p94,715,100,bodytext,,
-NULL,p94,716,100,bodytext,,
-NULL,p94,717,4,subhead,Caturāsīti nagarasahassādi,八万四千城市
-NULL,p94,718,100,bodytext,,
-NULL,p94,719,100,bodytext,,
-NULL,p94,720,4,subhead,Subhaddādeviupasaṅkamanaṃ,善吉祥皇后到来
-NULL,p94,721,100,bodytext,,
-NULL,p94,722,100,bodytext,,
-NULL,p94,723,100,bodytext,,
-NULL,p94,724,100,bodytext,,
-NULL,p94,725,100,bodytext,,
-NULL,p94,726,100,bodytext,,
-NULL,p94,727,100,bodytext,,
-NULL,p94,728,4,subhead,Brahmalokūpagamaṃ,往梵天世界
-NULL,p94,729,100,bodytext,,
-NULL,p94,730,100,bodytext,,
-NULL,p94,731,100,bodytext,,
-NULL,p94,732,100,bodytext,,
-NULL,p94,733,100,bodytext,,
-NULL,p94,734,100,gatha1,,
-NULL,p94,735,100,gathalast,,
-NULL,p94,736,100,centered,,
-NULL,p94,737,2,chapter,5. Janavasabhasuttaṃ,18、人牛王经
-NULL,p94,738,4,subhead,Nātikiyādibyākaraṇaṃ,在那低葛的记说等等
-NULL,p94,739,100,bodytext,,
-NULL,p94,740,100,bodytext,,
-NULL,p94,741,100,bodytext,,
-NULL,p94,742,4,subhead,Ānandaparikathā,阿难的委婉谈说
-NULL,p94,743,100,bodytext,,
-NULL,p94,744,100,bodytext,,
-NULL,p94,745,100,bodytext,,
-NULL,p94,746,100,bodytext,,
-NULL,p94,747,4,subhead,Janavasabhayakkho,人牛王夜叉
-NULL,p94,748,100,bodytext,,
-NULL,p94,749,100,bodytext,,
-NULL,p94,750,100,gatha1,,
-NULL,p94,751,100,gathalast,,
-NULL,p94,752,100,bodytext,,
-NULL,p94,753,4,subhead,Devasabhā,诸天会堂
-NULL,p94,754,100,bodytext,,
-NULL,p94,755,100,gatha1,,
-NULL,p94,756,100,gathalast,,
-NULL,p94,757,100,gatha1,,
-NULL,p94,758,100,gathalast,,
-NULL,p94,759,100,gatha1,,
-NULL,p94,760,100,gathalast,,
-NULL,p94,761,100,gatha1,,
-NULL,p94,762,100,gathalast,,
-NULL,p94,763,100,bodytext,,
-NULL,p94,764,100,gatha1,,
-NULL,p94,765,100,gathalast,,
-NULL,p94,766,100,bodytext,,
-NULL,p94,767,100,gatha1,,
-NULL,p94,768,100,gathalast,,
-NULL,p94,769,4,subhead,Sanaṅkumārakathā,常童子的谈说
-NULL,p94,770,100,bodytext,,
-NULL,p94,771,100,bodytext,,
-NULL,p94,772,100,bodytext,,
-NULL,p94,773,100,gatha1,,
-NULL,p94,774,100,gathalast,,
-NULL,p94,775,100,gatha1,,
-NULL,p94,776,100,gathalast,,
-NULL,p94,777,100,gatha1,,
-NULL,p94,778,100,gathalast,,
-NULL,p94,779,100,gatha1,,
-NULL,p94,780,100,gathalast,,
-NULL,p94,781,100,bodytext,,
-NULL,p94,782,100,bodytext,,
-NULL,p94,783,100,bodytext,,
-NULL,p94,784,100,gatha1,,
-NULL,p94,785,100,gathalast,,
-NULL,p94,786,100,gatha1,,
-NULL,p94,787,100,gathalast,,
-NULL,p94,788,100,bodytext,,
-NULL,p94,789,4,subhead,Bhāvitaiddhipādo,所修习的神足
-NULL,p94,790,100,bodytext,,
-NULL,p94,791,100,bodytext,,
-NULL,p94,792,4,subhead,Tividho okāsādhigamo,三种到达的空间
-NULL,p94,793,100,bodytext,,
-NULL,p94,794,100,bodytext,,
-NULL,p94,795,100,bodytext,,
-NULL,p94,796,4,subhead,Catusatipaṭṭhānaṃ,四念住
-NULL,p94,797,100,bodytext,,
-NULL,p94,798,4,subhead,Satta samādhiparikkhārā,七个定的资助
-NULL,p94,799,100,bodytext,,
-NULL,p94,800,100,bodytext,,
-NULL,p94,801,100,gatha1,,
-NULL,p94,802,100,gathalast,,
-NULL,p94,803,100,bodytext,,
-NULL,p94,804,100,bodytext,,
-NULL,p94,805,100,bodytext,,
-NULL,p94,806,100,centered,,
-NULL,p94,807,2,chapter,6. Mahāgovindasuttaṃ,19、大总管经
-NULL,p94,808,100,bodytext,,
-NULL,p94,809,4,subhead,Devasabhā,诸天会堂
-NULL,p94,810,100,bodytext,,
-NULL,p94,811,100,bodytext,,
-NULL,p94,812,100,bodytext,,
-NULL,p94,813,100,gatha1,,
-NULL,p94,814,100,gathalast,,
-NULL,p94,815,100,gatha1,,
-NULL,p94,816,100,gathalast,,
-NULL,p94,817,100,gatha1,,
-NULL,p94,818,100,gathalast,,
-NULL,p94,819,100,gatha1,,
-NULL,p94,820,100,gathalast,,
-NULL,p94,821,100,bodytext,,
-NULL,p94,822,4,subhead,Aṭṭha yathābhuccavaṇṇā,八种如实称赞
-NULL,p94,823,100,bodytext,,
-NULL,p94,824,100,bodytext,,
-NULL,p94,825,100,bodytext,,
-NULL,p94,826,100,bodytext,,
-NULL,p94,827,100,bodytext,,
-NULL,p94,828,100,bodytext,,
-NULL,p94,829,100,bodytext,,
-NULL,p94,830,100,bodytext,,
-NULL,p94,831,100,bodytext,,
-NULL,p94,832,100,bodytext,,
-NULL,p94,833,100,gatha1,,
-NULL,p94,834,100,gathalast,,
-NULL,p94,835,100,bodytext,,
-NULL,p94,836,100,gatha1,,
-NULL,p94,837,100,gathalast,,
-NULL,p94,838,4,subhead,Sanaṅkumārakathā,常童子的谈说
-NULL,p94,839,100,bodytext,,
-NULL,p94,840,100,bodytext,,
-NULL,p94,841,100,gatha1,,
-NULL,p94,842,100,gathalast,,
-NULL,p94,843,100,gatha1,,
-NULL,p94,844,100,gathalast,,
-NULL,p94,845,100,gatha1,,
-NULL,p94,846,100,gathalast,,
-NULL,p94,847,100,gatha1,,
-NULL,p94,848,100,gathalast,,
-NULL,p94,849,100,bodytext,,
-NULL,p94,850,4,subhead,Aṭṭha yathābhuccavaṇṇā,八种如实称赞
-NULL,p94,851,100,bodytext,,
-NULL,p94,852,100,bodytext,,
-NULL,p94,853,100,bodytext,,
-NULL,p94,854,100,bodytext,,
-NULL,p94,855,100,bodytext,,
-NULL,p94,856,100,bodytext,,
-NULL,p94,857,100,bodytext,,
-NULL,p94,858,100,bodytext,,
-NULL,p94,859,100,bodytext,,
-NULL,p94,860,100,bodytext,,
-NULL,p94,861,4,subhead,Govindabrāhmaṇavatthu,总管婆罗门的事
-NULL,p94,862,100,bodytext,,
-NULL,p94,863,4,subhead,Mahāgovindavatthu,大总管的事
-NULL,p94,864,100,bodytext,,
-NULL,p94,865,4,subhead,Rajjasaṃvibhajanaṃ,统治权的分享
-NULL,p94,866,100,bodytext,,
-NULL,p94,867,100,bodytext,,
-NULL,p94,868,100,bodytext,,
-NULL,p94,869,100,bodytext,,
-NULL,p94,870,100,gathalast,,
-NULL,p94,871,100,gatha1,,
-NULL,p94,872,100,gathalast,,
-NULL,p94,873,100,bodytext,,
-NULL,p94,874,100,gatha1,,
-NULL,p94,875,100,gathalast,,
-NULL,p94,876,100,centered,,
-NULL,p94,877,4,subhead,Kittisaddaabbhuggamanaṃ,(暂缺)
-NULL,p94,878,100,bodytext,,
-NULL,p94,879,100,bodytext,,
-NULL,p94,880,100,bodytext,,
-NULL,p94,881,100,bodytext,,
-NULL,p94,882,100,bodytext,,
-NULL,p94,883,100,bodytext,,
-NULL,p94,884,100,bodytext,,
-NULL,p94,885,4,subhead,Brahmunā sākacchā,梵天的交谈
-NULL,p94,886,100,bodytext,,
-NULL,p94,887,100,gatha1,,
-NULL,p94,888,100,gathalast,,
-NULL,p94,889,100,gatha1,,
-NULL,p94,890,100,gathalast,,
-NULL,p94,891,100,gatha1,,
-NULL,p94,892,100,gathalast,,
-NULL,p94,893,100,gatha1,,
-NULL,p94,894,100,gatha2,,
-NULL,p94,895,100,gathalast,,
-NULL,p94,896,100,bodytext,,
-NULL,p94,897,100,gatha1,,
-NULL,p94,898,100,gatha2,,
-NULL,p94,899,100,gatha3,,
-NULL,p94,900,100,gathalast,,
-NULL,p94,901,100,gatha1,,
-NULL,p94,902,100,gatha2,,
-NULL,p94,903,100,gatha3,,
-NULL,p94,904,100,gatha2,,
-NULL,p94,905,100,gathalast,,
-NULL,p94,906,100,bodytext,,
-NULL,p94,907,100,gatha1,,
-NULL,p94,908,100,gatha2,,
-NULL,p94,909,100,gatha3,,
-NULL,p94,910,100,gathalast,,
-NULL,p94,911,100,gatha1,,
-NULL,p94,912,100,gatha2,,
-NULL,p94,913,100,gatha3,,
-NULL,p94,914,100,gatha2,,
-NULL,p94,915,100,gatha3,,
-NULL,p94,916,100,gathalast,,
-NULL,p94,917,100,bodytext,,
-NULL,p94,918,4,subhead,Reṇurājaāmantanā,雷奴国王的宣说
-NULL,p94,919,100,bodytext,,
-NULL,p94,920,100,gatha1,,
-NULL,p94,921,100,gathalast,,
-NULL,p94,922,100,gatha1,,
-NULL,p94,923,100,gatha2,,
-NULL,p94,924,100,gathalast,,
-NULL,p94,925,100,gatha1,,
-NULL,p94,926,100,gathalast,,
-NULL,p94,927,100,gatha1,,
-NULL,p94,928,100,gathalast,,
-NULL,p94,929,100,gatha1,,
-NULL,p94,930,100,gathalast,,
-NULL,p94,931,100,gatha1,,
-NULL,p94,932,100,gathalast,,
-NULL,p94,933,100,gatha1,,
-NULL,p94,934,100,gathalast,,
-NULL,p94,935,100,gatha1,,
-NULL,p94,936,100,gatha2,,
-NULL,p94,937,100,gathalast,,
-NULL,p94,938,100,bodytext,,
-NULL,p94,939,4,subhead,Cha khattiyaāmantanā,六位刹帝利的宣说
-NULL,p94,940,100,bodytext,,
-NULL,p94,941,100,bodytext,,
-NULL,p94,942,100,gatha1,,
-NULL,p94,943,100,gathalast,,
-NULL,p94,944,100,gatha1,,
-NULL,p94,945,100,gathalast,,
-NULL,p94,946,100,bodytext,,
-NULL,p94,947,100,bodytext,,
-NULL,p94,948,100,bodytext,,
-NULL,p94,949,100,bodytext,,
-NULL,p94,950,100,bodytext,,
-NULL,p94,951,100,bodytext,,
-NULL,p94,952,4,subhead,Brāhmaṇamahāsālādīnaṃ āmantanā,富有的婆罗门等的宣说
-NULL,p94,953,100,bodytext,,
-NULL,p94,954,4,subhead,Bhariyānaṃ āmantanā,妻子们的宣说
-NULL,p94,955,100,bodytext,,
-NULL,p94,956,4,subhead,Mahāgovindapabbajjā,大总管的出家
-NULL,p94,957,100,bodytext,,
-NULL,p94,958,100,bodytext,,
-NULL,p94,959,100,bodytext,,
-NULL,p94,960,100,bodytext,,
-NULL,p94,961,100,bodytext,,
-NULL,p94,962,100,bodytext,,
-NULL,p94,963,100,bodytext,,
-NULL,p94,964,100,centered,,
-NULL,p94,965,2,chapter,7. Mahāsamayasuttaṃ,20、大集会经
-NULL,p94,966,100,bodytext,,
-NULL,p94,967,100,bodytext,,
-NULL,p94,968,100,gatha1,,
-NULL,p94,969,100,gathalast,,
-NULL,p94,970,100,bodytext,,
-NULL,p94,971,100,gatha1,,
-NULL,p94,972,100,gathalast,,
-NULL,p94,973,100,bodytext,,
-NULL,p94,974,100,gatha1,,
-NULL,p94,975,100,gathalast,,
-NULL,p94,976,100,bodytext,,
-NULL,p94,977,100,gatha1,,
-NULL,p94,978,100,gathalast,,
-NULL,p94,979,4,subhead,Devatāsannipātā,天神的集合
-NULL,p94,980,100,bodytext,,
-NULL,p94,981,100,bodytext,,
-NULL,p94,982,100,gatha1,,
-NULL,p94,983,100,gathalast,,
-NULL,p94,984,100,gatha1,,
-NULL,p94,985,100,gathalast,,
-NULL,p94,986,100,gatha1,,
-NULL,p94,987,100,gathalast,,
-NULL,p94,988,100,gatha1,,
-NULL,p94,989,100,gathalast,,
-NULL,p94,990,100,gatha1,,
-NULL,p94,991,100,gathalast,,
-NULL,p94,992,100,gatha1,,
-NULL,p94,993,100,gathalast,,
-NULL,p94,994,100,gatha1,,
-NULL,p94,995,100,gathalast,,
-NULL,p94,996,100,gatha1,,
-NULL,p94,997,100,gathalast,,
-NULL,p94,998,100,bodytext,,
-NULL,p94,999,100,gatha2,,
-NULL,p94,1000,100,gathalast,,
-NULL,p94,1001,100,gatha1,,
-NULL,p94,1002,100,gatha2,,
-NULL,p94,1003,100,gathalast,,
-NULL,p94,1004,100,gatha1,,
-NULL,p94,1005,100,gatha2,,
-NULL,p94,1006,100,gathalast,,
-NULL,p94,1007,100,gatha1,,
-NULL,p94,1008,100,gatha2,,
-NULL,p94,1009,100,gathalast,,
-NULL,p94,1010,100,gatha1,,
-NULL,p94,1011,100,gatha2,,
-NULL,p94,1012,100,gathalast,,
-NULL,p94,1013,100,gatha1,,
-NULL,p94,1014,100,gatha2,,
-NULL,p94,1015,100,gathalast,,
-NULL,p94,1016,100,bodytext,,
-NULL,p94,1017,100,gathalast,,
-NULL,p94,1018,100,gatha1,,
-NULL,p94,1019,100,gatha2,,
-NULL,p94,1020,100,gathalast,,
-NULL,p94,1021,100,gatha1,,
-NULL,p94,1022,100,gathalast,,
-NULL,p94,1023,100,gatha1,,
-NULL,p94,1024,100,gatha2,,
-NULL,p94,1025,100,gathalast,,
-NULL,p94,1026,100,gatha1,,
-NULL,p94,1027,100,gathalast,,
-NULL,p94,1028,100,gatha1,,
-NULL,p94,1029,100,gatha2,,
-NULL,p94,1030,100,gathalast,,
-NULL,p94,1031,100,gatha1,,
-NULL,p94,1032,100,gathalast,,
-NULL,p94,1033,100,gatha1,,
-NULL,p94,1034,100,gatha2,,
-NULL,p94,1035,100,gathalast,,
-NULL,p94,1036,100,gatha1,,
-NULL,p94,1037,100,gathalast,,
-NULL,p94,1038,100,gatha1,,
-NULL,p94,1039,100,gathalast,,
-NULL,p94,1040,100,bodytext,,
-NULL,p94,1041,100,gathalast,,
-NULL,p94,1042,100,gatha1,,
-NULL,p94,1043,100,gathalast,,
-NULL,p94,1044,100,gatha1,,
-NULL,p94,1045,100,gathalast,,
-NULL,p94,1046,100,gatha1,,
-NULL,p94,1047,100,gathalast,,
-NULL,p94,1048,100,bodytext,,
-NULL,p94,1049,100,gathalast,,
-NULL,p94,1050,100,gatha1,,
-NULL,p94,1051,100,gathalast,,
-NULL,p94,1052,100,gatha1,,
-NULL,p94,1053,100,gathalast,,
-NULL,p94,1054,100,gatha1,,
-NULL,p94,1055,100,gathalast,,
-NULL,p94,1056,100,bodytext,,
-NULL,p94,1057,100,gathalast,,
-NULL,p94,1058,100,gatha1,,
-NULL,p94,1059,100,gathalast,,
-NULL,p94,1060,100,gatha1,,
-NULL,p94,1061,100,gatha2,,
-NULL,p94,1062,100,gathalast,,
-NULL,p94,1063,100,bodytext,,
-NULL,p94,1064,100,gathalast,,
-NULL,p94,1065,100,gatha1,,
-NULL,p94,1066,100,gathalast,,
-NULL,p94,1067,100,gatha1,,
-NULL,p94,1068,100,gathalast,,
-NULL,p94,1069,100,gatha1,,
-NULL,p94,1070,100,gathalast,,
-NULL,p94,1071,100,gatha1,,
-NULL,p94,1072,100,gathalast,,
-NULL,p94,1073,100,gatha1,,
-NULL,p94,1074,100,gathalast,,
-NULL,p94,1075,100,gatha1,,
-NULL,p94,1076,100,gathalast,,
-NULL,p94,1077,100,gatha1,,
-NULL,p94,1078,100,gathalast,,
-NULL,p94,1079,100,gatha1,,
-NULL,p94,1080,100,gatha2,,
-NULL,p94,1081,100,gathalast,,
-NULL,p94,1082,100,gatha1,,
-NULL,p94,1083,100,gathalast,,
-NULL,p94,1084,100,gatha1,,
-NULL,p94,1085,100,gathalast,,
-NULL,p94,1086,100,gatha1,,
-NULL,p94,1087,100,gatha2,,
-NULL,p94,1088,100,gathalast,,
-NULL,p94,1089,100,gatha1,,
-NULL,p94,1090,100,gathalast,,
-NULL,p94,1091,100,gatha1,,
-NULL,p94,1092,100,gathalast,,
-NULL,p94,1093,100,gatha1,,
-NULL,p94,1094,100,gathalast,,
-NULL,p94,1095,100,gatha1,,
-NULL,p94,1096,100,gatha2,,
-NULL,p94,1097,100,gathalast,,
-NULL,p94,1098,100,gatha1,,
-NULL,p94,1099,100,gatha2,,
-NULL,p94,1100,100,gathalast,,
-NULL,p94,1101,100,gatha1,,
-NULL,p94,1102,100,gatha2,,
-NULL,p94,1103,100,gathalast,,
-NULL,p94,1104,100,gatha1,,
-NULL,p94,1105,100,gathalast,,
-NULL,p94,1106,100,gatha1,,
-NULL,p94,1107,100,gathalast,,
-NULL,p94,1108,100,bodytext,,
-NULL,p94,1109,100,gathalast,,
-NULL,p94,1110,100,gatha1,,
-NULL,p94,1111,100,gathalast,,
-NULL,p94,1112,100,gatha1,,
-NULL,p94,1113,100,gathalast,,
-NULL,p94,1114,100,bodytext,,
-NULL,p94,1115,100,gathalast,,
-NULL,p94,1116,100,gatha1,,
-NULL,p94,1117,100,gathalast,,
-NULL,p94,1118,100,gatha1,,
-NULL,p94,1119,100,gathalast,,
-NULL,p94,1120,100,gatha1,,
-NULL,p94,1121,100,gathalast,,
-NULL,p94,1122,100,bodytext,,
-NULL,p94,1123,100,gathalast,,
-NULL,p94,1124,100,gatha1,,
-NULL,p94,1125,100,gatha2,,
-NULL,p94,1126,100,gathalast,,
-NULL,p94,1127,100,gatha1,,
-NULL,p94,1128,100,gathalast,,
-NULL,p94,1129,100,centered,,
-NULL,p94,1130,2,chapter,8. Sakkapañhasuttaṃ,21、帝释所问经
-NULL,p94,1131,100,bodytext,,
-NULL,p94,1132,100,bodytext,,
-NULL,p94,1133,100,bodytext,,
-NULL,p94,1134,100,bodytext,,
-NULL,p94,1135,4,subhead,Pañcasikhagītagāthā,五髻的歌唱偈颂
-NULL,p94,1136,100,bodytext,,
-NULL,p94,1137,100,gatha1,,
-NULL,p94,1138,100,gathalast,,
-NULL,p94,1139,100,gatha1,,
-NULL,p94,1140,100,gathalast,,
-NULL,p94,1141,100,gatha1,,
-NULL,p94,1142,100,gathalast,,
-NULL,p94,1143,100,gatha1,,
-NULL,p94,1144,100,gathalast,,
-NULL,p94,1145,100,gatha1,,
-NULL,p94,1146,100,gathalast,,
-NULL,p94,1147,100,gatha1,,
-NULL,p94,1148,100,gathalast,,
-NULL,p94,1149,100,gatha1,,
-NULL,p94,1150,100,gathalast,,
-NULL,p94,1151,100,gatha1,,
-NULL,p94,1152,100,gathalast,,
-NULL,p94,1153,100,gatha1,,
-NULL,p94,1154,100,gathalast,,
-NULL,p94,1155,100,gatha1,,
-NULL,p94,1156,100,gathalast,,
-NULL,p94,1157,100,gatha1,,
-NULL,p94,1158,100,gathalast,,
-NULL,p94,1159,100,gatha1,,
-NULL,p94,1160,100,gathalast,,
-NULL,p94,1161,100,gatha1,,
-NULL,p94,1162,100,gathalast,,
-NULL,p94,1163,100,gatha1,,
-NULL,p94,1164,100,gathalast,,
-NULL,p94,1165,100,bodytext,,
-NULL,p94,1166,100,gatha1,,
-NULL,p94,1167,100,gathalast,,
-NULL,p94,1168,100,gatha1,,
-NULL,p94,1169,100,gathalast,,
-NULL,p94,1170,100,bodytext,,
-NULL,p94,1171,4,subhead,Sakkūpasaṅkama,帝释前往
-NULL,p94,1172,100,bodytext,,
-NULL,p94,1173,100,bodytext,,
-NULL,p94,1174,100,bodytext,,
-NULL,p94,1175,100,bodytext,,
-NULL,p94,1176,4,subhead,Gopakavatthu,守护者之事
-NULL,p94,1177,100,bodytext,,
-NULL,p94,1178,100,bodytext,,
-NULL,p94,1179,100,gatha2,,
-NULL,p94,1180,100,gatha3,,
-NULL,p94,1181,100,gathalast,,
-NULL,p94,1182,100,gatha1,,
-NULL,p94,1183,100,gatha2,,
-NULL,p94,1184,100,gatha3,,
-NULL,p94,1185,100,gathalast,,
-NULL,p94,1186,100,gatha1,,
-NULL,p94,1187,100,gatha2,,
-NULL,p94,1188,100,gatha3,,
-NULL,p94,1189,100,gathalast,,
-NULL,p94,1190,100,gatha1,,
-NULL,p94,1191,100,gatha2,,
-NULL,p94,1192,100,gatha3,,
-NULL,p94,1193,100,gathalast,,
-NULL,p94,1194,100,gatha1,,
-NULL,p94,1195,100,gatha2,,
-NULL,p94,1196,100,gatha3,,
-NULL,p94,1197,100,gathalast,,
-NULL,p94,1198,100,gatha1,,
-NULL,p94,1199,100,gatha2,,
-NULL,p94,1200,100,gatha3,,
-NULL,p94,1201,100,gathalast,,
-NULL,p94,1202,100,gatha1,,
-NULL,p94,1203,100,gatha2,,
-NULL,p94,1204,100,gatha3,,
-NULL,p94,1205,100,gathalast,,
-NULL,p94,1206,100,gatha1,,
-NULL,p94,1207,100,gatha2,,
-NULL,p94,1208,100,gatha3,,
-NULL,p94,1209,100,gathalast,,
-NULL,p94,1210,100,gatha1,,
-NULL,p94,1211,100,gatha2,,
-NULL,p94,1212,100,gatha3,,
-NULL,p94,1213,100,gathalast,,
-NULL,p94,1214,100,gatha1,,
-NULL,p94,1215,100,gatha2,,
-NULL,p94,1216,100,gatha3,,
-NULL,p94,1217,100,gathalast,,
-NULL,p94,1218,100,gatha1,,
-NULL,p94,1219,100,gatha2,,
-NULL,p94,1220,100,gatha3,,
-NULL,p94,1221,100,gathalast,,
-NULL,p94,1222,100,gatha1,,
-NULL,p94,1223,100,gatha2,,
-NULL,p94,1224,100,gatha3,,
-NULL,p94,1225,100,gathalast,,
-NULL,p94,1226,100,gatha1,,
-NULL,p94,1227,100,gatha2,,
-NULL,p94,1228,100,gatha3,,
-NULL,p94,1229,100,gathalast,,
-NULL,p94,1230,100,gatha1,,
-NULL,p94,1231,100,gatha2,,
-NULL,p94,1232,100,gatha3,,
-NULL,p94,1233,100,gathalast,,
-NULL,p94,1234,100,gatha1,,
-NULL,p94,1235,100,gatha2,,
-NULL,p94,1236,100,gatha3,,
-NULL,p94,1237,100,gathalast,,
-NULL,p94,1238,100,gatha1,,
-NULL,p94,1239,100,gatha2,,
-NULL,p94,1240,100,gatha3,,
-NULL,p94,1241,100,gathalast,,
-NULL,p94,1242,100,gatha1,,
-NULL,p94,1243,100,gatha2,,
-NULL,p94,1244,100,gatha3,,
-NULL,p94,1245,100,gathalast,,
-NULL,p94,1246,100,gatha1,,
-NULL,p94,1247,100,gatha2,,
-NULL,p94,1248,100,gatha3,,
-NULL,p94,1249,100,gathalast,,
-NULL,p94,1250,100,gatha1,,
-NULL,p94,1251,100,gatha2,,
-NULL,p94,1252,100,gatha3,,
-NULL,p94,1253,100,gathalast,,
-NULL,p94,1254,100,bodytext,,
-NULL,p94,1255,100,bodytext,,
-NULL,p94,1256,100,gatha1,,
-NULL,p94,1257,100,gathalast,,
-NULL,p94,1258,100,centered,,
-NULL,p94,1259,100,bodytext,,
-NULL,p94,1260,100,bodytext,,
-NULL,p94,1261,100,bodytext,,
-NULL,p94,1262,100,bodytext,,
-NULL,p94,1263,100,bodytext,,
-NULL,p94,1264,100,bodytext,,
-NULL,p94,1265,100,bodytext,,
-NULL,p94,1266,100,bodytext,,
-NULL,p94,1267,100,bodytext,,
-NULL,p94,1268,4,subhead,Vedanākammaṭṭhānaṃ,受之业处
-NULL,p94,1269,100,bodytext,,
-NULL,p94,1270,100,bodytext,,
-NULL,p94,1271,100,bodytext,,
-NULL,p94,1272,100,bodytext,,
-NULL,p94,1273,100,bodytext,,
-NULL,p94,1274,4,subhead,Pātimokkhasaṃvaro,巴帝摩卡自制
-NULL,p94,1275,100,bodytext,,
-NULL,p94,1276,100,bodytext,,
-NULL,p94,1277,100,bodytext,,
-NULL,p94,1278,100,bodytext,,
-NULL,p94,1279,100,bodytext,,
-NULL,p94,1280,100,bodytext,,
-NULL,p94,1281,4,subhead,Indriyasaṃvaro,根自制
-NULL,p94,1282,100,bodytext,,
-NULL,p94,1283,100,bodytext,,
-NULL,p94,1284,100,bodytext,,
-NULL,p94,1285,100,bodytext,,
-NULL,p94,1286,100,bodytext,,
-NULL,p94,1287,100,bodytext,,
-NULL,p94,1288,100,bodytext,,
-NULL,p94,1289,100,bodytext,,
-NULL,p94,1290,100,bodytext,,
-NULL,p94,1291,100,bodytext,,
-NULL,p94,1292,100,bodytext,,
-NULL,p94,1293,100,bodytext,,
-NULL,p94,1294,100,bodytext,,
-NULL,p94,1295,100,bodytext,,
-NULL,p94,1296,4,subhead,Somanassapaṭilābhakathā,获得喜悦说
-NULL,p94,1297,100,bodytext,,
-NULL,p94,1298,100,bodytext,,
-NULL,p94,1299,100,bodytext,,
-NULL,p94,1300,100,gatha1,,
-NULL,p94,1301,100,gathalast,,
-NULL,p94,1302,100,bodytext,,
-NULL,p94,1303,100,gatha1,,
-NULL,p94,1304,100,gathalast,,
-NULL,p94,1305,100,bodytext,,
-NULL,p94,1306,100,gatha1,,
-NULL,p94,1307,100,gathalast,,
-NULL,p94,1308,100,bodytext,,
-NULL,p94,1309,100,gatha1,,
-NULL,p94,1310,100,gathalast,,
-NULL,p94,1311,100,bodytext,,
-NULL,p94,1312,100,gatha1,,
-NULL,p94,1313,100,gathalast,,
-NULL,p94,1314,100,bodytext,,
-NULL,p94,1315,100,gatha1,,
-NULL,p94,1316,100,gathalast,,
-NULL,p94,1317,100,bodytext,,
-NULL,p94,1318,100,bodytext,,
-NULL,p94,1319,100,bodytext,,
-NULL,p94,1320,100,gathalast,,
-NULL,p94,1321,100,gatha1,,
-NULL,p94,1322,100,gathalast,,
-NULL,p94,1323,100,gatha1,,
-NULL,p94,1324,100,gathalast,,
-NULL,p94,1325,100,gatha1,,
-NULL,p94,1326,100,gathalast,,
-NULL,p94,1327,100,gatha1,,
-NULL,p94,1328,100,gathalast,,
-NULL,p94,1329,100,gatha1,,
-NULL,p94,1330,100,gathalast,,
-NULL,p94,1331,100,gatha1,,
-NULL,p94,1332,100,gathalast,,
-NULL,p94,1333,100,gatha1,,
-NULL,p94,1334,100,gathalast,,
-NULL,p94,1335,100,gatha1,,
-NULL,p94,1336,100,gathalast,,
-NULL,p94,1337,100,bodytext,,
-NULL,p94,1338,100,bodytext,,
-NULL,p94,1339,100,bodytext,,
-NULL,p94,1340,100,centered,,
-NULL,p94,1341,2,chapter,9. Mahāsatipaṭṭhānasuttaṃ,22、大念住经
-NULL,p94,1342,100,bodytext,,
-NULL,p94,1343,4,subhead,Uddeso,总说
-NULL,p94,1344,100,bodytext,,
-NULL,p94,1345,100,bodytext,,
-NULL,p94,1346,100,centered,,
-NULL,p94,1347,4,subhead,Kāyānupassanā ānāpānapabbaṃ,随观身‧入出息节
-NULL,p94,1348,100,bodytext,,
-NULL,p94,1349,100,bodytext,,
-NULL,p94,1350,100,centered,,
-NULL,p94,1351,4,subhead,Kāyānupassanā iriyāpathapabbaṃ,随观身‧威仪路径(方法)节
-NULL,p94,1352,100,bodytext,,
-NULL,p94,1353,100,centered,,
-NULL,p94,1354,4,subhead,Kāyānupassanā sampajānapabbaṃ,随观身‧正知节
-NULL,p94,1355,100,bodytext,,
-NULL,p94,1356,100,centered,,
-NULL,p94,1357,4,subhead,Kāyānupassanā paṭikūlamanasikārapabbaṃ,随观身‧厌拒作意节
-NULL,p94,1358,100,bodytext,,
-NULL,p94,1359,100,bodytext,,
-NULL,p94,1360,100,bodytext,,
-NULL,p94,1361,100,centered,,
-NULL,p94,1362,4,subhead,Kāyānupassanā dhātumanasikārapabbaṃ,随观身‧四界作意节
-NULL,p94,1363,100,bodytext,,
-NULL,p94,1364,100,bodytext,,
-NULL,p94,1365,100,bodytext,,
-NULL,p94,1366,100,centered,,
-NULL,p94,1367,4,subhead,Kāyānupassanā navasivathikapabbaṃ,随观身‧九墓地节
-NULL,p94,1368,100,bodytext,,
-NULL,p94,1369,100,bodytext,,
-NULL,p94,1370,100,bodytext,,
-NULL,p94,1371,100,bodytext,,
-NULL,p94,1372,100,bodytext,,
-NULL,p94,1373,100,bodytext,,
-NULL,p94,1374,100,bodytext,,
-NULL,p94,1375,100,centered,,
-NULL,p94,1376,100,centered,,
-NULL,p94,1377,4,subhead,Vedanānupassanā,随观受
-NULL,p94,1378,100,bodytext,,
-NULL,p94,1379,100,centered,,
-NULL,p94,1380,4,subhead,Cittānupassanā,随观心
-NULL,p94,1381,100,bodytext,,
-NULL,p94,1382,100,centered,,
-NULL,p94,1383,4,subhead,Dhammānupassanā nīvaraṇapabbaṃ,随观法‧盖节
-NULL,p94,1384,100,bodytext,,
-NULL,p94,1385,100,bodytext,,
-NULL,p94,1386,100,bodytext,,
-NULL,p94,1387,100,bodytext,,
-NULL,p94,1388,100,bodytext,,
-NULL,p94,1389,100,bodytext,,
-NULL,p94,1390,100,bodytext,,
-NULL,p94,1391,100,centered,,
-NULL,p94,1392,4,subhead,Dhammānupassanā khandhapabbaṃ,随观法‧蕴节
-NULL,p94,1393,100,bodytext,,
-NULL,p94,1394,100,centered,,
-NULL,p94,1395,4,subhead,Dhammānupassanā āyatanapabbaṃ,随观法‧处节
-NULL,p94,1396,100,bodytext,,
-NULL,p94,1397,100,bodytext,,
-NULL,p94,1398,100,bodytext,,
-NULL,p94,1399,100,bodytext,,
-NULL,p94,1400,100,bodytext,,
-NULL,p94,1401,100,bodytext,,
-NULL,p94,1402,100,bodytext,,
-NULL,p94,1403,100,bodytext,,
-NULL,p94,1404,100,centered,,
-NULL,p94,1405,4,subhead,Dhammānupassanā bojjhaṅgapabbaṃ,随观法‧觉支节
-NULL,p94,1406,100,bodytext,,
-NULL,p94,1407,100,bodytext,,
-NULL,p94,1408,100,bodytext,,
-NULL,p94,1409,100,bodytext,,
-NULL,p94,1410,100,bodytext,,
-NULL,p94,1411,100,bodytext,,
-NULL,p94,1412,100,bodytext,,
-NULL,p94,1413,100,bodytext,,
-NULL,p94,1414,100,centered,,
-NULL,p94,1415,4,subhead,Dhammānupassanā saccapabbaṃ,随观法‧谛节
-NULL,p94,1416,100,bodytext,,
-NULL,p94,1417,100,centered,,
-NULL,p94,1418,4,subhead,Dukkhasaccaniddeso,苦谛的说明
-NULL,p94,1419,100,bodytext,,
-NULL,p94,1420,100,bodytext,,
-NULL,p94,1421,100,bodytext,,
-NULL,p94,1422,100,bodytext,,
-NULL,p94,1423,100,bodytext,,
-NULL,p94,1424,100,bodytext,,
-NULL,p94,1425,100,bodytext,,
-NULL,p94,1426,100,bodytext,,
-NULL,p94,1427,100,bodytext,,
-NULL,p94,1428,100,bodytext,,
-NULL,p94,1429,100,bodytext,,
-NULL,p94,1430,100,bodytext,,
-NULL,p94,1431,100,bodytext,,
-NULL,p94,1432,4,subhead,Samudayasaccaniddeso,集谛的说明
-NULL,p94,1433,100,bodytext,,
-NULL,p94,1434,100,bodytext,,
-NULL,p94,1435,100,bodytext,,
-NULL,p94,1436,100,bodytext,,
-NULL,p94,1437,100,bodytext,,
-NULL,p94,1438,100,bodytext,,
-NULL,p94,1439,100,bodytext,,
-NULL,p94,1440,100,bodytext,,
-NULL,p94,1441,100,bodytext,,
-NULL,p94,1442,100,bodytext,,
-NULL,p94,1443,100,bodytext,,
-NULL,p94,1444,100,bodytext,,
-NULL,p94,1445,4,subhead,Nirodhasaccaniddeso,灭谛的说明
-NULL,p94,1446,100,bodytext,,
-NULL,p94,1447,100,bodytext,,
-NULL,p94,1448,100,bodytext,,
-NULL,p94,1449,100,bodytext,,
-NULL,p94,1450,100,bodytext,,
-NULL,p94,1451,100,bodytext,,
-NULL,p94,1452,100,bodytext,,
-NULL,p94,1453,100,bodytext,,
-NULL,p94,1454,100,bodytext,,
-NULL,p94,1455,100,bodytext,,
-NULL,p94,1456,100,bodytext,,
-NULL,p94,1457,100,bodytext,,
-NULL,p94,1458,4,subhead,Maggasaccaniddeso,道谛的说明
-NULL,p94,1459,100,bodytext,,
-NULL,p94,1460,100,bodytext,,
-NULL,p94,1461,100,bodytext,,
-NULL,p94,1462,100,bodytext,,
-NULL,p94,1463,100,bodytext,,
-NULL,p94,1464,100,bodytext,,
-NULL,p94,1465,100,bodytext,,
-NULL,p94,1466,100,bodytext,,
-NULL,p94,1467,100,bodytext,,
-NULL,p94,1468,100,bodytext,,
-NULL,p94,1469,100,bodytext,,
-NULL,p94,1470,100,centered,,
-NULL,p94,1471,100,bodytext,,
-NULL,p94,1472,100,bodytext,,
-NULL,p94,1473,100,bodytext,,
-NULL,p94,1474,100,bodytext,,
-NULL,p94,1475,100,centered,,
-NULL,p94,1476,2,chapter,10. Pāyāsisuttaṃ,23、波亚西经
-NULL,p94,1477,100,bodytext,,
-NULL,p94,1478,4,subhead,Pāyāsirājaññavatthu,波亚西亲王之事
-NULL,p94,1479,100,bodytext,,
-NULL,p94,1480,100,bodytext,,
-NULL,p94,1481,100,bodytext,,
-NULL,p94,1482,100,bodytext,,
-NULL,p94,1483,4,subhead,Natthikavādo,虚无论
-NULL,p94,1484,100,bodytext,,
-NULL,p94,1485,4,subhead,Candimasūriyaupamā,日月的譬喻
-NULL,p94,1486,100,bodytext,,
-NULL,p94,1487,100,bodytext,,
-NULL,p94,1488,4,subhead,Coraupamā,盗贼的譬喻
-NULL,p94,1489,100,bodytext,,
-NULL,p94,1490,100,bodytext,,
-NULL,p94,1491,4,subhead,Gūthakūpapurisaupamā,粪坑男子的譬喻
-NULL,p94,1492,100,bodytext,,
-NULL,p94,1493,100,bodytext,,
-NULL,p94,1494,100,bodytext,,
-NULL,p94,1495,4,subhead,Tāvatiṃsadevaupamā,三十三天的譬喻
-NULL,p94,1496,100,bodytext,,
-NULL,p94,1497,4,subhead,Jaccandhaupamā,天生盲者的譬喻
-NULL,p94,1498,100,bodytext,,
-NULL,p94,1499,100,bodytext,,
-NULL,p94,1500,100,bodytext,,
-NULL,p94,1501,4,subhead,Gabbhinīupamā,孕妇的譬喻
-NULL,p94,1502,100,bodytext,,
-NULL,p94,1503,100,bodytext,,
-NULL,p94,1504,100,bodytext,,
-NULL,p94,1505,4,subhead,Supinakaupamā,梦的譬喻
-NULL,p94,1506,100,bodytext,,
-NULL,p94,1507,100,bodytext,,
-NULL,p94,1508,4,subhead,Santattaayoguḷaupamā,晒热铁球的譬喻
-NULL,p94,1509,100,bodytext,,
-NULL,p94,1510,100,bodytext,,
-NULL,p94,1511,4,subhead,Saṅkhadhamaupamā,吹法螺者的譬喻
-NULL,p94,1512,100,bodytext,,
-NULL,p94,1513,100,bodytext,,
-NULL,p94,1514,100,bodytext,,
-NULL,p94,1515,4,subhead,Aggikajaṭilaupamā,结发拜火者的譬喻
-NULL,p94,1516,100,bodytext,,
-NULL,p94,1517,100,bodytext,,
-NULL,p94,1518,100,bodytext,,
-NULL,p94,1519,100,bodytext,,
-NULL,p94,1520,4,subhead,Dve satthavāhaupamā,二位商队主的譬喻
-NULL,p94,1521,100,bodytext,,
-NULL,p94,1522,100,bodytext,,
-NULL,p94,1523,100,bodytext,,
-NULL,p94,1524,100,bodytext,,
-NULL,p94,1525,100,bodytext,,
-NULL,p94,1526,100,bodytext,,
-NULL,p94,1527,4,subhead,Gūthabhārikaupamā,担粪者的譬喻
-NULL,p94,1528,100,bodytext,,
-NULL,p94,1529,100,bodytext,,
-NULL,p94,1530,4,subhead,Akkhadhuttakaupamā,赌徒的譬喻
-NULL,p94,1531,100,bodytext,,
-NULL,p94,1532,100,gatha1,,
-NULL,p94,1533,100,gathalast,,
-NULL,p94,1534,100,bodytext,,
-NULL,p94,1535,100,bodytext,,
-NULL,p94,1536,4,subhead,Sāṇabhārikaupamā,担麻者的譬喻
-NULL,p94,1537,100,bodytext,,
-NULL,p94,1538,100,bodytext,,
-NULL,p94,1539,100,bodytext,,
-NULL,p94,1540,100,bodytext,,
-NULL,p94,1541,4,subhead,Saraṇagamanaṃ,归依
-NULL,p94,1542,100,bodytext,,
-NULL,p94,1543,100,bodytext,,
-NULL,p94,1544,4,subhead,Yaññakathā,牲祭的谈说
-NULL,p94,1545,100,bodytext,,
-NULL,p94,1546,100,bodytext,,
-NULL,p94,1547,4,subhead,Uttaramāṇavavatthu,更优秀的青年徒弟之事
-NULL,p94,1548,100,bodytext,,
-NULL,p94,1549,100,bodytext,,
-NULL,p94,1550,4,subhead,Pāyāsidevaputto,波亚西天子
-NULL,p94,1551,100,bodytext,,
-NULL,p94,1552,100,bodytext,,
-NULL,p94,1553,100,centered,,
-NULL,p94,1554,100,centered,,
-NULL,p94,1555,100,bodytext,,
-NULL,p94,1556,100,gatha1,,
-NULL,p94,1557,100,gatha2,,
-NULL,p94,1558,100,gathalast,,
-NULL,p94,1559,100,centered,,

+ 1560 - 0
pali_title/94_zh-hans.csv

@@ -0,0 +1,1560 @@
+id,book,par_num,100,class,title,text,author
+NULL,94,1,100,centered,,,庄春江
+NULL,94,2,100,nikaya,,,庄春江
+NULL,94,3,1,book,Mahāvaggapāḷi,大品,庄春江
+NULL,94,4,2,chapter,1. Mahāpadānasuttaṃ,14、譬喻大经,庄春江
+NULL,94,5,4,subhead,Pubbenivāsapaṭisaṃyuttakathā,与前世住处有关的谈说,庄春江
+NULL,94,6,100,bodytext,,,庄春江
+NULL,94,7,100,bodytext,,,庄春江
+NULL,94,8,100,bodytext,,,庄春江
+NULL,94,9,100,bodytext,,,庄春江
+NULL,94,10,100,bodytext,,,庄春江
+NULL,94,11,100,bodytext,,,庄春江
+NULL,94,12,100,bodytext,,,庄春江
+NULL,94,13,100,bodytext,,,庄春江
+NULL,94,14,100,bodytext,,,庄春江
+NULL,94,15,100,bodytext,,,庄春江
+NULL,94,16,100,bodytext,,,庄春江
+NULL,94,17,100,bodytext,,,庄春江
+NULL,94,18,100,bodytext,,,庄春江
+NULL,94,19,100,bodytext,,,庄春江
+NULL,94,20,100,bodytext,,,庄春江
+NULL,94,21,100,bodytext,,,庄春江
+NULL,94,22,100,bodytext,,,庄春江
+NULL,94,23,100,bodytext,,,庄春江
+NULL,94,24,100,bodytext,,,庄春江
+NULL,94,25,100,bodytext,,,庄春江
+NULL,94,26,100,bodytext,,,庄春江
+NULL,94,27,100,bodytext,,,庄春江
+NULL,94,28,100,bodytext,,,庄春江
+NULL,94,29,100,bodytext,,,庄春江
+NULL,94,30,100,bodytext,,,庄春江
+NULL,94,31,100,bodytext,,,庄春江
+NULL,94,32,100,bodytext,,,庄春江
+NULL,94,33,100,bodytext,,,庄春江
+NULL,94,34,100,bodytext,,,庄春江
+NULL,94,35,100,bodytext,,,庄春江
+NULL,94,36,100,bodytext,,,庄春江
+NULL,94,37,100,bodytext,,,庄春江
+NULL,94,38,4,subhead,Bodhisattadhammatā,菩萨常法,庄春江
+NULL,94,39,100,bodytext,,,庄春江
+NULL,94,40,100,bodytext,,,庄春江
+NULL,94,41,100,bodytext,,,庄春江
+NULL,94,42,100,bodytext,,,庄春江
+NULL,94,43,100,bodytext,,,庄春江
+NULL,94,44,100,bodytext,,,庄春江
+NULL,94,45,100,bodytext,,,庄春江
+NULL,94,46,100,bodytext,,,庄春江
+NULL,94,47,100,bodytext,,,庄春江
+NULL,94,48,100,bodytext,,,庄春江
+NULL,94,49,100,bodytext,,,庄春江
+NULL,94,50,100,bodytext,,,庄春江
+NULL,94,51,100,bodytext,,,庄春江
+NULL,94,52,100,bodytext,,,庄春江
+NULL,94,53,100,bodytext,,,庄春江
+NULL,94,54,100,bodytext,,,庄春江
+NULL,94,55,4,subhead,Dvattiṃsamahāpurisalakkhaṇā,三十二大丈夫相,庄春江
+NULL,94,56,100,bodytext,,,庄春江
+NULL,94,57,100,bodytext,,,庄春江
+NULL,94,58,100,bodytext,,,庄春江
+NULL,94,59,100,bodytext,,,庄春江
+NULL,94,60,100,bodytext,,,庄春江
+NULL,94,61,100,bodytext,,,庄春江
+NULL,94,62,100,bodytext,,,庄春江
+NULL,94,63,100,bodytext,,,庄春江
+NULL,94,64,100,bodytext,,,庄春江
+NULL,94,65,100,bodytext,,,庄春江
+NULL,94,66,100,bodytext,,,庄春江
+NULL,94,67,100,bodytext,,,庄春江
+NULL,94,68,100,bodytext,,,庄春江
+NULL,94,69,100,bodytext,,,庄春江
+NULL,94,70,100,bodytext,,,庄春江
+NULL,94,71,100,bodytext,,,庄春江
+NULL,94,72,100,bodytext,,,庄春江
+NULL,94,73,100,bodytext,,,庄春江
+NULL,94,74,100,bodytext,,,庄春江
+NULL,94,75,100,bodytext,,,庄春江
+NULL,94,76,100,bodytext,,,庄春江
+NULL,94,77,100,bodytext,,,庄春江
+NULL,94,78,100,bodytext,,,庄春江
+NULL,94,79,100,bodytext,,,庄春江
+NULL,94,80,100,bodytext,,,庄春江
+NULL,94,81,100,bodytext,,,庄春江
+NULL,94,82,100,bodytext,,,庄春江
+NULL,94,83,100,bodytext,,,庄春江
+NULL,94,84,100,bodytext,,,庄春江
+NULL,94,85,100,bodytext,,,庄春江
+NULL,94,86,100,bodytext,,,庄春江
+NULL,94,87,100,bodytext,,,庄春江
+NULL,94,88,100,bodytext,,,庄春江
+NULL,94,89,100,bodytext,,,庄春江
+NULL,94,90,100,bodytext,,,庄春江
+NULL,94,91,4,subhead,Vipassīsamaññā,毗婆尸的称呼,庄春江
+NULL,94,92,100,bodytext,,,庄春江
+NULL,94,93,100,bodytext,,,庄春江
+NULL,94,94,100,bodytext,,,庄春江
+NULL,94,95,100,bodytext,,,庄春江
+NULL,94,96,100,bodytext,,,庄春江
+NULL,94,97,100,bodytext,,,庄春江
+NULL,94,98,100,centered,,,庄春江
+NULL,94,99,4,subhead,Jiṇṇapuriso,老年人,庄春江
+NULL,94,100,100,bodytext,,,庄春江
+NULL,94,101,100,bodytext,,,庄春江
+NULL,94,102,100,bodytext,,,庄春江
+NULL,94,103,100,bodytext,,,庄春江
+NULL,94,104,4,subhead,Byādhitapuriso,病人,庄春江
+NULL,94,105,100,bodytext,,,庄春江
+NULL,94,106,100,bodytext,,,庄春江
+NULL,94,107,100,bodytext,,,庄春江
+NULL,94,108,100,bodytext,,,庄春江
+NULL,94,109,100,bodytext,,,庄春江
+NULL,94,110,4,subhead,Kālaṅkatapuriso,死人,庄春江
+NULL,94,111,100,bodytext,,,庄春江
+NULL,94,112,100,bodytext,,,庄春江
+NULL,94,113,100,bodytext,,,庄春江
+NULL,94,114,100,bodytext,,,庄春江
+NULL,94,115,4,subhead,Pabbajito,出家,庄春江
+NULL,94,116,100,bodytext,,,庄春江
+NULL,94,117,100,bodytext,,,庄春江
+NULL,94,118,100,bodytext,,,庄春江
+NULL,94,119,4,subhead,Bodhisattapabbajjā,菩萨出家,庄春江
+NULL,94,120,100,bodytext,,,庄春江
+NULL,94,121,4,subhead,Mahājanakāyaanupabbajjā,大群众跟随出家,庄春江
+NULL,94,122,100,bodytext,,,庄春江
+NULL,94,123,100,bodytext,,,庄春江
+NULL,94,124,100,bodytext,,,庄春江
+NULL,94,125,4,subhead,Bodhisattaabhiniveso,菩萨-上安住,庄春江
+NULL,94,126,100,bodytext,,,庄春江
+NULL,94,127,100,bodytext,,,庄春江
+NULL,94,128,100,bodytext,,,庄春江
+NULL,94,129,100,bodytext,,,庄春江
+NULL,94,130,100,bodytext,,,庄春江
+NULL,94,131,100,bodytext,,,庄春江
+NULL,94,132,100,bodytext,,,庄春江
+NULL,94,133,100,bodytext,,,庄春江
+NULL,94,134,100,bodytext,,,庄春江
+NULL,94,135,100,bodytext,,,庄春江
+NULL,94,136,100,bodytext,,,庄春江
+NULL,94,137,100,bodytext,,,庄春江
+NULL,94,138,100,bodytext,,,庄春江
+NULL,94,139,100,bodytext,,,庄春江
+NULL,94,140,100,bodytext,,,庄春江
+NULL,94,141,100,bodytext,,,庄春江
+NULL,94,142,100,bodytext,,,庄春江
+NULL,94,143,100,bodytext,,,庄春江
+NULL,94,144,100,bodytext,,,庄春江
+NULL,94,145,100,bodytext,,,庄春江
+NULL,94,146,100,bodytext,,,庄春江
+NULL,94,147,100,bodytext,,,庄春江
+NULL,94,148,100,bodytext,,,庄春江
+NULL,94,149,100,bodytext,,,庄春江
+NULL,94,150,100,bodytext,,,庄春江
+NULL,94,151,100,bodytext,,,庄春江
+NULL,94,152,100,centered,,,庄春江
+NULL,94,153,4,subhead,Brahmayācanakathā,梵天劝请的谈说,庄春江
+NULL,94,154,100,bodytext,,,庄春江
+NULL,94,155,100,bodytext,,,庄春江
+NULL,94,156,100,gatha1,,,庄春江
+NULL,94,157,100,gathalast,,,庄春江
+NULL,94,158,100,gatha1,,,庄春江
+NULL,94,159,100,gathalast,,,庄春江
+NULL,94,160,100,bodytext,,,庄春江
+NULL,94,161,100,bodytext,,,庄春江
+NULL,94,162,100,bodytext,,,庄春江
+NULL,94,163,100,gatha1,,,庄春江
+NULL,94,164,100,gathalast,,,庄春江
+NULL,94,165,100,gatha1,,,庄春江
+NULL,94,166,100,gathalast,,,庄春江
+NULL,94,167,100,bodytext,,,庄春江
+NULL,94,168,100,bodytext,,,庄春江
+NULL,94,169,100,bodytext,,,庄春江
+NULL,94,170,100,bodytext,,,庄春江
+NULL,94,171,100,gatha1,,,庄春江
+NULL,94,172,100,gathalast,,,庄春江
+NULL,94,173,100,gatha1,,,庄春江
+NULL,94,174,100,gatha2,,,庄春江
+NULL,94,175,100,gatha3,,,庄春江
+NULL,94,176,100,gatha2,,,庄春江
+NULL,94,177,100,gatha3,,,庄春江
+NULL,94,178,100,gathalast,,,庄春江
+NULL,94,179,100,bodytext,,,庄春江
+NULL,94,180,100,gatha1,,,庄春江
+NULL,94,181,100,gatha2,,,庄春江
+NULL,94,182,100,gatha3,,,庄春江
+NULL,94,183,100,gathalast,,,庄春江
+NULL,94,184,100,bodytext,,,庄春江
+NULL,94,185,4,subhead,Aggasāvakayugaṃ,最上双弟子,庄春江
+NULL,94,186,100,bodytext,,,庄春江
+NULL,94,187,100,bodytext,,,庄春江
+NULL,94,188,100,bodytext,,,庄春江
+NULL,94,189,100,bodytext,,,庄春江
+NULL,94,190,100,bodytext,,,庄春江
+NULL,94,191,100,bodytext,,,庄春江
+NULL,94,192,4,subhead,Mahājanakāyapabbajjā,大群众的出家,庄春江
+NULL,94,193,100,bodytext,,,庄春江
+NULL,94,194,100,bodytext,,,庄春江
+NULL,94,195,100,bodytext,,,庄春江
+NULL,94,196,100,bodytext,,,庄春江
+NULL,94,197,4,subhead,Purimapabbajitānaṃ dhammābhisamayo,最初出家者的现观,庄春江
+NULL,94,198,100,bodytext,,,庄春江
+NULL,94,199,100,bodytext,,,庄春江
+NULL,94,200,100,bodytext,,,庄春江
+NULL,94,201,100,bodytext,,,庄春江
+NULL,94,202,4,subhead,Cārikāanujānanaṃ,允许游行,庄春江
+NULL,94,203,100,bodytext,,,庄春江
+NULL,94,204,100,bodytext,,,庄春江
+NULL,94,205,100,bodytext,,,庄春江
+NULL,94,206,100,bodytext,,,庄春江
+NULL,94,207,100,bodytext,,,庄春江
+NULL,94,208,100,bodytext,,,庄春江
+NULL,94,209,100,bodytext,,,庄春江
+NULL,94,210,100,gatha1,,,庄春江
+NULL,94,211,100,gatha2,,,庄春江
+NULL,94,212,100,gatha3,,,庄春江
+NULL,94,213,100,gathalast,,,庄春江
+NULL,94,214,100,gatha1,,,庄春江
+NULL,94,215,100,gathalast,,,庄春江
+NULL,94,216,100,gatha1,,,庄春江
+NULL,94,217,100,gatha2,,,庄春江
+NULL,94,218,100,gathalast,,,庄春江
+NULL,94,219,4,subhead,Devatārocanaṃ,天神的告示,庄春江
+NULL,94,220,100,bodytext,,,庄春江
+NULL,94,221,100,bodytext,,,庄春江
+NULL,94,222,100,bodytext,,,庄春江
+NULL,94,223,100,bodytext,,,庄春江
+NULL,94,224,100,bodytext,,,庄春江
+NULL,94,225,100,bodytext,,,庄春江
+NULL,94,226,100,bodytext,,,庄春江
+NULL,94,227,100,bodytext,,,庄春江
+NULL,94,228,100,centered,,,庄春江
+NULL,94,229,2,chapter,2. Mahānidānasuttaṃ,15、大因缘经,庄春江
+NULL,94,230,4,subhead,Paṭiccasamuppādo,缘起,庄春江
+NULL,94,231,100,bodytext,,,庄春江
+NULL,94,232,100,bodytext,,,庄春江
+NULL,94,233,100,bodytext,,,庄春江
+NULL,94,234,100,bodytext,,,庄春江
+NULL,94,235,100,bodytext,,,庄春江
+NULL,94,236,100,bodytext,,,庄春江
+NULL,94,237,100,bodytext,,,庄春江
+NULL,94,238,100,bodytext,,,庄春江
+NULL,94,239,100,bodytext,,,庄春江
+NULL,94,240,100,bodytext,,,庄春江
+NULL,94,241,100,bodytext,,,庄春江
+NULL,94,242,100,bodytext,,,庄春江
+NULL,94,243,100,bodytext,,,庄春江
+NULL,94,244,100,bodytext,,,庄春江
+NULL,94,245,100,bodytext,,,庄春江
+NULL,94,246,100,bodytext,,,庄春江
+NULL,94,247,100,bodytext,,,庄春江
+NULL,94,248,100,bodytext,,,庄春江
+NULL,94,249,100,bodytext,,,庄春江
+NULL,94,250,100,bodytext,,,庄春江
+NULL,94,251,100,bodytext,,,庄春江
+NULL,94,252,100,bodytext,,,庄春江
+NULL,94,253,100,bodytext,,,庄春江
+NULL,94,254,100,bodytext,,,庄春江
+NULL,94,255,100,bodytext,,,庄春江
+NULL,94,256,100,bodytext,,,庄春江
+NULL,94,257,100,bodytext,,,庄春江
+NULL,94,258,100,bodytext,,,庄春江
+NULL,94,259,100,bodytext,,,庄春江
+NULL,94,260,100,bodytext,,,庄春江
+NULL,94,261,4,subhead,Attapaññatti,真我之安立,庄春江
+NULL,94,262,100,bodytext,,,庄春江
+NULL,94,263,100,bodytext,,,庄春江
+NULL,94,264,100,bodytext,,,庄春江
+NULL,94,265,100,bodytext,,,庄春江
+NULL,94,266,100,bodytext,,,庄春江
+NULL,94,267,4,subhead,Naattapaññatti,真我之不安立,庄春江
+NULL,94,268,100,bodytext,,,庄春江
+NULL,94,269,100,bodytext,,,庄春江
+NULL,94,270,100,bodytext,,,庄春江
+NULL,94,271,100,bodytext,,,庄春江
+NULL,94,272,100,bodytext,,,庄春江
+NULL,94,273,4,subhead,Attasamanupassanā,真我之认为,庄春江
+NULL,94,274,100,bodytext,,,庄春江
+NULL,94,275,100,bodytext,,,庄春江
+NULL,94,276,100,bodytext,,,庄春江
+NULL,94,277,100,bodytext,,,庄春江
+NULL,94,278,100,bodytext,,,庄春江
+NULL,94,279,100,bodytext,,,庄春江
+NULL,94,280,4,subhead,Satta viññāṇaṭṭhiti,七识住,庄春江
+NULL,94,281,100,bodytext,,,庄春江
+NULL,94,282,100,bodytext,,,庄春江
+NULL,94,283,4,subhead,Aṭṭha vimokkhā,(暂缺),庄春江
+NULL,94,284,100,bodytext,,,庄春江
+NULL,94,285,100,bodytext,,,庄春江
+NULL,94,286,100,centered,,,庄春江
+NULL,94,287,2,chapter,3. Mahāparinibbānasuttaṃ,16、大般涅槃经,庄春江
+NULL,94,288,100,bodytext,,,庄春江
+NULL,94,289,100,bodytext,,,庄春江
+NULL,94,290,4,subhead,Vassakārabrāhmaṇo,作雨者婆罗门,庄春江
+NULL,94,291,100,bodytext,,,庄春江
+NULL,94,292,4,subhead,Rājaaparihāniyadhammā,国王-不衰退法,庄春江
+NULL,94,293,100,bodytext,,,庄春江
+NULL,94,294,100,bodytext,,,庄春江
+NULL,94,295,100,bodytext,,,庄春江
+NULL,94,296,100,bodytext,,,庄春江
+NULL,94,297,100,bodytext,,,庄春江
+NULL,94,298,100,centered,,,庄春江
+NULL,94,299,100,bodytext,,,庄春江
+NULL,94,300,100,bodytext,,,庄春江
+NULL,94,301,100,bodytext,,,庄春江
+NULL,94,302,100,bodytext,,,庄春江
+NULL,94,303,4,subhead,Bhikkhuaparihāniyadhammā,比丘-不衰退法,庄春江
+NULL,94,304,100,bodytext,,,庄春江
+NULL,94,305,100,bodytext,,,庄春江
+NULL,94,306,100,bodytext,,,庄春江
+NULL,94,307,100,bodytext,,,庄春江
+NULL,94,308,100,bodytext,,,庄春江
+NULL,94,309,100,bodytext,,,庄春江
+NULL,94,310,100,bodytext,,,庄春江
+NULL,94,311,100,bodytext,,,庄春江
+NULL,94,312,100,bodytext,,,庄春江
+NULL,94,313,100,bodytext,,,庄春江
+NULL,94,314,100,bodytext,,,庄春江
+NULL,94,315,100,bodytext,,,庄春江
+NULL,94,316,100,bodytext,,,庄春江
+NULL,94,317,100,bodytext,,,庄春江
+NULL,94,318,100,bodytext,,,庄春江
+NULL,94,319,100,bodytext,,,庄春江
+NULL,94,320,100,bodytext,,,庄春江
+NULL,94,321,100,bodytext,,,庄春江
+NULL,94,322,100,bodytext,,,庄春江
+NULL,94,323,100,bodytext,,,庄春江
+NULL,94,324,100,bodytext,,,庄春江
+NULL,94,325,100,bodytext,,,庄春江
+NULL,94,326,100,bodytext,,,庄春江
+NULL,94,327,100,bodytext,,,庄春江
+NULL,94,328,100,bodytext,,,庄春江
+NULL,94,329,100,bodytext,,,庄春江
+NULL,94,330,100,bodytext,,,庄春江
+NULL,94,331,100,bodytext,,,庄春江
+NULL,94,332,100,bodytext,,,庄春江
+NULL,94,333,100,bodytext,,,庄春江
+NULL,94,334,100,bodytext,,,庄春江
+NULL,94,335,100,bodytext,,,庄春江
+NULL,94,336,100,bodytext,,,庄春江
+NULL,94,337,100,bodytext,,,庄春江
+NULL,94,338,100,bodytext,,,庄春江
+NULL,94,339,100,bodytext,,,庄春江
+NULL,94,340,4,subhead,Sāriputtasīhanādo,舍利弗的狮子吼,庄春江
+NULL,94,341,100,bodytext,,,庄春江
+NULL,94,342,100,bodytext,,,庄春江
+NULL,94,343,100,bodytext,,,庄春江
+NULL,94,344,100,bodytext,,,庄春江
+NULL,94,345,100,bodytext,,,庄春江
+NULL,94,346,100,bodytext,,,庄春江
+NULL,94,347,100,bodytext,,,庄春江
+NULL,94,348,4,subhead,Dussīlaādīnavā,破戒(坏品德)的过患,庄春江
+NULL,94,349,100,bodytext,,,庄春江
+NULL,94,350,100,bodytext,,,庄春江
+NULL,94,351,100,bodytext,,,庄春江
+NULL,94,352,100,bodytext,,,庄春江
+NULL,94,353,100,bodytext,,,庄春江
+NULL,94,354,100,bodytext,,,庄春江
+NULL,94,355,4,subhead,Sīlavanttaānisaṃsā,持戒(有品德)的效益,庄春江
+NULL,94,356,100,bodytext,,,庄春江
+NULL,94,357,100,bodytext,,,庄春江
+NULL,94,358,100,bodytext,,,庄春江
+NULL,94,359,100,bodytext,,,庄春江
+NULL,94,360,100,bodytext,,,庄春江
+NULL,94,361,100,bodytext,,,庄春江
+NULL,94,362,4,subhead,Pāṭaliputtanagaramāpanaṃ,华氏城的建筑,庄春江
+NULL,94,363,100,bodytext,,,庄春江
+NULL,94,364,100,bodytext,,,庄春江
+NULL,94,365,100,bodytext,,,庄春江
+NULL,94,366,100,gatha1,,,庄春江
+NULL,94,367,100,gathalast,,,庄春江
+NULL,94,368,100,gatha1,,,庄春江
+NULL,94,369,100,gathalast,,,庄春江
+NULL,94,370,100,gatha1,,,庄春江
+NULL,94,371,100,gathalast,,,庄春江
+NULL,94,372,100,bodytext,,,庄春江
+NULL,94,373,100,bodytext,,,庄春江
+NULL,94,374,100,gatha1,,,庄春江
+NULL,94,375,100,gathalast,,,庄春江
+NULL,94,376,100,centered,,,庄春江
+NULL,94,377,4,subhead,Ariyasaccakathā,圣谛的谈说,庄春江
+NULL,94,378,100,bodytext,,,庄春江
+NULL,94,379,100,bodytext,,,庄春江
+NULL,94,380,100,gatha1,,,庄春江
+NULL,94,381,100,gathalast,,,庄春江
+NULL,94,382,100,gatha1,,,庄春江
+NULL,94,383,100,gathalast,,,庄春江
+NULL,94,384,100,bodytext,,,庄春江
+NULL,94,385,4,subhead,Anāvattidhammasambodhiparāyaṇā,不还者与以正觉为彼岸,庄春江
+NULL,94,386,100,bodytext,,,庄春江
+NULL,94,387,100,bodytext,,,庄春江
+NULL,94,388,4,subhead,Dhammādāsadhammapariyāyā,法镜法门,庄春江
+NULL,94,389,100,bodytext,,,庄春江
+NULL,94,390,100,bodytext,,,庄春江
+NULL,94,391,100,bodytext,,,庄春江
+NULL,94,392,100,bodytext,,,庄春江
+NULL,94,393,100,bodytext,,,庄春江
+NULL,94,394,100,bodytext,,,庄春江
+NULL,94,395,100,bodytext,,,庄春江
+NULL,94,396,100,bodytext,,,庄春江
+NULL,94,397,100,bodytext,,,庄春江
+NULL,94,398,100,bodytext,,,庄春江
+NULL,94,399,100,bodytext,,,庄春江
+NULL,94,400,100,bodytext,,,庄春江
+NULL,94,401,4,subhead,Ambapālīgaṇikā,艺妓蓭婆巴利,庄春江
+NULL,94,402,100,bodytext,,,庄春江
+NULL,94,403,100,bodytext,,,庄春江
+NULL,94,404,100,bodytext,,,庄春江
+NULL,94,405,100,bodytext,,,庄春江
+NULL,94,406,4,subhead,Veḷuvagāmavassūpagamanaṃ,在木瓜树村进入雨季安居,庄春江
+NULL,94,407,100,bodytext,,,庄春江
+NULL,94,408,100,bodytext,,,庄春江
+NULL,94,409,100,bodytext,,,庄春江
+NULL,94,410,100,centered,,,庄春江
+NULL,94,411,4,subhead,Nimittobhāsakathā,征相与暗示的谈说,庄春江
+NULL,94,412,100,bodytext,,,庄春江
+NULL,94,413,100,bodytext,,,庄春江
+NULL,94,414,4,subhead,Mārayācanakathā,魔请求的谈说,庄春江
+NULL,94,415,100,bodytext,,,庄春江
+NULL,94,416,100,bodytext,,,庄春江
+NULL,94,417,100,bodytext,,,庄春江
+NULL,94,418,100,bodytext,,,庄春江
+NULL,94,419,100,bodytext,,,庄春江
+NULL,94,420,100,bodytext,,,庄春江
+NULL,94,421,4,subhead,Āyusaṅkhāraossajjanaṃ,寿行的舍弃,庄春江
+NULL,94,422,100,bodytext,,,庄春江
+NULL,94,423,100,gatha1,,,庄春江
+NULL,94,424,100,gathalast,,,庄春江
+NULL,94,425,4,subhead,Mahābhūmicālahetu,大地震的原因,庄春江
+NULL,94,426,100,bodytext,,,庄春江
+NULL,94,427,100,bodytext,,,庄春江
+NULL,94,428,100,bodytext,,,庄春江
+NULL,94,429,100,bodytext,,,庄春江
+NULL,94,430,100,bodytext,,,庄春江
+NULL,94,431,100,bodytext,,,庄春江
+NULL,94,432,100,bodytext,,,庄春江
+NULL,94,433,100,bodytext,,,庄春江
+NULL,94,434,100,bodytext,,,庄春江
+NULL,94,435,100,bodytext,,,庄春江
+NULL,94,436,4,subhead,Aṭṭha parisā,八众,庄春江
+NULL,94,437,100,bodytext,,,庄春江
+NULL,94,438,4,subhead,Aṭṭha abhibhāyatanāni,八胜处,庄春江
+NULL,94,439,100,bodytext,,,庄春江
+NULL,94,440,100,bodytext,,,庄春江
+NULL,94,441,100,bodytext,,,庄春江
+NULL,94,442,100,bodytext,,,庄春江
+NULL,94,443,100,bodytext,,,庄春江
+NULL,94,444,100,bodytext,,,庄春江
+NULL,94,445,100,bodytext,,,庄春江
+NULL,94,446,100,bodytext,,,庄春江
+NULL,94,447,4,subhead,Aṭṭha vimokkhā,八解脱,庄春江
+NULL,94,448,100,bodytext,,,庄春江
+NULL,94,449,100,bodytext,,,庄春江
+NULL,94,450,100,bodytext,,,庄春江
+NULL,94,451,100,bodytext,,,庄春江
+NULL,94,452,100,bodytext,,,庄春江
+NULL,94,453,100,bodytext,,,庄春江
+NULL,94,454,100,bodytext,,,庄春江
+NULL,94,455,100,bodytext,,,庄春江
+NULL,94,456,100,bodytext,,,庄春江
+NULL,94,457,4,subhead,Ānandayācanakathā,阿难请求的谈说,庄春江
+NULL,94,458,100,bodytext,,,庄春江
+NULL,94,459,100,bodytext,,,庄春江
+NULL,94,460,100,bodytext,,,庄春江
+NULL,94,461,100,bodytext,,,庄春江
+NULL,94,462,100,bodytext,,,庄春江
+NULL,94,463,100,bodytext,,,庄春江
+NULL,94,464,100,bodytext,,,庄春江
+NULL,94,465,100,bodytext,,,庄春江
+NULL,94,466,100,bodytext,,,庄春江
+NULL,94,467,100,bodytext,,,庄春江
+NULL,94,468,100,bodytext,,,庄春江
+NULL,94,469,100,gatha1,,,庄春江
+NULL,94,470,100,gathalast,,,庄春江
+NULL,94,471,100,gatha1,,,庄春江
+NULL,94,472,100,gathalast,,,庄春江
+NULL,94,473,100,gatha1,,,庄春江
+NULL,94,474,100,gathalast,,,庄春江
+NULL,94,475,100,centered,,,庄春江
+NULL,94,476,4,subhead,Nāgāpalokitaṃ,龙象回顾,庄春江
+NULL,94,477,100,bodytext,,,庄春江
+NULL,94,478,100,bodytext,,,庄春江
+NULL,94,479,100,gatha1,,,庄春江
+NULL,94,480,100,gathalast,,,庄春江
+NULL,94,481,100,gatha1,,,庄春江
+NULL,94,482,100,gathalast,,,庄春江
+NULL,94,483,100,bodytext,,,庄春江
+NULL,94,484,4,subhead,Catumahāpadesakathā,四大法教,庄春江
+NULL,94,485,100,bodytext,,,庄春江
+NULL,94,486,100,bodytext,,,庄春江
+NULL,94,487,100,bodytext,,,庄春江
+NULL,94,488,100,bodytext,,,庄春江
+NULL,94,489,100,bodytext,,,庄春江
+NULL,94,490,100,bodytext,,,庄春江
+NULL,94,491,4,subhead,Kammāraputtacundavatthu,铁匠之子纯陀的事,庄春江
+NULL,94,492,100,bodytext,,,庄春江
+NULL,94,493,100,bodytext,,,庄春江
+NULL,94,494,100,bodytext,,,庄春江
+NULL,94,495,100,gatha1,,,庄春江
+NULL,94,496,100,gathalast,,,庄春江
+NULL,94,497,100,gatha1,,,庄春江
+NULL,94,498,100,gatha2,,,庄春江
+NULL,94,499,100,gatha3,,,庄春江
+NULL,94,500,100,gathalast,,,庄春江
+NULL,94,501,4,subhead,Pānīyāharaṇaṃ,取水,庄春江
+NULL,94,502,100,bodytext,,,庄春江
+NULL,94,503,100,bodytext,,,庄春江
+NULL,94,504,100,bodytext,,,庄春江
+NULL,94,505,4,subhead,Pukkusamallaputtavatthu,末罗人之子晡古色的事,庄春江
+NULL,94,506,100,bodytext,,,庄春江
+NULL,94,507,100,bodytext,,,庄春江
+NULL,94,508,100,bodytext,,,庄春江
+NULL,94,509,100,bodytext,,,庄春江
+NULL,94,510,100,bodytext,,,庄春江
+NULL,94,511,100,bodytext,,,庄春江
+NULL,94,512,100,bodytext,,,庄春江
+NULL,94,513,100,gatha1,,,庄春江
+NULL,94,514,100,gathalast,,,庄春江
+NULL,94,515,100,bodytext,,,庄春江
+NULL,94,516,100,bodytext,,,庄春江
+NULL,94,517,100,gatha1,,,庄春江
+NULL,94,518,100,gatha2,,,庄春江
+NULL,94,519,100,gatha3,,,庄春江
+NULL,94,520,100,gathalast,,,庄春江
+NULL,94,521,100,gatha1,,,庄春江
+NULL,94,522,100,gatha2,,,庄春江
+NULL,94,523,100,gatha3,,,庄春江
+NULL,94,524,100,gathalast,,,庄春江
+NULL,94,525,100,gatha1,,,庄春江
+NULL,94,526,100,gatha2,,,庄春江
+NULL,94,527,100,gatha3,,,庄春江
+NULL,94,528,100,gathalast,,,庄春江
+NULL,94,529,100,gatha1,,,庄春江
+NULL,94,530,100,gathalast,,,庄春江
+NULL,94,531,100,bodytext,,,庄春江
+NULL,94,532,100,gatha1,,,庄春江
+NULL,94,533,100,gatha2,,,庄春江
+NULL,94,534,100,gatha3,,,庄春江
+NULL,94,535,100,gathalast,,,庄春江
+NULL,94,536,100,centered,,,庄春江
+NULL,94,537,4,subhead,Yamakasālā,双沙罗树,庄春江
+NULL,94,538,100,bodytext,,,庄春江
+NULL,94,539,100,bodytext,,,庄春江
+NULL,94,540,100,bodytext,,,庄春江
+NULL,94,541,4,subhead,Upavāṇatthero,优波哇那上座,庄春江
+NULL,94,542,100,bodytext,,,庄春江
+NULL,94,543,100,bodytext,,,庄春江
+NULL,94,544,100,bodytext,,,庄春江
+NULL,94,545,100,bodytext,,,庄春江
+NULL,94,546,4,subhead,Catusaṃvejanīyaṭṭhānāni,四个能激起宗教信仰心之处,庄春江
+NULL,94,547,100,bodytext,,,庄春江
+NULL,94,548,100,bodytext,,,庄春江
+NULL,94,549,100,bodytext,,,庄春江
+NULL,94,550,4,subhead,Ānandapucchākathā,阿难问题的谈说,庄春江
+NULL,94,551,100,bodytext,,,庄春江
+NULL,94,552,100,bodytext,,,庄春江
+NULL,94,553,100,bodytext,,,庄春江
+NULL,94,554,4,subhead,Thūpārahapuggalo,值得领受塔的人,庄春江
+NULL,94,555,100,bodytext,,,庄春江
+NULL,94,556,100,bodytext,,,庄春江
+NULL,94,557,100,bodytext,,,庄春江
+NULL,94,558,100,bodytext,,,庄春江
+NULL,94,559,100,bodytext,,,庄春江
+NULL,94,560,4,subhead,Ānandaacchariyadhammo,阿难的未曾有法,庄春江
+NULL,94,561,100,bodytext,,,庄春江
+NULL,94,562,100,bodytext,,,庄春江
+NULL,94,563,100,bodytext,,,庄春江
+NULL,94,564,100,bodytext,,,庄春江
+NULL,94,565,4,subhead,Mahāsudassanasuttadesanā,大善见经的教导,庄春江
+NULL,94,566,100,bodytext,,,庄春江
+NULL,94,567,100,bodytext,,,庄春江
+NULL,94,568,100,bodytext,,,庄春江
+NULL,94,569,4,subhead,Mallānaṃ vandanā,末罗人的礼拜,庄春江
+NULL,94,570,100,bodytext,,,庄春江
+NULL,94,571,4,subhead,Subhaddaparibbājakavatthu,游行者须跋陀的事,庄春江
+NULL,94,572,100,bodytext,,,庄春江
+NULL,94,573,100,bodytext,,,庄春江
+NULL,94,574,100,bodytext,,,庄春江
+NULL,94,575,100,gatha1,,,庄春江
+NULL,94,576,100,gatha2,,,庄春江
+NULL,94,577,100,gatha3,,,庄春江
+NULL,94,578,100,gathalast,,,庄春江
+NULL,94,579,100,gatha1,,,庄春江
+NULL,94,580,100,gathalast,,,庄春江
+NULL,94,581,100,bodytext,,,庄春江
+NULL,94,582,100,bodytext,,,庄春江
+NULL,94,583,100,bodytext,,,庄春江
+NULL,94,584,100,centered,,,庄春江
+NULL,94,585,4,subhead,Tathāgatapacchimavācā,如来最后的话,庄春江
+NULL,94,586,100,bodytext,,,庄春江
+NULL,94,587,100,bodytext,,,庄春江
+NULL,94,588,100,bodytext,,,庄春江
+NULL,94,589,4,subhead,Parinibbutakathā,般涅槃的谈说,庄春江
+NULL,94,590,100,bodytext,,,庄春江
+NULL,94,591,100,bodytext,,,庄春江
+NULL,94,592,100,bodytext,,,庄春江
+NULL,94,593,100,bodytext,,,庄春江
+NULL,94,594,100,gatha1,,,庄春江
+NULL,94,595,100,gatha2,,,庄春江
+NULL,94,596,100,gathalast,,,庄春江
+NULL,94,597,100,bodytext,,,庄春江
+NULL,94,598,100,gatha1,,,庄春江
+NULL,94,599,100,gathalast,,,庄春江
+NULL,94,600,100,bodytext,,,庄春江
+NULL,94,601,100,gatha1,,,庄春江
+NULL,94,602,100,gathalast,,,庄春江
+NULL,94,603,100,gatha1,,,庄春江
+NULL,94,604,100,gathalast,,,庄春江
+NULL,94,605,100,bodytext,,,庄春江
+NULL,94,606,100,gatha1,,,庄春江
+NULL,94,607,100,gathalast,,,庄春江
+NULL,94,608,100,bodytext,,,庄春江
+NULL,94,609,100,bodytext,,,庄春江
+NULL,94,610,100,bodytext,,,庄春江
+NULL,94,611,100,bodytext,,,庄春江
+NULL,94,612,4,subhead,Buddhasarīrapūjā,世尊遗体供养,庄春江
+NULL,94,613,100,bodytext,,,庄春江
+NULL,94,614,100,bodytext,,,庄春江
+NULL,94,615,100,bodytext,,,庄春江
+NULL,94,616,100,bodytext,,,庄春江
+NULL,94,617,100,bodytext,,,庄春江
+NULL,94,618,100,bodytext,,,庄春江
+NULL,94,619,100,bodytext,,,庄春江
+NULL,94,620,4,subhead,Mahākassapattheravatthu,大迦叶的事,庄春江
+NULL,94,621,100,bodytext,,,庄春江
+NULL,94,622,100,bodytext,,,庄春江
+NULL,94,623,100,bodytext,,,庄春江
+NULL,94,624,100,bodytext,,,庄春江
+NULL,94,625,100,bodytext,,,庄春江
+NULL,94,626,4,subhead,Sarīradhātuvibhājanaṃ,遗骨的分配,庄春江
+NULL,94,627,100,bodytext,,,庄春江
+NULL,94,628,100,bodytext,,,庄春江
+NULL,94,629,100,bodytext,,,庄春江
+NULL,94,630,100,bodytext,,,庄春江
+NULL,94,631,100,bodytext,,,庄春江
+NULL,94,632,100,bodytext,,,庄春江
+NULL,94,633,100,bodytext,,,庄春江
+NULL,94,634,100,bodytext,,,庄春江
+NULL,94,635,100,bodytext,,,庄春江
+NULL,94,636,100,gatha1,,,庄春江
+NULL,94,637,100,gatha2,,,庄春江
+NULL,94,638,100,gatha3,,,庄春江
+NULL,94,639,100,gathalast,,,庄春江
+NULL,94,640,100,gatha1,,,庄春江
+NULL,94,641,100,gatha2,,,庄春江
+NULL,94,642,100,gatha3,,,庄春江
+NULL,94,643,100,gathalast,,,庄春江
+NULL,94,644,100,bodytext,,,庄春江
+NULL,94,645,100,bodytext,,,庄春江
+NULL,94,646,4,subhead,Dhātuthūpapūjā,遗骨塔的尊敬,庄春江
+NULL,94,647,100,bodytext,,,庄春江
+NULL,94,648,100,bodytext,,,庄春江
+NULL,94,649,100,gathalast,,,庄春江
+NULL,94,650,100,gatha1,,,庄春江
+NULL,94,651,100,gathalast,,,庄春江
+NULL,94,652,100,gatha1,,,庄春江
+NULL,94,653,100,gatha2,,,庄春江
+NULL,94,654,100,gatha3,,,庄春江
+NULL,94,655,100,gathalast,,,庄春江
+NULL,94,656,100,gatha1,,,庄春江
+NULL,94,657,100,gatha2,,,庄春江
+NULL,94,658,100,gatha3,,,庄春江
+NULL,94,659,100,gathalast,,,庄春江
+NULL,94,660,100,gatha1,,,庄春江
+NULL,94,661,100,gathalast,,,庄春江
+NULL,94,662,100,centered,,,庄春江
+NULL,94,663,2,chapter,4. Mahāsudassanasuttaṃ,17、大善见经,庄春江
+NULL,94,664,100,bodytext,,,庄春江
+NULL,94,665,100,bodytext,,,庄春江
+NULL,94,666,4,subhead,Kusāvatīrājadhānī,咕萨瓦帝王都,庄春江
+NULL,94,667,100,bodytext,,,庄春江
+NULL,94,668,100,bodytext,,,庄春江
+NULL,94,669,4,subhead,Cakkaratanaṃ,轮宝,庄春江
+NULL,94,670,100,bodytext,,,庄春江
+NULL,94,671,100,bodytext,,,庄春江
+NULL,94,672,100,bodytext,,,庄春江
+NULL,94,673,4,subhead,Hatthiratanaṃ,象宝,庄春江
+NULL,94,674,100,bodytext,,,庄春江
+NULL,94,675,4,subhead,Assaratanaṃ,马宝,庄春江
+NULL,94,676,100,bodytext,,,庄春江
+NULL,94,677,4,subhead,Maṇiratanaṃ,珠宝,庄春江
+NULL,94,678,100,bodytext,,,庄春江
+NULL,94,679,4,subhead,Itthiratanaṃ,女宝,庄春江
+NULL,94,680,100,bodytext,,,庄春江
+NULL,94,681,4,subhead,Gahapatiratanaṃ,屋主宝,庄春江
+NULL,94,682,100,bodytext,,,庄春江
+NULL,94,683,4,subhead,Pariṇāyakaratanaṃ,主兵臣宝,庄春江
+NULL,94,684,100,bodytext,,,庄春江
+NULL,94,685,100,bodytext,,,庄春江
+NULL,94,686,4,subhead,Catuiddhisamannāgato,具备四种成就,庄春江
+NULL,94,687,100,bodytext,,,庄春江
+NULL,94,688,100,bodytext,,,庄春江
+NULL,94,689,100,bodytext,,,庄春江
+NULL,94,690,100,bodytext,,,庄春江
+NULL,94,691,100,bodytext,,,庄春江
+NULL,94,692,4,subhead,Dhammapāsādapokkharaṇī,达摩宫殿的莲花池,庄春江
+NULL,94,693,100,bodytext,,,庄春江
+NULL,94,694,100,bodytext,,,庄春江
+NULL,94,695,100,bodytext,,,庄春江
+NULL,94,696,100,bodytext,,,庄春江
+NULL,94,697,100,bodytext,,,庄春江
+NULL,94,698,100,bodytext,,,庄春江
+NULL,94,699,100,bodytext,,,庄春江
+NULL,94,700,100,bodytext,,,庄春江
+NULL,94,701,100,bodytext,,,庄春江
+NULL,94,702,100,bodytext,,,庄春江
+NULL,94,703,100,bodytext,,,庄春江
+NULL,94,704,100,bodytext,,,庄春江
+NULL,94,705,100,bodytext,,,庄春江
+NULL,94,706,100,bodytext,,,庄春江
+NULL,94,707,100,bodytext,,,庄春江
+NULL,94,708,100,bodytext,,,庄春江
+NULL,94,709,100,bodytext,,,庄春江
+NULL,94,710,100,bodytext,,,庄春江
+NULL,94,711,100,centered,,,庄春江
+NULL,94,712,4,subhead,Jhānasampatti,到达禅,庄春江
+NULL,94,713,100,bodytext,,,庄春江
+NULL,94,714,100,bodytext,,,庄春江
+NULL,94,715,100,bodytext,,,庄春江
+NULL,94,716,100,bodytext,,,庄春江
+NULL,94,717,4,subhead,Caturāsīti nagarasahassādi,八万四千城市,庄春江
+NULL,94,718,100,bodytext,,,庄春江
+NULL,94,719,100,bodytext,,,庄春江
+NULL,94,720,4,subhead,Subhaddādeviupasaṅkamanaṃ,善吉祥皇后到来,庄春江
+NULL,94,721,100,bodytext,,,庄春江
+NULL,94,722,100,bodytext,,,庄春江
+NULL,94,723,100,bodytext,,,庄春江
+NULL,94,724,100,bodytext,,,庄春江
+NULL,94,725,100,bodytext,,,庄春江
+NULL,94,726,100,bodytext,,,庄春江
+NULL,94,727,100,bodytext,,,庄春江
+NULL,94,728,4,subhead,Brahmalokūpagamaṃ,往梵天世界,庄春江
+NULL,94,729,100,bodytext,,,庄春江
+NULL,94,730,100,bodytext,,,庄春江
+NULL,94,731,100,bodytext,,,庄春江
+NULL,94,732,100,bodytext,,,庄春江
+NULL,94,733,100,bodytext,,,庄春江
+NULL,94,734,100,gatha1,,,庄春江
+NULL,94,735,100,gathalast,,,庄春江
+NULL,94,736,100,centered,,,庄春江
+NULL,94,737,2,chapter,5. Janavasabhasuttaṃ,18、人牛王经,庄春江
+NULL,94,738,4,subhead,Nātikiyādibyākaraṇaṃ,在那低葛的记说等等,庄春江
+NULL,94,739,100,bodytext,,,庄春江
+NULL,94,740,100,bodytext,,,庄春江
+NULL,94,741,100,bodytext,,,庄春江
+NULL,94,742,4,subhead,Ānandaparikathā,阿难的委婉谈说,庄春江
+NULL,94,743,100,bodytext,,,庄春江
+NULL,94,744,100,bodytext,,,庄春江
+NULL,94,745,100,bodytext,,,庄春江
+NULL,94,746,100,bodytext,,,庄春江
+NULL,94,747,4,subhead,Janavasabhayakkho,人牛王夜叉,庄春江
+NULL,94,748,100,bodytext,,,庄春江
+NULL,94,749,100,bodytext,,,庄春江
+NULL,94,750,100,gatha1,,,庄春江
+NULL,94,751,100,gathalast,,,庄春江
+NULL,94,752,100,bodytext,,,庄春江
+NULL,94,753,4,subhead,Devasabhā,诸天会堂,庄春江
+NULL,94,754,100,bodytext,,,庄春江
+NULL,94,755,100,gatha1,,,庄春江
+NULL,94,756,100,gathalast,,,庄春江
+NULL,94,757,100,gatha1,,,庄春江
+NULL,94,758,100,gathalast,,,庄春江
+NULL,94,759,100,gatha1,,,庄春江
+NULL,94,760,100,gathalast,,,庄春江
+NULL,94,761,100,gatha1,,,庄春江
+NULL,94,762,100,gathalast,,,庄春江
+NULL,94,763,100,bodytext,,,庄春江
+NULL,94,764,100,gatha1,,,庄春江
+NULL,94,765,100,gathalast,,,庄春江
+NULL,94,766,100,bodytext,,,庄春江
+NULL,94,767,100,gatha1,,,庄春江
+NULL,94,768,100,gathalast,,,庄春江
+NULL,94,769,4,subhead,Sanaṅkumārakathā,常童子的谈说,庄春江
+NULL,94,770,100,bodytext,,,庄春江
+NULL,94,771,100,bodytext,,,庄春江
+NULL,94,772,100,bodytext,,,庄春江
+NULL,94,773,100,gatha1,,,庄春江
+NULL,94,774,100,gathalast,,,庄春江
+NULL,94,775,100,gatha1,,,庄春江
+NULL,94,776,100,gathalast,,,庄春江
+NULL,94,777,100,gatha1,,,庄春江
+NULL,94,778,100,gathalast,,,庄春江
+NULL,94,779,100,gatha1,,,庄春江
+NULL,94,780,100,gathalast,,,庄春江
+NULL,94,781,100,bodytext,,,庄春江
+NULL,94,782,100,bodytext,,,庄春江
+NULL,94,783,100,bodytext,,,庄春江
+NULL,94,784,100,gatha1,,,庄春江
+NULL,94,785,100,gathalast,,,庄春江
+NULL,94,786,100,gatha1,,,庄春江
+NULL,94,787,100,gathalast,,,庄春江
+NULL,94,788,100,bodytext,,,庄春江
+NULL,94,789,4,subhead,Bhāvitaiddhipādo,所修习的神足,庄春江
+NULL,94,790,100,bodytext,,,庄春江
+NULL,94,791,100,bodytext,,,庄春江
+NULL,94,792,4,subhead,Tividho okāsādhigamo,三种到达的空间,庄春江
+NULL,94,793,100,bodytext,,,庄春江
+NULL,94,794,100,bodytext,,,庄春江
+NULL,94,795,100,bodytext,,,庄春江
+NULL,94,796,4,subhead,Catusatipaṭṭhānaṃ,四念住,庄春江
+NULL,94,797,100,bodytext,,,庄春江
+NULL,94,798,4,subhead,Satta samādhiparikkhārā,七个定的资助,庄春江
+NULL,94,799,100,bodytext,,,庄春江
+NULL,94,800,100,bodytext,,,庄春江
+NULL,94,801,100,gatha1,,,庄春江
+NULL,94,802,100,gathalast,,,庄春江
+NULL,94,803,100,bodytext,,,庄春江
+NULL,94,804,100,bodytext,,,庄春江
+NULL,94,805,100,bodytext,,,庄春江
+NULL,94,806,100,centered,,,庄春江
+NULL,94,807,2,chapter,6. Mahāgovindasuttaṃ,19、大总管经,庄春江
+NULL,94,808,100,bodytext,,,庄春江
+NULL,94,809,4,subhead,Devasabhā,诸天会堂,庄春江
+NULL,94,810,100,bodytext,,,庄春江
+NULL,94,811,100,bodytext,,,庄春江
+NULL,94,812,100,bodytext,,,庄春江
+NULL,94,813,100,gatha1,,,庄春江
+NULL,94,814,100,gathalast,,,庄春江
+NULL,94,815,100,gatha1,,,庄春江
+NULL,94,816,100,gathalast,,,庄春江
+NULL,94,817,100,gatha1,,,庄春江
+NULL,94,818,100,gathalast,,,庄春江
+NULL,94,819,100,gatha1,,,庄春江
+NULL,94,820,100,gathalast,,,庄春江
+NULL,94,821,100,bodytext,,,庄春江
+NULL,94,822,4,subhead,Aṭṭha yathābhuccavaṇṇā,八种如实称赞,庄春江
+NULL,94,823,100,bodytext,,,庄春江
+NULL,94,824,100,bodytext,,,庄春江
+NULL,94,825,100,bodytext,,,庄春江
+NULL,94,826,100,bodytext,,,庄春江
+NULL,94,827,100,bodytext,,,庄春江
+NULL,94,828,100,bodytext,,,庄春江
+NULL,94,829,100,bodytext,,,庄春江
+NULL,94,830,100,bodytext,,,庄春江
+NULL,94,831,100,bodytext,,,庄春江
+NULL,94,832,100,bodytext,,,庄春江
+NULL,94,833,100,gatha1,,,庄春江
+NULL,94,834,100,gathalast,,,庄春江
+NULL,94,835,100,bodytext,,,庄春江
+NULL,94,836,100,gatha1,,,庄春江
+NULL,94,837,100,gathalast,,,庄春江
+NULL,94,838,4,subhead,Sanaṅkumārakathā,常童子的谈说,庄春江
+NULL,94,839,100,bodytext,,,庄春江
+NULL,94,840,100,bodytext,,,庄春江
+NULL,94,841,100,gatha1,,,庄春江
+NULL,94,842,100,gathalast,,,庄春江
+NULL,94,843,100,gatha1,,,庄春江
+NULL,94,844,100,gathalast,,,庄春江
+NULL,94,845,100,gatha1,,,庄春江
+NULL,94,846,100,gathalast,,,庄春江
+NULL,94,847,100,gatha1,,,庄春江
+NULL,94,848,100,gathalast,,,庄春江
+NULL,94,849,100,bodytext,,,庄春江
+NULL,94,850,4,subhead,Aṭṭha yathābhuccavaṇṇā,八种如实称赞,庄春江
+NULL,94,851,100,bodytext,,,庄春江
+NULL,94,852,100,bodytext,,,庄春江
+NULL,94,853,100,bodytext,,,庄春江
+NULL,94,854,100,bodytext,,,庄春江
+NULL,94,855,100,bodytext,,,庄春江
+NULL,94,856,100,bodytext,,,庄春江
+NULL,94,857,100,bodytext,,,庄春江
+NULL,94,858,100,bodytext,,,庄春江
+NULL,94,859,100,bodytext,,,庄春江
+NULL,94,860,100,bodytext,,,庄春江
+NULL,94,861,4,subhead,Govindabrāhmaṇavatthu,总管婆罗门的事,庄春江
+NULL,94,862,100,bodytext,,,庄春江
+NULL,94,863,4,subhead,Mahāgovindavatthu,大总管的事,庄春江
+NULL,94,864,100,bodytext,,,庄春江
+NULL,94,865,4,subhead,Rajjasaṃvibhajanaṃ,统治权的分享,庄春江
+NULL,94,866,100,bodytext,,,庄春江
+NULL,94,867,100,bodytext,,,庄春江
+NULL,94,868,100,bodytext,,,庄春江
+NULL,94,869,100,bodytext,,,庄春江
+NULL,94,870,100,gathalast,,,庄春江
+NULL,94,871,100,gatha1,,,庄春江
+NULL,94,872,100,gathalast,,,庄春江
+NULL,94,873,100,bodytext,,,庄春江
+NULL,94,874,100,gatha1,,,庄春江
+NULL,94,875,100,gathalast,,,庄春江
+NULL,94,876,100,centered,,,庄春江
+NULL,94,877,4,subhead,Kittisaddaabbhuggamanaṃ,(暂缺),庄春江
+NULL,94,878,100,bodytext,,,庄春江
+NULL,94,879,100,bodytext,,,庄春江
+NULL,94,880,100,bodytext,,,庄春江
+NULL,94,881,100,bodytext,,,庄春江
+NULL,94,882,100,bodytext,,,庄春江
+NULL,94,883,100,bodytext,,,庄春江
+NULL,94,884,100,bodytext,,,庄春江
+NULL,94,885,4,subhead,Brahmunā sākacchā,梵天的交谈,庄春江
+NULL,94,886,100,bodytext,,,庄春江
+NULL,94,887,100,gatha1,,,庄春江
+NULL,94,888,100,gathalast,,,庄春江
+NULL,94,889,100,gatha1,,,庄春江
+NULL,94,890,100,gathalast,,,庄春江
+NULL,94,891,100,gatha1,,,庄春江
+NULL,94,892,100,gathalast,,,庄春江
+NULL,94,893,100,gatha1,,,庄春江
+NULL,94,894,100,gatha2,,,庄春江
+NULL,94,895,100,gathalast,,,庄春江
+NULL,94,896,100,bodytext,,,庄春江
+NULL,94,897,100,gatha1,,,庄春江
+NULL,94,898,100,gatha2,,,庄春江
+NULL,94,899,100,gatha3,,,庄春江
+NULL,94,900,100,gathalast,,,庄春江
+NULL,94,901,100,gatha1,,,庄春江
+NULL,94,902,100,gatha2,,,庄春江
+NULL,94,903,100,gatha3,,,庄春江
+NULL,94,904,100,gatha2,,,庄春江
+NULL,94,905,100,gathalast,,,庄春江
+NULL,94,906,100,bodytext,,,庄春江
+NULL,94,907,100,gatha1,,,庄春江
+NULL,94,908,100,gatha2,,,庄春江
+NULL,94,909,100,gatha3,,,庄春江
+NULL,94,910,100,gathalast,,,庄春江
+NULL,94,911,100,gatha1,,,庄春江
+NULL,94,912,100,gatha2,,,庄春江
+NULL,94,913,100,gatha3,,,庄春江
+NULL,94,914,100,gatha2,,,庄春江
+NULL,94,915,100,gatha3,,,庄春江
+NULL,94,916,100,gathalast,,,庄春江
+NULL,94,917,100,bodytext,,,庄春江
+NULL,94,918,4,subhead,Reṇurājaāmantanā,雷奴国王的宣说,庄春江
+NULL,94,919,100,bodytext,,,庄春江
+NULL,94,920,100,gatha1,,,庄春江
+NULL,94,921,100,gathalast,,,庄春江
+NULL,94,922,100,gatha1,,,庄春江
+NULL,94,923,100,gatha2,,,庄春江
+NULL,94,924,100,gathalast,,,庄春江
+NULL,94,925,100,gatha1,,,庄春江
+NULL,94,926,100,gathalast,,,庄春江
+NULL,94,927,100,gatha1,,,庄春江
+NULL,94,928,100,gathalast,,,庄春江
+NULL,94,929,100,gatha1,,,庄春江
+NULL,94,930,100,gathalast,,,庄春江
+NULL,94,931,100,gatha1,,,庄春江
+NULL,94,932,100,gathalast,,,庄春江
+NULL,94,933,100,gatha1,,,庄春江
+NULL,94,934,100,gathalast,,,庄春江
+NULL,94,935,100,gatha1,,,庄春江
+NULL,94,936,100,gatha2,,,庄春江
+NULL,94,937,100,gathalast,,,庄春江
+NULL,94,938,100,bodytext,,,庄春江
+NULL,94,939,4,subhead,Cha khattiyaāmantanā,六位刹帝利的宣说,庄春江
+NULL,94,940,100,bodytext,,,庄春江
+NULL,94,941,100,bodytext,,,庄春江
+NULL,94,942,100,gatha1,,,庄春江
+NULL,94,943,100,gathalast,,,庄春江
+NULL,94,944,100,gatha1,,,庄春江
+NULL,94,945,100,gathalast,,,庄春江
+NULL,94,946,100,bodytext,,,庄春江
+NULL,94,947,100,bodytext,,,庄春江
+NULL,94,948,100,bodytext,,,庄春江
+NULL,94,949,100,bodytext,,,庄春江
+NULL,94,950,100,bodytext,,,庄春江
+NULL,94,951,100,bodytext,,,庄春江
+NULL,94,952,4,subhead,Brāhmaṇamahāsālādīnaṃ āmantanā,富有的婆罗门等的宣说,庄春江
+NULL,94,953,100,bodytext,,,庄春江
+NULL,94,954,4,subhead,Bhariyānaṃ āmantanā,妻子们的宣说,庄春江
+NULL,94,955,100,bodytext,,,庄春江
+NULL,94,956,4,subhead,Mahāgovindapabbajjā,大总管的出家,庄春江
+NULL,94,957,100,bodytext,,,庄春江
+NULL,94,958,100,bodytext,,,庄春江
+NULL,94,959,100,bodytext,,,庄春江
+NULL,94,960,100,bodytext,,,庄春江
+NULL,94,961,100,bodytext,,,庄春江
+NULL,94,962,100,bodytext,,,庄春江
+NULL,94,963,100,bodytext,,,庄春江
+NULL,94,964,100,centered,,,庄春江
+NULL,94,965,2,chapter,7. Mahāsamayasuttaṃ,20、大集会经,庄春江
+NULL,94,966,100,bodytext,,,庄春江
+NULL,94,967,100,bodytext,,,庄春江
+NULL,94,968,100,gatha1,,,庄春江
+NULL,94,969,100,gathalast,,,庄春江
+NULL,94,970,100,bodytext,,,庄春江
+NULL,94,971,100,gatha1,,,庄春江
+NULL,94,972,100,gathalast,,,庄春江
+NULL,94,973,100,bodytext,,,庄春江
+NULL,94,974,100,gatha1,,,庄春江
+NULL,94,975,100,gathalast,,,庄春江
+NULL,94,976,100,bodytext,,,庄春江
+NULL,94,977,100,gatha1,,,庄春江
+NULL,94,978,100,gathalast,,,庄春江
+NULL,94,979,4,subhead,Devatāsannipātā,天神的集合,庄春江
+NULL,94,980,100,bodytext,,,庄春江
+NULL,94,981,100,bodytext,,,庄春江
+NULL,94,982,100,gatha1,,,庄春江
+NULL,94,983,100,gathalast,,,庄春江
+NULL,94,984,100,gatha1,,,庄春江
+NULL,94,985,100,gathalast,,,庄春江
+NULL,94,986,100,gatha1,,,庄春江
+NULL,94,987,100,gathalast,,,庄春江
+NULL,94,988,100,gatha1,,,庄春江
+NULL,94,989,100,gathalast,,,庄春江
+NULL,94,990,100,gatha1,,,庄春江
+NULL,94,991,100,gathalast,,,庄春江
+NULL,94,992,100,gatha1,,,庄春江
+NULL,94,993,100,gathalast,,,庄春江
+NULL,94,994,100,gatha1,,,庄春江
+NULL,94,995,100,gathalast,,,庄春江
+NULL,94,996,100,gatha1,,,庄春江
+NULL,94,997,100,gathalast,,,庄春江
+NULL,94,998,100,bodytext,,,庄春江
+NULL,94,999,100,gatha2,,,庄春江
+NULL,94,1000,100,gathalast,,,庄春江
+NULL,94,1001,100,gatha1,,,庄春江
+NULL,94,1002,100,gatha2,,,庄春江
+NULL,94,1003,100,gathalast,,,庄春江
+NULL,94,1004,100,gatha1,,,庄春江
+NULL,94,1005,100,gatha2,,,庄春江
+NULL,94,1006,100,gathalast,,,庄春江
+NULL,94,1007,100,gatha1,,,庄春江
+NULL,94,1008,100,gatha2,,,庄春江
+NULL,94,1009,100,gathalast,,,庄春江
+NULL,94,1010,100,gatha1,,,庄春江
+NULL,94,1011,100,gatha2,,,庄春江
+NULL,94,1012,100,gathalast,,,庄春江
+NULL,94,1013,100,gatha1,,,庄春江
+NULL,94,1014,100,gatha2,,,庄春江
+NULL,94,1015,100,gathalast,,,庄春江
+NULL,94,1016,100,bodytext,,,庄春江
+NULL,94,1017,100,gathalast,,,庄春江
+NULL,94,1018,100,gatha1,,,庄春江
+NULL,94,1019,100,gatha2,,,庄春江
+NULL,94,1020,100,gathalast,,,庄春江
+NULL,94,1021,100,gatha1,,,庄春江
+NULL,94,1022,100,gathalast,,,庄春江
+NULL,94,1023,100,gatha1,,,庄春江
+NULL,94,1024,100,gatha2,,,庄春江
+NULL,94,1025,100,gathalast,,,庄春江
+NULL,94,1026,100,gatha1,,,庄春江
+NULL,94,1027,100,gathalast,,,庄春江
+NULL,94,1028,100,gatha1,,,庄春江
+NULL,94,1029,100,gatha2,,,庄春江
+NULL,94,1030,100,gathalast,,,庄春江
+NULL,94,1031,100,gatha1,,,庄春江
+NULL,94,1032,100,gathalast,,,庄春江
+NULL,94,1033,100,gatha1,,,庄春江
+NULL,94,1034,100,gatha2,,,庄春江
+NULL,94,1035,100,gathalast,,,庄春江
+NULL,94,1036,100,gatha1,,,庄春江
+NULL,94,1037,100,gathalast,,,庄春江
+NULL,94,1038,100,gatha1,,,庄春江
+NULL,94,1039,100,gathalast,,,庄春江
+NULL,94,1040,100,bodytext,,,庄春江
+NULL,94,1041,100,gathalast,,,庄春江
+NULL,94,1042,100,gatha1,,,庄春江
+NULL,94,1043,100,gathalast,,,庄春江
+NULL,94,1044,100,gatha1,,,庄春江
+NULL,94,1045,100,gathalast,,,庄春江
+NULL,94,1046,100,gatha1,,,庄春江
+NULL,94,1047,100,gathalast,,,庄春江
+NULL,94,1048,100,bodytext,,,庄春江
+NULL,94,1049,100,gathalast,,,庄春江
+NULL,94,1050,100,gatha1,,,庄春江
+NULL,94,1051,100,gathalast,,,庄春江
+NULL,94,1052,100,gatha1,,,庄春江
+NULL,94,1053,100,gathalast,,,庄春江
+NULL,94,1054,100,gatha1,,,庄春江
+NULL,94,1055,100,gathalast,,,庄春江
+NULL,94,1056,100,bodytext,,,庄春江
+NULL,94,1057,100,gathalast,,,庄春江
+NULL,94,1058,100,gatha1,,,庄春江
+NULL,94,1059,100,gathalast,,,庄春江
+NULL,94,1060,100,gatha1,,,庄春江
+NULL,94,1061,100,gatha2,,,庄春江
+NULL,94,1062,100,gathalast,,,庄春江
+NULL,94,1063,100,bodytext,,,庄春江
+NULL,94,1064,100,gathalast,,,庄春江
+NULL,94,1065,100,gatha1,,,庄春江
+NULL,94,1066,100,gathalast,,,庄春江
+NULL,94,1067,100,gatha1,,,庄春江
+NULL,94,1068,100,gathalast,,,庄春江
+NULL,94,1069,100,gatha1,,,庄春江
+NULL,94,1070,100,gathalast,,,庄春江
+NULL,94,1071,100,gatha1,,,庄春江
+NULL,94,1072,100,gathalast,,,庄春江
+NULL,94,1073,100,gatha1,,,庄春江
+NULL,94,1074,100,gathalast,,,庄春江
+NULL,94,1075,100,gatha1,,,庄春江
+NULL,94,1076,100,gathalast,,,庄春江
+NULL,94,1077,100,gatha1,,,庄春江
+NULL,94,1078,100,gathalast,,,庄春江
+NULL,94,1079,100,gatha1,,,庄春江
+NULL,94,1080,100,gatha2,,,庄春江
+NULL,94,1081,100,gathalast,,,庄春江
+NULL,94,1082,100,gatha1,,,庄春江
+NULL,94,1083,100,gathalast,,,庄春江
+NULL,94,1084,100,gatha1,,,庄春江
+NULL,94,1085,100,gathalast,,,庄春江
+NULL,94,1086,100,gatha1,,,庄春江
+NULL,94,1087,100,gatha2,,,庄春江
+NULL,94,1088,100,gathalast,,,庄春江
+NULL,94,1089,100,gatha1,,,庄春江
+NULL,94,1090,100,gathalast,,,庄春江
+NULL,94,1091,100,gatha1,,,庄春江
+NULL,94,1092,100,gathalast,,,庄春江
+NULL,94,1093,100,gatha1,,,庄春江
+NULL,94,1094,100,gathalast,,,庄春江
+NULL,94,1095,100,gatha1,,,庄春江
+NULL,94,1096,100,gatha2,,,庄春江
+NULL,94,1097,100,gathalast,,,庄春江
+NULL,94,1098,100,gatha1,,,庄春江
+NULL,94,1099,100,gatha2,,,庄春江
+NULL,94,1100,100,gathalast,,,庄春江
+NULL,94,1101,100,gatha1,,,庄春江
+NULL,94,1102,100,gatha2,,,庄春江
+NULL,94,1103,100,gathalast,,,庄春江
+NULL,94,1104,100,gatha1,,,庄春江
+NULL,94,1105,100,gathalast,,,庄春江
+NULL,94,1106,100,gatha1,,,庄春江
+NULL,94,1107,100,gathalast,,,庄春江
+NULL,94,1108,100,bodytext,,,庄春江
+NULL,94,1109,100,gathalast,,,庄春江
+NULL,94,1110,100,gatha1,,,庄春江
+NULL,94,1111,100,gathalast,,,庄春江
+NULL,94,1112,100,gatha1,,,庄春江
+NULL,94,1113,100,gathalast,,,庄春江
+NULL,94,1114,100,bodytext,,,庄春江
+NULL,94,1115,100,gathalast,,,庄春江
+NULL,94,1116,100,gatha1,,,庄春江
+NULL,94,1117,100,gathalast,,,庄春江
+NULL,94,1118,100,gatha1,,,庄春江
+NULL,94,1119,100,gathalast,,,庄春江
+NULL,94,1120,100,gatha1,,,庄春江
+NULL,94,1121,100,gathalast,,,庄春江
+NULL,94,1122,100,bodytext,,,庄春江
+NULL,94,1123,100,gathalast,,,庄春江
+NULL,94,1124,100,gatha1,,,庄春江
+NULL,94,1125,100,gatha2,,,庄春江
+NULL,94,1126,100,gathalast,,,庄春江
+NULL,94,1127,100,gatha1,,,庄春江
+NULL,94,1128,100,gathalast,,,庄春江
+NULL,94,1129,100,centered,,,庄春江
+NULL,94,1130,2,chapter,8. Sakkapañhasuttaṃ,21、帝释所问经,庄春江
+NULL,94,1131,100,bodytext,,,庄春江
+NULL,94,1132,100,bodytext,,,庄春江
+NULL,94,1133,100,bodytext,,,庄春江
+NULL,94,1134,100,bodytext,,,庄春江
+NULL,94,1135,4,subhead,Pañcasikhagītagāthā,五髻的歌唱偈颂,庄春江
+NULL,94,1136,100,bodytext,,,庄春江
+NULL,94,1137,100,gatha1,,,庄春江
+NULL,94,1138,100,gathalast,,,庄春江
+NULL,94,1139,100,gatha1,,,庄春江
+NULL,94,1140,100,gathalast,,,庄春江
+NULL,94,1141,100,gatha1,,,庄春江
+NULL,94,1142,100,gathalast,,,庄春江
+NULL,94,1143,100,gatha1,,,庄春江
+NULL,94,1144,100,gathalast,,,庄春江
+NULL,94,1145,100,gatha1,,,庄春江
+NULL,94,1146,100,gathalast,,,庄春江
+NULL,94,1147,100,gatha1,,,庄春江
+NULL,94,1148,100,gathalast,,,庄春江
+NULL,94,1149,100,gatha1,,,庄春江
+NULL,94,1150,100,gathalast,,,庄春江
+NULL,94,1151,100,gatha1,,,庄春江
+NULL,94,1152,100,gathalast,,,庄春江
+NULL,94,1153,100,gatha1,,,庄春江
+NULL,94,1154,100,gathalast,,,庄春江
+NULL,94,1155,100,gatha1,,,庄春江
+NULL,94,1156,100,gathalast,,,庄春江
+NULL,94,1157,100,gatha1,,,庄春江
+NULL,94,1158,100,gathalast,,,庄春江
+NULL,94,1159,100,gatha1,,,庄春江
+NULL,94,1160,100,gathalast,,,庄春江
+NULL,94,1161,100,gatha1,,,庄春江
+NULL,94,1162,100,gathalast,,,庄春江
+NULL,94,1163,100,gatha1,,,庄春江
+NULL,94,1164,100,gathalast,,,庄春江
+NULL,94,1165,100,bodytext,,,庄春江
+NULL,94,1166,100,gatha1,,,庄春江
+NULL,94,1167,100,gathalast,,,庄春江
+NULL,94,1168,100,gatha1,,,庄春江
+NULL,94,1169,100,gathalast,,,庄春江
+NULL,94,1170,100,bodytext,,,庄春江
+NULL,94,1171,4,subhead,Sakkūpasaṅkama,帝释前往,庄春江
+NULL,94,1172,100,bodytext,,,庄春江
+NULL,94,1173,100,bodytext,,,庄春江
+NULL,94,1174,100,bodytext,,,庄春江
+NULL,94,1175,100,bodytext,,,庄春江
+NULL,94,1176,4,subhead,Gopakavatthu,守护者之事,庄春江
+NULL,94,1177,100,bodytext,,,庄春江
+NULL,94,1178,100,bodytext,,,庄春江
+NULL,94,1179,100,gatha2,,,庄春江
+NULL,94,1180,100,gatha3,,,庄春江
+NULL,94,1181,100,gathalast,,,庄春江
+NULL,94,1182,100,gatha1,,,庄春江
+NULL,94,1183,100,gatha2,,,庄春江
+NULL,94,1184,100,gatha3,,,庄春江
+NULL,94,1185,100,gathalast,,,庄春江
+NULL,94,1186,100,gatha1,,,庄春江
+NULL,94,1187,100,gatha2,,,庄春江
+NULL,94,1188,100,gatha3,,,庄春江
+NULL,94,1189,100,gathalast,,,庄春江
+NULL,94,1190,100,gatha1,,,庄春江
+NULL,94,1191,100,gatha2,,,庄春江
+NULL,94,1192,100,gatha3,,,庄春江
+NULL,94,1193,100,gathalast,,,庄春江
+NULL,94,1194,100,gatha1,,,庄春江
+NULL,94,1195,100,gatha2,,,庄春江
+NULL,94,1196,100,gatha3,,,庄春江
+NULL,94,1197,100,gathalast,,,庄春江
+NULL,94,1198,100,gatha1,,,庄春江
+NULL,94,1199,100,gatha2,,,庄春江
+NULL,94,1200,100,gatha3,,,庄春江
+NULL,94,1201,100,gathalast,,,庄春江
+NULL,94,1202,100,gatha1,,,庄春江
+NULL,94,1203,100,gatha2,,,庄春江
+NULL,94,1204,100,gatha3,,,庄春江
+NULL,94,1205,100,gathalast,,,庄春江
+NULL,94,1206,100,gatha1,,,庄春江
+NULL,94,1207,100,gatha2,,,庄春江
+NULL,94,1208,100,gatha3,,,庄春江
+NULL,94,1209,100,gathalast,,,庄春江
+NULL,94,1210,100,gatha1,,,庄春江
+NULL,94,1211,100,gatha2,,,庄春江
+NULL,94,1212,100,gatha3,,,庄春江
+NULL,94,1213,100,gathalast,,,庄春江
+NULL,94,1214,100,gatha1,,,庄春江
+NULL,94,1215,100,gatha2,,,庄春江
+NULL,94,1216,100,gatha3,,,庄春江
+NULL,94,1217,100,gathalast,,,庄春江
+NULL,94,1218,100,gatha1,,,庄春江
+NULL,94,1219,100,gatha2,,,庄春江
+NULL,94,1220,100,gatha3,,,庄春江
+NULL,94,1221,100,gathalast,,,庄春江
+NULL,94,1222,100,gatha1,,,庄春江
+NULL,94,1223,100,gatha2,,,庄春江
+NULL,94,1224,100,gatha3,,,庄春江
+NULL,94,1225,100,gathalast,,,庄春江
+NULL,94,1226,100,gatha1,,,庄春江
+NULL,94,1227,100,gatha2,,,庄春江
+NULL,94,1228,100,gatha3,,,庄春江
+NULL,94,1229,100,gathalast,,,庄春江
+NULL,94,1230,100,gatha1,,,庄春江
+NULL,94,1231,100,gatha2,,,庄春江
+NULL,94,1232,100,gatha3,,,庄春江
+NULL,94,1233,100,gathalast,,,庄春江
+NULL,94,1234,100,gatha1,,,庄春江
+NULL,94,1235,100,gatha2,,,庄春江
+NULL,94,1236,100,gatha3,,,庄春江
+NULL,94,1237,100,gathalast,,,庄春江
+NULL,94,1238,100,gatha1,,,庄春江
+NULL,94,1239,100,gatha2,,,庄春江
+NULL,94,1240,100,gatha3,,,庄春江
+NULL,94,1241,100,gathalast,,,庄春江
+NULL,94,1242,100,gatha1,,,庄春江
+NULL,94,1243,100,gatha2,,,庄春江
+NULL,94,1244,100,gatha3,,,庄春江
+NULL,94,1245,100,gathalast,,,庄春江
+NULL,94,1246,100,gatha1,,,庄春江
+NULL,94,1247,100,gatha2,,,庄春江
+NULL,94,1248,100,gatha3,,,庄春江
+NULL,94,1249,100,gathalast,,,庄春江
+NULL,94,1250,100,gatha1,,,庄春江
+NULL,94,1251,100,gatha2,,,庄春江
+NULL,94,1252,100,gatha3,,,庄春江
+NULL,94,1253,100,gathalast,,,庄春江
+NULL,94,1254,100,bodytext,,,庄春江
+NULL,94,1255,100,bodytext,,,庄春江
+NULL,94,1256,100,gatha1,,,庄春江
+NULL,94,1257,100,gathalast,,,庄春江
+NULL,94,1258,100,centered,,,庄春江
+NULL,94,1259,100,bodytext,,,庄春江
+NULL,94,1260,100,bodytext,,,庄春江
+NULL,94,1261,100,bodytext,,,庄春江
+NULL,94,1262,100,bodytext,,,庄春江
+NULL,94,1263,100,bodytext,,,庄春江
+NULL,94,1264,100,bodytext,,,庄春江
+NULL,94,1265,100,bodytext,,,庄春江
+NULL,94,1266,100,bodytext,,,庄春江
+NULL,94,1267,100,bodytext,,,庄春江
+NULL,94,1268,4,subhead,Vedanākammaṭṭhānaṃ,受之业处,庄春江
+NULL,94,1269,100,bodytext,,,庄春江
+NULL,94,1270,100,bodytext,,,庄春江
+NULL,94,1271,100,bodytext,,,庄春江
+NULL,94,1272,100,bodytext,,,庄春江
+NULL,94,1273,100,bodytext,,,庄春江
+NULL,94,1274,4,subhead,Pātimokkhasaṃvaro,巴帝摩卡自制,庄春江
+NULL,94,1275,100,bodytext,,,庄春江
+NULL,94,1276,100,bodytext,,,庄春江
+NULL,94,1277,100,bodytext,,,庄春江
+NULL,94,1278,100,bodytext,,,庄春江
+NULL,94,1279,100,bodytext,,,庄春江
+NULL,94,1280,100,bodytext,,,庄春江
+NULL,94,1281,4,subhead,Indriyasaṃvaro,根自制,庄春江
+NULL,94,1282,100,bodytext,,,庄春江
+NULL,94,1283,100,bodytext,,,庄春江
+NULL,94,1284,100,bodytext,,,庄春江
+NULL,94,1285,100,bodytext,,,庄春江
+NULL,94,1286,100,bodytext,,,庄春江
+NULL,94,1287,100,bodytext,,,庄春江
+NULL,94,1288,100,bodytext,,,庄春江
+NULL,94,1289,100,bodytext,,,庄春江
+NULL,94,1290,100,bodytext,,,庄春江
+NULL,94,1291,100,bodytext,,,庄春江
+NULL,94,1292,100,bodytext,,,庄春江
+NULL,94,1293,100,bodytext,,,庄春江
+NULL,94,1294,100,bodytext,,,庄春江
+NULL,94,1295,100,bodytext,,,庄春江
+NULL,94,1296,4,subhead,Somanassapaṭilābhakathā,获得喜悦说,庄春江
+NULL,94,1297,100,bodytext,,,庄春江
+NULL,94,1298,100,bodytext,,,庄春江
+NULL,94,1299,100,bodytext,,,庄春江
+NULL,94,1300,100,gatha1,,,庄春江
+NULL,94,1301,100,gathalast,,,庄春江
+NULL,94,1302,100,bodytext,,,庄春江
+NULL,94,1303,100,gatha1,,,庄春江
+NULL,94,1304,100,gathalast,,,庄春江
+NULL,94,1305,100,bodytext,,,庄春江
+NULL,94,1306,100,gatha1,,,庄春江
+NULL,94,1307,100,gathalast,,,庄春江
+NULL,94,1308,100,bodytext,,,庄春江
+NULL,94,1309,100,gatha1,,,庄春江
+NULL,94,1310,100,gathalast,,,庄春江
+NULL,94,1311,100,bodytext,,,庄春江
+NULL,94,1312,100,gatha1,,,庄春江
+NULL,94,1313,100,gathalast,,,庄春江
+NULL,94,1314,100,bodytext,,,庄春江
+NULL,94,1315,100,gatha1,,,庄春江
+NULL,94,1316,100,gathalast,,,庄春江
+NULL,94,1317,100,bodytext,,,庄春江
+NULL,94,1318,100,bodytext,,,庄春江
+NULL,94,1319,100,bodytext,,,庄春江
+NULL,94,1320,100,gathalast,,,庄春江
+NULL,94,1321,100,gatha1,,,庄春江
+NULL,94,1322,100,gathalast,,,庄春江
+NULL,94,1323,100,gatha1,,,庄春江
+NULL,94,1324,100,gathalast,,,庄春江
+NULL,94,1325,100,gatha1,,,庄春江
+NULL,94,1326,100,gathalast,,,庄春江
+NULL,94,1327,100,gatha1,,,庄春江
+NULL,94,1328,100,gathalast,,,庄春江
+NULL,94,1329,100,gatha1,,,庄春江
+NULL,94,1330,100,gathalast,,,庄春江
+NULL,94,1331,100,gatha1,,,庄春江
+NULL,94,1332,100,gathalast,,,庄春江
+NULL,94,1333,100,gatha1,,,庄春江
+NULL,94,1334,100,gathalast,,,庄春江
+NULL,94,1335,100,gatha1,,,庄春江
+NULL,94,1336,100,gathalast,,,庄春江
+NULL,94,1337,100,bodytext,,,庄春江
+NULL,94,1338,100,bodytext,,,庄春江
+NULL,94,1339,100,bodytext,,,庄春江
+NULL,94,1340,100,centered,,,庄春江
+NULL,94,1341,2,chapter,9. Mahāsatipaṭṭhānasuttaṃ,22、大念住经,庄春江
+NULL,94,1342,100,bodytext,,,庄春江
+NULL,94,1343,4,subhead,Uddeso,总说,庄春江
+NULL,94,1344,100,bodytext,,,庄春江
+NULL,94,1345,100,bodytext,,,庄春江
+NULL,94,1346,100,centered,,,庄春江
+NULL,94,1347,4,subhead,Kāyānupassanā ānāpānapabbaṃ,随观身‧入出息节,庄春江
+NULL,94,1348,100,bodytext,,,庄春江
+NULL,94,1349,100,bodytext,,,庄春江
+NULL,94,1350,100,centered,,,庄春江
+NULL,94,1351,4,subhead,Kāyānupassanā iriyāpathapabbaṃ,随观身‧威仪路径(方法)节,庄春江
+NULL,94,1352,100,bodytext,,,庄春江
+NULL,94,1353,100,centered,,,庄春江
+NULL,94,1354,4,subhead,Kāyānupassanā sampajānapabbaṃ,随观身‧正知节,庄春江
+NULL,94,1355,100,bodytext,,,庄春江
+NULL,94,1356,100,centered,,,庄春江
+NULL,94,1357,4,subhead,Kāyānupassanā paṭikūlamanasikārapabbaṃ,随观身‧厌拒作意节,庄春江
+NULL,94,1358,100,bodytext,,,庄春江
+NULL,94,1359,100,bodytext,,,庄春江
+NULL,94,1360,100,bodytext,,,庄春江
+NULL,94,1361,100,centered,,,庄春江
+NULL,94,1362,4,subhead,Kāyānupassanā dhātumanasikārapabbaṃ,随观身‧四界作意节,庄春江
+NULL,94,1363,100,bodytext,,,庄春江
+NULL,94,1364,100,bodytext,,,庄春江
+NULL,94,1365,100,bodytext,,,庄春江
+NULL,94,1366,100,centered,,,庄春江
+NULL,94,1367,4,subhead,Kāyānupassanā navasivathikapabbaṃ,随观身‧九墓地节,庄春江
+NULL,94,1368,100,bodytext,,,庄春江
+NULL,94,1369,100,bodytext,,,庄春江
+NULL,94,1370,100,bodytext,,,庄春江
+NULL,94,1371,100,bodytext,,,庄春江
+NULL,94,1372,100,bodytext,,,庄春江
+NULL,94,1373,100,bodytext,,,庄春江
+NULL,94,1374,100,bodytext,,,庄春江
+NULL,94,1375,100,centered,,,庄春江
+NULL,94,1376,100,centered,,,庄春江
+NULL,94,1377,4,subhead,Vedanānupassanā,随观受,庄春江
+NULL,94,1378,100,bodytext,,,庄春江
+NULL,94,1379,100,centered,,,庄春江
+NULL,94,1380,4,subhead,Cittānupassanā,随观心,庄春江
+NULL,94,1381,100,bodytext,,,庄春江
+NULL,94,1382,100,centered,,,庄春江
+NULL,94,1383,4,subhead,Dhammānupassanā nīvaraṇapabbaṃ,随观法‧盖节,庄春江
+NULL,94,1384,100,bodytext,,,庄春江
+NULL,94,1385,100,bodytext,,,庄春江
+NULL,94,1386,100,bodytext,,,庄春江
+NULL,94,1387,100,bodytext,,,庄春江
+NULL,94,1388,100,bodytext,,,庄春江
+NULL,94,1389,100,bodytext,,,庄春江
+NULL,94,1390,100,bodytext,,,庄春江
+NULL,94,1391,100,centered,,,庄春江
+NULL,94,1392,4,subhead,Dhammānupassanā khandhapabbaṃ,随观法‧蕴节,庄春江
+NULL,94,1393,100,bodytext,,,庄春江
+NULL,94,1394,100,centered,,,庄春江
+NULL,94,1395,4,subhead,Dhammānupassanā āyatanapabbaṃ,随观法‧处节,庄春江
+NULL,94,1396,100,bodytext,,,庄春江
+NULL,94,1397,100,bodytext,,,庄春江
+NULL,94,1398,100,bodytext,,,庄春江
+NULL,94,1399,100,bodytext,,,庄春江
+NULL,94,1400,100,bodytext,,,庄春江
+NULL,94,1401,100,bodytext,,,庄春江
+NULL,94,1402,100,bodytext,,,庄春江
+NULL,94,1403,100,bodytext,,,庄春江
+NULL,94,1404,100,centered,,,庄春江
+NULL,94,1405,4,subhead,Dhammānupassanā bojjhaṅgapabbaṃ,随观法‧觉支节,庄春江
+NULL,94,1406,100,bodytext,,,庄春江
+NULL,94,1407,100,bodytext,,,庄春江
+NULL,94,1408,100,bodytext,,,庄春江
+NULL,94,1409,100,bodytext,,,庄春江
+NULL,94,1410,100,bodytext,,,庄春江
+NULL,94,1411,100,bodytext,,,庄春江
+NULL,94,1412,100,bodytext,,,庄春江
+NULL,94,1413,100,bodytext,,,庄春江
+NULL,94,1414,100,centered,,,庄春江
+NULL,94,1415,4,subhead,Dhammānupassanā saccapabbaṃ,随观法‧谛节,庄春江
+NULL,94,1416,100,bodytext,,,庄春江
+NULL,94,1417,100,centered,,,庄春江
+NULL,94,1418,4,subhead,Dukkhasaccaniddeso,苦谛的说明,庄春江
+NULL,94,1419,100,bodytext,,,庄春江
+NULL,94,1420,100,bodytext,,,庄春江
+NULL,94,1421,100,bodytext,,,庄春江
+NULL,94,1422,100,bodytext,,,庄春江
+NULL,94,1423,100,bodytext,,,庄春江
+NULL,94,1424,100,bodytext,,,庄春江
+NULL,94,1425,100,bodytext,,,庄春江
+NULL,94,1426,100,bodytext,,,庄春江
+NULL,94,1427,100,bodytext,,,庄春江
+NULL,94,1428,100,bodytext,,,庄春江
+NULL,94,1429,100,bodytext,,,庄春江
+NULL,94,1430,100,bodytext,,,庄春江
+NULL,94,1431,100,bodytext,,,庄春江
+NULL,94,1432,4,subhead,Samudayasaccaniddeso,集谛的说明,庄春江
+NULL,94,1433,100,bodytext,,,庄春江
+NULL,94,1434,100,bodytext,,,庄春江
+NULL,94,1435,100,bodytext,,,庄春江
+NULL,94,1436,100,bodytext,,,庄春江
+NULL,94,1437,100,bodytext,,,庄春江
+NULL,94,1438,100,bodytext,,,庄春江
+NULL,94,1439,100,bodytext,,,庄春江
+NULL,94,1440,100,bodytext,,,庄春江
+NULL,94,1441,100,bodytext,,,庄春江
+NULL,94,1442,100,bodytext,,,庄春江
+NULL,94,1443,100,bodytext,,,庄春江
+NULL,94,1444,100,bodytext,,,庄春江
+NULL,94,1445,4,subhead,Nirodhasaccaniddeso,灭谛的说明,庄春江
+NULL,94,1446,100,bodytext,,,庄春江
+NULL,94,1447,100,bodytext,,,庄春江
+NULL,94,1448,100,bodytext,,,庄春江
+NULL,94,1449,100,bodytext,,,庄春江
+NULL,94,1450,100,bodytext,,,庄春江
+NULL,94,1451,100,bodytext,,,庄春江
+NULL,94,1452,100,bodytext,,,庄春江
+NULL,94,1453,100,bodytext,,,庄春江
+NULL,94,1454,100,bodytext,,,庄春江
+NULL,94,1455,100,bodytext,,,庄春江
+NULL,94,1456,100,bodytext,,,庄春江
+NULL,94,1457,100,bodytext,,,庄春江
+NULL,94,1458,4,subhead,Maggasaccaniddeso,道谛的说明,庄春江
+NULL,94,1459,100,bodytext,,,庄春江
+NULL,94,1460,100,bodytext,,,庄春江
+NULL,94,1461,100,bodytext,,,庄春江
+NULL,94,1462,100,bodytext,,,庄春江
+NULL,94,1463,100,bodytext,,,庄春江
+NULL,94,1464,100,bodytext,,,庄春江
+NULL,94,1465,100,bodytext,,,庄春江
+NULL,94,1466,100,bodytext,,,庄春江
+NULL,94,1467,100,bodytext,,,庄春江
+NULL,94,1468,100,bodytext,,,庄春江
+NULL,94,1469,100,bodytext,,,庄春江
+NULL,94,1470,100,centered,,,庄春江
+NULL,94,1471,100,bodytext,,,庄春江
+NULL,94,1472,100,bodytext,,,庄春江
+NULL,94,1473,100,bodytext,,,庄春江
+NULL,94,1474,100,bodytext,,,庄春江
+NULL,94,1475,100,centered,,,庄春江
+NULL,94,1476,2,chapter,10. Pāyāsisuttaṃ,23、波亚西经,庄春江
+NULL,94,1477,100,bodytext,,,庄春江
+NULL,94,1478,4,subhead,Pāyāsirājaññavatthu,波亚西亲王之事,庄春江
+NULL,94,1479,100,bodytext,,,庄春江
+NULL,94,1480,100,bodytext,,,庄春江
+NULL,94,1481,100,bodytext,,,庄春江
+NULL,94,1482,100,bodytext,,,庄春江
+NULL,94,1483,4,subhead,Natthikavādo,虚无论,庄春江
+NULL,94,1484,100,bodytext,,,庄春江
+NULL,94,1485,4,subhead,Candimasūriyaupamā,日月的譬喻,庄春江
+NULL,94,1486,100,bodytext,,,庄春江
+NULL,94,1487,100,bodytext,,,庄春江
+NULL,94,1488,4,subhead,Coraupamā,盗贼的譬喻,庄春江
+NULL,94,1489,100,bodytext,,,庄春江
+NULL,94,1490,100,bodytext,,,庄春江
+NULL,94,1491,4,subhead,Gūthakūpapurisaupamā,粪坑男子的譬喻,庄春江
+NULL,94,1492,100,bodytext,,,庄春江
+NULL,94,1493,100,bodytext,,,庄春江
+NULL,94,1494,100,bodytext,,,庄春江
+NULL,94,1495,4,subhead,Tāvatiṃsadevaupamā,三十三天的譬喻,庄春江
+NULL,94,1496,100,bodytext,,,庄春江
+NULL,94,1497,4,subhead,Jaccandhaupamā,天生盲者的譬喻,庄春江
+NULL,94,1498,100,bodytext,,,庄春江
+NULL,94,1499,100,bodytext,,,庄春江
+NULL,94,1500,100,bodytext,,,庄春江
+NULL,94,1501,4,subhead,Gabbhinīupamā,孕妇的譬喻,庄春江
+NULL,94,1502,100,bodytext,,,庄春江
+NULL,94,1503,100,bodytext,,,庄春江
+NULL,94,1504,100,bodytext,,,庄春江
+NULL,94,1505,4,subhead,Supinakaupamā,梦的譬喻,庄春江
+NULL,94,1506,100,bodytext,,,庄春江
+NULL,94,1507,100,bodytext,,,庄春江
+NULL,94,1508,4,subhead,Santattaayoguḷaupamā,晒热铁球的譬喻,庄春江
+NULL,94,1509,100,bodytext,,,庄春江
+NULL,94,1510,100,bodytext,,,庄春江
+NULL,94,1511,4,subhead,Saṅkhadhamaupamā,吹法螺者的譬喻,庄春江
+NULL,94,1512,100,bodytext,,,庄春江
+NULL,94,1513,100,bodytext,,,庄春江
+NULL,94,1514,100,bodytext,,,庄春江
+NULL,94,1515,4,subhead,Aggikajaṭilaupamā,结发拜火者的譬喻,庄春江
+NULL,94,1516,100,bodytext,,,庄春江
+NULL,94,1517,100,bodytext,,,庄春江
+NULL,94,1518,100,bodytext,,,庄春江
+NULL,94,1519,100,bodytext,,,庄春江
+NULL,94,1520,4,subhead,Dve satthavāhaupamā,二位商队主的譬喻,庄春江
+NULL,94,1521,100,bodytext,,,庄春江
+NULL,94,1522,100,bodytext,,,庄春江
+NULL,94,1523,100,bodytext,,,庄春江
+NULL,94,1524,100,bodytext,,,庄春江
+NULL,94,1525,100,bodytext,,,庄春江
+NULL,94,1526,100,bodytext,,,庄春江
+NULL,94,1527,4,subhead,Gūthabhārikaupamā,担粪者的譬喻,庄春江
+NULL,94,1528,100,bodytext,,,庄春江
+NULL,94,1529,100,bodytext,,,庄春江
+NULL,94,1530,4,subhead,Akkhadhuttakaupamā,赌徒的譬喻,庄春江
+NULL,94,1531,100,bodytext,,,庄春江
+NULL,94,1532,100,gatha1,,,庄春江
+NULL,94,1533,100,gathalast,,,庄春江
+NULL,94,1534,100,bodytext,,,庄春江
+NULL,94,1535,100,bodytext,,,庄春江
+NULL,94,1536,4,subhead,Sāṇabhārikaupamā,担麻者的譬喻,庄春江
+NULL,94,1537,100,bodytext,,,庄春江
+NULL,94,1538,100,bodytext,,,庄春江
+NULL,94,1539,100,bodytext,,,庄春江
+NULL,94,1540,100,bodytext,,,庄春江
+NULL,94,1541,4,subhead,Saraṇagamanaṃ,归依,庄春江
+NULL,94,1542,100,bodytext,,,庄春江
+NULL,94,1543,100,bodytext,,,庄春江
+NULL,94,1544,4,subhead,Yaññakathā,牲祭的谈说,庄春江
+NULL,94,1545,100,bodytext,,,庄春江
+NULL,94,1546,100,bodytext,,,庄春江
+NULL,94,1547,4,subhead,Uttaramāṇavavatthu,更优秀的青年徒弟之事,庄春江
+NULL,94,1548,100,bodytext,,,庄春江
+NULL,94,1549,100,bodytext,,,庄春江
+NULL,94,1550,4,subhead,Pāyāsidevaputto,波亚西天子,庄春江
+NULL,94,1551,100,bodytext,,,庄春江
+NULL,94,1552,100,bodytext,,,庄春江
+NULL,94,1553,100,centered,,,庄春江
+NULL,94,1554,100,centered,,,庄春江
+NULL,94,1555,100,bodytext,,,庄春江
+NULL,94,1556,100,gatha1,,,庄春江
+NULL,94,1557,100,gatha2,,,庄春江
+NULL,94,1558,100,gathalast,,,庄春江
+NULL,94,1559,100,centered,,,庄春江

Some files were not shown because too many files changed in this diff