Ver Fonte

提交试卷导出代码

chenken há 8 anos atrás
pai
commit
bf2e31835f
26 ficheiros alterados com 27781 adições e 66 exclusões
  1. 13 15
      cqb-comm-utils/pom.xml
  2. 179 0
      cqb-comm-utils/src/main/java/com/qmth/cqb/utils/FileDisposeUtil.java
  3. 20 5
      cqb-comm-utils/src/main/java/com/qmth/cqb/utils/enums/ExamFileType.java
  4. 9 1
      cqb-comm-utils/src/main/java/com/qmth/cqb/utils/word/DocxProcessUtil.java
  5. 3952 0
      cqb-comm-utils/src/main/resources/hzkj_answer_template.ftl
  6. 5009 0
      cqb-comm-utils/src/main/resources/hzkj_paper_template.ftl
  7. 3952 0
      cqb-comm-utils/src/main/resources/sddx_answer_template.ftl
  8. 5009 0
      cqb-comm-utils/src/main/resources/sddx_paper_template.ftl
  9. 3952 0
      cqb-comm-utils/src/main/resources/tjdx_answer_template.ftl
  10. 5009 0
      cqb-comm-utils/src/main/resources/tjdx_paper_template.ftl
  11. 40 0
      cqb-paper/src/main/java/com/qmth/cqb/paper/dto/ExportPaperInfoModel.java
  12. 54 14
      cqb-paper/src/main/java/com/qmth/cqb/paper/model/ExamFile.java
  13. 13 1
      cqb-paper/src/main/java/com/qmth/cqb/paper/service/ExamFileService.java
  14. 14 1
      cqb-paper/src/main/java/com/qmth/cqb/paper/service/ExtractConfigService.java
  15. 8 1
      cqb-paper/src/main/java/com/qmth/cqb/paper/service/export/DzkdExportPaperService.java
  16. 79 5
      cqb-paper/src/main/java/com/qmth/cqb/paper/service/export/ExportPaperAbstractService.java
  17. 84 0
      cqb-paper/src/main/java/com/qmth/cqb/paper/service/export/HzkjExportPaperService.java
  18. 84 0
      cqb-paper/src/main/java/com/qmth/cqb/paper/service/export/SddxExportPaperService.java
  19. 44 1
      cqb-paper/src/main/java/com/qmth/cqb/paper/service/export/SxsfExportPaperService.java
  20. 84 0
      cqb-paper/src/main/java/com/qmth/cqb/paper/service/export/TjdxExportPaperService.java
  21. 42 6
      cqb-paper/src/main/java/com/qmth/cqb/paper/service/impl/ExamFileServiceImpl.java
  22. 85 2
      cqb-paper/src/main/java/com/qmth/cqb/paper/service/impl/ExtractConfigServiceImpl.java
  23. 0 7
      cqb-paper/src/main/java/com/qmth/cqb/paper/web/ExportPaperController.java
  24. 19 3
      cqb-paper/src/main/java/com/qmth/cqb/paper/web/ExtractConfigController.java
  25. 9 1
      cqb-starter/src/main/resources/application-dev.properties
  26. 18 3
      cqb-starter/src/test/java/com/qmth/cqb/ExtractConfigServiceTest.java

+ 13 - 15
cqb-comm-utils/pom.xml

@@ -26,14 +26,12 @@
         <dependency>
             <groupId>cn.com.qmth.examcloud.common</groupId>
             <artifactId>common-uac</artifactId>
-            <version>${project.version}</version>
-        </dependency>
+            </dependency>
         
         <dependency>
             <groupId>com.google.code.gson</groupId>
             <artifactId>gson</artifactId>
-            <version>2.7</version>
-        </dependency>
+            </dependency>
 
         <dependency>
             <groupId>org.springframework.boot</groupId>
@@ -48,8 +46,7 @@
         <dependency>
             <groupId>org.mongodb</groupId>
             <artifactId>mongo-java-driver</artifactId>
-            <version>3.4.2</version>
-        </dependency>
+            </dependency>
 
 
         <dependency>
@@ -67,7 +64,6 @@
         <dependency>
             <groupId>junit</groupId>
             <artifactId>junit</artifactId>
-            <version>4.12</version>
             <scope>test</scope>
         </dependency>
 
@@ -80,8 +76,7 @@
         <dependency>
             <groupId>commons-io</groupId>
             <artifactId>commons-io</artifactId>
-            <version>2.5</version>
-        </dependency>
+            </dependency>
 
         <dependency>
             <groupId>org.apache.commons</groupId>
@@ -98,8 +93,7 @@
         <dependency>
             <groupId>commons-codec</groupId>
             <artifactId>commons-codec</artifactId>
-            <version>1.10</version>
-        </dependency>
+            </dependency>
 
         <dependency>
             <groupId>org.apache.commons</groupId>
@@ -184,14 +178,12 @@
         <dependency>
             <groupId>org.freemarker</groupId>
             <artifactId>freemarker</artifactId>
-            <version>2.3.25-incubating</version>
-        </dependency>
+            </dependency>
 
         <dependency>
             <groupId>dom4j</groupId>
             <artifactId>dom4j</artifactId>
-            <version>1.6.1</version>
-        </dependency>
+            </dependency>
 
         <dependency>
             <groupId>com.esotericsoftware</groupId>
@@ -210,5 +202,11 @@
             <artifactId>ansj_seg</artifactId>
             <version>5.1.1</version>
         </dependency>
+        
+        <dependency>
+		  <groupId>com.upyun</groupId>
+		  <artifactId>java-sdk</artifactId>
+		  <version>3.13</version>
+		</dependency>
     </dependencies>
 </project>

+ 179 - 0
cqb-comm-utils/src/main/java/com/qmth/cqb/utils/FileDisposeUtil.java

@@ -0,0 +1,179 @@
+package com.qmth.cqb.utils;
+
+import java.io.BufferedInputStream;
+import java.io.BufferedOutputStream;
+import java.io.DataInputStream;
+import java.io.DataOutputStream;
+import java.io.File;
+import java.io.FileInputStream;
+import java.io.FileNotFoundException;
+import java.io.FileOutputStream;
+import java.io.IOException;
+import java.io.InputStream;
+import java.io.OutputStream;
+import java.net.HttpURLConnection;
+import java.net.URL;
+import java.nio.file.Files;
+import java.nio.file.Path;
+import java.nio.file.Paths;
+import java.util.zip.ZipEntry;
+import java.util.zip.ZipOutputStream;
+
+import javax.servlet.http.HttpServletResponse;
+
+import org.slf4j.Logger;
+import org.slf4j.LoggerFactory;
+
+
+/**
+ * @author chenken
+ * @date 2017年7月17日 上午9:36:32
+ * @company QMTH
+ * @description FileUtil.java
+ */
+public class FileDisposeUtil {
+	
+	private static final Logger logger = LoggerFactory.getLogger(FileDisposeUtil.class);
+	
+	public static boolean saveUrlAs(String fileUrl, String fileName) {
+		try {
+			URL url = new URL(fileUrl);
+			HttpURLConnection connection = (HttpURLConnection) url
+					.openConnection();
+			DataInputStream in = new DataInputStream(
+					connection.getInputStream());
+			DataOutputStream out = new DataOutputStream(new FileOutputStream(
+					fileName));
+			byte[] buffer = new byte[4096];
+			int count = 0;
+			while ((count = in.read(buffer)) > 0) {
+				out.write(buffer, 0, count);
+			}
+			out.close();
+			in.close();
+			return true;
+		} catch (Exception e) {
+			return false;
+		}
+	}
+	/**
+	 * 下载文件
+	 * @param filename		文件名称
+	 * @param fullFilePath	文件全路径
+	 * @param response
+	 */
+	public static void downloadFile(String filename,String fullFilePath,HttpServletResponse response){
+		//获得请求文件名  
+        //设置文件MIME类型  
+		response.setContentType(getContentType(filename));
+        //设置Content-Disposition  
+        response.setHeader("Content-Disposition", "attachment;filename="+filename);  
+        //读取目标文件,通过response将目标文件写到客户端  
+        //获取目标文件的绝对路径  
+        //读取文件  
+		try {
+			InputStream in = new FileInputStream(fullFilePath);
+			OutputStream out = response.getOutputStream();  
+	        //写文件  
+	        byte[] buffer = new byte[4096];
+			int count = 0;
+			while ((count = in.read(buffer)) > 0) {
+				out.write(buffer, 0, count);
+			} 
+	        response.flushBuffer();
+	        in.close();  
+	        out.close(); 
+		} catch (FileNotFoundException e) {
+			e.printStackTrace();
+		} catch (IOException e) {
+			e.printStackTrace();
+		}  
+         
+	}
+	/**
+	 * 获得文件MIME类型
+	 * @param filename
+	 * @return
+	 */
+	public static String getContentType(String filename){
+		String type = null;
+		Path path = Paths.get(filename);
+		try {
+			type = Files.probeContentType(path);
+		} catch (IOException e) {
+			e.printStackTrace();
+		}
+		return type;
+	}
+
+	/**
+	 * 将存放在sourceFilePath目录下的源文件,打包成fileName名称的zip文件,并存放到zipFilePath路径下
+	 * 
+	 * @param sourceFilePath
+	 *            :待压缩的文件路径
+	 * @param zipFilePath
+	 *            :压缩后存放路径
+	 * @param fileName
+	 *            :压缩后文件的名称
+	 * @return
+	 */
+	public static boolean fileToZip(String sourceFilePath, String zipFilePath,String fileName) {
+		boolean flag = false;
+		File sourceFile = new File(sourceFilePath);
+		FileInputStream fis = null;
+		BufferedInputStream bis = null;
+		FileOutputStream fos = null;
+		ZipOutputStream zos = null;
+
+		if (sourceFile.exists() == false) {
+			logger.error("待压缩的文件目录:" + sourceFilePath + "不存在.");
+		} else {
+			try {
+				File zipFile = new File(zipFilePath+"/"+fileName+".zip");
+				if (zipFile.exists()) {
+					logger.error(zipFilePath + "目录下存在名字为:" + fileName+ ".zip" + "打包文件.");
+				} else {
+					File[] sourceFiles = sourceFile.listFiles();
+					if (null == sourceFiles || sourceFiles.length < 1) {
+						logger.error("待压缩的文件目录:" + sourceFilePath+ "里面不存在文件,无需压缩.");
+					} else {
+						fos = new FileOutputStream(zipFile);
+						zos = new ZipOutputStream(new BufferedOutputStream(fos));
+						byte[] bufs = new byte[1024 * 10];
+						for (int i = 0; i < sourceFiles.length; i++) {
+							// 创建ZIP实体,并添加进压缩包
+							ZipEntry zipEntry = new ZipEntry(sourceFiles[i].getName());
+							zos.putNextEntry(zipEntry);
+							// 读取待压缩的文件并写进压缩包里
+							fis = new FileInputStream(sourceFiles[i]);
+							bis = new BufferedInputStream(fis, 1024 * 10);
+							int read = 0;
+							while ((read = bis.read(bufs, 0, 1024 * 10)) != -1) {
+								zos.write(bufs, 0, read);
+							}
+						}
+						flag = true;
+					}
+				}
+			} catch (FileNotFoundException e) {
+				e.printStackTrace();
+				throw new RuntimeException(e);
+			} catch (IOException e) {
+				e.printStackTrace();
+				throw new RuntimeException(e);
+			} finally {
+				try {
+					if (null != bis)
+						bis.close();
+					if (null != zos)
+						zos.close();
+				} catch (IOException e) {
+					e.printStackTrace();
+					throw new RuntimeException(e);
+				}
+			}
+		}
+		return flag;
+	}
+
+}

+ 20 - 5
cqb-comm-utils/src/main/java/com/qmth/cqb/utils/enums/ExamFileType.java

@@ -9,24 +9,39 @@ public enum ExamFileType {
 	/**
 	 * 试卷
 	 */
-	PAPER,
+	PAPER("试卷"),
 	/**
 	 * 答案
 	 */
-	ANSWER,
+	ANSWER("答案"),
 	/**
 	 * ZIP文件
 	 * 试卷结构
 	 * 主观题Excel、客观题Excel
 	 */
-	PAPER_STRUCTURE,
+	PAPER_STRUCTURE("试卷结构"),
 	/**
 	 * 音频文件
 	 */
-	AUDIO,
+	AUDIO("音频文件"),
 	/**
 	 * 加密数据包
 	 */
-	ENCRYPT_PACKAGE
+	ENCRYPT_PACKAGE("加密数据包");
+	
+	private String name;
+	
+	private ExamFileType(String name){
+		this.name = name;
+	}
+
+	public String getName() {
+		return name;
+	}
+
+	public void setName(String name) {
+		this.name = name;
+	}
+	
 }
 

+ 9 - 1
cqb-comm-utils/src/main/java/com/qmth/cqb/utils/word/DocxProcessUtil.java

@@ -671,6 +671,8 @@ public final class DocxProcessUtil {
         template.process(dataMap, out);
         out.flush();
         IOUtils.closeQuietly(out);
+        
+        
     }
 
     /**
@@ -850,8 +852,14 @@ public final class DocxProcessUtil {
             ZipUtils.doCompress(TEMP_FILE_EXP+fileName+DOCX_SUFFIX, out);
             response.flushBuffer();
         }
+        //删除本地文件
+        for(String fileName:fileNames){
+        	File file = new File(TEMP_FILE_EXP+fileName+DOCX_SUFFIX);
+        	if(file.exists()){
+        		file.delete();
+        	}
+        }
         out.close();
-   
     }
 
     /**

Diff do ficheiro suprimidas por serem muito extensas
+ 3952 - 0
cqb-comm-utils/src/main/resources/hzkj_answer_template.ftl


+ 5009 - 0
cqb-comm-utils/src/main/resources/hzkj_paper_template.ftl

@@ -0,0 +1,5009 @@
+<?xml version="1.0" encoding="UTF-8" standalone="yes"?>
+<?mso-application progid="Word.Document"?>
+<pkg:package xmlns:pkg="http://schemas.microsoft.com/office/2006/xmlPackage">
+	<pkg:part pkg:contentType="application/vnd.openxmlformats-package.relationships+xml" pkg:name="/_rels/.rels" pkg:padding="512">
+		<pkg:xmlData>
+			<Relationships xmlns="http://schemas.openxmlformats.org/package/2006/relationships">
+				<Relationship Id="rId3" Target="docProps/app.xml" Type="http://schemas.openxmlformats.org/officeDocument/2006/relationships/extended-properties"/>
+				<Relationship Id="rId2" Target="docProps/core.xml" Type="http://schemas.openxmlformats.org/package/2006/relationships/metadata/core-properties"/>
+				<Relationship Id="rId1" Target="word/document.xml" Type="http://schemas.openxmlformats.org/officeDocument/2006/relationships/officeDocument"/>
+			</Relationships>
+		</pkg:xmlData>
+	</pkg:part>
+	<pkg:part pkg:contentType="application/vnd.openxmlformats-package.relationships+xml" pkg:name="/word/_rels/document.xml.rels" pkg:padding="256">
+		<pkg:xmlData>
+			<Relationships xmlns="http://schemas.openxmlformats.org/package/2006/relationships">
+				<Relationship Id="rId8" Target="footer1.xml" Type="http://schemas.openxmlformats.org/officeDocument/2006/relationships/footer"/>
+				<Relationship Id="rId3" Target="styles.xml" Type="http://schemas.openxmlformats.org/officeDocument/2006/relationships/styles"/>
+				<Relationship Id="rId7" Target="endnotes.xml" Type="http://schemas.openxmlformats.org/officeDocument/2006/relationships/endnotes"/>
+				<Relationship Id="rId2" Target="numbering.xml" Type="http://schemas.openxmlformats.org/officeDocument/2006/relationships/numbering"/>
+				<Relationship Id="rId1" Target="../customXml/item1.xml" Type="http://schemas.openxmlformats.org/officeDocument/2006/relationships/customXml"/>
+				<Relationship Id="rId6" Target="footnotes.xml" Type="http://schemas.openxmlformats.org/officeDocument/2006/relationships/footnotes"/>
+				<Relationship Id="rId11" Target="theme/theme1.xml" Type="http://schemas.openxmlformats.org/officeDocument/2006/relationships/theme"/>
+				<Relationship Id="rId5" Target="webSettings.xml" Type="http://schemas.openxmlformats.org/officeDocument/2006/relationships/webSettings"/>
+				<Relationship Id="rId10" Target="fontTable.xml" Type="http://schemas.openxmlformats.org/officeDocument/2006/relationships/fontTable"/>
+				<Relationship Id="rId4" Target="settings.xml" Type="http://schemas.openxmlformats.org/officeDocument/2006/relationships/settings"/>
+				<Relationship Id="rId9" Target="footer2.xml" Type="http://schemas.openxmlformats.org/officeDocument/2006/relationships/footer"/>
+			</Relationships>
+		</pkg:xmlData>
+	</pkg:part>
+	<pkg:part pkg:contentType="application/vnd.openxmlformats-officedocument.wordprocessingml.document.main+xml" pkg:name="/word/document.xml">
+		<pkg:xmlData>
+			<w:document mc:Ignorable="w14 wp14" xmlns:m="http://schemas.openxmlformats.org/officeDocument/2006/math" xmlns:mc="http://schemas.openxmlformats.org/markup-compatibility/2006" xmlns:o="urn:schemas-microsoft-com:office:office" xmlns:r="http://schemas.openxmlformats.org/officeDocument/2006/relationships" xmlns:v="urn:schemas-microsoft-com:vml" xmlns:w="http://schemas.openxmlformats.org/wordprocessingml/2006/main" xmlns:w10="urn:schemas-microsoft-com:office:word" xmlns:w14="http://schemas.microsoft.com/office/word/2010/wordml" xmlns:wne="http://schemas.microsoft.com/office/word/2006/wordml" xmlns:wp="http://schemas.openxmlformats.org/drawingml/2006/wordprocessingDrawing" xmlns:wp14="http://schemas.microsoft.com/office/word/2010/wordprocessingDrawing" xmlns:wpc="http://schemas.microsoft.com/office/word/2010/wordprocessingCanvas" xmlns:wpg="http://schemas.microsoft.com/office/word/2010/wordprocessingGroup" xmlns:wpi="http://schemas.microsoft.com/office/word/2010/wordprocessingInk" xmlns:wps="http://schemas.microsoft.com/office/word/2010/wordprocessingShape">
+				<w:body>
+					<w:p w:rsidP="00C0008F" w:rsidR="00C0008F" w:rsidRDefault="00C0008F" w:rsidRPr="00D948E2">
+						<w:pPr>
+							<w:rPr>
+								<w:rFonts w:ascii="宋体" w:hAnsi="宋体"/>
+								<w:b/>
+								<w:bCs/>
+								<w:color w:val="FF0000"/>
+								<w:sz w:val="28"/>
+								<w:szCs w:val="28"/>
+							</w:rPr>
+						</w:pPr>
+						<w:bookmarkStart w:id="0" w:name="_GoBack"/>
+						<w:bookmarkEnd w:id="0"/>
+					</w:p>
+					<w:p w:rsidP="001A2234" w:rsidR="001A2234" w:rsidRDefault="005E06FB" w:rsidRPr="001A2234">
+						<w:pPr>
+							<w:ind w:left="-567" w:leftChars="-270"/>
+							<w:jc w:val="center"/>
+							<w:rPr>
+								<w:rFonts w:eastAsia="黑体" w:hint="eastAsia"/>
+								<w:b/>
+								<w:bCs/>
+								<w:noProof/>
+								<w:sz w:val="44"/>
+								<w:szCs w:val="44"/>
+							</w:rPr>
+						</w:pPr>
+						<w:r w:rsidRPr="001A2234">
+							<w:rPr>
+								<w:rFonts w:eastAsia="黑体"/>
+								<w:b/>
+								<w:bCs/>
+								<w:noProof/>
+								<w:sz w:val="44"/>
+								<w:szCs w:val="44"/>
+							</w:rPr>
+							<w:pict>
+								<v:shapetype coordsize="21600,21600" id="_x0000_t202" o:spt="202" path="m,l,21600r21600,l21600,xe">
+									<v:stroke joinstyle="miter"/>
+									<v:path gradientshapeok="t" o:connecttype="rect"/>
+								</v:shapetype>
+								<v:shape id="_x0000_s1254" stroked="f" style="position:absolute;left:0;text-align:left;margin-left:-63pt;margin-top:-39pt;width:81pt;height:803.4pt;z-index:1" type="#_x0000_t202">
+									<v:textbox style="layout-flow:vertical;mso-layout-flow-alt:bottom-to-top;mso-next-textbox:#_x0000_s1254">
+										<w:txbxContent>
+											<w:p w:rsidP="005E06FB" w:rsidR="005E06FB" w:rsidRDefault="005E06FB">
+												<w:pPr>
+													<w:spacing w:line="360" w:lineRule="auto"/>
+													<w:jc w:val="center"/>
+													<w:rPr>
+														<w:rFonts w:hint="eastAsia"/>
+														<w:sz w:val="24"/>
+													</w:rPr>
+												</w:pPr>
+												<w:r>
+													<w:rPr>
+														<w:rFonts w:hint="eastAsia"/>
+														<w:sz w:val="24"/>
+													</w:rPr>
+													<w:t>姓名</w:t>
+												</w:r>
+												<w:r>
+													<w:rPr>
+														<w:rFonts w:hint="eastAsia"/>
+														<w:sz w:val="24"/>
+													</w:rPr>
+													<w:t xml:space="preserve">__________________ </w:t>
+												</w:r>
+												<w:r>
+													<w:rPr>
+														<w:rFonts w:hint="eastAsia"/>
+														<w:sz w:val="24"/>
+													</w:rPr>
+													<w:t>专业名称</w:t>
+												</w:r>
+												<w:r>
+													<w:rPr>
+														<w:rFonts w:hint="eastAsia"/>
+														<w:sz w:val="24"/>
+													</w:rPr>
+													<w:t>__________________</w:t>
+												</w:r>
+												<w:r>
+													<w:rPr>
+														<w:rFonts w:hint="eastAsia"/>
+														<w:sz w:val="24"/>
+													</w:rPr>
+													<w:t xml:space="preserve">  班号</w:t>
+												</w:r>
+												<w:r>
+													<w:rPr>
+														<w:rFonts w:hint="eastAsia"/>
+														<w:sz w:val="24"/>
+													</w:rPr>
+													<w:t>________________</w:t>
+												</w:r>
+												<w:r>
+													<w:rPr>
+														<w:rFonts w:hint="eastAsia"/>
+														<w:sz w:val="24"/>
+													</w:rPr>
+													<w:t>学号</w:t>
+												</w:r>
+												<w:r>
+													<w:rPr>
+														<w:rFonts w:hint="eastAsia"/>
+														<w:sz w:val="24"/>
+													</w:rPr>
+													<w:t>__________________</w:t>
+												</w:r>
+												<w:r>
+													<w:rPr>
+														<w:rFonts w:hint="eastAsia"/>
+														<w:sz w:val="24"/>
+													</w:rPr>
+													<w:t>学习中心</w:t>
+												</w:r>
+												<w:r>
+													<w:rPr>
+														<w:rFonts w:hint="eastAsia"/>
+														<w:sz w:val="24"/>
+													</w:rPr>
+													<w:t>_________________</w:t>
+												</w:r>
+											</w:p>
+											<w:p w:rsidP="005E06FB" w:rsidR="005E06FB" w:rsidRDefault="005E06FB">
+												<w:pPr>
+													<w:ind w:hanging="720" w:hangingChars="300" w:left="720"/>
+													<w:jc w:val="center"/>
+												</w:pPr>
+												<w:r>
+													<w:rPr>
+														<w:sz w:val="24"/>
+													</w:rPr>
+													<w:t>……………………</w:t>
+												</w:r>
+												<w:r>
+													<w:rPr>
+														<w:rFonts w:hint="eastAsia"/>
+														<w:sz w:val="24"/>
+													</w:rPr>
+													<w:t xml:space="preserve"/>
+												</w:r>
+												<w:r>
+													<w:rPr>
+														<w:sz w:val="24"/>
+													</w:rPr>
+													<w:t>……</w:t>
+												</w:r>
+												<w:r>
+													<w:rPr>
+														<w:rFonts w:hint="eastAsia"/>
+														<w:sz w:val="24"/>
+													</w:rPr>
+													<w:t xml:space="preserve"/>
+												</w:r>
+												<w:r>
+													<w:rPr>
+														<w:sz w:val="24"/>
+													</w:rPr>
+													<w:t>…</w:t>
+												</w:r>
+												<w:r>
+													<w:rPr>
+														<w:rFonts w:hint="eastAsia"/>
+														<w:sz w:val="24"/>
+													</w:rPr>
+													<w:t xml:space="preserve"/>
+												</w:r>
+												<w:r>
+													<w:rPr>
+														<w:sz w:val="24"/>
+													</w:rPr>
+													<w:t>…</w:t>
+												</w:r>
+												<w:r>
+													<w:rPr>
+														<w:rFonts w:hint="eastAsia"/>
+														<w:sz w:val="24"/>
+													</w:rPr>
+													<w:t xml:space="preserve"/>
+												</w:r>
+												<w:r>
+													<w:rPr>
+														<w:sz w:val="24"/>
+													</w:rPr>
+													<w:t>…</w:t>
+												</w:r>
+												<w:r>
+													<w:rPr>
+														<w:rFonts w:hint="eastAsia"/>
+														<w:sz w:val="24"/>
+													</w:rPr>
+													<w:t xml:space="preserve"/>
+												</w:r>
+												<w:r>
+													<w:rPr>
+														<w:sz w:val="24"/>
+													</w:rPr>
+													<w:t>…</w:t>
+												</w:r>
+												<w:r>
+													<w:rPr>
+														<w:rFonts w:hint="eastAsia"/>
+														<w:sz w:val="24"/>
+													</w:rPr>
+													<w:t xml:space="preserve"/>
+												</w:r>
+												<w:r>
+													<w:rPr>
+														<w:sz w:val="24"/>
+													</w:rPr>
+													<w:t>…</w:t>
+												</w:r>
+												<w:r>
+													<w:rPr>
+														<w:rFonts w:hint="eastAsia"/>
+														<w:sz w:val="24"/>
+													</w:rPr>
+													<w:t>密</w:t>
+												</w:r>
+												<w:r>
+													<w:rPr>
+														<w:sz w:val="24"/>
+													</w:rPr>
+													<w:t>…………………</w:t>
+												</w:r>
+												<w:r>
+													<w:rPr>
+														<w:rFonts w:hint="eastAsia"/>
+														<w:sz w:val="24"/>
+													</w:rPr>
+													<w:t xml:space="preserve"/>
+												</w:r>
+												<w:r>
+													<w:rPr>
+														<w:sz w:val="24"/>
+													</w:rPr>
+													<w:t>……</w:t>
+												</w:r>
+												<w:r>
+													<w:rPr>
+														<w:rFonts w:hint="eastAsia"/>
+														<w:sz w:val="24"/>
+													</w:rPr>
+													<w:t xml:space="preserve"/>
+												</w:r>
+												<w:r>
+													<w:rPr>
+														<w:sz w:val="24"/>
+													</w:rPr>
+													<w:t>…</w:t>
+												</w:r>
+												<w:r>
+													<w:rPr>
+														<w:rFonts w:hint="eastAsia"/>
+														<w:sz w:val="24"/>
+													</w:rPr>
+													<w:t xml:space="preserve"/>
+												</w:r>
+												<w:r>
+													<w:rPr>
+														<w:sz w:val="24"/>
+													</w:rPr>
+													<w:t>…</w:t>
+												</w:r>
+												<w:r>
+													<w:rPr>
+														<w:rFonts w:hint="eastAsia"/>
+														<w:sz w:val="24"/>
+													</w:rPr>
+													<w:t xml:space="preserve"/>
+												</w:r>
+												<w:r>
+													<w:rPr>
+														<w:sz w:val="24"/>
+													</w:rPr>
+													<w:t>…</w:t>
+												</w:r>
+												<w:r>
+													<w:rPr>
+														<w:rFonts w:hint="eastAsia"/>
+														<w:sz w:val="24"/>
+													</w:rPr>
+													<w:t xml:space="preserve"/>
+												</w:r>
+												<w:r>
+													<w:rPr>
+														<w:sz w:val="24"/>
+													</w:rPr>
+													<w:t>…</w:t>
+												</w:r>
+												<w:r>
+													<w:rPr>
+														<w:rFonts w:hint="eastAsia"/>
+														<w:sz w:val="24"/>
+													</w:rPr>
+													<w:t xml:space="preserve"/>
+												</w:r>
+												<w:r>
+													<w:rPr>
+														<w:sz w:val="24"/>
+													</w:rPr>
+													<w:t>……</w:t>
+												</w:r>
+												<w:r>
+													<w:rPr>
+														<w:rFonts w:hint="eastAsia"/>
+														<w:sz w:val="24"/>
+													</w:rPr>
+													<w:t>封</w:t>
+												</w:r>
+												<w:r>
+													<w:rPr>
+														<w:sz w:val="24"/>
+													</w:rPr>
+													<w:t>………………</w:t>
+												</w:r>
+												<w:r>
+													<w:rPr>
+														<w:rFonts w:hint="eastAsia"/>
+														<w:sz w:val="24"/>
+													</w:rPr>
+													<w:t xml:space="preserve"/>
+												</w:r>
+												<w:r>
+													<w:rPr>
+														<w:sz w:val="24"/>
+													</w:rPr>
+													<w:t>……</w:t>
+												</w:r>
+												<w:r>
+													<w:rPr>
+														<w:rFonts w:hint="eastAsia"/>
+														<w:sz w:val="24"/>
+													</w:rPr>
+													<w:t xml:space="preserve"/>
+												</w:r>
+												<w:r>
+													<w:rPr>
+														<w:sz w:val="24"/>
+													</w:rPr>
+													<w:t>…</w:t>
+												</w:r>
+												<w:r>
+													<w:rPr>
+														<w:rFonts w:hint="eastAsia"/>
+														<w:sz w:val="24"/>
+													</w:rPr>
+													<w:t xml:space="preserve"/>
+												</w:r>
+												<w:r>
+													<w:rPr>
+														<w:sz w:val="24"/>
+													</w:rPr>
+													<w:t>…</w:t>
+												</w:r>
+												<w:r>
+													<w:rPr>
+														<w:rFonts w:hint="eastAsia"/>
+														<w:sz w:val="24"/>
+													</w:rPr>
+													<w:t xml:space="preserve"/>
+												</w:r>
+												<w:r>
+													<w:rPr>
+														<w:sz w:val="24"/>
+													</w:rPr>
+													<w:t>…</w:t>
+												</w:r>
+												<w:r>
+													<w:rPr>
+														<w:rFonts w:hint="eastAsia"/>
+														<w:sz w:val="24"/>
+													</w:rPr>
+													<w:t>线</w:t>
+												</w:r>
+												<w:r>
+													<w:rPr>
+														<w:sz w:val="24"/>
+													</w:rPr>
+													<w:t>…</w:t>
+												</w:r>
+												<w:r>
+													<w:rPr>
+														<w:rFonts w:hint="eastAsia"/>
+														<w:sz w:val="24"/>
+													</w:rPr>
+													<w:t xml:space="preserve"/>
+												</w:r>
+												<w:r>
+													<w:rPr>
+														<w:sz w:val="24"/>
+													</w:rPr>
+													<w:t>…</w:t>
+												</w:r>
+												<w:r>
+													<w:rPr>
+														<w:rFonts w:hint="eastAsia"/>
+														<w:sz w:val="24"/>
+													</w:rPr>
+													<w:t xml:space="preserve"/>
+												</w:r>
+												<w:r>
+													<w:rPr>
+														<w:sz w:val="24"/>
+													</w:rPr>
+													<w:t>…</w:t>
+												</w:r>
+												<w:r>
+													<w:rPr>
+														<w:rFonts w:hint="eastAsia"/>
+														<w:sz w:val="24"/>
+													</w:rPr>
+													<w:t xml:space="preserve"/>
+												</w:r>
+												<w:r>
+													<w:rPr>
+														<w:sz w:val="24"/>
+													</w:rPr>
+													<w:t>……</w:t>
+												</w:r>
+												<w:r>
+													<w:rPr>
+														<w:rFonts w:hint="eastAsia"/>
+														<w:sz w:val="24"/>
+													</w:rPr>
+													<w:t xml:space="preserve"/>
+												</w:r>
+												<w:r>
+													<w:rPr>
+														<w:sz w:val="24"/>
+													</w:rPr>
+													<w:t>…</w:t>
+												</w:r>
+												<w:r>
+													<w:rPr>
+														<w:rFonts w:hint="eastAsia"/>
+														<w:sz w:val="24"/>
+													</w:rPr>
+													<w:t xml:space="preserve"/>
+												</w:r>
+												<w:r>
+													<w:rPr>
+														<w:sz w:val="24"/>
+													</w:rPr>
+													<w:t>…</w:t>
+												</w:r>
+												<w:r>
+													<w:rPr>
+														<w:rFonts w:hint="eastAsia"/>
+														<w:sz w:val="24"/>
+													</w:rPr>
+													<w:t xml:space="preserve"/>
+												</w:r>
+												<w:r>
+													<w:rPr>
+														<w:sz w:val="24"/>
+													</w:rPr>
+													<w:t>……………………</w:t>
+												</w:r>
+											</w:p>
+										</w:txbxContent>
+									</v:textbox>
+									<w10:wrap type="square"/>
+								</v:shape>
+							</w:pict>
+						</w:r>
+						<w:r w:rsidR="001A2234" w:rsidRPr="001A2234">
+							<w:rPr>
+								<w:rFonts w:eastAsia="黑体" w:hint="eastAsia"/>
+								<w:b/>
+								<w:bCs/>
+								<w:noProof/>
+								<w:sz w:val="44"/>
+								<w:szCs w:val="44"/>
+							</w:rPr>
+							<w:t>华中科技大学(网络教育)</w:t>
+						</w:r>
+					</w:p>
+					<w:p w:rsidP="001A2234" w:rsidR="00D948E2" w:rsidRDefault="001A2234" w:rsidRPr="001A2234">
+						<w:pPr>
+							<w:ind w:left="-567" w:leftChars="-270"/>
+							<w:jc w:val="center"/>
+							<w:rPr>
+								<w:rFonts w:eastAsia="黑体" w:hint="eastAsia"/>
+								<w:b/>
+								<w:bCs/>
+								<w:sz w:val="36"/>
+								<w:szCs w:val="36"/>
+							</w:rPr>
+						</w:pPr>
+						<w:r w:rsidRPr="001A2234">
+							<w:rPr>
+								<w:rFonts w:eastAsia="黑体" w:hint="eastAsia"/>
+								<w:b/>
+								<w:bCs/>
+								<w:noProof/>
+								<w:sz w:val="36"/>
+								<w:szCs w:val="36"/>
+							</w:rPr>
+							<w:t>课程考试</w:t>
+						</w:r>
+					</w:p>
+					<w:p w:rsidP="005E06FB" w:rsidR="001A2234" w:rsidRDefault="001A2234">
+						<w:pPr>
+							<w:spacing w:line="480" w:lineRule="auto"/>
+							<w:rPr>
+								<w:rFonts w:hint="eastAsia"/>
+								<w:b/>
+								<w:sz w:val="24"/>
+							</w:rPr>
+						</w:pPr>
+					</w:p>
+					<w:tbl>
+						<w:tblPr>
+							<w:tblW w:type="auto" w:w="0"/>
+							<w:tblLook w:firstColumn="1" w:firstRow="1" w:lastColumn="0" w:lastRow="0" w:noHBand="0" w:noVBand="1" w:val="04A0"/>
+						</w:tblPr>
+						<w:tblGrid>
+							<w:gridCol w:w="5495"/>
+							<w:gridCol w:w="3969"/>
+						</w:tblGrid>
+						<w:tr w:rsidR="001A2234" w:rsidRPr="003907C3" w:rsidTr="003907C3">
+							<w:tc>
+								<w:tcPr>
+									<w:tcW w:type="dxa" w:w="5495"/>
+								</w:tcPr>
+								<w:p w:rsidP="003907C3" w:rsidR="001A2234" w:rsidRDefault="001A2234" w:rsidRPr="003907C3">
+									<w:pPr>
+										<w:spacing w:line="480" w:lineRule="auto"/>
+										<w:rPr>
+											<w:rFonts w:hint="eastAsia"/>
+											<w:b/>
+											<w:sz w:val="24"/>
+										</w:rPr>
+									</w:pPr>
+									<w:r w:rsidRPr="003907C3">
+										<w:rPr>
+											<w:rFonts w:hint="eastAsia"/>
+											<w:b/>
+											<w:sz w:val="24"/>
+										</w:rPr>
+										<w:t>考试时间:</w:t>
+									</w:r>
+									<w:r w:rsidRPr="003907C3">
+										<w:rPr>
+											<w:rFonts w:hint="eastAsia"/>
+											<w:sz w:val="24"/>
+											<w:u w:val="single"/>
+										</w:rPr>
+										<w:t xml:space="preserve"/>
+									</w:r>
+									<w:r w:rsidRPr="003907C3">
+										<w:rPr>
+											<w:rFonts w:hint="eastAsia"/>
+											<w:b/>
+											<w:sz w:val="24"/>
+											<w:u w:val="single"/>
+										</w:rPr>
+										<w:t>90</w:t>
+									</w:r>
+									<w:r w:rsidRPr="003907C3">
+										<w:rPr>
+											<w:rFonts w:hint="eastAsia"/>
+											<w:b/>
+											<w:sz w:val="24"/>
+											<w:u w:val="single"/>
+										</w:rPr>
+										<w:t>分钟</w:t>
+									</w:r>
+									<w:r w:rsidRPr="003907C3">
+										<w:rPr>
+											<w:rFonts w:hint="eastAsia"/>
+											<w:sz w:val="24"/>
+											<w:u w:val="single"/>
+										</w:rPr>
+										<w:t xml:space="preserve"/>
+									</w:r>
+								</w:p>
+							</w:tc>
+							<w:tc>
+								<w:tcPr>
+									<w:tcW w:type="dxa" w:w="3969"/>
+								</w:tcPr>
+								<w:p w:rsidP="003907C3" w:rsidR="001A2234" w:rsidRDefault="001A2234" w:rsidRPr="003907C3">
+									<w:pPr>
+										<w:spacing w:line="480" w:lineRule="auto"/>
+										<w:rPr>
+											<w:rFonts w:hint="eastAsia"/>
+											<w:b/>
+											<w:sz w:val="24"/>
+										</w:rPr>
+									</w:pPr>
+									<w:r w:rsidRPr="003907C3">
+										<w:rPr>
+											<w:rFonts w:hint="eastAsia"/>
+											<w:b/>
+											<w:sz w:val="24"/>
+										</w:rPr>
+										<w:t>课程层次:</w:t>
+									</w:r>
+									<w:r w:rsidRPr="003907C3">
+										<w:rPr>
+											<w:rFonts w:hint="eastAsia"/>
+											<w:b/>
+											<w:sz w:val="24"/>
+											<w:u w:val="single"/>
+										</w:rPr>
+										<w:t xml:space="preserve"/>
+									</w:r>
+									<w:r w:rsidRPr="003907C3">
+										<w:rPr>
+											<w:rFonts w:ascii="宋体" w:hint="eastAsia"/>
+											<w:b/>
+											<w:color w:val="FF0000"/>
+											<w:sz w:val="24"/>
+											<w:u w:val="single"/>
+										</w:rPr>
+										<w:t>${paper.courseLevel}</w:t>
+									</w:r>
+									<w:r w:rsidRPr="003907C3">
+										<w:rPr>
+											<w:rFonts w:ascii="宋体" w:hint="eastAsia"/>
+											<w:b/>
+											<w:color w:val="000000"/>
+											<w:sz w:val="24"/>
+											<w:u w:val="single"/>
+										</w:rPr>
+										<w:t xml:space="preserve"/>
+									</w:r>
+									<w:r w:rsidRPr="003907C3">
+										<w:rPr>
+											<w:rFonts w:hint="eastAsia"/>
+											<w:b/>
+											<w:sz w:val="24"/>
+											<w:u w:val="single"/>
+										</w:rPr>
+										<w:t xml:space="preserve"/>
+									</w:r>
+								</w:p>
+							</w:tc>
+						</w:tr>
+						<w:tr w:rsidR="001A2234" w:rsidRPr="003907C3" w:rsidTr="003907C3">
+							<w:tc>
+								<w:tcPr>
+									<w:tcW w:type="dxa" w:w="5495"/>
+								</w:tcPr>
+								<w:p w:rsidP="003907C3" w:rsidR="001A2234" w:rsidRDefault="001A2234" w:rsidRPr="003907C3">
+									<w:pPr>
+										<w:spacing w:line="480" w:lineRule="auto"/>
+										<w:rPr>
+											<w:rFonts w:hint="eastAsia"/>
+											<w:b/>
+											<w:sz w:val="24"/>
+										</w:rPr>
+									</w:pPr>
+									<w:r w:rsidRPr="003907C3">
+										<w:rPr>
+											<w:rFonts w:hint="eastAsia"/>
+											<w:b/>
+											<w:sz w:val="24"/>
+										</w:rPr>
+										<w:t>课程名称:</w:t>
+									</w:r>
+									<w:r w:rsidRPr="003907C3">
+										<w:rPr>
+											<w:rFonts w:hint="eastAsia"/>
+											<w:b/>
+											<w:sz w:val="24"/>
+											<w:u w:val="single"/>
+										</w:rPr>
+										<w:t xml:space="preserve"/>
+									</w:r>
+									<w:r w:rsidRPr="003907C3">
+										<w:rPr>
+											<w:rFonts w:hint="eastAsia"/>
+											<w:b/>
+											<w:color w:val="FF0000"/>
+											<w:sz w:val="24"/>
+											<w:u w:val="single"/>
+										</w:rPr>
+										<w:t>${paper.courseName}</w:t>
+									</w:r>
+									<w:r w:rsidRPr="003907C3">
+										<w:rPr>
+											<w:rFonts w:ascii="宋体" w:hint="eastAsia"/>
+											<w:b/>
+											<w:color w:val="FF0000"/>
+											<w:sz w:val="24"/>
+											<w:u w:val="single"/>
+										</w:rPr>
+										<w:t xml:space="preserve"/>
+									</w:r>
+									<w:r w:rsidRPr="003907C3">
+										<w:rPr>
+											<w:rFonts w:ascii="宋体" w:hint="eastAsia"/>
+											<w:b/>
+											<w:color w:val="000000"/>
+											<w:sz w:val="24"/>
+											<w:u w:val="single"/>
+										</w:rPr>
+										<w:t xml:space="preserve"/>
+									</w:r>
+								</w:p>
+							</w:tc>
+							<w:tc>
+								<w:tcPr>
+									<w:tcW w:type="dxa" w:w="3969"/>
+								</w:tcPr>
+								<w:p w:rsidP="003907C3" w:rsidR="001A2234" w:rsidRDefault="001A2234" w:rsidRPr="003907C3">
+									<w:pPr>
+										<w:spacing w:line="480" w:lineRule="auto"/>
+										<w:rPr>
+											<w:rFonts w:hint="eastAsia"/>
+											<w:b/>
+											<w:sz w:val="24"/>
+										</w:rPr>
+									</w:pPr>
+									<w:r w:rsidRPr="003907C3">
+										<w:rPr>
+											<w:rFonts w:ascii="宋体" w:hint="eastAsia"/>
+											<w:b/>
+											<w:color w:val="000000"/>
+											<w:sz w:val="24"/>
+										</w:rPr>
+										<w:t>课程代码:</w:t>
+									</w:r>
+									<w:r w:rsidRPr="003907C3">
+										<w:rPr>
+											<w:rFonts w:ascii="宋体" w:hint="eastAsia"/>
+											<w:b/>
+											<w:color w:val="000000"/>
+											<w:sz w:val="24"/>
+											<w:u w:val="single"/>
+										</w:rPr>
+										<w:t xml:space="preserve"/>
+									</w:r>
+									<w:r w:rsidRPr="003907C3">
+										<w:rPr>
+											<w:rFonts w:ascii="宋体" w:hint="eastAsia"/>
+											<w:b/>
+											<w:color w:val="FF0000"/>
+											<w:sz w:val="24"/>
+											<w:u w:val="single"/>
+										</w:rPr>
+										<w:t>${paper.courseNo}</w:t>
+									</w:r>
+									<w:r w:rsidRPr="003907C3">
+										<w:rPr>
+											<w:rFonts w:ascii="宋体" w:hint="eastAsia"/>
+											<w:b/>
+											<w:color w:val="000000"/>
+											<w:sz w:val="24"/>
+											<w:u w:val="single"/>
+										</w:rPr>
+										<w:t xml:space="preserve"/>
+									</w:r>
+								</w:p>
+							</w:tc>
+						</w:tr>
+					</w:tbl>
+					<w:p w:rsidP="00E05F09" w:rsidR="00A600F0" w:rsidRDefault="00E05F09" w:rsidRPr="00A669E4">
+						<w:pPr>
+							<w:spacing w:line="480" w:lineRule="auto"/>
+							<w:rPr>
+								<w:rFonts w:ascii="宋体" w:hAnsi="宋体" w:hint="eastAsia"/>
+								<w:b/>
+								<w:bCs/>
+								<w:szCs w:val="21"/>
+							</w:rPr>
+						</w:pPr>
+						<w:r w:rsidRPr="00A669E4">
+							<w:rPr>
+								<w:rFonts w:ascii="宋体" w:hAnsi="宋体" w:hint="eastAsia"/>
+								<w:b/>
+								<w:bCs/>
+								<w:szCs w:val="21"/>
+							</w:rPr>
+							<w:t>本试卷分为两部分</w:t>
+						</w:r>
+						<w:r w:rsidR="00A600F0" w:rsidRPr="00A669E4">
+							<w:rPr>
+								<w:rFonts w:ascii="宋体" w:hAnsi="宋体" w:hint="eastAsia"/>
+								<w:b/>
+								<w:bCs/>
+								<w:szCs w:val="21"/>
+							</w:rPr>
+							<w:t>:</w:t>
+						</w:r>
+					</w:p>
+					<w:p w:rsidP="00E05F09" w:rsidR="005E06FB" w:rsidRDefault="005E06FB" w:rsidRPr="00A669E4">
+						<w:pPr>
+							<w:spacing w:line="480" w:lineRule="auto"/>
+							<w:rPr>
+								<w:rFonts w:ascii="黑体" w:eastAsia="黑体" w:hAnsi="宋体" w:hint="eastAsia"/>
+								<w:b/>
+								<w:bCs/>
+								<w:szCs w:val="21"/>
+							</w:rPr>
+						</w:pPr>
+						<w:r w:rsidRPr="00A669E4">
+							<w:rPr>
+								<w:rFonts w:ascii="宋体" w:hAnsi="宋体" w:hint="eastAsia"/>
+								<w:b/>
+								<w:szCs w:val="21"/>
+							</w:rPr>
+							<w:t>第一部分为客观题</w:t>
+						</w:r>
+						<w:r w:rsidR="00A600F0" w:rsidRPr="00A669E4">
+							<w:rPr>
+								<w:rFonts w:ascii="宋体" w:hAnsi="宋体" w:hint="eastAsia"/>
+								<w:b/>
+								<w:szCs w:val="21"/>
+							</w:rPr>
+							<w:t xml:space="preserve"/>
+						</w:r>
+						<w:r w:rsidRPr="00A669E4">
+							<w:rPr>
+								<w:rFonts w:ascii="宋体" w:hAnsi="宋体" w:hint="eastAsia"/>
+								<w:b/>
+								<w:szCs w:val="21"/>
+							</w:rPr>
+							<w:t>必须按试题顺序在“答题卡”上按要求填涂,答在试卷上的答案无效。</w:t>
+						</w:r>
+					</w:p>
+					<w:p w:rsidP="005E06FB" w:rsidR="005E06FB" w:rsidRDefault="005E06FB" w:rsidRPr="00A669E4">
+						<w:pPr>
+							<w:spacing w:line="480" w:lineRule="auto"/>
+							<w:rPr>
+								<w:rFonts w:ascii="黑体" w:eastAsia="黑体" w:hAnsi="宋体" w:hint="eastAsia"/>
+								<w:b/>
+								<w:bCs/>
+								<w:szCs w:val="21"/>
+							</w:rPr>
+						</w:pPr>
+						<w:r w:rsidRPr="00A669E4">
+							<w:rPr>
+								<w:rFonts w:ascii="宋体" w:hAnsi="宋体" w:hint="eastAsia"/>
+								<w:b/>
+								<w:szCs w:val="21"/>
+							</w:rPr>
+							<w:t>第二部分为主观题</w:t>
+						</w:r>
+						<w:r w:rsidR="00A600F0" w:rsidRPr="00A669E4">
+							<w:rPr>
+								<w:rFonts w:ascii="宋体" w:hAnsi="宋体" w:hint="eastAsia"/>
+								<w:b/>
+								<w:szCs w:val="21"/>
+							</w:rPr>
+							<w:t xml:space="preserve"/>
+						</w:r>
+						<w:r w:rsidRPr="00A669E4">
+							<w:rPr>
+								<w:rFonts w:ascii="宋体" w:hAnsi="宋体" w:hint="eastAsia"/>
+								<w:b/>
+								<w:szCs w:val="21"/>
+							</w:rPr>
+							<w:t>必须按试题顺序在“答题卡”上按要求作答,答在试卷上的答案无效。</w:t>
+						</w:r>
+					</w:p>
+					<w:p w:rsidP="000D249A" w:rsidR="00F3740E" w:rsidRDefault="00F3740E" w:rsidRPr="006E2D68">
+						<w:pPr>
+							<w:spacing w:line="400" w:lineRule="exact"/>
+							<w:ind w:firstLine="632" w:firstLineChars="300"/>
+							<w:rPr>
+								<w:rFonts w:ascii="宋体" w:hAnsi="宋体" w:hint="eastAsia"/>
+								<w:b/>
+								<w:szCs w:val="21"/>
+							</w:rPr>
+						</w:pPr>
+						<w:r w:rsidRPr="006E2D68">
+							<w:rPr>
+								<w:rFonts w:ascii="宋体" w:hAnsi="宋体" w:hint="eastAsia"/>
+								<w:b/>
+								<w:szCs w:val="21"/>
+							</w:rPr>
+							<w:t xml:space="preserve"/>
+						</w:r>
+						<w:r w:rsidR="004110E9" w:rsidRPr="006E2D68">
+							<w:rPr>
+								<w:rFonts w:ascii="宋体" w:hAnsi="宋体" w:hint="eastAsia"/>
+								<w:b/>
+								<w:szCs w:val="21"/>
+							</w:rPr>
+							<w:t xml:space="preserve"/>
+						</w:r>
+					</w:p>
+					<#if paper.objectiveScore != 0>
+					<w:p w:rsidP="004072CF" w:rsidR="00BC611E" w:rsidRDefault="00F3740E" w:rsidRPr="004072CF">
+						<w:pPr>
+							<w:spacing w:line="400" w:lineRule="exact"/>
+							<w:ind w:firstLine="2249" w:firstLineChars="800"/>
+							<w:rPr>
+								<w:rFonts w:ascii="宋体" w:hAnsi="宋体" w:hint="eastAsia"/>
+								<w:b/>
+								<w:sz w:val="28"/>
+								<w:szCs w:val="28"/>
+							</w:rPr>
+						</w:pPr>
+						<w:r w:rsidRPr="004072CF">
+							<w:rPr>
+								<w:rFonts w:ascii="宋体" w:hAnsi="宋体" w:hint="eastAsia"/>
+								<w:b/>
+								<w:sz w:val="28"/>
+								<w:szCs w:val="28"/>
+							</w:rPr>
+							<w:t>第一部分    客观题(</w:t>
+						</w:r>
+						<w:r w:rsidR="0007594E" w:rsidRPr="004072CF">
+							<w:rPr>
+								<w:rFonts w:ascii="宋体" w:hAnsi="宋体" w:hint="eastAsia"/>
+								<w:b/>
+								<w:sz w:val="28"/>
+								<w:szCs w:val="28"/>
+							</w:rPr>
+							<w:t>总分</w:t>
+						</w:r>
+						<w:r w:rsidR="001A590C">
+							<w:rPr>
+								<w:rFonts w:ascii="宋体" w:hAnsi="宋体" w:hint="eastAsia"/>
+								<w:b/>
+								<w:color w:val="FF0000"/>
+								<w:sz w:val="28"/>
+								<w:szCs w:val="28"/>
+							</w:rPr>
+							<w:t xml:space="preserve"/>
+						</w:r>
+						<w:r w:rsidR="004D3783">
+							<w:rPr>
+								<w:rFonts w:ascii="宋体" w:hAnsi="宋体" w:hint="eastAsia"/>
+								<w:b/>
+								<w:color w:val="FF0000"/>
+								<w:sz w:val="28"/>
+								<w:szCs w:val="28"/>
+							</w:rPr>
+							<w:t xml:space="preserve">${paper.objectiveScore} </w:t>
+						</w:r>
+						<w:r w:rsidRPr="004072CF">
+							<w:rPr>
+								<w:rFonts w:ascii="宋体" w:hAnsi="宋体" w:hint="eastAsia"/>
+								<w:b/>
+								<w:sz w:val="28"/>
+								<w:szCs w:val="28"/>
+							</w:rPr>
+							<w:t>分)</w:t>
+						</w:r>
+					</w:p>
+					</#if>
+					<w:p w:rsidP="00755E9E" w:rsidR="00017BD2" w:rsidRDefault="00017BD2" w:rsidRPr="006E2D68">
+						<w:pPr>
+							<w:spacing w:line="400" w:lineRule="exact"/>
+							<w:rPr>
+								<w:rFonts w:ascii="宋体" w:hAnsi="宋体" w:hint="eastAsia"/>
+								<w:b/>
+								<w:szCs w:val="21"/>
+							</w:rPr>
+						</w:pPr>
+					</w:p>
+					
+					<!--循环客观题-->
+				    <#if paper.objectiveDetails?exists>
+                    <#list paper.objectiveDetails as paperDetail>
+					<w:p w:rsidP="004D3783" w:rsidR="00687CD1" w:rsidRDefault="004D3783" w:rsidRPr="006E2D68">
+						<w:r>
+							<w:rPr>
+								<w:rFonts w:ascii="宋体" w:hAnsi="宋体" w:hint="eastAsia"/>
+								<w:b/>
+								<w:szCs w:val="21"/>
+							</w:rPr>
+							<w:t>${paperDetail.cnNum}</w:t>
+						</w:r>
+						 <w:r>
+							<w:rPr>
+								<w:rFonts w:ascii="宋体" w:hAnsi="宋体" w:hint="eastAsia"/>
+								<w:b/>
+								<w:szCs w:val="21"/>
+							</w:rPr>
+							<w:t>、</w:t>
+						</w:r>
+			            <w:r>
+							<w:rPr>
+								<w:rFonts w:ascii="宋体" w:hAnsi="宋体" w:hint="eastAsia"/>
+								<w:b/>
+								<w:szCs w:val="21"/>
+							</w:rPr>
+							<w:t>${paperDetail.name}</w:t>
+						</w:r>
+						<w:r>
+							<w:rPr>
+								<w:rFonts w:ascii="宋体" w:hAnsi="宋体" w:hint="eastAsia"/>
+								<w:b/>
+								<w:szCs w:val="21"/>
+							</w:rPr>
+							<w:t>${paperDetail.title}</w:t>
+						</w:r>
+					</w:p>
+				 <!--循环小题-->
+				    <#if paperDetail.paperDetailUnits?exists>
+                    <#list paperDetail.paperDetailUnits as paperDetailUnit>
+                        ${paperDetailUnit.question.quesBodyWord}
+                    <#if paperDetailUnit.question.subQuestions?exists>
+                    <#list paperDetailUnit.question.subQuestions as subQuestion>
+
+                        ${subQuestion.quesBodyWord}
+
+                        <#if subQuestion.quesOptions?exists>
+                        <#list subQuestion.quesOptions as subQuesOption>
+                            ${subQuesOption.optionBodyWord}
+                        </#list>
+                        </#if>
+                    </#list>
+                    </#if>
+
+                    <#if paperDetailUnit.question.quesOptions?exists>
+                    <#list paperDetailUnit.question.quesOptions as quesOption>
+                        ${quesOption.optionBodyWord}
+                     </#list>
+                    </#if>
+					<w:p w:rsidP="00852887" w:rsidR="00852887" w:rsidRDefault="00852887">
+						<w:pPr>
+							<w:spacing w:line="400" w:lineRule="exact"/>
+							<w:rPr>
+								<w:rFonts w:ascii="宋体" w:hAnsi="宋体"/>
+								<w:b/>
+								<w:sz w:val="28"/>
+								<w:szCs w:val="28"/>
+							</w:rPr>
+						</w:pPr>
+					</w:p>
+					</#list>
+                    </#if>
+                    </#list>
+                    </#if>
+					
+					
+					<#if paper.subjectiveScore != 0>
+					<w:p w:rsidP="001A590C" w:rsidR="001A590C" w:rsidRDefault="001A590C">
+						<w:pPr>
+							<w:spacing w:line="400" w:lineRule="exact"/>
+							<w:ind w:firstLine="2249" w:firstLineChars="800"/>
+							<w:rPr>
+								<w:rFonts w:ascii="宋体" w:hAnsi="宋体"/>
+								<w:b/>
+								<w:sz w:val="28"/>
+								<w:szCs w:val="28"/>
+							</w:rPr>
+						</w:pPr>
+						<w:r w:rsidRPr="004072CF">
+							<w:rPr>
+								<w:rFonts w:ascii="宋体" w:hAnsi="宋体" w:hint="eastAsia"/>
+								<w:b/>
+								<w:sz w:val="28"/>
+								<w:szCs w:val="28"/>
+							</w:rPr>
+							<w:t>第</w:t>
+						</w:r>
+						<w:r>
+							<w:rPr>
+								<w:rFonts w:ascii="宋体" w:hAnsi="宋体" w:hint="eastAsia"/>
+								<w:b/>
+								<w:sz w:val="28"/>
+								<w:szCs w:val="28"/>
+							</w:rPr>
+							<w:t>二</w:t>
+						</w:r>
+						<w:r w:rsidRPr="004072CF">
+							<w:rPr>
+								<w:rFonts w:ascii="宋体" w:hAnsi="宋体" w:hint="eastAsia"/>
+								<w:b/>
+								<w:sz w:val="28"/>
+								<w:szCs w:val="28"/>
+							</w:rPr>
+							<w:t xml:space="preserve">部分    </w:t>
+						</w:r>
+						<w:r>
+							<w:rPr>
+								<w:rFonts w:ascii="宋体" w:hAnsi="宋体" w:hint="eastAsia"/>
+								<w:b/>
+								<w:sz w:val="28"/>
+								<w:szCs w:val="28"/>
+							</w:rPr>
+							<w:t>主</w:t>
+						</w:r>
+						<w:r w:rsidRPr="004072CF">
+							<w:rPr>
+								<w:rFonts w:ascii="宋体" w:hAnsi="宋体" w:hint="eastAsia"/>
+								<w:b/>
+								<w:sz w:val="28"/>
+								<w:szCs w:val="28"/>
+							</w:rPr>
+							<w:t>观题(总分</w:t>
+						</w:r>
+						<w:r w:rsidR="004D3783">
+							<w:rPr>
+								<w:rFonts w:ascii="宋体" w:hAnsi="宋体" w:hint="eastAsia"/>
+								<w:b/>
+								<w:sz w:val="28"/>
+								<w:szCs w:val="28"/>
+							</w:rPr>
+							<w:t xml:space="preserve">${paper.subjectiveScore} </w:t>
+						</w:r>
+						<w:r w:rsidRPr="004072CF">
+							<w:rPr>
+								<w:rFonts w:ascii="宋体" w:hAnsi="宋体" w:hint="eastAsia"/>
+								<w:b/>
+								<w:sz w:val="28"/>
+								<w:szCs w:val="28"/>
+							</w:rPr>
+							<w:t>分)</w:t>
+						</w:r>
+					</w:p>
+					 </#if>
+					<w:p w:rsidP="003D4B52" w:rsidR="003D4B52" w:rsidRDefault="003D4B52">
+						<w:pPr>
+							<w:spacing w:line="420" w:lineRule="atLeast"/>
+							<w:rPr>
+								<w:rFonts w:ascii="宋体" w:hAnsi="宋体"/>
+								<w:b/>
+								<w:szCs w:val="21"/>
+							</w:rPr>
+						</w:pPr>
+						<w:r w:rsidRPr="006E2D68">
+							<w:rPr>
+								<w:rFonts w:ascii="宋体" w:hAnsi="宋体" w:hint="eastAsia"/>
+								<w:b/>
+								<w:szCs w:val="21"/>
+							</w:rPr>
+							<w:t></w:t>
+						</w:r>
+					</w:p>
+					
+					<!--循环主观题-->
+					<#if paper.subjectiveDetails?exists>
+                    <#list paper.subjectiveDetails as paperDetail>
+					<w:p w:rsidP="004D3783" w:rsidR="00687CD1" w:rsidRDefault="004D3783" w:rsidRPr="006E2D68">
+						<w:r>
+							<w:rPr>
+								<w:rFonts w:ascii="宋体" w:hAnsi="宋体" w:hint="eastAsia"/>
+								<w:b/>
+								<w:szCs w:val="21"/>
+							</w:rPr>
+							<w:t>${paperDetail.cnNum}</w:t>
+						</w:r>
+						 <w:r>
+							<w:rPr>
+								<w:rFonts w:ascii="宋体" w:hAnsi="宋体" w:hint="eastAsia"/>
+								<w:b/>
+								<w:szCs w:val="21"/>
+							</w:rPr>
+							<w:t>、</w:t>
+						</w:r>
+			            <w:r>
+							<w:rPr>
+								<w:rFonts w:ascii="宋体" w:hAnsi="宋体" w:hint="eastAsia"/>
+								<w:b/>
+								<w:szCs w:val="21"/>
+							</w:rPr>
+							<w:t>${paperDetail.name}</w:t>
+						</w:r>
+						<w:r>
+							<w:rPr>
+								<w:rFonts w:ascii="宋体" w:hAnsi="宋体" w:hint="eastAsia"/>
+								<w:b/>
+								<w:szCs w:val="21"/>
+							</w:rPr>
+							<w:t>${paperDetail.title}</w:t>
+						</w:r>
+					</w:p>
+					<!--循环小题-->
+                    <#if paperDetail.paperDetailUnits?exists>
+                    <#list paperDetail.paperDetailUnits as paperDetailUnit>
+
+                        ${paperDetailUnit.question.quesBodyWord}
+
+                    <#if paperDetailUnit.question.subQuestions?exists>
+                    <#list paperDetailUnit.question.subQuestions as subQuestion>
+
+                        ${subQuestion.quesBodyWord}
+
+                        <#if subQuestion.quesOptions?exists>
+                        <#list subQuestion.quesOptions as subQuesOption>
+                            ${subQuesOption.optionBodyWord}
+                        </#list>
+                        </#if>
+                    </#list>
+                    </#if>
+
+                    <#if paperDetailUnit.question.quesOptions?exists>
+                    <#list paperDetailUnit.question.quesOptions as quesOption>
+                        ${quesOption.optionBodyWord}
+                     </#list>
+                    </#if>
+					<w:p w:rsidP="003D4B52" w:rsidR="00852887" w:rsidRDefault="00852887">
+						<w:pPr>
+							<w:spacing w:line="420" w:lineRule="atLeast"/>
+							<w:rPr>
+								<w:rFonts w:ascii="宋体" w:hAnsi="宋体"/>
+								<w:b/>
+								<w:szCs w:val="21"/>
+							</w:rPr>
+						</w:pPr>
+					</w:p>
+					</#list>
+                    </#if>
+                    </#list>
+                    </#if>
+                    
+					<w:p w:rsidP="00361123" w:rsidR="002075AC" w:rsidRDefault="002075AC">
+						<w:pPr>
+							<w:spacing w:line="400" w:lineRule="exact"/>
+							<w:rPr>
+								<w:rFonts w:ascii="宋体" w:hAnsi="宋体" w:hint="eastAsia"/>
+								<w:szCs w:val="21"/>
+							</w:rPr>
+						</w:pPr>
+					</w:p>
+					<w:p w:rsidP="00361123" w:rsidR="002075AC" w:rsidRDefault="002075AC">
+						<w:pPr>
+							<w:spacing w:line="400" w:lineRule="exact"/>
+							<w:rPr>
+								<w:rFonts w:ascii="宋体" w:hAnsi="宋体" w:hint="eastAsia"/>
+								<w:szCs w:val="21"/>
+							</w:rPr>
+						</w:pPr>
+					</w:p>
+					<w:p w:rsidP="00361123" w:rsidR="002075AC" w:rsidRDefault="002075AC">
+						<w:pPr>
+							<w:spacing w:line="400" w:lineRule="exact"/>
+							<w:rPr>
+								<w:rFonts w:ascii="宋体" w:hAnsi="宋体" w:hint="eastAsia"/>
+								<w:szCs w:val="21"/>
+							</w:rPr>
+						</w:pPr>
+					</w:p>
+					<w:p w:rsidP="00361123" w:rsidR="002075AC" w:rsidRDefault="002075AC">
+						<w:pPr>
+							<w:spacing w:line="400" w:lineRule="exact"/>
+							<w:rPr>
+								<w:rFonts w:ascii="宋体" w:hAnsi="宋体" w:hint="eastAsia"/>
+								<w:szCs w:val="21"/>
+							</w:rPr>
+						</w:pPr>
+					</w:p>
+					<w:p w:rsidP="00361123" w:rsidR="002075AC" w:rsidRDefault="002075AC">
+						<w:pPr>
+							<w:spacing w:line="400" w:lineRule="exact"/>
+							<w:rPr>
+								<w:rFonts w:ascii="宋体" w:hAnsi="宋体" w:hint="eastAsia"/>
+								<w:szCs w:val="21"/>
+							</w:rPr>
+						</w:pPr>
+					</w:p>
+					<w:p w:rsidP="00361123" w:rsidR="002075AC" w:rsidRDefault="002075AC">
+						<w:pPr>
+							<w:spacing w:line="400" w:lineRule="exact"/>
+							<w:rPr>
+								<w:rFonts w:ascii="宋体" w:hAnsi="宋体" w:hint="eastAsia"/>
+								<w:szCs w:val="21"/>
+							</w:rPr>
+						</w:pPr>
+					</w:p>
+					<w:p w:rsidP="00361123" w:rsidR="002075AC" w:rsidRDefault="002075AC">
+						<w:pPr>
+							<w:spacing w:line="400" w:lineRule="exact"/>
+							<w:rPr>
+								<w:rFonts w:ascii="宋体" w:hAnsi="宋体" w:hint="eastAsia"/>
+								<w:szCs w:val="21"/>
+							</w:rPr>
+						</w:pPr>
+					</w:p>
+					<w:p w:rsidP="00361123" w:rsidR="002075AC" w:rsidRDefault="002075AC">
+						<w:pPr>
+							<w:spacing w:line="400" w:lineRule="exact"/>
+							<w:rPr>
+								<w:rFonts w:ascii="宋体" w:hAnsi="宋体" w:hint="eastAsia"/>
+								<w:szCs w:val="21"/>
+							</w:rPr>
+						</w:pPr>
+					</w:p>
+					<w:p w:rsidP="00361123" w:rsidR="002075AC" w:rsidRDefault="002075AC">
+						<w:pPr>
+							<w:spacing w:line="400" w:lineRule="exact"/>
+							<w:rPr>
+								<w:rFonts w:ascii="宋体" w:hAnsi="宋体" w:hint="eastAsia"/>
+								<w:szCs w:val="21"/>
+							</w:rPr>
+						</w:pPr>
+					</w:p>
+					<w:p w:rsidP="00361123" w:rsidR="002075AC" w:rsidRDefault="002075AC">
+						<w:pPr>
+							<w:spacing w:line="400" w:lineRule="exact"/>
+							<w:rPr>
+								<w:rFonts w:ascii="宋体" w:hAnsi="宋体" w:hint="eastAsia"/>
+								<w:szCs w:val="21"/>
+							</w:rPr>
+						</w:pPr>
+					</w:p>
+					<w:p w:rsidP="00361123" w:rsidR="002075AC" w:rsidRDefault="002075AC">
+						<w:pPr>
+							<w:spacing w:line="400" w:lineRule="exact"/>
+							<w:rPr>
+								<w:rFonts w:ascii="宋体" w:hAnsi="宋体" w:hint="eastAsia"/>
+								<w:szCs w:val="21"/>
+							</w:rPr>
+						</w:pPr>
+					</w:p>
+					<w:p w:rsidP="00361123" w:rsidR="002075AC" w:rsidRDefault="002075AC">
+						<w:pPr>
+							<w:spacing w:line="400" w:lineRule="exact"/>
+							<w:rPr>
+								<w:rFonts w:ascii="宋体" w:hAnsi="宋体" w:hint="eastAsia"/>
+								<w:szCs w:val="21"/>
+							</w:rPr>
+						</w:pPr>
+					</w:p>
+					<w:p w:rsidP="00361123" w:rsidR="002075AC" w:rsidRDefault="002075AC">
+						<w:pPr>
+							<w:spacing w:line="400" w:lineRule="exact"/>
+							<w:rPr>
+								<w:rFonts w:ascii="宋体" w:hAnsi="宋体" w:hint="eastAsia"/>
+								<w:szCs w:val="21"/>
+							</w:rPr>
+						</w:pPr>
+					</w:p>
+					<w:p w:rsidP="00361123" w:rsidR="002075AC" w:rsidRDefault="002075AC">
+						<w:pPr>
+							<w:spacing w:line="400" w:lineRule="exact"/>
+							<w:rPr>
+								<w:rFonts w:ascii="宋体" w:hAnsi="宋体" w:hint="eastAsia"/>
+								<w:szCs w:val="21"/>
+							</w:rPr>
+						</w:pPr>
+					</w:p>
+					<w:p w:rsidP="00361123" w:rsidR="002075AC" w:rsidRDefault="002075AC">
+						<w:pPr>
+							<w:spacing w:line="400" w:lineRule="exact"/>
+							<w:rPr>
+								<w:rFonts w:ascii="宋体" w:hAnsi="宋体" w:hint="eastAsia"/>
+								<w:szCs w:val="21"/>
+							</w:rPr>
+						</w:pPr>
+					</w:p>
+					<w:p w:rsidP="00361123" w:rsidR="002075AC" w:rsidRDefault="002075AC">
+						<w:pPr>
+							<w:spacing w:line="400" w:lineRule="exact"/>
+							<w:rPr>
+								<w:rFonts w:ascii="宋体" w:hAnsi="宋体" w:hint="eastAsia"/>
+								<w:szCs w:val="21"/>
+							</w:rPr>
+						</w:pPr>
+					</w:p>
+					<w:p w:rsidP="00361123" w:rsidR="002075AC" w:rsidRDefault="002075AC">
+						<w:pPr>
+							<w:spacing w:line="400" w:lineRule="exact"/>
+							<w:rPr>
+								<w:rFonts w:ascii="宋体" w:hAnsi="宋体" w:hint="eastAsia"/>
+								<w:szCs w:val="21"/>
+							</w:rPr>
+						</w:pPr>
+					</w:p>
+					<w:p w:rsidP="00361123" w:rsidR="002075AC" w:rsidRDefault="002075AC">
+						<w:pPr>
+							<w:spacing w:line="400" w:lineRule="exact"/>
+							<w:rPr>
+								<w:rFonts w:ascii="宋体" w:hAnsi="宋体" w:hint="eastAsia"/>
+								<w:szCs w:val="21"/>
+							</w:rPr>
+						</w:pPr>
+					</w:p>
+					<w:p w:rsidP="00361123" w:rsidR="002075AC" w:rsidRDefault="002075AC">
+						<w:pPr>
+							<w:spacing w:line="400" w:lineRule="exact"/>
+							<w:rPr>
+								<w:rFonts w:ascii="宋体" w:hAnsi="宋体" w:hint="eastAsia"/>
+								<w:szCs w:val="21"/>
+							</w:rPr>
+						</w:pPr>
+					</w:p>
+					<w:p w:rsidP="00361123" w:rsidR="002075AC" w:rsidRDefault="002075AC">
+						<w:pPr>
+							<w:spacing w:line="400" w:lineRule="exact"/>
+							<w:rPr>
+								<w:rFonts w:ascii="宋体" w:hAnsi="宋体" w:hint="eastAsia"/>
+								<w:szCs w:val="21"/>
+							</w:rPr>
+						</w:pPr>
+					</w:p>
+					<w:p w:rsidP="00361123" w:rsidR="002075AC" w:rsidRDefault="002075AC">
+						<w:pPr>
+							<w:spacing w:line="400" w:lineRule="exact"/>
+							<w:rPr>
+								<w:rFonts w:ascii="宋体" w:hAnsi="宋体" w:hint="eastAsia"/>
+								<w:szCs w:val="21"/>
+							</w:rPr>
+						</w:pPr>
+					</w:p>
+					<w:p w:rsidP="00361123" w:rsidR="002075AC" w:rsidRDefault="002075AC">
+						<w:pPr>
+							<w:spacing w:line="400" w:lineRule="exact"/>
+							<w:rPr>
+								<w:rFonts w:ascii="宋体" w:hAnsi="宋体" w:hint="eastAsia"/>
+								<w:szCs w:val="21"/>
+							</w:rPr>
+						</w:pPr>
+					</w:p>
+					<w:p w:rsidP="00361123" w:rsidR="002075AC" w:rsidRDefault="002075AC">
+						<w:pPr>
+							<w:spacing w:line="400" w:lineRule="exact"/>
+							<w:rPr>
+								<w:rFonts w:ascii="宋体" w:hAnsi="宋体" w:hint="eastAsia"/>
+								<w:szCs w:val="21"/>
+							</w:rPr>
+						</w:pPr>
+					</w:p>
+					<w:p w:rsidP="00361123" w:rsidR="002075AC" w:rsidRDefault="002075AC">
+						<w:pPr>
+							<w:spacing w:line="400" w:lineRule="exact"/>
+							<w:rPr>
+								<w:rFonts w:ascii="宋体" w:hAnsi="宋体" w:hint="eastAsia"/>
+								<w:szCs w:val="21"/>
+							</w:rPr>
+						</w:pPr>
+					</w:p>
+					<w:p w:rsidP="00361123" w:rsidR="002075AC" w:rsidRDefault="002075AC">
+						<w:pPr>
+							<w:spacing w:line="400" w:lineRule="exact"/>
+							<w:rPr>
+								<w:rFonts w:ascii="宋体" w:hAnsi="宋体" w:hint="eastAsia"/>
+								<w:szCs w:val="21"/>
+							</w:rPr>
+						</w:pPr>
+					</w:p>
+					<w:p w:rsidP="00361123" w:rsidR="002075AC" w:rsidRDefault="002075AC">
+						<w:pPr>
+							<w:spacing w:line="400" w:lineRule="exact"/>
+							<w:rPr>
+								<w:rFonts w:ascii="宋体" w:hAnsi="宋体" w:hint="eastAsia"/>
+								<w:szCs w:val="21"/>
+							</w:rPr>
+						</w:pPr>
+					</w:p>
+					<w:p w:rsidP="00361123" w:rsidR="002075AC" w:rsidRDefault="002075AC">
+						<w:pPr>
+							<w:spacing w:line="400" w:lineRule="exact"/>
+							<w:rPr>
+								<w:rFonts w:ascii="宋体" w:hAnsi="宋体" w:hint="eastAsia"/>
+								<w:szCs w:val="21"/>
+							</w:rPr>
+						</w:pPr>
+					</w:p>
+					<w:p w:rsidP="00361123" w:rsidR="002075AC" w:rsidRDefault="002075AC">
+						<w:pPr>
+							<w:spacing w:line="400" w:lineRule="exact"/>
+							<w:rPr>
+								<w:rFonts w:ascii="宋体" w:hAnsi="宋体" w:hint="eastAsia"/>
+								<w:szCs w:val="21"/>
+							</w:rPr>
+						</w:pPr>
+					</w:p>
+					<w:p w:rsidP="00361123" w:rsidR="002075AC" w:rsidRDefault="002075AC">
+						<w:pPr>
+							<w:spacing w:line="400" w:lineRule="exact"/>
+							<w:rPr>
+								<w:rFonts w:ascii="宋体" w:hAnsi="宋体" w:hint="eastAsia"/>
+								<w:szCs w:val="21"/>
+							</w:rPr>
+						</w:pPr>
+					</w:p>
+					<w:p w:rsidP="00361123" w:rsidR="002075AC" w:rsidRDefault="002075AC">
+						<w:pPr>
+							<w:spacing w:line="400" w:lineRule="exact"/>
+							<w:rPr>
+								<w:rFonts w:ascii="宋体" w:hAnsi="宋体" w:hint="eastAsia"/>
+								<w:szCs w:val="21"/>
+							</w:rPr>
+						</w:pPr>
+					</w:p>
+					<w:p w:rsidP="00361123" w:rsidR="002075AC" w:rsidRDefault="002075AC">
+						<w:pPr>
+							<w:spacing w:line="400" w:lineRule="exact"/>
+							<w:rPr>
+								<w:rFonts w:ascii="宋体" w:hAnsi="宋体" w:hint="eastAsia"/>
+								<w:szCs w:val="21"/>
+							</w:rPr>
+						</w:pPr>
+					</w:p>
+					<w:p w:rsidP="00361123" w:rsidR="002075AC" w:rsidRDefault="002075AC">
+						<w:pPr>
+							<w:spacing w:line="400" w:lineRule="exact"/>
+							<w:rPr>
+								<w:rFonts w:ascii="宋体" w:hAnsi="宋体" w:hint="eastAsia"/>
+								<w:szCs w:val="21"/>
+							</w:rPr>
+						</w:pPr>
+					</w:p>
+					<w:p w:rsidP="00361123" w:rsidR="002075AC" w:rsidRDefault="002075AC" w:rsidRPr="003D4B52">
+						<w:pPr>
+							<w:spacing w:line="400" w:lineRule="exact"/>
+							<w:rPr>
+								<w:rFonts w:ascii="宋体" w:hAnsi="宋体" w:hint="eastAsia"/>
+								<w:szCs w:val="21"/>
+							</w:rPr>
+						</w:pPr>
+					</w:p>
+					<w:sectPr w:rsidR="002075AC" w:rsidRPr="003D4B52" w:rsidSect="00D948E2">
+						<w:footerReference r:id="rId8" w:type="even"/>
+						<w:footerReference r:id="rId9" w:type="default"/>
+						<w:pgSz w:code="8" w:h="16840" w:orient="landscape" w:w="23814"/>
+						<w:pgMar w:bottom="851" w:footer="992" w:gutter="0" w:header="851" w:left="1418" w:right="1418" w:top="568"/>
+						<w:cols w:num="2" w:space="1134"/>
+						<w:docGrid w:linePitch="312" w:type="lines"/>
+					</w:sectPr>
+				</w:body>
+			</w:document>
+		</pkg:xmlData>
+	</pkg:part>
+	<pkg:part pkg:contentType="application/vnd.openxmlformats-officedocument.wordprocessingml.footer+xml" pkg:name="/word/footer1.xml">
+		<pkg:xmlData>
+			<w:ftr mc:Ignorable="w14 wp14" xmlns:m="http://schemas.openxmlformats.org/officeDocument/2006/math" xmlns:mc="http://schemas.openxmlformats.org/markup-compatibility/2006" xmlns:o="urn:schemas-microsoft-com:office:office" xmlns:r="http://schemas.openxmlformats.org/officeDocument/2006/relationships" xmlns:v="urn:schemas-microsoft-com:vml" xmlns:w="http://schemas.openxmlformats.org/wordprocessingml/2006/main" xmlns:w10="urn:schemas-microsoft-com:office:word" xmlns:w14="http://schemas.microsoft.com/office/word/2010/wordml" xmlns:wne="http://schemas.microsoft.com/office/word/2006/wordml" xmlns:wp="http://schemas.openxmlformats.org/drawingml/2006/wordprocessingDrawing" xmlns:wp14="http://schemas.microsoft.com/office/word/2010/wordprocessingDrawing" xmlns:wpc="http://schemas.microsoft.com/office/word/2010/wordprocessingCanvas" xmlns:wpg="http://schemas.microsoft.com/office/word/2010/wordprocessingGroup" xmlns:wpi="http://schemas.microsoft.com/office/word/2010/wordprocessingInk" xmlns:wps="http://schemas.microsoft.com/office/word/2010/wordprocessingShape">
+				<w:p w:rsidP="00494A57" w:rsidR="002A4355" w:rsidRDefault="005C7401">
+					<w:pPr>
+						<w:pStyle w:val="a3"/>
+						<w:ind w:right="360"/>
+					</w:pPr>
+					<w:r>
+						<w:rPr>
+							<w:rFonts w:hint="eastAsia"/>
+						</w:rPr>
+						<w:tab/>
+					</w:r>
+					<w:r>
+						<w:rPr>
+							<w:rFonts w:hint="eastAsia"/>
+						</w:rPr>
+						<w:t>第</w:t>
+					</w:r>
+					<w:r>
+						<w:rPr>
+							<w:rFonts w:hint="eastAsia"/>
+						</w:rPr>
+						<w:t>3</w:t>
+					</w:r>
+					<w:r>
+						<w:rPr>
+							<w:rFonts w:hint="eastAsia"/>
+						</w:rPr>
+						<w:t>页</w:t>
+					</w:r>
+					<w:r>
+						<w:rPr>
+							<w:rFonts w:hint="eastAsia"/>
+						</w:rPr>
+						<w:t xml:space="preserve"/>
+					</w:r>
+					<w:r>
+						<w:rPr>
+							<w:rFonts w:hint="eastAsia"/>
+						</w:rPr>
+						<w:t>共</w:t>
+					</w:r>
+					<w:r>
+						<w:rPr>
+							<w:rFonts w:hint="eastAsia"/>
+						</w:rPr>
+						<w:t>4</w:t>
+					</w:r>
+					<w:r>
+						<w:rPr>
+							<w:rFonts w:hint="eastAsia"/>
+						</w:rPr>
+						<w:t>页</w:t>
+					</w:r>
+					<w:r>
+						<w:rPr>
+							<w:rFonts w:hint="eastAsia"/>
+						</w:rPr>
+						<w:tab/>
+					</w:r>
+					<w:r>
+						<w:rPr>
+							<w:rFonts w:hint="eastAsia"/>
+						</w:rPr>
+						<w:tab/>
+					</w:r>
+					<w:r>
+						<w:rPr>
+							<w:rFonts w:hint="eastAsia"/>
+						</w:rPr>
+						<w:tab/>
+					</w:r>
+					<w:r>
+						<w:rPr>
+							<w:rFonts w:hint="eastAsia"/>
+						</w:rPr>
+						<w:tab/>
+					</w:r>
+					<w:r>
+						<w:rPr>
+							<w:rFonts w:hint="eastAsia"/>
+						</w:rPr>
+						<w:tab/>
+					</w:r>
+					<w:r>
+						<w:rPr>
+							<w:rFonts w:hint="eastAsia"/>
+						</w:rPr>
+						<w:tab/>
+					</w:r>
+					<w:r>
+						<w:rPr>
+							<w:rFonts w:hint="eastAsia"/>
+						</w:rPr>
+						<w:tab/>
+					</w:r>
+					<w:r>
+						<w:rPr>
+							<w:rFonts w:hint="eastAsia"/>
+						</w:rPr>
+						<w:tab/>
+					</w:r>
+					<w:r>
+						<w:rPr>
+							<w:rFonts w:hint="eastAsia"/>
+						</w:rPr>
+						<w:tab/>
+					</w:r>
+					<w:r>
+						<w:rPr>
+							<w:rFonts w:hint="eastAsia"/>
+						</w:rPr>
+						<w:tab/>
+					</w:r>
+					<w:r>
+						<w:rPr>
+							<w:rFonts w:hint="eastAsia"/>
+						</w:rPr>
+						<w:tab/>
+					</w:r>
+					<w:r>
+						<w:rPr>
+							<w:rFonts w:hint="eastAsia"/>
+						</w:rPr>
+						<w:tab/>
+					</w:r>
+					<w:r>
+						<w:rPr>
+							<w:rFonts w:hint="eastAsia"/>
+						</w:rPr>
+						<w:tab/>
+					</w:r>
+					<w:r>
+						<w:rPr>
+							<w:rFonts w:hint="eastAsia"/>
+						</w:rPr>
+						<w:tab/>
+					</w:r>
+					<w:r>
+						<w:rPr>
+							<w:rFonts w:hint="eastAsia"/>
+						</w:rPr>
+						<w:tab/>
+					</w:r>
+					<w:r>
+						<w:rPr>
+							<w:rFonts w:hint="eastAsia"/>
+						</w:rPr>
+						<w:tab/>
+					</w:r>
+					<w:r>
+						<w:rPr>
+							<w:rFonts w:hint="eastAsia"/>
+						</w:rPr>
+						<w:tab/>
+					</w:r>
+					<w:r>
+						<w:rPr>
+							<w:rFonts w:hint="eastAsia"/>
+						</w:rPr>
+						<w:tab/>
+					</w:r>
+					<w:r>
+						<w:rPr>
+							<w:rFonts w:hint="eastAsia"/>
+						</w:rPr>
+						<w:tab/>
+					</w:r>
+					<w:r>
+						<w:rPr>
+							<w:rFonts w:hint="eastAsia"/>
+						</w:rPr>
+						<w:t>第</w:t>
+					</w:r>
+					<w:r>
+						<w:rPr>
+							<w:rFonts w:hint="eastAsia"/>
+						</w:rPr>
+						<w:t>4</w:t>
+					</w:r>
+					<w:r>
+						<w:rPr>
+							<w:rFonts w:hint="eastAsia"/>
+						</w:rPr>
+						<w:t>页</w:t>
+					</w:r>
+					<w:r>
+						<w:rPr>
+							<w:rFonts w:hint="eastAsia"/>
+						</w:rPr>
+						<w:t xml:space="preserve"/>
+					</w:r>
+					<w:r>
+						<w:rPr>
+							<w:rFonts w:hint="eastAsia"/>
+						</w:rPr>
+						<w:t>共</w:t>
+					</w:r>
+					<w:r>
+						<w:rPr>
+							<w:rFonts w:hint="eastAsia"/>
+						</w:rPr>
+						<w:t>4</w:t>
+					</w:r>
+					<w:r>
+						<w:rPr>
+							<w:rFonts w:hint="eastAsia"/>
+						</w:rPr>
+						<w:t>页</w:t>
+					</w:r>
+				</w:p>
+			</w:ftr>
+		</pkg:xmlData>
+	</pkg:part>
+	<pkg:part pkg:contentType="application/vnd.openxmlformats-officedocument.wordprocessingml.endnotes+xml" pkg:name="/word/endnotes.xml">
+		<pkg:xmlData>
+			<w:endnotes mc:Ignorable="w14 wp14" xmlns:m="http://schemas.openxmlformats.org/officeDocument/2006/math" xmlns:mc="http://schemas.openxmlformats.org/markup-compatibility/2006" xmlns:o="urn:schemas-microsoft-com:office:office" xmlns:r="http://schemas.openxmlformats.org/officeDocument/2006/relationships" xmlns:v="urn:schemas-microsoft-com:vml" xmlns:w="http://schemas.openxmlformats.org/wordprocessingml/2006/main" xmlns:w10="urn:schemas-microsoft-com:office:word" xmlns:w14="http://schemas.microsoft.com/office/word/2010/wordml" xmlns:wne="http://schemas.microsoft.com/office/word/2006/wordml" xmlns:wp="http://schemas.openxmlformats.org/drawingml/2006/wordprocessingDrawing" xmlns:wp14="http://schemas.microsoft.com/office/word/2010/wordprocessingDrawing" xmlns:wpc="http://schemas.microsoft.com/office/word/2010/wordprocessingCanvas" xmlns:wpg="http://schemas.microsoft.com/office/word/2010/wordprocessingGroup" xmlns:wpi="http://schemas.microsoft.com/office/word/2010/wordprocessingInk" xmlns:wps="http://schemas.microsoft.com/office/word/2010/wordprocessingShape">
+				<w:endnote w:id="-1" w:type="separator">
+					<w:p w:rsidR="0051225E" w:rsidRDefault="0051225E">
+						<w:r>
+							<w:separator/>
+						</w:r>
+					</w:p>
+				</w:endnote>
+				<w:endnote w:id="0" w:type="continuationSeparator">
+					<w:p w:rsidR="0051225E" w:rsidRDefault="0051225E">
+						<w:r>
+							<w:continuationSeparator/>
+						</w:r>
+					</w:p>
+				</w:endnote>
+			</w:endnotes>
+		</pkg:xmlData>
+	</pkg:part>
+	<pkg:part pkg:contentType="application/vnd.openxmlformats-officedocument.wordprocessingml.footer+xml" pkg:name="/word/footer2.xml">
+		<pkg:xmlData>
+			<w:ftr mc:Ignorable="w14 wp14" xmlns:m="http://schemas.openxmlformats.org/officeDocument/2006/math" xmlns:mc="http://schemas.openxmlformats.org/markup-compatibility/2006" xmlns:o="urn:schemas-microsoft-com:office:office" xmlns:r="http://schemas.openxmlformats.org/officeDocument/2006/relationships" xmlns:v="urn:schemas-microsoft-com:vml" xmlns:w="http://schemas.openxmlformats.org/wordprocessingml/2006/main" xmlns:w10="urn:schemas-microsoft-com:office:word" xmlns:w14="http://schemas.microsoft.com/office/word/2010/wordml" xmlns:wne="http://schemas.microsoft.com/office/word/2006/wordml" xmlns:wp="http://schemas.openxmlformats.org/drawingml/2006/wordprocessingDrawing" xmlns:wp14="http://schemas.microsoft.com/office/word/2010/wordprocessingDrawing" xmlns:wpc="http://schemas.microsoft.com/office/word/2010/wordprocessingCanvas" xmlns:wpg="http://schemas.microsoft.com/office/word/2010/wordprocessingGroup" xmlns:wpi="http://schemas.microsoft.com/office/word/2010/wordprocessingInk" xmlns:wps="http://schemas.microsoft.com/office/word/2010/wordprocessingShape">
+				<w:p w:rsidP="00D87C35" w:rsidR="002A4355" w:rsidRDefault="00130ED7">
+					<w:pPr>
+						<w:pStyle w:val="a3"/>
+						<w:rPr>
+							<w:rFonts w:hint="eastAsia"/>
+						</w:rPr>
+					</w:pPr>
+					<w:r>
+						<w:rPr>
+							<w:rFonts w:hint="eastAsia"/>
+						</w:rPr>
+						<w:tab/>
+					</w:r>
+					<w:r>
+						<w:rPr>
+							<w:rFonts w:hint="eastAsia"/>
+						</w:rPr>
+						<w:t>第</w:t>
+					</w:r>
+					<w:r>
+						<w:rPr>
+							<w:rFonts w:hint="eastAsia"/>
+						</w:rPr>
+						<w:t>1</w:t>
+					</w:r>
+					<w:r>
+						<w:rPr>
+							<w:rFonts w:hint="eastAsia"/>
+						</w:rPr>
+						<w:t>页</w:t>
+					</w:r>
+					<w:r>
+						<w:rPr>
+							<w:rFonts w:hint="eastAsia"/>
+						</w:rPr>
+						<w:t xml:space="preserve"/>
+					</w:r>
+					<w:r>
+						<w:rPr>
+							<w:rFonts w:hint="eastAsia"/>
+						</w:rPr>
+						<w:t>共</w:t>
+					</w:r>
+					<w:r>
+						<w:rPr>
+							<w:rFonts w:hint="eastAsia"/>
+						</w:rPr>
+						<w:t>4</w:t>
+					</w:r>
+					<w:r>
+						<w:rPr>
+							<w:rFonts w:hint="eastAsia"/>
+						</w:rPr>
+						<w:t>页</w:t>
+					</w:r>
+					<w:r>
+						<w:rPr>
+							<w:rFonts w:hint="eastAsia"/>
+						</w:rPr>
+						<w:tab/>
+					</w:r>
+					<w:r>
+						<w:rPr>
+							<w:rFonts w:hint="eastAsia"/>
+						</w:rPr>
+						<w:tab/>
+					</w:r>
+					<w:r>
+						<w:rPr>
+							<w:rFonts w:hint="eastAsia"/>
+						</w:rPr>
+						<w:tab/>
+					</w:r>
+					<w:r>
+						<w:rPr>
+							<w:rFonts w:hint="eastAsia"/>
+						</w:rPr>
+						<w:tab/>
+					</w:r>
+					<w:r>
+						<w:rPr>
+							<w:rFonts w:hint="eastAsia"/>
+						</w:rPr>
+						<w:tab/>
+					</w:r>
+					<w:r>
+						<w:rPr>
+							<w:rFonts w:hint="eastAsia"/>
+						</w:rPr>
+						<w:tab/>
+					</w:r>
+					<w:r>
+						<w:rPr>
+							<w:rFonts w:hint="eastAsia"/>
+						</w:rPr>
+						<w:tab/>
+					</w:r>
+					<w:r>
+						<w:rPr>
+							<w:rFonts w:hint="eastAsia"/>
+						</w:rPr>
+						<w:tab/>
+					</w:r>
+					<w:r>
+						<w:rPr>
+							<w:rFonts w:hint="eastAsia"/>
+						</w:rPr>
+						<w:tab/>
+					</w:r>
+					<w:r>
+						<w:rPr>
+							<w:rFonts w:hint="eastAsia"/>
+						</w:rPr>
+						<w:tab/>
+					</w:r>
+					<w:r>
+						<w:rPr>
+							<w:rFonts w:hint="eastAsia"/>
+						</w:rPr>
+						<w:tab/>
+					</w:r>
+					<w:r>
+						<w:rPr>
+							<w:rFonts w:hint="eastAsia"/>
+						</w:rPr>
+						<w:tab/>
+					</w:r>
+					<w:r>
+						<w:rPr>
+							<w:rFonts w:hint="eastAsia"/>
+						</w:rPr>
+						<w:tab/>
+					</w:r>
+					<w:r>
+						<w:rPr>
+							<w:rFonts w:hint="eastAsia"/>
+						</w:rPr>
+						<w:tab/>
+					</w:r>
+					<w:r>
+						<w:rPr>
+							<w:rFonts w:hint="eastAsia"/>
+						</w:rPr>
+						<w:tab/>
+					</w:r>
+					<w:r>
+						<w:rPr>
+							<w:rFonts w:hint="eastAsia"/>
+						</w:rPr>
+						<w:tab/>
+					</w:r>
+					<w:r>
+						<w:rPr>
+							<w:rFonts w:hint="eastAsia"/>
+						</w:rPr>
+						<w:tab/>
+					</w:r>
+					<w:r>
+						<w:rPr>
+							<w:rFonts w:hint="eastAsia"/>
+						</w:rPr>
+						<w:tab/>
+					</w:r>
+					<w:r>
+						<w:rPr>
+							<w:rFonts w:hint="eastAsia"/>
+						</w:rPr>
+						<w:tab/>
+					</w:r>
+					<w:r>
+						<w:rPr>
+							<w:rFonts w:hint="eastAsia"/>
+						</w:rPr>
+						<w:t>第</w:t>
+					</w:r>
+					<w:r>
+						<w:rPr>
+							<w:rFonts w:hint="eastAsia"/>
+						</w:rPr>
+						<w:t>2</w:t>
+					</w:r>
+					<w:r>
+						<w:rPr>
+							<w:rFonts w:hint="eastAsia"/>
+						</w:rPr>
+						<w:t>页</w:t>
+					</w:r>
+					<w:r>
+						<w:rPr>
+							<w:rFonts w:hint="eastAsia"/>
+						</w:rPr>
+						<w:t xml:space="preserve"/>
+					</w:r>
+					<w:r>
+						<w:rPr>
+							<w:rFonts w:hint="eastAsia"/>
+						</w:rPr>
+						<w:t>共</w:t>
+					</w:r>
+					<w:r>
+						<w:rPr>
+							<w:rFonts w:hint="eastAsia"/>
+						</w:rPr>
+						<w:t>4</w:t>
+					</w:r>
+					<w:r>
+						<w:rPr>
+							<w:rFonts w:hint="eastAsia"/>
+						</w:rPr>
+						<w:t>页</w:t>
+					</w:r>
+				</w:p>
+			</w:ftr>
+		</pkg:xmlData>
+	</pkg:part>
+	<pkg:part pkg:contentType="application/vnd.openxmlformats-officedocument.wordprocessingml.footnotes+xml" pkg:name="/word/footnotes.xml">
+		<pkg:xmlData>
+			<w:footnotes mc:Ignorable="w14 wp14" xmlns:m="http://schemas.openxmlformats.org/officeDocument/2006/math" xmlns:mc="http://schemas.openxmlformats.org/markup-compatibility/2006" xmlns:o="urn:schemas-microsoft-com:office:office" xmlns:r="http://schemas.openxmlformats.org/officeDocument/2006/relationships" xmlns:v="urn:schemas-microsoft-com:vml" xmlns:w="http://schemas.openxmlformats.org/wordprocessingml/2006/main" xmlns:w10="urn:schemas-microsoft-com:office:word" xmlns:w14="http://schemas.microsoft.com/office/word/2010/wordml" xmlns:wne="http://schemas.microsoft.com/office/word/2006/wordml" xmlns:wp="http://schemas.openxmlformats.org/drawingml/2006/wordprocessingDrawing" xmlns:wp14="http://schemas.microsoft.com/office/word/2010/wordprocessingDrawing" xmlns:wpc="http://schemas.microsoft.com/office/word/2010/wordprocessingCanvas" xmlns:wpg="http://schemas.microsoft.com/office/word/2010/wordprocessingGroup" xmlns:wpi="http://schemas.microsoft.com/office/word/2010/wordprocessingInk" xmlns:wps="http://schemas.microsoft.com/office/word/2010/wordprocessingShape">
+				<w:footnote w:id="-1" w:type="separator">
+					<w:p w:rsidR="0051225E" w:rsidRDefault="0051225E">
+						<w:r>
+							<w:separator/>
+						</w:r>
+					</w:p>
+				</w:footnote>
+				<w:footnote w:id="0" w:type="continuationSeparator">
+					<w:p w:rsidR="0051225E" w:rsidRDefault="0051225E">
+						<w:r>
+							<w:continuationSeparator/>
+						</w:r>
+					</w:p>
+				</w:footnote>
+			</w:footnotes>
+		</pkg:xmlData>
+	</pkg:part>
+	<pkg:part pkg:contentType="application/vnd.openxmlformats-officedocument.theme+xml" pkg:name="/word/theme/theme1.xml">
+		<pkg:xmlData>
+			<a:theme name="Office 主题​​" xmlns:a="http://schemas.openxmlformats.org/drawingml/2006/main">
+				<a:themeElements>
+					<a:clrScheme name="Office">
+						<a:dk1>
+							<a:sysClr lastClr="000000" val="windowText"/>
+						</a:dk1>
+						<a:lt1>
+							<a:sysClr lastClr="FFFFFF" val="window"/>
+						</a:lt1>
+						<a:dk2>
+							<a:srgbClr val="1F497D"/>
+						</a:dk2>
+						<a:lt2>
+							<a:srgbClr val="EEECE1"/>
+						</a:lt2>
+						<a:accent1>
+							<a:srgbClr val="4F81BD"/>
+						</a:accent1>
+						<a:accent2>
+							<a:srgbClr val="C0504D"/>
+						</a:accent2>
+						<a:accent3>
+							<a:srgbClr val="9BBB59"/>
+						</a:accent3>
+						<a:accent4>
+							<a:srgbClr val="8064A2"/>
+						</a:accent4>
+						<a:accent5>
+							<a:srgbClr val="4BACC6"/>
+						</a:accent5>
+						<a:accent6>
+							<a:srgbClr val="F79646"/>
+						</a:accent6>
+						<a:hlink>
+							<a:srgbClr val="0000FF"/>
+						</a:hlink>
+						<a:folHlink>
+							<a:srgbClr val="800080"/>
+						</a:folHlink>
+					</a:clrScheme>
+					<a:fontScheme name="Office">
+						<a:majorFont>
+							<a:latin typeface="Cambria"/>
+							<a:ea typeface=""/>
+							<a:cs typeface=""/>
+							<a:font script="Jpan" typeface="MS ゴシック"/>
+							<a:font script="Hang" typeface="맑은 고딕"/>
+							<a:font script="Hans" typeface="宋体"/>
+							<a:font script="Hant" typeface="新細明體"/>
+							<a:font script="Arab" typeface="Times New Roman"/>
+							<a:font script="Hebr" typeface="Times New Roman"/>
+							<a:font script="Thai" typeface="Angsana New"/>
+							<a:font script="Ethi" typeface="Nyala"/>
+							<a:font script="Beng" typeface="Vrinda"/>
+							<a:font script="Gujr" typeface="Shruti"/>
+							<a:font script="Khmr" typeface="MoolBoran"/>
+							<a:font script="Knda" typeface="Tunga"/>
+							<a:font script="Guru" typeface="Raavi"/>
+							<a:font script="Cans" typeface="Euphemia"/>
+							<a:font script="Cher" typeface="Plantagenet Cherokee"/>
+							<a:font script="Yiii" typeface="Microsoft Yi Baiti"/>
+							<a:font script="Tibt" typeface="Microsoft Himalaya"/>
+							<a:font script="Thaa" typeface="MV Boli"/>
+							<a:font script="Deva" typeface="Mangal"/>
+							<a:font script="Telu" typeface="Gautami"/>
+							<a:font script="Taml" typeface="Latha"/>
+							<a:font script="Syrc" typeface="Estrangelo Edessa"/>
+							<a:font script="Orya" typeface="Kalinga"/>
+							<a:font script="Mlym" typeface="Kartika"/>
+							<a:font script="Laoo" typeface="DokChampa"/>
+							<a:font script="Sinh" typeface="Iskoola Pota"/>
+							<a:font script="Mong" typeface="Mongolian Baiti"/>
+							<a:font script="Viet" typeface="Times New Roman"/>
+							<a:font script="Uigh" typeface="Microsoft Uighur"/>
+							<a:font script="Geor" typeface="Sylfaen"/>
+						</a:majorFont>
+						<a:minorFont>
+							<a:latin typeface="Calibri"/>
+							<a:ea typeface=""/>
+							<a:cs typeface=""/>
+							<a:font script="Jpan" typeface="MS 明朝"/>
+							<a:font script="Hang" typeface="맑은 고딕"/>
+							<a:font script="Hans" typeface="宋体"/>
+							<a:font script="Hant" typeface="新細明體"/>
+							<a:font script="Arab" typeface="Arial"/>
+							<a:font script="Hebr" typeface="Arial"/>
+							<a:font script="Thai" typeface="Cordia New"/>
+							<a:font script="Ethi" typeface="Nyala"/>
+							<a:font script="Beng" typeface="Vrinda"/>
+							<a:font script="Gujr" typeface="Shruti"/>
+							<a:font script="Khmr" typeface="DaunPenh"/>
+							<a:font script="Knda" typeface="Tunga"/>
+							<a:font script="Guru" typeface="Raavi"/>
+							<a:font script="Cans" typeface="Euphemia"/>
+							<a:font script="Cher" typeface="Plantagenet Cherokee"/>
+							<a:font script="Yiii" typeface="Microsoft Yi Baiti"/>
+							<a:font script="Tibt" typeface="Microsoft Himalaya"/>
+							<a:font script="Thaa" typeface="MV Boli"/>
+							<a:font script="Deva" typeface="Mangal"/>
+							<a:font script="Telu" typeface="Gautami"/>
+							<a:font script="Taml" typeface="Latha"/>
+							<a:font script="Syrc" typeface="Estrangelo Edessa"/>
+							<a:font script="Orya" typeface="Kalinga"/>
+							<a:font script="Mlym" typeface="Kartika"/>
+							<a:font script="Laoo" typeface="DokChampa"/>
+							<a:font script="Sinh" typeface="Iskoola Pota"/>
+							<a:font script="Mong" typeface="Mongolian Baiti"/>
+							<a:font script="Viet" typeface="Arial"/>
+							<a:font script="Uigh" typeface="Microsoft Uighur"/>
+							<a:font script="Geor" typeface="Sylfaen"/>
+						</a:minorFont>
+					</a:fontScheme>
+					<a:fmtScheme name="Office">
+						<a:fillStyleLst>
+							<a:solidFill>
+								<a:schemeClr val="phClr"/>
+							</a:solidFill>
+							<a:gradFill rotWithShape="1">
+								<a:gsLst>
+									<a:gs pos="0">
+										<a:schemeClr val="phClr">
+											<a:tint val="50000"/>
+											<a:satMod val="300000"/>
+										</a:schemeClr>
+									</a:gs>
+									<a:gs pos="35000">
+										<a:schemeClr val="phClr">
+											<a:tint val="37000"/>
+											<a:satMod val="300000"/>
+										</a:schemeClr>
+									</a:gs>
+									<a:gs pos="100000">
+										<a:schemeClr val="phClr">
+											<a:tint val="15000"/>
+											<a:satMod val="350000"/>
+										</a:schemeClr>
+									</a:gs>
+								</a:gsLst>
+								<a:lin ang="16200000" scaled="1"/>
+							</a:gradFill>
+							<a:gradFill rotWithShape="1">
+								<a:gsLst>
+									<a:gs pos="0">
+										<a:schemeClr val="phClr">
+											<a:shade val="51000"/>
+											<a:satMod val="130000"/>
+										</a:schemeClr>
+									</a:gs>
+									<a:gs pos="80000">
+										<a:schemeClr val="phClr">
+											<a:shade val="93000"/>
+											<a:satMod val="130000"/>
+										</a:schemeClr>
+									</a:gs>
+									<a:gs pos="100000">
+										<a:schemeClr val="phClr">
+											<a:shade val="94000"/>
+											<a:satMod val="135000"/>
+										</a:schemeClr>
+									</a:gs>
+								</a:gsLst>
+								<a:lin ang="16200000" scaled="0"/>
+							</a:gradFill>
+						</a:fillStyleLst>
+						<a:lnStyleLst>
+							<a:ln algn="ctr" cap="flat" cmpd="sng" w="9525">
+								<a:solidFill>
+									<a:schemeClr val="phClr">
+										<a:shade val="95000"/>
+										<a:satMod val="105000"/>
+									</a:schemeClr>
+								</a:solidFill>
+								<a:prstDash val="solid"/>
+							</a:ln>
+							<a:ln algn="ctr" cap="flat" cmpd="sng" w="25400">
+								<a:solidFill>
+									<a:schemeClr val="phClr"/>
+								</a:solidFill>
+								<a:prstDash val="solid"/>
+							</a:ln>
+							<a:ln algn="ctr" cap="flat" cmpd="sng" w="38100">
+								<a:solidFill>
+									<a:schemeClr val="phClr"/>
+								</a:solidFill>
+								<a:prstDash val="solid"/>
+							</a:ln>
+						</a:lnStyleLst>
+						<a:effectStyleLst>
+							<a:effectStyle>
+								<a:effectLst>
+									<a:outerShdw blurRad="40000" dir="5400000" dist="20000" rotWithShape="0">
+										<a:srgbClr val="000000">
+											<a:alpha val="38000"/>
+										</a:srgbClr>
+									</a:outerShdw>
+								</a:effectLst>
+							</a:effectStyle>
+							<a:effectStyle>
+								<a:effectLst>
+									<a:outerShdw blurRad="40000" dir="5400000" dist="23000" rotWithShape="0">
+										<a:srgbClr val="000000">
+											<a:alpha val="35000"/>
+										</a:srgbClr>
+									</a:outerShdw>
+								</a:effectLst>
+							</a:effectStyle>
+							<a:effectStyle>
+								<a:effectLst>
+									<a:outerShdw blurRad="40000" dir="5400000" dist="23000" rotWithShape="0">
+										<a:srgbClr val="000000">
+											<a:alpha val="35000"/>
+										</a:srgbClr>
+									</a:outerShdw>
+								</a:effectLst>
+								<a:scene3d>
+									<a:camera prst="orthographicFront">
+										<a:rot lat="0" lon="0" rev="0"/>
+									</a:camera>
+									<a:lightRig dir="t" rig="threePt">
+										<a:rot lat="0" lon="0" rev="1200000"/>
+									</a:lightRig>
+								</a:scene3d>
+								<a:sp3d>
+									<a:bevelT h="25400" w="63500"/>
+								</a:sp3d>
+							</a:effectStyle>
+						</a:effectStyleLst>
+						<a:bgFillStyleLst>
+							<a:solidFill>
+								<a:schemeClr val="phClr"/>
+							</a:solidFill>
+							<a:gradFill rotWithShape="1">
+								<a:gsLst>
+									<a:gs pos="0">
+										<a:schemeClr val="phClr">
+											<a:tint val="40000"/>
+											<a:satMod val="350000"/>
+										</a:schemeClr>
+									</a:gs>
+									<a:gs pos="40000">
+										<a:schemeClr val="phClr">
+											<a:tint val="45000"/>
+											<a:shade val="99000"/>
+											<a:satMod val="350000"/>
+										</a:schemeClr>
+									</a:gs>
+									<a:gs pos="100000">
+										<a:schemeClr val="phClr">
+											<a:shade val="20000"/>
+											<a:satMod val="255000"/>
+										</a:schemeClr>
+									</a:gs>
+								</a:gsLst>
+								<a:path path="circle">
+									<a:fillToRect b="180000" l="50000" r="50000" t="-80000"/>
+								</a:path>
+							</a:gradFill>
+							<a:gradFill rotWithShape="1">
+								<a:gsLst>
+									<a:gs pos="0">
+										<a:schemeClr val="phClr">
+											<a:tint val="80000"/>
+											<a:satMod val="300000"/>
+										</a:schemeClr>
+									</a:gs>
+									<a:gs pos="100000">
+										<a:schemeClr val="phClr">
+											<a:shade val="30000"/>
+											<a:satMod val="200000"/>
+										</a:schemeClr>
+									</a:gs>
+								</a:gsLst>
+								<a:path path="circle">
+									<a:fillToRect b="50000" l="50000" r="50000" t="50000"/>
+								</a:path>
+							</a:gradFill>
+						</a:bgFillStyleLst>
+					</a:fmtScheme>
+				</a:themeElements>
+				<a:objectDefaults/>
+				<a:extraClrSchemeLst/>
+			</a:theme>
+		</pkg:xmlData>
+	</pkg:part>
+	<pkg:part pkg:contentType="application/vnd.openxmlformats-officedocument.wordprocessingml.settings+xml" pkg:name="/word/settings.xml">
+		<pkg:xmlData>
+			<w:settings mc:Ignorable="w14" xmlns:m="http://schemas.openxmlformats.org/officeDocument/2006/math" xmlns:mc="http://schemas.openxmlformats.org/markup-compatibility/2006" xmlns:o="urn:schemas-microsoft-com:office:office" xmlns:r="http://schemas.openxmlformats.org/officeDocument/2006/relationships" xmlns:sl="http://schemas.openxmlformats.org/schemaLibrary/2006/main" xmlns:v="urn:schemas-microsoft-com:vml" xmlns:w="http://schemas.openxmlformats.org/wordprocessingml/2006/main" xmlns:w10="urn:schemas-microsoft-com:office:word" xmlns:w14="http://schemas.microsoft.com/office/word/2010/wordml">
+				<w:zoom w:percent="100"/>
+				<w:bordersDoNotSurroundHeader/>
+				<w:bordersDoNotSurroundFooter/>
+				<w:stylePaneFormatFilter w:allStyles="1" w:alternateStyleNames="0" w:clearFormatting="1" w:customStyles="0" w:directFormattingOnNumbering="1" w:directFormattingOnParagraphs="1" w:directFormattingOnRuns="1" w:directFormattingOnTables="1" w:headingStyles="0" w:latentStyles="0" w:numberingStyles="0" w:stylesInUse="0" w:tableStyles="0" w:top3HeadingStyles="1" w:val="3F01" w:visibleStyles="0"/>
+				<w:doNotTrackMoves/>
+				<w:defaultTabStop w:val="420"/>
+				<w:evenAndOddHeaders/>
+				<w:drawingGridHorizontalSpacing w:val="105"/>
+				<w:drawingGridVerticalSpacing w:val="156"/>
+				<w:displayHorizontalDrawingGridEvery w:val="0"/>
+				<w:displayVerticalDrawingGridEvery w:val="2"/>
+				<w:characterSpacingControl w:val="compressPunctuation"/>
+				<w:hdrShapeDefaults>
+					<o:shapedefaults spidmax="2049" v:ext="edit"/>
+				</w:hdrShapeDefaults>
+				<w:footnotePr>
+					<w:footnote w:id="-1"/>
+					<w:footnote w:id="0"/>
+				</w:footnotePr>
+				<w:endnotePr>
+					<w:endnote w:id="-1"/>
+					<w:endnote w:id="0"/>
+				</w:endnotePr>
+				<w:compat>
+					<w:spaceForUL/>
+					<w:balanceSingleByteDoubleByteWidth/>
+					<w:doNotLeaveBackslashAlone/>
+					<w:ulTrailSpace/>
+					<w:doNotExpandShiftReturn/>
+					<w:adjustLineHeightInTable/>
+					<w:useFELayout/>
+					<w:useNormalStyleForList/>
+					<w:doNotUseIndentAsNumberingTabStop/>
+					<w:useAltKinsokuLineBreakRules/>
+					<w:allowSpaceOfSameStyleInTable/>
+					<w:doNotSuppressIndentation/>
+					<w:doNotAutofitConstrainedTables/>
+					<w:autofitToFirstFixedWidthCell/>
+					<w:displayHangulFixedWidth/>
+					<w:splitPgBreakAndParaMark/>
+					<w:doNotVertAlignCellWithSp/>
+					<w:doNotBreakConstrainedForcedTable/>
+					<w:doNotVertAlignInTxbx/>
+					<w:useAnsiKerningPairs/>
+					<w:cachedColBalance/>
+					<w:compatSetting w:name="compatibilityMode" w:uri="http://schemas.microsoft.com/office/word" w:val="11"/>
+				</w:compat>
+				<w:rsids>
+					<w:rsidRoot w:val="00704D29"/>
+					<w:rsid w:val="00013B5B"/>
+					<w:rsid w:val="00017BD2"/>
+					<w:rsid w:val="00024353"/>
+					<w:rsid w:val="00032AB6"/>
+					<w:rsid w:val="000335E0"/>
+					<w:rsid w:val="00037026"/>
+					<w:rsid w:val="00041207"/>
+					<w:rsid w:val="00045F7D"/>
+					<w:rsid w:val="000634FF"/>
+					<w:rsid w:val="000675A8"/>
+					<w:rsid w:val="00072663"/>
+					<w:rsid w:val="0007594E"/>
+					<w:rsid w:val="0008659D"/>
+					<w:rsid w:val="00091494"/>
+					<w:rsid w:val="000A26C9"/>
+					<w:rsid w:val="000A4291"/>
+					<w:rsid w:val="000D249A"/>
+					<w:rsid w:val="000D7EE1"/>
+					<w:rsid w:val="0010199E"/>
+					<w:rsid w:val="0012364B"/>
+					<w:rsid w:val="00130ED7"/>
+					<w:rsid w:val="001400FE"/>
+					<w:rsid w:val="001409D1"/>
+					<w:rsid w:val="0015368E"/>
+					<w:rsid w:val="001577A3"/>
+					<w:rsid w:val="00163265"/>
+					<w:rsid w:val="00171408"/>
+					<w:rsid w:val="001973CF"/>
+					<w:rsid w:val="001A2234"/>
+					<w:rsid w:val="001A590C"/>
+					<w:rsid w:val="001A6F9A"/>
+					<w:rsid w:val="001C6D03"/>
+					<w:rsid w:val="001D2BFB"/>
+					<w:rsid w:val="001F1FD6"/>
+					<w:rsid w:val="001F2AE4"/>
+					<w:rsid w:val="002075AC"/>
+					<w:rsid w:val="00210DBC"/>
+					<w:rsid w:val="00223926"/>
+					<w:rsid w:val="00240F49"/>
+					<w:rsid w:val="00256922"/>
+					<w:rsid w:val="00275877"/>
+					<w:rsid w:val="00280430"/>
+					<w:rsid w:val="0028270C"/>
+					<w:rsid w:val="002A4355"/>
+					<w:rsid w:val="002A490A"/>
+					<w:rsid w:val="002B0EFC"/>
+					<w:rsid w:val="002C492A"/>
+					<w:rsid w:val="002E11A7"/>
+					<w:rsid w:val="002F1D39"/>
+					<w:rsid w:val="00300FB4"/>
+					<w:rsid w:val="003165E8"/>
+					<w:rsid w:val="003271AC"/>
+					<w:rsid w:val="00330D81"/>
+					<w:rsid w:val="003452C5"/>
+					<w:rsid w:val="00361123"/>
+					<w:rsid w:val="00366B8D"/>
+					<w:rsid w:val="00366D83"/>
+					<w:rsid w:val="00387887"/>
+					<w:rsid w:val="003907C3"/>
+					<w:rsid w:val="003D4B52"/>
+					<w:rsid w:val="003F2697"/>
+					<w:rsid w:val="00406040"/>
+					<w:rsid w:val="004072CF"/>
+					<w:rsid w:val="004110E9"/>
+					<w:rsid w:val="00440B4B"/>
+					<w:rsid w:val="00442167"/>
+					<w:rsid w:val="0046265F"/>
+					<w:rsid w:val="004775A3"/>
+					<w:rsid w:val="004908DE"/>
+					<w:rsid w:val="00494A57"/>
+					<w:rsid w:val="004B0E53"/>
+					<w:rsid w:val="004B2EDE"/>
+					<w:rsid w:val="004B4FE3"/>
+					<w:rsid w:val="004B56A1"/>
+					<w:rsid w:val="004D3783"/>
+					<w:rsid w:val="004D582C"/>
+					<w:rsid w:val="004F12B4"/>
+					<w:rsid w:val="00505A8F"/>
+					<w:rsid w:val="0051225E"/>
+					<w:rsid w:val="0051564D"/>
+					<w:rsid w:val="00595E9A"/>
+					<w:rsid w:val="005A1C06"/>
+					<w:rsid w:val="005A4541"/>
+					<w:rsid w:val="005B0CA3"/>
+					<w:rsid w:val="005C2812"/>
+					<w:rsid w:val="005C3104"/>
+					<w:rsid w:val="005C4F99"/>
+					<w:rsid w:val="005C6D37"/>
+					<w:rsid w:val="005C7401"/>
+					<w:rsid w:val="005D4AB5"/>
+					<w:rsid w:val="005E06FB"/>
+					<w:rsid w:val="00604C4E"/>
+					<w:rsid w:val="0063790A"/>
+					<w:rsid w:val="00650B9D"/>
+					<w:rsid w:val="0066580D"/>
+					<w:rsid w:val="0067001D"/>
+					<w:rsid w:val="00672D0B"/>
+					<w:rsid w:val="00673A66"/>
+					<w:rsid w:val="00681FC6"/>
+					<w:rsid w:val="00686BEF"/>
+					<w:rsid w:val="00687CD1"/>
+					<w:rsid w:val="00691209"/>
+					<w:rsid w:val="006976BF"/>
+					<w:rsid w:val="00697C8B"/>
+					<w:rsid w:val="006A4731"/>
+					<w:rsid w:val="006C3AF0"/>
+					<w:rsid w:val="006D7134"/>
+					<w:rsid w:val="006E2D68"/>
+					<w:rsid w:val="006E31F6"/>
+					<w:rsid w:val="006E50E5"/>
+					<w:rsid w:val="00704D29"/>
+					<w:rsid w:val="00755E9E"/>
+					<w:rsid w:val="007620DA"/>
+					<w:rsid w:val="0077243B"/>
+					<w:rsid w:val="00790892"/>
+					<w:rsid w:val="00796618"/>
+					<w:rsid w:val="007A117C"/>
+					<w:rsid w:val="007C462F"/>
+					<w:rsid w:val="007D418E"/>
+					<w:rsid w:val="007F0875"/>
+					<w:rsid w:val="007F49E4"/>
+					<w:rsid w:val="00800F02"/>
+					<w:rsid w:val="00824944"/>
+					<w:rsid w:val="00846AEA"/>
+					<w:rsid w:val="00847F37"/>
+					<w:rsid w:val="00852887"/>
+					<w:rsid w:val="008A675A"/>
+					<w:rsid w:val="008B3D93"/>
+					<w:rsid w:val="008E6EC4"/>
+					<w:rsid w:val="008F220F"/>
+					<w:rsid w:val="0090557A"/>
+					<w:rsid w:val="0090721C"/>
+					<w:rsid w:val="009166C9"/>
+					<w:rsid w:val="00923DA0"/>
+					<w:rsid w:val="009260B5"/>
+					<w:rsid w:val="00930061"/>
+					<w:rsid w:val="00942CDF"/>
+					<w:rsid w:val="00950E61"/>
+					<w:rsid w:val="00955048"/>
+					<w:rsid w:val="009554A8"/>
+					<w:rsid w:val="00955E36"/>
+					<w:rsid w:val="00961BB1"/>
+					<w:rsid w:val="00980DC7"/>
+					<w:rsid w:val="009914D1"/>
+					<w:rsid w:val="009F69C1"/>
+					<w:rsid w:val="00A16045"/>
+					<w:rsid w:val="00A31223"/>
+					<w:rsid w:val="00A41C3A"/>
+					<w:rsid w:val="00A600F0"/>
+					<w:rsid w:val="00A64D36"/>
+					<w:rsid w:val="00A669E4"/>
+					<w:rsid w:val="00A91E20"/>
+					<w:rsid w:val="00AA16BB"/>
+					<w:rsid w:val="00AC3DDB"/>
+					<w:rsid w:val="00AD1A65"/>
+					<w:rsid w:val="00AE0411"/>
+					<w:rsid w:val="00AF6276"/>
+					<w:rsid w:val="00AF70CE"/>
+					<w:rsid w:val="00B02463"/>
+					<w:rsid w:val="00B56D1E"/>
+					<w:rsid w:val="00B570FB"/>
+					<w:rsid w:val="00B578C1"/>
+					<w:rsid w:val="00B6458D"/>
+					<w:rsid w:val="00B91B1A"/>
+					<w:rsid w:val="00BB7424"/>
+					<w:rsid w:val="00BC611E"/>
+					<w:rsid w:val="00BE5DDC"/>
+					<w:rsid w:val="00C0008F"/>
+					<w:rsid w:val="00C051F1"/>
+					<w:rsid w:val="00C15C76"/>
+					<w:rsid w:val="00C52CFB"/>
+					<w:rsid w:val="00C93D1E"/>
+					<w:rsid w:val="00CA64A5"/>
+					<w:rsid w:val="00CB1F89"/>
+					<w:rsid w:val="00CB7C72"/>
+					<w:rsid w:val="00CE3A65"/>
+					<w:rsid w:val="00CF6269"/>
+					<w:rsid w:val="00D02820"/>
+					<w:rsid w:val="00D07140"/>
+					<w:rsid w:val="00D17D54"/>
+					<w:rsid w:val="00D43792"/>
+					<w:rsid w:val="00D50577"/>
+					<w:rsid w:val="00D55C78"/>
+					<w:rsid w:val="00D85659"/>
+					<w:rsid w:val="00D87C35"/>
+					<w:rsid w:val="00D948E2"/>
+					<w:rsid w:val="00DA04B6"/>
+					<w:rsid w:val="00DA558B"/>
+					<w:rsid w:val="00DD230C"/>
+					<w:rsid w:val="00DD6E04"/>
+					<w:rsid w:val="00DE376D"/>
+					<w:rsid w:val="00DF64E3"/>
+					<w:rsid w:val="00E05F09"/>
+					<w:rsid w:val="00E17E78"/>
+					<w:rsid w:val="00E30F8F"/>
+					<w:rsid w:val="00E56C79"/>
+					<w:rsid w:val="00E72F4D"/>
+					<w:rsid w:val="00EA2F18"/>
+					<w:rsid w:val="00EB1E10"/>
+					<w:rsid w:val="00EB3511"/>
+					<w:rsid w:val="00EB5A61"/>
+					<w:rsid w:val="00EB6BE7"/>
+					<w:rsid w:val="00EC68F5"/>
+					<w:rsid w:val="00EE1A58"/>
+					<w:rsid w:val="00EE27E1"/>
+					<w:rsid w:val="00EF4E54"/>
+					<w:rsid w:val="00F029FF"/>
+					<w:rsid w:val="00F17F9A"/>
+					<w:rsid w:val="00F30893"/>
+					<w:rsid w:val="00F3740E"/>
+					<w:rsid w:val="00F40516"/>
+					<w:rsid w:val="00F675E5"/>
+					<w:rsid w:val="00F825CF"/>
+					<w:rsid w:val="00FE08EA"/>
+					<w:rsid w:val="00FE5490"/>
+					<w:rsid w:val="00FF14B8"/>
+				</w:rsids>
+				<m:mathPr>
+					<m:mathFont m:val="Cambria Math"/>
+					<m:brkBin m:val="before"/>
+					<m:brkBinSub m:val="--"/>
+					<m:smallFrac m:val="0"/>
+					<m:dispDef/>
+					<m:lMargin m:val="0"/>
+					<m:rMargin m:val="0"/>
+					<m:defJc m:val="centerGroup"/>
+					<m:wrapIndent m:val="1440"/>
+					<m:intLim m:val="subSup"/>
+					<m:naryLim m:val="undOvr"/>
+				</m:mathPr>
+				<w:themeFontLang w:eastAsia="zh-CN" w:val="en-US"/>
+				<w:clrSchemeMapping w:accent1="accent1" w:accent2="accent2" w:accent3="accent3" w:accent4="accent4" w:accent5="accent5" w:accent6="accent6" w:bg1="light1" w:bg2="light2" w:followedHyperlink="followedHyperlink" w:hyperlink="hyperlink" w:t1="dark1" w:t2="dark2"/>
+				<w:doNotIncludeSubdocsInStats/>
+				<w:shapeDefaults>
+					<o:shapedefaults spidmax="2049" v:ext="edit"/>
+					<o:shapelayout v:ext="edit">
+						<o:idmap data="1" v:ext="edit"/>
+					</o:shapelayout>
+				</w:shapeDefaults>
+				<w:decimalSymbol w:val="."/>
+				<w:listSeparator w:val=","/>
+			</w:settings>
+		</pkg:xmlData>
+	</pkg:part>
+	<pkg:part pkg:contentType="application/vnd.openxmlformats-officedocument.wordprocessingml.styles+xml" pkg:name="/word/styles.xml">
+		<pkg:xmlData>
+			<w:styles mc:Ignorable="w14" xmlns:mc="http://schemas.openxmlformats.org/markup-compatibility/2006" xmlns:r="http://schemas.openxmlformats.org/officeDocument/2006/relationships" xmlns:w="http://schemas.openxmlformats.org/wordprocessingml/2006/main" xmlns:w14="http://schemas.microsoft.com/office/word/2010/wordml">
+				<w:docDefaults>
+					<w:rPrDefault>
+						<w:rPr>
+							<w:rFonts w:ascii="Times New Roman" w:cs="Times New Roman" w:eastAsia="宋体" w:hAnsi="Times New Roman"/>
+							<w:lang w:bidi="ar-SA" w:eastAsia="zh-CN" w:val="en-US"/>
+						</w:rPr>
+					</w:rPrDefault>
+					<w:pPrDefault/>
+				</w:docDefaults>
+				<w:latentStyles w:count="267" w:defLockedState="0" w:defQFormat="0" w:defSemiHidden="0" w:defUIPriority="0" w:defUnhideWhenUsed="0">
+					<w:lsdException w:name="Normal" w:qFormat="1"/>
+					<w:lsdException w:name="heading 1" w:qFormat="1"/>
+					<w:lsdException w:name="heading 2" w:qFormat="1" w:semiHidden="1" w:unhideWhenUsed="1"/>
+					<w:lsdException w:name="heading 3" w:qFormat="1" w:semiHidden="1" w:unhideWhenUsed="1"/>
+					<w:lsdException w:name="heading 4" w:qFormat="1" w:semiHidden="1" w:unhideWhenUsed="1"/>
+					<w:lsdException w:name="heading 5" w:qFormat="1" w:semiHidden="1" w:unhideWhenUsed="1"/>
+					<w:lsdException w:name="heading 6" w:qFormat="1" w:semiHidden="1" w:unhideWhenUsed="1"/>
+					<w:lsdException w:name="heading 7" w:qFormat="1" w:semiHidden="1" w:unhideWhenUsed="1"/>
+					<w:lsdException w:name="heading 8" w:qFormat="1" w:semiHidden="1" w:unhideWhenUsed="1"/>
+					<w:lsdException w:name="heading 9" w:qFormat="1" w:semiHidden="1" w:unhideWhenUsed="1"/>
+					<w:lsdException w:name="header" w:uiPriority="99"/>
+					<w:lsdException w:name="footer" w:uiPriority="99"/>
+					<w:lsdException w:name="caption" w:qFormat="1" w:semiHidden="1" w:unhideWhenUsed="1"/>
+					<w:lsdException w:name="Title" w:qFormat="1"/>
+					<w:lsdException w:name="Subtitle" w:qFormat="1"/>
+					<w:lsdException w:name="Strong" w:qFormat="1"/>
+					<w:lsdException w:name="Emphasis" w:qFormat="1"/>
+					<w:lsdException w:name="Placeholder Text" w:semiHidden="1" w:uiPriority="99"/>
+					<w:lsdException w:name="No Spacing" w:qFormat="1" w:uiPriority="1"/>
+					<w:lsdException w:name="Light Shading" w:uiPriority="60"/>
+					<w:lsdException w:name="Light List" w:uiPriority="61"/>
+					<w:lsdException w:name="Light Grid" w:uiPriority="62"/>
+					<w:lsdException w:name="Medium Shading 1" w:uiPriority="63"/>
+					<w:lsdException w:name="Medium Shading 2" w:uiPriority="64"/>
+					<w:lsdException w:name="Medium List 1" w:uiPriority="65"/>
+					<w:lsdException w:name="Medium List 2" w:uiPriority="66"/>
+					<w:lsdException w:name="Medium Grid 1" w:uiPriority="67"/>
+					<w:lsdException w:name="Medium Grid 2" w:uiPriority="68"/>
+					<w:lsdException w:name="Medium Grid 3" w:uiPriority="69"/>
+					<w:lsdException w:name="Dark List" w:uiPriority="70"/>
+					<w:lsdException w:name="Colorful Shading" w:uiPriority="71"/>
+					<w:lsdException w:name="Colorful List" w:uiPriority="72"/>
+					<w:lsdException w:name="Colorful Grid" w:uiPriority="73"/>
+					<w:lsdException w:name="Light Shading Accent 1" w:uiPriority="60"/>
+					<w:lsdException w:name="Light List Accent 1" w:uiPriority="61"/>
+					<w:lsdException w:name="Light Grid Accent 1" w:uiPriority="62"/>
+					<w:lsdException w:name="Medium Shading 1 Accent 1" w:uiPriority="63"/>
+					<w:lsdException w:name="Medium Shading 2 Accent 1" w:uiPriority="64"/>
+					<w:lsdException w:name="Medium List 1 Accent 1" w:uiPriority="65"/>
+					<w:lsdException w:name="Revision" w:semiHidden="1" w:uiPriority="99"/>
+					<w:lsdException w:name="List Paragraph" w:qFormat="1" w:uiPriority="34"/>
+					<w:lsdException w:name="Quote" w:qFormat="1" w:uiPriority="29"/>
+					<w:lsdException w:name="Intense Quote" w:qFormat="1" w:uiPriority="30"/>
+					<w:lsdException w:name="Medium List 2 Accent 1" w:uiPriority="66"/>
+					<w:lsdException w:name="Medium Grid 1 Accent 1" w:uiPriority="67"/>
+					<w:lsdException w:name="Medium Grid 2 Accent 1" w:uiPriority="68"/>
+					<w:lsdException w:name="Medium Grid 3 Accent 1" w:uiPriority="69"/>
+					<w:lsdException w:name="Dark List Accent 1" w:uiPriority="70"/>
+					<w:lsdException w:name="Colorful Shading Accent 1" w:uiPriority="71"/>
+					<w:lsdException w:name="Colorful List Accent 1" w:uiPriority="72"/>
+					<w:lsdException w:name="Colorful Grid Accent 1" w:uiPriority="73"/>
+					<w:lsdException w:name="Light Shading Accent 2" w:uiPriority="60"/>
+					<w:lsdException w:name="Light List Accent 2" w:uiPriority="61"/>
+					<w:lsdException w:name="Light Grid Accent 2" w:uiPriority="62"/>
+					<w:lsdException w:name="Medium Shading 1 Accent 2" w:uiPriority="63"/>
+					<w:lsdException w:name="Medium Shading 2 Accent 2" w:uiPriority="64"/>
+					<w:lsdException w:name="Medium List 1 Accent 2" w:uiPriority="65"/>
+					<w:lsdException w:name="Medium List 2 Accent 2" w:uiPriority="66"/>
+					<w:lsdException w:name="Medium Grid 1 Accent 2" w:uiPriority="67"/>
+					<w:lsdException w:name="Medium Grid 2 Accent 2" w:uiPriority="68"/>
+					<w:lsdException w:name="Medium Grid 3 Accent 2" w:uiPriority="69"/>
+					<w:lsdException w:name="Dark List Accent 2" w:uiPriority="70"/>
+					<w:lsdException w:name="Colorful Shading Accent 2" w:uiPriority="71"/>
+					<w:lsdException w:name="Colorful List Accent 2" w:uiPriority="72"/>
+					<w:lsdException w:name="Colorful Grid Accent 2" w:uiPriority="73"/>
+					<w:lsdException w:name="Light Shading Accent 3" w:uiPriority="60"/>
+					<w:lsdException w:name="Light List Accent 3" w:uiPriority="61"/>
+					<w:lsdException w:name="Light Grid Accent 3" w:uiPriority="62"/>
+					<w:lsdException w:name="Medium Shading 1 Accent 3" w:uiPriority="63"/>
+					<w:lsdException w:name="Medium Shading 2 Accent 3" w:uiPriority="64"/>
+					<w:lsdException w:name="Medium List 1 Accent 3" w:uiPriority="65"/>
+					<w:lsdException w:name="Medium List 2 Accent 3" w:uiPriority="66"/>
+					<w:lsdException w:name="Medium Grid 1 Accent 3" w:uiPriority="67"/>
+					<w:lsdException w:name="Medium Grid 2 Accent 3" w:uiPriority="68"/>
+					<w:lsdException w:name="Medium Grid 3 Accent 3" w:uiPriority="69"/>
+					<w:lsdException w:name="Dark List Accent 3" w:uiPriority="70"/>
+					<w:lsdException w:name="Colorful Shading Accent 3" w:uiPriority="71"/>
+					<w:lsdException w:name="Colorful List Accent 3" w:uiPriority="72"/>
+					<w:lsdException w:name="Colorful Grid Accent 3" w:uiPriority="73"/>
+					<w:lsdException w:name="Light Shading Accent 4" w:uiPriority="60"/>
+					<w:lsdException w:name="Light List Accent 4" w:uiPriority="61"/>
+					<w:lsdException w:name="Light Grid Accent 4" w:uiPriority="62"/>
+					<w:lsdException w:name="Medium Shading 1 Accent 4" w:uiPriority="63"/>
+					<w:lsdException w:name="Medium Shading 2 Accent 4" w:uiPriority="64"/>
+					<w:lsdException w:name="Medium List 1 Accent 4" w:uiPriority="65"/>
+					<w:lsdException w:name="Medium List 2 Accent 4" w:uiPriority="66"/>
+					<w:lsdException w:name="Medium Grid 1 Accent 4" w:uiPriority="67"/>
+					<w:lsdException w:name="Medium Grid 2 Accent 4" w:uiPriority="68"/>
+					<w:lsdException w:name="Medium Grid 3 Accent 4" w:uiPriority="69"/>
+					<w:lsdException w:name="Dark List Accent 4" w:uiPriority="70"/>
+					<w:lsdException w:name="Colorful Shading Accent 4" w:uiPriority="71"/>
+					<w:lsdException w:name="Colorful List Accent 4" w:uiPriority="72"/>
+					<w:lsdException w:name="Colorful Grid Accent 4" w:uiPriority="73"/>
+					<w:lsdException w:name="Light Shading Accent 5" w:uiPriority="60"/>
+					<w:lsdException w:name="Light List Accent 5" w:uiPriority="61"/>
+					<w:lsdException w:name="Light Grid Accent 5" w:uiPriority="62"/>
+					<w:lsdException w:name="Medium Shading 1 Accent 5" w:uiPriority="63"/>
+					<w:lsdException w:name="Medium Shading 2 Accent 5" w:uiPriority="64"/>
+					<w:lsdException w:name="Medium List 1 Accent 5" w:uiPriority="65"/>
+					<w:lsdException w:name="Medium List 2 Accent 5" w:uiPriority="66"/>
+					<w:lsdException w:name="Medium Grid 1 Accent 5" w:uiPriority="67"/>
+					<w:lsdException w:name="Medium Grid 2 Accent 5" w:uiPriority="68"/>
+					<w:lsdException w:name="Medium Grid 3 Accent 5" w:uiPriority="69"/>
+					<w:lsdException w:name="Dark List Accent 5" w:uiPriority="70"/>
+					<w:lsdException w:name="Colorful Shading Accent 5" w:uiPriority="71"/>
+					<w:lsdException w:name="Colorful List Accent 5" w:uiPriority="72"/>
+					<w:lsdException w:name="Colorful Grid Accent 5" w:uiPriority="73"/>
+					<w:lsdException w:name="Light Shading Accent 6" w:uiPriority="60"/>
+					<w:lsdException w:name="Light List Accent 6" w:uiPriority="61"/>
+					<w:lsdException w:name="Light Grid Accent 6" w:uiPriority="62"/>
+					<w:lsdException w:name="Medium Shading 1 Accent 6" w:uiPriority="63"/>
+					<w:lsdException w:name="Medium Shading 2 Accent 6" w:uiPriority="64"/>
+					<w:lsdException w:name="Medium List 1 Accent 6" w:uiPriority="65"/>
+					<w:lsdException w:name="Medium List 2 Accent 6" w:uiPriority="66"/>
+					<w:lsdException w:name="Medium Grid 1 Accent 6" w:uiPriority="67"/>
+					<w:lsdException w:name="Medium Grid 2 Accent 6" w:uiPriority="68"/>
+					<w:lsdException w:name="Medium Grid 3 Accent 6" w:uiPriority="69"/>
+					<w:lsdException w:name="Dark List Accent 6" w:uiPriority="70"/>
+					<w:lsdException w:name="Colorful Shading Accent 6" w:uiPriority="71"/>
+					<w:lsdException w:name="Colorful List Accent 6" w:uiPriority="72"/>
+					<w:lsdException w:name="Colorful Grid Accent 6" w:uiPriority="73"/>
+					<w:lsdException w:name="Subtle Emphasis" w:qFormat="1" w:uiPriority="19"/>
+					<w:lsdException w:name="Intense Emphasis" w:qFormat="1" w:uiPriority="21"/>
+					<w:lsdException w:name="Subtle Reference" w:qFormat="1" w:uiPriority="31"/>
+					<w:lsdException w:name="Intense Reference" w:qFormat="1" w:uiPriority="32"/>
+					<w:lsdException w:name="Book Title" w:qFormat="1" w:uiPriority="33"/>
+					<w:lsdException w:name="Bibliography" w:semiHidden="1" w:uiPriority="37" w:unhideWhenUsed="1"/>
+					<w:lsdException w:name="TOC Heading" w:qFormat="1" w:semiHidden="1" w:uiPriority="39" w:unhideWhenUsed="1"/>
+				</w:latentStyles>
+				<w:style w:default="1" w:styleId="a" w:type="paragraph">
+					<w:name w:val="Normal"/>
+					<w:qFormat/>
+					<w:rsid w:val="00704D29"/>
+					<w:pPr>
+						<w:widowControl w:val="0"/>
+						<w:jc w:val="both"/>
+					</w:pPr>
+					<w:rPr>
+						<w:kern w:val="2"/>
+						<w:sz w:val="21"/>
+						<w:szCs w:val="24"/>
+					</w:rPr>
+				</w:style>
+				<w:style w:styleId="1" w:type="paragraph">
+					<w:name w:val="heading 1"/>
+					<w:basedOn w:val="a"/>
+					<w:next w:val="a"/>
+					<w:link w:val="1Char"/>
+					<w:qFormat/>
+					<w:rsid w:val="00B02463"/>
+					<w:pPr>
+						<w:keepNext/>
+						<w:widowControl/>
+						<w:ind w:firstLine="435"/>
+						<w:jc w:val="left"/>
+						<w:outlineLvl w:val="0"/>
+					</w:pPr>
+					<w:rPr>
+						<w:rFonts w:ascii="宋体" w:hAnsi="宋体"/>
+						<w:kern w:val="0"/>
+						<w:sz w:val="28"/>
+					</w:rPr>
+				</w:style>
+				<w:style w:styleId="2" w:type="paragraph">
+					<w:name w:val="heading 2"/>
+					<w:basedOn w:val="a"/>
+					<w:next w:val="a"/>
+					<w:link w:val="2Char"/>
+					<w:semiHidden/>
+					<w:unhideWhenUsed/>
+					<w:qFormat/>
+					<w:rsid w:val="00B02463"/>
+					<w:pPr>
+						<w:keepNext/>
+						<w:keepLines/>
+						<w:spacing w:after="260" w:before="260" w:line="416" w:lineRule="auto"/>
+						<w:outlineLvl w:val="1"/>
+					</w:pPr>
+					<w:rPr>
+						<w:rFonts w:ascii="Cambria" w:hAnsi="Cambria"/>
+						<w:b/>
+						<w:bCs/>
+						<w:sz w:val="32"/>
+						<w:szCs w:val="32"/>
+					</w:rPr>
+				</w:style>
+				<w:style w:default="1" w:styleId="a0" w:type="character">
+					<w:name w:val="Default Paragraph Font"/>
+					<w:semiHidden/>
+				</w:style>
+				<w:style w:default="1" w:styleId="a1" w:type="table">
+					<w:name w:val="Normal Table"/>
+					<w:semiHidden/>
+					<w:tblPr>
+						<w:tblInd w:type="dxa" w:w="0"/>
+						<w:tblCellMar>
+							<w:top w:type="dxa" w:w="0"/>
+							<w:left w:type="dxa" w:w="108"/>
+							<w:bottom w:type="dxa" w:w="0"/>
+							<w:right w:type="dxa" w:w="108"/>
+						</w:tblCellMar>
+					</w:tblPr>
+				</w:style>
+				<w:style w:default="1" w:styleId="a2" w:type="numbering">
+					<w:name w:val="No List"/>
+					<w:semiHidden/>
+				</w:style>
+				<w:style w:styleId="a3" w:type="paragraph">
+					<w:name w:val="footer"/>
+					<w:basedOn w:val="a"/>
+					<w:link w:val="Char"/>
+					<w:uiPriority w:val="99"/>
+					<w:rsid w:val="00704D29"/>
+					<w:pPr>
+						<w:tabs>
+							<w:tab w:pos="4153" w:val="center"/>
+							<w:tab w:pos="8306" w:val="right"/>
+						</w:tabs>
+						<w:snapToGrid w:val="0"/>
+						<w:jc w:val="left"/>
+					</w:pPr>
+					<w:rPr>
+						<w:sz w:val="18"/>
+						<w:szCs w:val="18"/>
+					</w:rPr>
+				</w:style>
+				<w:style w:styleId="a4" w:type="character">
+					<w:name w:val="page number"/>
+					<w:basedOn w:val="a0"/>
+					<w:rsid w:val="00704D29"/>
+				</w:style>
+				<w:style w:styleId="a5" w:type="paragraph">
+					<w:name w:val="header"/>
+					<w:basedOn w:val="a"/>
+					<w:link w:val="Char0"/>
+					<w:uiPriority w:val="99"/>
+					<w:rsid w:val="00595E9A"/>
+					<w:pPr>
+						<w:pBdr>
+							<w:bottom w:color="auto" w:space="1" w:sz="6" w:val="single"/>
+						</w:pBdr>
+						<w:tabs>
+							<w:tab w:pos="4153" w:val="center"/>
+							<w:tab w:pos="8306" w:val="right"/>
+						</w:tabs>
+						<w:snapToGrid w:val="0"/>
+						<w:jc w:val="center"/>
+					</w:pPr>
+					<w:rPr>
+						<w:sz w:val="18"/>
+						<w:szCs w:val="18"/>
+						<w:lang w:eastAsia="x-none" w:val="x-none"/>
+					</w:rPr>
+				</w:style>
+				<w:style w:customStyle="1" w:styleId="Char0" w:type="character">
+					<w:name w:val="页眉 Char"/>
+					<w:link w:val="a5"/>
+					<w:uiPriority w:val="99"/>
+					<w:rsid w:val="00595E9A"/>
+					<w:rPr>
+						<w:kern w:val="2"/>
+						<w:sz w:val="18"/>
+						<w:szCs w:val="18"/>
+					</w:rPr>
+				</w:style>
+				<w:style w:customStyle="1" w:styleId="1Char" w:type="character">
+					<w:name w:val="标题 1 Char"/>
+					<w:link w:val="1"/>
+					<w:rsid w:val="00B02463"/>
+					<w:rPr>
+						<w:rFonts w:ascii="宋体" w:hAnsi="宋体"/>
+						<w:sz w:val="28"/>
+						<w:szCs w:val="24"/>
+					</w:rPr>
+				</w:style>
+				<w:style w:customStyle="1" w:styleId="2Char" w:type="character">
+					<w:name w:val="标题 2 Char"/>
+					<w:link w:val="2"/>
+					<w:semiHidden/>
+					<w:rsid w:val="00B02463"/>
+					<w:rPr>
+						<w:rFonts w:ascii="Cambria" w:cs="Times New Roman" w:eastAsia="宋体" w:hAnsi="Cambria"/>
+						<w:b/>
+						<w:bCs/>
+						<w:kern w:val="2"/>
+						<w:sz w:val="32"/>
+						<w:szCs w:val="32"/>
+					</w:rPr>
+				</w:style>
+				<w:style w:customStyle="1" w:styleId="MTDisplayEquation" w:type="paragraph">
+					<w:name w:val="MTDisplayEquation"/>
+					<w:basedOn w:val="a"/>
+					<w:next w:val="a"/>
+					<w:rsid w:val="00B02463"/>
+					<w:pPr>
+						<w:widowControl/>
+						<w:tabs>
+							<w:tab w:pos="4540" w:val="center"/>
+							<w:tab w:pos="9080" w:val="right"/>
+						</w:tabs>
+						<w:jc w:val="left"/>
+					</w:pPr>
+					<w:rPr>
+						<w:rFonts w:ascii="宋体" w:hAnsi="宋体"/>
+						<w:kern w:val="0"/>
+						<w:sz w:val="28"/>
+					</w:rPr>
+				</w:style>
+				<w:style w:customStyle="1" w:styleId="Char" w:type="character">
+					<w:name w:val="页脚 Char"/>
+					<w:link w:val="a3"/>
+					<w:uiPriority w:val="99"/>
+					<w:rsid w:val="00B570FB"/>
+					<w:rPr>
+						<w:kern w:val="2"/>
+						<w:sz w:val="18"/>
+						<w:szCs w:val="18"/>
+					</w:rPr>
+				</w:style>
+				<w:style w:styleId="a6" w:type="paragraph">
+					<w:name w:val="Balloon Text"/>
+					<w:basedOn w:val="a"/>
+					<w:link w:val="Char1"/>
+					<w:rsid w:val="00B570FB"/>
+					<w:rPr>
+						<w:sz w:val="18"/>
+						<w:szCs w:val="18"/>
+					</w:rPr>
+				</w:style>
+				<w:style w:customStyle="1" w:styleId="Char1" w:type="character">
+					<w:name w:val="批注框文本 Char"/>
+					<w:link w:val="a6"/>
+					<w:rsid w:val="00B570FB"/>
+					<w:rPr>
+						<w:kern w:val="2"/>
+						<w:sz w:val="18"/>
+						<w:szCs w:val="18"/>
+					</w:rPr>
+				</w:style>
+				<w:style w:styleId="a7" w:type="paragraph">
+					<w:name w:val="No Spacing"/>
+					<w:link w:val="Char2"/>
+					<w:uiPriority w:val="1"/>
+					<w:qFormat/>
+					<w:rsid w:val="00B570FB"/>
+					<w:rPr>
+						<w:rFonts w:ascii="Calibri" w:hAnsi="Calibri"/>
+						<w:sz w:val="22"/>
+						<w:szCs w:val="22"/>
+					</w:rPr>
+				</w:style>
+				<w:style w:customStyle="1" w:styleId="Char2" w:type="character">
+					<w:name w:val="无间隔 Char"/>
+					<w:link w:val="a7"/>
+					<w:uiPriority w:val="1"/>
+					<w:rsid w:val="00B570FB"/>
+					<w:rPr>
+						<w:rFonts w:ascii="Calibri" w:hAnsi="Calibri"/>
+						<w:sz w:val="22"/>
+						<w:szCs w:val="22"/>
+						<w:lang w:bidi="ar-SA" w:eastAsia="zh-CN" w:val="en-US"/>
+					</w:rPr>
+				</w:style>
+				<w:style w:styleId="a8" w:type="paragraph">
+					<w:name w:val="List Paragraph"/>
+					<w:basedOn w:val="a"/>
+					<w:uiPriority w:val="34"/>
+					<w:qFormat/>
+					<w:rsid w:val="001A590C"/>
+					<w:pPr>
+						<w:ind w:firstLine="420" w:firstLineChars="200"/>
+					</w:pPr>
+				</w:style>
+				<w:style w:styleId="20" w:type="paragraph">
+					<w:name w:val="List 2"/>
+					<w:basedOn w:val="a"/>
+					<w:rsid w:val="00DE376D"/>
+					<w:pPr>
+						<w:ind w:hanging="200" w:left="100"/>
+					</w:pPr>
+					<w:rPr>
+						<w:szCs w:val="20"/>
+					</w:rPr>
+				</w:style>
+				<w:style w:styleId="a9" w:type="paragraph">
+					<w:name w:val="Document Map"/>
+					<w:basedOn w:val="a"/>
+					<w:link w:val="Char3"/>
+					<w:rsid w:val="001A2234"/>
+					<w:rPr>
+						<w:rFonts w:ascii="宋体"/>
+						<w:sz w:val="18"/>
+						<w:szCs w:val="18"/>
+					</w:rPr>
+				</w:style>
+				<w:style w:customStyle="1" w:styleId="Char3" w:type="character">
+					<w:name w:val="文档结构图 Char"/>
+					<w:link w:val="a9"/>
+					<w:rsid w:val="001A2234"/>
+					<w:rPr>
+						<w:rFonts w:ascii="宋体"/>
+						<w:kern w:val="2"/>
+						<w:sz w:val="18"/>
+						<w:szCs w:val="18"/>
+					</w:rPr>
+				</w:style>
+				<w:style w:styleId="aa" w:type="table">
+					<w:name w:val="Table Grid"/>
+					<w:basedOn w:val="a1"/>
+					<w:rsid w:val="001A2234"/>
+					<w:tblPr>
+						<w:tblInd w:type="dxa" w:w="0"/>
+						<w:tblBorders>
+							<w:top w:color="000000" w:space="0" w:sz="4" w:val="single"/>
+							<w:left w:color="000000" w:space="0" w:sz="4" w:val="single"/>
+							<w:bottom w:color="000000" w:space="0" w:sz="4" w:val="single"/>
+							<w:right w:color="000000" w:space="0" w:sz="4" w:val="single"/>
+							<w:insideH w:color="000000" w:space="0" w:sz="4" w:val="single"/>
+							<w:insideV w:color="000000" w:space="0" w:sz="4" w:val="single"/>
+						</w:tblBorders>
+						<w:tblCellMar>
+							<w:top w:type="dxa" w:w="0"/>
+							<w:left w:type="dxa" w:w="108"/>
+							<w:bottom w:type="dxa" w:w="0"/>
+							<w:right w:type="dxa" w:w="108"/>
+						</w:tblCellMar>
+					</w:tblPr>
+				</w:style>
+			</w:styles>
+		</pkg:xmlData>
+	</pkg:part>
+	<pkg:part pkg:contentType="application/vnd.openxmlformats-officedocument.wordprocessingml.numbering+xml" pkg:name="/word/numbering.xml">
+		<pkg:xmlData>
+			<w:numbering mc:Ignorable="w14 wp14" xmlns:m="http://schemas.openxmlformats.org/officeDocument/2006/math" xmlns:mc="http://schemas.openxmlformats.org/markup-compatibility/2006" xmlns:o="urn:schemas-microsoft-com:office:office" xmlns:r="http://schemas.openxmlformats.org/officeDocument/2006/relationships" xmlns:v="urn:schemas-microsoft-com:vml" xmlns:w="http://schemas.openxmlformats.org/wordprocessingml/2006/main" xmlns:w10="urn:schemas-microsoft-com:office:word" xmlns:w14="http://schemas.microsoft.com/office/word/2010/wordml" xmlns:wne="http://schemas.microsoft.com/office/word/2006/wordml" xmlns:wp="http://schemas.openxmlformats.org/drawingml/2006/wordprocessingDrawing" xmlns:wp14="http://schemas.microsoft.com/office/word/2010/wordprocessingDrawing" xmlns:wpc="http://schemas.microsoft.com/office/word/2010/wordprocessingCanvas" xmlns:wpg="http://schemas.microsoft.com/office/word/2010/wordprocessingGroup" xmlns:wpi="http://schemas.microsoft.com/office/word/2010/wordprocessingInk" xmlns:wps="http://schemas.microsoft.com/office/word/2010/wordprocessingShape">
+				<w:abstractNum w:abstractNumId="0">
+					<w:nsid w:val="01F00F88"/>
+					<w:multiLevelType w:val="hybridMultilevel"/>
+					<w:tmpl w:val="24FAE628"/>
+					<w:lvl w:ilvl="0" w:tplc="8C0626B4">
+						<w:start w:val="1"/>
+						<w:numFmt w:val="japaneseCounting"/>
+						<w:lvlText w:val="%1、"/>
+						<w:lvlJc w:val="left"/>
+						<w:pPr>
+							<w:ind w:hanging="456" w:left="598"/>
+						</w:pPr>
+						<w:rPr>
+							<w:rFonts w:hint="default"/>
+						</w:rPr>
+					</w:lvl>
+					<w:lvl w:ilvl="1" w:tentative="1" w:tplc="04090019">
+						<w:start w:val="1"/>
+						<w:numFmt w:val="lowerLetter"/>
+						<w:lvlText w:val="%2)"/>
+						<w:lvlJc w:val="left"/>
+						<w:pPr>
+							<w:ind w:hanging="420" w:left="840"/>
+						</w:pPr>
+					</w:lvl>
+					<w:lvl w:ilvl="2" w:tentative="1" w:tplc="0409001B">
+						<w:start w:val="1"/>
+						<w:numFmt w:val="lowerRoman"/>
+						<w:lvlText w:val="%3."/>
+						<w:lvlJc w:val="right"/>
+						<w:pPr>
+							<w:ind w:hanging="420" w:left="1260"/>
+						</w:pPr>
+					</w:lvl>
+					<w:lvl w:ilvl="3" w:tentative="1" w:tplc="0409000F">
+						<w:start w:val="1"/>
+						<w:numFmt w:val="decimal"/>
+						<w:lvlText w:val="%4."/>
+						<w:lvlJc w:val="left"/>
+						<w:pPr>
+							<w:ind w:hanging="420" w:left="1680"/>
+						</w:pPr>
+					</w:lvl>
+					<w:lvl w:ilvl="4" w:tentative="1" w:tplc="04090019">
+						<w:start w:val="1"/>
+						<w:numFmt w:val="lowerLetter"/>
+						<w:lvlText w:val="%5)"/>
+						<w:lvlJc w:val="left"/>
+						<w:pPr>
+							<w:ind w:hanging="420" w:left="2100"/>
+						</w:pPr>
+					</w:lvl>
+					<w:lvl w:ilvl="5" w:tentative="1" w:tplc="0409001B">
+						<w:start w:val="1"/>
+						<w:numFmt w:val="lowerRoman"/>
+						<w:lvlText w:val="%6."/>
+						<w:lvlJc w:val="right"/>
+						<w:pPr>
+							<w:ind w:hanging="420" w:left="2520"/>
+						</w:pPr>
+					</w:lvl>
+					<w:lvl w:ilvl="6" w:tentative="1" w:tplc="0409000F">
+						<w:start w:val="1"/>
+						<w:numFmt w:val="decimal"/>
+						<w:lvlText w:val="%7."/>
+						<w:lvlJc w:val="left"/>
+						<w:pPr>
+							<w:ind w:hanging="420" w:left="2940"/>
+						</w:pPr>
+					</w:lvl>
+					<w:lvl w:ilvl="7" w:tentative="1" w:tplc="04090019">
+						<w:start w:val="1"/>
+						<w:numFmt w:val="lowerLetter"/>
+						<w:lvlText w:val="%8)"/>
+						<w:lvlJc w:val="left"/>
+						<w:pPr>
+							<w:ind w:hanging="420" w:left="3360"/>
+						</w:pPr>
+					</w:lvl>
+					<w:lvl w:ilvl="8" w:tentative="1" w:tplc="0409001B">
+						<w:start w:val="1"/>
+						<w:numFmt w:val="lowerRoman"/>
+						<w:lvlText w:val="%9."/>
+						<w:lvlJc w:val="right"/>
+						<w:pPr>
+							<w:ind w:hanging="420" w:left="3780"/>
+						</w:pPr>
+					</w:lvl>
+				</w:abstractNum>
+				<w:abstractNum w:abstractNumId="1">
+					<w:nsid w:val="020A5E2D"/>
+					<w:multiLevelType w:val="hybridMultilevel"/>
+					<w:tmpl w:val="066CBE6A"/>
+					<w:lvl w:ilvl="0" w:tplc="2DAA272E">
+						<w:start w:val="1"/>
+						<w:numFmt w:val="japaneseCounting"/>
+						<w:lvlText w:val="%1、"/>
+						<w:lvlJc w:val="left"/>
+						<w:pPr>
+							<w:tabs>
+								<w:tab w:pos="420" w:val="num"/>
+							</w:tabs>
+							<w:ind w:hanging="420" w:left="420"/>
+						</w:pPr>
+					</w:lvl>
+					<w:lvl w:ilvl="1" w:tplc="82741D52">
+						<w:start w:val="1"/>
+						<w:numFmt w:val="decimal"/>
+						<w:lvlText w:val="%2、"/>
+						<w:lvlJc w:val="left"/>
+						<w:pPr>
+							<w:tabs>
+								<w:tab w:pos="780" w:val="num"/>
+							</w:tabs>
+							<w:ind w:hanging="360" w:left="780"/>
+						</w:pPr>
+					</w:lvl>
+					<w:lvl w:ilvl="2" w:tplc="0409001B">
+						<w:start w:val="1"/>
+						<w:numFmt w:val="decimal"/>
+						<w:lvlText w:val="%3."/>
+						<w:lvlJc w:val="left"/>
+						<w:pPr>
+							<w:tabs>
+								<w:tab w:pos="2160" w:val="num"/>
+							</w:tabs>
+							<w:ind w:hanging="360" w:left="2160"/>
+						</w:pPr>
+					</w:lvl>
+					<w:lvl w:ilvl="3" w:tplc="0409000F">
+						<w:start w:val="1"/>
+						<w:numFmt w:val="decimal"/>
+						<w:lvlText w:val="%4."/>
+						<w:lvlJc w:val="left"/>
+						<w:pPr>
+							<w:tabs>
+								<w:tab w:pos="2880" w:val="num"/>
+							</w:tabs>
+							<w:ind w:hanging="360" w:left="2880"/>
+						</w:pPr>
+					</w:lvl>
+					<w:lvl w:ilvl="4" w:tplc="04090019">
+						<w:start w:val="1"/>
+						<w:numFmt w:val="decimal"/>
+						<w:lvlText w:val="%5."/>
+						<w:lvlJc w:val="left"/>
+						<w:pPr>
+							<w:tabs>
+								<w:tab w:pos="3600" w:val="num"/>
+							</w:tabs>
+							<w:ind w:hanging="360" w:left="3600"/>
+						</w:pPr>
+					</w:lvl>
+					<w:lvl w:ilvl="5" w:tplc="0409001B">
+						<w:start w:val="1"/>
+						<w:numFmt w:val="decimal"/>
+						<w:lvlText w:val="%6."/>
+						<w:lvlJc w:val="left"/>
+						<w:pPr>
+							<w:tabs>
+								<w:tab w:pos="4320" w:val="num"/>
+							</w:tabs>
+							<w:ind w:hanging="360" w:left="4320"/>
+						</w:pPr>
+					</w:lvl>
+					<w:lvl w:ilvl="6" w:tplc="0409000F">
+						<w:start w:val="1"/>
+						<w:numFmt w:val="decimal"/>
+						<w:lvlText w:val="%7."/>
+						<w:lvlJc w:val="left"/>
+						<w:pPr>
+							<w:tabs>
+								<w:tab w:pos="5040" w:val="num"/>
+							</w:tabs>
+							<w:ind w:hanging="360" w:left="5040"/>
+						</w:pPr>
+					</w:lvl>
+					<w:lvl w:ilvl="7" w:tplc="04090019">
+						<w:start w:val="1"/>
+						<w:numFmt w:val="decimal"/>
+						<w:lvlText w:val="%8."/>
+						<w:lvlJc w:val="left"/>
+						<w:pPr>
+							<w:tabs>
+								<w:tab w:pos="5760" w:val="num"/>
+							</w:tabs>
+							<w:ind w:hanging="360" w:left="5760"/>
+						</w:pPr>
+					</w:lvl>
+					<w:lvl w:ilvl="8" w:tplc="0409001B">
+						<w:start w:val="1"/>
+						<w:numFmt w:val="decimal"/>
+						<w:lvlText w:val="%9."/>
+						<w:lvlJc w:val="left"/>
+						<w:pPr>
+							<w:tabs>
+								<w:tab w:pos="6480" w:val="num"/>
+							</w:tabs>
+							<w:ind w:hanging="360" w:left="6480"/>
+						</w:pPr>
+					</w:lvl>
+				</w:abstractNum>
+				<w:abstractNum w:abstractNumId="2">
+					<w:nsid w:val="08DF0269"/>
+					<w:multiLevelType w:val="hybridMultilevel"/>
+					<w:tmpl w:val="009CA026"/>
+					<w:lvl w:ilvl="0" w:tplc="47C0FD24">
+						<w:start w:val="1"/>
+						<w:numFmt w:val="decimal"/>
+						<w:lvlText w:val="%1、"/>
+						<w:lvlJc w:val="left"/>
+						<w:pPr>
+							<w:tabs>
+								<w:tab w:pos="720" w:val="num"/>
+							</w:tabs>
+							<w:ind w:hanging="360" w:left="720"/>
+						</w:pPr>
+						<w:rPr>
+							<w:rFonts w:hint="eastAsia"/>
+						</w:rPr>
+					</w:lvl>
+					<w:lvl w:ilvl="1" w:tentative="1" w:tplc="04090019">
+						<w:start w:val="1"/>
+						<w:numFmt w:val="lowerLetter"/>
+						<w:lvlText w:val="%2)"/>
+						<w:lvlJc w:val="left"/>
+						<w:pPr>
+							<w:tabs>
+								<w:tab w:pos="1200" w:val="num"/>
+							</w:tabs>
+							<w:ind w:hanging="420" w:left="1200"/>
+						</w:pPr>
+					</w:lvl>
+					<w:lvl w:ilvl="2" w:tentative="1" w:tplc="0409001B">
+						<w:start w:val="1"/>
+						<w:numFmt w:val="lowerRoman"/>
+						<w:lvlText w:val="%3."/>
+						<w:lvlJc w:val="right"/>
+						<w:pPr>
+							<w:tabs>
+								<w:tab w:pos="1620" w:val="num"/>
+							</w:tabs>
+							<w:ind w:hanging="420" w:left="1620"/>
+						</w:pPr>
+					</w:lvl>
+					<w:lvl w:ilvl="3" w:tentative="1" w:tplc="0409000F">
+						<w:start w:val="1"/>
+						<w:numFmt w:val="decimal"/>
+						<w:lvlText w:val="%4."/>
+						<w:lvlJc w:val="left"/>
+						<w:pPr>
+							<w:tabs>
+								<w:tab w:pos="2040" w:val="num"/>
+							</w:tabs>
+							<w:ind w:hanging="420" w:left="2040"/>
+						</w:pPr>
+					</w:lvl>
+					<w:lvl w:ilvl="4" w:tentative="1" w:tplc="04090019">
+						<w:start w:val="1"/>
+						<w:numFmt w:val="lowerLetter"/>
+						<w:lvlText w:val="%5)"/>
+						<w:lvlJc w:val="left"/>
+						<w:pPr>
+							<w:tabs>
+								<w:tab w:pos="2460" w:val="num"/>
+							</w:tabs>
+							<w:ind w:hanging="420" w:left="2460"/>
+						</w:pPr>
+					</w:lvl>
+					<w:lvl w:ilvl="5" w:tentative="1" w:tplc="0409001B">
+						<w:start w:val="1"/>
+						<w:numFmt w:val="lowerRoman"/>
+						<w:lvlText w:val="%6."/>
+						<w:lvlJc w:val="right"/>
+						<w:pPr>
+							<w:tabs>
+								<w:tab w:pos="2880" w:val="num"/>
+							</w:tabs>
+							<w:ind w:hanging="420" w:left="2880"/>
+						</w:pPr>
+					</w:lvl>
+					<w:lvl w:ilvl="6" w:tentative="1" w:tplc="0409000F">
+						<w:start w:val="1"/>
+						<w:numFmt w:val="decimal"/>
+						<w:lvlText w:val="%7."/>
+						<w:lvlJc w:val="left"/>
+						<w:pPr>
+							<w:tabs>
+								<w:tab w:pos="3300" w:val="num"/>
+							</w:tabs>
+							<w:ind w:hanging="420" w:left="3300"/>
+						</w:pPr>
+					</w:lvl>
+					<w:lvl w:ilvl="7" w:tentative="1" w:tplc="04090019">
+						<w:start w:val="1"/>
+						<w:numFmt w:val="lowerLetter"/>
+						<w:lvlText w:val="%8)"/>
+						<w:lvlJc w:val="left"/>
+						<w:pPr>
+							<w:tabs>
+								<w:tab w:pos="3720" w:val="num"/>
+							</w:tabs>
+							<w:ind w:hanging="420" w:left="3720"/>
+						</w:pPr>
+					</w:lvl>
+					<w:lvl w:ilvl="8" w:tentative="1" w:tplc="0409001B">
+						<w:start w:val="1"/>
+						<w:numFmt w:val="lowerRoman"/>
+						<w:lvlText w:val="%9."/>
+						<w:lvlJc w:val="right"/>
+						<w:pPr>
+							<w:tabs>
+								<w:tab w:pos="4140" w:val="num"/>
+							</w:tabs>
+							<w:ind w:hanging="420" w:left="4140"/>
+						</w:pPr>
+					</w:lvl>
+				</w:abstractNum>
+				<w:abstractNum w:abstractNumId="3">
+					<w:nsid w:val="0958232F"/>
+					<w:multiLevelType w:val="hybridMultilevel"/>
+					<w:tmpl w:val="30E88CE0"/>
+					<w:lvl w:ilvl="0" w:tplc="5C989B96">
+						<w:start w:val="1"/>
+						<w:numFmt w:val="japaneseCounting"/>
+						<w:lvlText w:val="%1、"/>
+						<w:lvlJc w:val="left"/>
+						<w:pPr>
+							<w:ind w:hanging="720" w:left="720"/>
+						</w:pPr>
+						<w:rPr>
+							<w:rFonts w:hint="default"/>
+						</w:rPr>
+					</w:lvl>
+					<w:lvl w:ilvl="1" w:tentative="1" w:tplc="04090019">
+						<w:start w:val="1"/>
+						<w:numFmt w:val="lowerLetter"/>
+						<w:lvlText w:val="%2)"/>
+						<w:lvlJc w:val="left"/>
+						<w:pPr>
+							<w:ind w:hanging="420" w:left="840"/>
+						</w:pPr>
+					</w:lvl>
+					<w:lvl w:ilvl="2" w:tentative="1" w:tplc="0409001B">
+						<w:start w:val="1"/>
+						<w:numFmt w:val="lowerRoman"/>
+						<w:lvlText w:val="%3."/>
+						<w:lvlJc w:val="right"/>
+						<w:pPr>
+							<w:ind w:hanging="420" w:left="1260"/>
+						</w:pPr>
+					</w:lvl>
+					<w:lvl w:ilvl="3" w:tentative="1" w:tplc="0409000F">
+						<w:start w:val="1"/>
+						<w:numFmt w:val="decimal"/>
+						<w:lvlText w:val="%4."/>
+						<w:lvlJc w:val="left"/>
+						<w:pPr>
+							<w:ind w:hanging="420" w:left="1680"/>
+						</w:pPr>
+					</w:lvl>
+					<w:lvl w:ilvl="4" w:tentative="1" w:tplc="04090019">
+						<w:start w:val="1"/>
+						<w:numFmt w:val="lowerLetter"/>
+						<w:lvlText w:val="%5)"/>
+						<w:lvlJc w:val="left"/>
+						<w:pPr>
+							<w:ind w:hanging="420" w:left="2100"/>
+						</w:pPr>
+					</w:lvl>
+					<w:lvl w:ilvl="5" w:tentative="1" w:tplc="0409001B">
+						<w:start w:val="1"/>
+						<w:numFmt w:val="lowerRoman"/>
+						<w:lvlText w:val="%6."/>
+						<w:lvlJc w:val="right"/>
+						<w:pPr>
+							<w:ind w:hanging="420" w:left="2520"/>
+						</w:pPr>
+					</w:lvl>
+					<w:lvl w:ilvl="6" w:tentative="1" w:tplc="0409000F">
+						<w:start w:val="1"/>
+						<w:numFmt w:val="decimal"/>
+						<w:lvlText w:val="%7."/>
+						<w:lvlJc w:val="left"/>
+						<w:pPr>
+							<w:ind w:hanging="420" w:left="2940"/>
+						</w:pPr>
+					</w:lvl>
+					<w:lvl w:ilvl="7" w:tentative="1" w:tplc="04090019">
+						<w:start w:val="1"/>
+						<w:numFmt w:val="lowerLetter"/>
+						<w:lvlText w:val="%8)"/>
+						<w:lvlJc w:val="left"/>
+						<w:pPr>
+							<w:ind w:hanging="420" w:left="3360"/>
+						</w:pPr>
+					</w:lvl>
+					<w:lvl w:ilvl="8" w:tentative="1" w:tplc="0409001B">
+						<w:start w:val="1"/>
+						<w:numFmt w:val="lowerRoman"/>
+						<w:lvlText w:val="%9."/>
+						<w:lvlJc w:val="right"/>
+						<w:pPr>
+							<w:ind w:hanging="420" w:left="3780"/>
+						</w:pPr>
+					</w:lvl>
+				</w:abstractNum>
+				<w:abstractNum w:abstractNumId="4">
+					<w:nsid w:val="124F2661"/>
+					<w:multiLevelType w:val="hybridMultilevel"/>
+					<w:tmpl w:val="311EC340"/>
+					<w:lvl w:ilvl="0" w:tplc="7C9A8072">
+						<w:start w:val="1"/>
+						<w:numFmt w:val="decimal"/>
+						<w:lvlText w:val="%1、"/>
+						<w:lvlJc w:val="left"/>
+						<w:pPr>
+							<w:ind w:hanging="720" w:left="720"/>
+						</w:pPr>
+						<w:rPr>
+							<w:rFonts w:hint="default"/>
+							<w:color w:val="auto"/>
+						</w:rPr>
+					</w:lvl>
+					<w:lvl w:ilvl="1" w:tentative="1" w:tplc="04090019">
+						<w:start w:val="1"/>
+						<w:numFmt w:val="lowerLetter"/>
+						<w:lvlText w:val="%2)"/>
+						<w:lvlJc w:val="left"/>
+						<w:pPr>
+							<w:ind w:hanging="420" w:left="840"/>
+						</w:pPr>
+					</w:lvl>
+					<w:lvl w:ilvl="2" w:tentative="1" w:tplc="0409001B">
+						<w:start w:val="1"/>
+						<w:numFmt w:val="lowerRoman"/>
+						<w:lvlText w:val="%3."/>
+						<w:lvlJc w:val="right"/>
+						<w:pPr>
+							<w:ind w:hanging="420" w:left="1260"/>
+						</w:pPr>
+					</w:lvl>
+					<w:lvl w:ilvl="3" w:tentative="1" w:tplc="0409000F">
+						<w:start w:val="1"/>
+						<w:numFmt w:val="decimal"/>
+						<w:lvlText w:val="%4."/>
+						<w:lvlJc w:val="left"/>
+						<w:pPr>
+							<w:ind w:hanging="420" w:left="1680"/>
+						</w:pPr>
+					</w:lvl>
+					<w:lvl w:ilvl="4" w:tentative="1" w:tplc="04090019">
+						<w:start w:val="1"/>
+						<w:numFmt w:val="lowerLetter"/>
+						<w:lvlText w:val="%5)"/>
+						<w:lvlJc w:val="left"/>
+						<w:pPr>
+							<w:ind w:hanging="420" w:left="2100"/>
+						</w:pPr>
+					</w:lvl>
+					<w:lvl w:ilvl="5" w:tentative="1" w:tplc="0409001B">
+						<w:start w:val="1"/>
+						<w:numFmt w:val="lowerRoman"/>
+						<w:lvlText w:val="%6."/>
+						<w:lvlJc w:val="right"/>
+						<w:pPr>
+							<w:ind w:hanging="420" w:left="2520"/>
+						</w:pPr>
+					</w:lvl>
+					<w:lvl w:ilvl="6" w:tentative="1" w:tplc="0409000F">
+						<w:start w:val="1"/>
+						<w:numFmt w:val="decimal"/>
+						<w:lvlText w:val="%7."/>
+						<w:lvlJc w:val="left"/>
+						<w:pPr>
+							<w:ind w:hanging="420" w:left="2940"/>
+						</w:pPr>
+					</w:lvl>
+					<w:lvl w:ilvl="7" w:tentative="1" w:tplc="04090019">
+						<w:start w:val="1"/>
+						<w:numFmt w:val="lowerLetter"/>
+						<w:lvlText w:val="%8)"/>
+						<w:lvlJc w:val="left"/>
+						<w:pPr>
+							<w:ind w:hanging="420" w:left="3360"/>
+						</w:pPr>
+					</w:lvl>
+					<w:lvl w:ilvl="8" w:tentative="1" w:tplc="0409001B">
+						<w:start w:val="1"/>
+						<w:numFmt w:val="lowerRoman"/>
+						<w:lvlText w:val="%9."/>
+						<w:lvlJc w:val="right"/>
+						<w:pPr>
+							<w:ind w:hanging="420" w:left="3780"/>
+						</w:pPr>
+					</w:lvl>
+				</w:abstractNum>
+				<w:abstractNum w:abstractNumId="5">
+					<w:nsid w:val="136B1AD3"/>
+					<w:multiLevelType w:val="hybridMultilevel"/>
+					<w:tmpl w:val="BDF04116"/>
+					<w:lvl w:ilvl="0" w:tplc="CBA85F62">
+						<w:start w:val="1"/>
+						<w:numFmt w:val="decimal"/>
+						<w:lvlText w:val="%1、"/>
+						<w:lvlJc w:val="left"/>
+						<w:pPr>
+							<w:ind w:hanging="360" w:left="482"/>
+						</w:pPr>
+						<w:rPr>
+							<w:rFonts w:hint="default"/>
+						</w:rPr>
+					</w:lvl>
+					<w:lvl w:ilvl="1" w:tentative="1" w:tplc="04090019">
+						<w:start w:val="1"/>
+						<w:numFmt w:val="lowerLetter"/>
+						<w:lvlText w:val="%2)"/>
+						<w:lvlJc w:val="left"/>
+						<w:pPr>
+							<w:ind w:hanging="420" w:left="962"/>
+						</w:pPr>
+					</w:lvl>
+					<w:lvl w:ilvl="2" w:tentative="1" w:tplc="0409001B">
+						<w:start w:val="1"/>
+						<w:numFmt w:val="lowerRoman"/>
+						<w:lvlText w:val="%3."/>
+						<w:lvlJc w:val="right"/>
+						<w:pPr>
+							<w:ind w:hanging="420" w:left="1382"/>
+						</w:pPr>
+					</w:lvl>
+					<w:lvl w:ilvl="3" w:tentative="1" w:tplc="0409000F">
+						<w:start w:val="1"/>
+						<w:numFmt w:val="decimal"/>
+						<w:lvlText w:val="%4."/>
+						<w:lvlJc w:val="left"/>
+						<w:pPr>
+							<w:ind w:hanging="420" w:left="1802"/>
+						</w:pPr>
+					</w:lvl>
+					<w:lvl w:ilvl="4" w:tentative="1" w:tplc="04090019">
+						<w:start w:val="1"/>
+						<w:numFmt w:val="lowerLetter"/>
+						<w:lvlText w:val="%5)"/>
+						<w:lvlJc w:val="left"/>
+						<w:pPr>
+							<w:ind w:hanging="420" w:left="2222"/>
+						</w:pPr>
+					</w:lvl>
+					<w:lvl w:ilvl="5" w:tentative="1" w:tplc="0409001B">
+						<w:start w:val="1"/>
+						<w:numFmt w:val="lowerRoman"/>
+						<w:lvlText w:val="%6."/>
+						<w:lvlJc w:val="right"/>
+						<w:pPr>
+							<w:ind w:hanging="420" w:left="2642"/>
+						</w:pPr>
+					</w:lvl>
+					<w:lvl w:ilvl="6" w:tentative="1" w:tplc="0409000F">
+						<w:start w:val="1"/>
+						<w:numFmt w:val="decimal"/>
+						<w:lvlText w:val="%7."/>
+						<w:lvlJc w:val="left"/>
+						<w:pPr>
+							<w:ind w:hanging="420" w:left="3062"/>
+						</w:pPr>
+					</w:lvl>
+					<w:lvl w:ilvl="7" w:tentative="1" w:tplc="04090019">
+						<w:start w:val="1"/>
+						<w:numFmt w:val="lowerLetter"/>
+						<w:lvlText w:val="%8)"/>
+						<w:lvlJc w:val="left"/>
+						<w:pPr>
+							<w:ind w:hanging="420" w:left="3482"/>
+						</w:pPr>
+					</w:lvl>
+					<w:lvl w:ilvl="8" w:tentative="1" w:tplc="0409001B">
+						<w:start w:val="1"/>
+						<w:numFmt w:val="lowerRoman"/>
+						<w:lvlText w:val="%9."/>
+						<w:lvlJc w:val="right"/>
+						<w:pPr>
+							<w:ind w:hanging="420" w:left="3902"/>
+						</w:pPr>
+					</w:lvl>
+				</w:abstractNum>
+				<w:abstractNum w:abstractNumId="6">
+					<w:nsid w:val="14A814D2"/>
+					<w:multiLevelType w:val="hybridMultilevel"/>
+					<w:tmpl w:val="603AF3EE"/>
+					<w:lvl w:ilvl="0" w:tplc="C39CEFC0">
+						<w:start w:val="2"/>
+						<w:numFmt w:val="japaneseCounting"/>
+						<w:lvlText w:val="%1、"/>
+						<w:lvlJc w:val="left"/>
+						<w:pPr>
+							<w:ind w:hanging="420" w:left="1018"/>
+						</w:pPr>
+						<w:rPr>
+							<w:rFonts w:hint="default"/>
+						</w:rPr>
+					</w:lvl>
+					<w:lvl w:ilvl="1" w:tentative="1" w:tplc="04090019">
+						<w:start w:val="1"/>
+						<w:numFmt w:val="lowerLetter"/>
+						<w:lvlText w:val="%2)"/>
+						<w:lvlJc w:val="left"/>
+						<w:pPr>
+							<w:ind w:hanging="420" w:left="1438"/>
+						</w:pPr>
+					</w:lvl>
+					<w:lvl w:ilvl="2" w:tentative="1" w:tplc="0409001B">
+						<w:start w:val="1"/>
+						<w:numFmt w:val="lowerRoman"/>
+						<w:lvlText w:val="%3."/>
+						<w:lvlJc w:val="right"/>
+						<w:pPr>
+							<w:ind w:hanging="420" w:left="1858"/>
+						</w:pPr>
+					</w:lvl>
+					<w:lvl w:ilvl="3" w:tentative="1" w:tplc="0409000F">
+						<w:start w:val="1"/>
+						<w:numFmt w:val="decimal"/>
+						<w:lvlText w:val="%4."/>
+						<w:lvlJc w:val="left"/>
+						<w:pPr>
+							<w:ind w:hanging="420" w:left="2278"/>
+						</w:pPr>
+					</w:lvl>
+					<w:lvl w:ilvl="4" w:tentative="1" w:tplc="04090019">
+						<w:start w:val="1"/>
+						<w:numFmt w:val="lowerLetter"/>
+						<w:lvlText w:val="%5)"/>
+						<w:lvlJc w:val="left"/>
+						<w:pPr>
+							<w:ind w:hanging="420" w:left="2698"/>
+						</w:pPr>
+					</w:lvl>
+					<w:lvl w:ilvl="5" w:tentative="1" w:tplc="0409001B">
+						<w:start w:val="1"/>
+						<w:numFmt w:val="lowerRoman"/>
+						<w:lvlText w:val="%6."/>
+						<w:lvlJc w:val="right"/>
+						<w:pPr>
+							<w:ind w:hanging="420" w:left="3118"/>
+						</w:pPr>
+					</w:lvl>
+					<w:lvl w:ilvl="6" w:tentative="1" w:tplc="0409000F">
+						<w:start w:val="1"/>
+						<w:numFmt w:val="decimal"/>
+						<w:lvlText w:val="%7."/>
+						<w:lvlJc w:val="left"/>
+						<w:pPr>
+							<w:ind w:hanging="420" w:left="3538"/>
+						</w:pPr>
+					</w:lvl>
+					<w:lvl w:ilvl="7" w:tentative="1" w:tplc="04090019">
+						<w:start w:val="1"/>
+						<w:numFmt w:val="lowerLetter"/>
+						<w:lvlText w:val="%8)"/>
+						<w:lvlJc w:val="left"/>
+						<w:pPr>
+							<w:ind w:hanging="420" w:left="3958"/>
+						</w:pPr>
+					</w:lvl>
+					<w:lvl w:ilvl="8" w:tentative="1" w:tplc="0409001B">
+						<w:start w:val="1"/>
+						<w:numFmt w:val="lowerRoman"/>
+						<w:lvlText w:val="%9."/>
+						<w:lvlJc w:val="right"/>
+						<w:pPr>
+							<w:ind w:hanging="420" w:left="4378"/>
+						</w:pPr>
+					</w:lvl>
+				</w:abstractNum>
+				<w:abstractNum w:abstractNumId="7">
+					<w:nsid w:val="28417ACF"/>
+					<w:multiLevelType w:val="hybridMultilevel"/>
+					<w:tmpl w:val="C8BC8F82"/>
+					<w:lvl w:ilvl="0" w:tplc="34922146">
+						<w:start w:val="1"/>
+						<w:numFmt w:val="japaneseCounting"/>
+						<w:lvlText w:val="(%1)"/>
+						<w:lvlJc w:val="left"/>
+						<w:pPr>
+							<w:tabs>
+								<w:tab w:pos="720" w:val="num"/>
+							</w:tabs>
+							<w:ind w:hanging="720" w:left="720"/>
+						</w:pPr>
+					</w:lvl>
+					<w:lvl w:ilvl="1" w:tplc="04090019">
+						<w:start w:val="1"/>
+						<w:numFmt w:val="decimal"/>
+						<w:lvlText w:val="%2."/>
+						<w:lvlJc w:val="left"/>
+						<w:pPr>
+							<w:tabs>
+								<w:tab w:pos="1248" w:val="num"/>
+							</w:tabs>
+							<w:ind w:hanging="360" w:left="1248"/>
+						</w:pPr>
+					</w:lvl>
+					<w:lvl w:ilvl="2" w:tplc="0409001B">
+						<w:start w:val="1"/>
+						<w:numFmt w:val="decimal"/>
+						<w:lvlText w:val="%3."/>
+						<w:lvlJc w:val="left"/>
+						<w:pPr>
+							<w:tabs>
+								<w:tab w:pos="1968" w:val="num"/>
+							</w:tabs>
+							<w:ind w:hanging="360" w:left="1968"/>
+						</w:pPr>
+					</w:lvl>
+					<w:lvl w:ilvl="3" w:tplc="0409000F">
+						<w:start w:val="1"/>
+						<w:numFmt w:val="decimal"/>
+						<w:lvlText w:val="%4."/>
+						<w:lvlJc w:val="left"/>
+						<w:pPr>
+							<w:tabs>
+								<w:tab w:pos="2688" w:val="num"/>
+							</w:tabs>
+							<w:ind w:hanging="360" w:left="2688"/>
+						</w:pPr>
+					</w:lvl>
+					<w:lvl w:ilvl="4" w:tplc="04090019">
+						<w:start w:val="1"/>
+						<w:numFmt w:val="decimal"/>
+						<w:lvlText w:val="%5."/>
+						<w:lvlJc w:val="left"/>
+						<w:pPr>
+							<w:tabs>
+								<w:tab w:pos="3408" w:val="num"/>
+							</w:tabs>
+							<w:ind w:hanging="360" w:left="3408"/>
+						</w:pPr>
+					</w:lvl>
+					<w:lvl w:ilvl="5" w:tplc="0409001B">
+						<w:start w:val="1"/>
+						<w:numFmt w:val="decimal"/>
+						<w:lvlText w:val="%6."/>
+						<w:lvlJc w:val="left"/>
+						<w:pPr>
+							<w:tabs>
+								<w:tab w:pos="4128" w:val="num"/>
+							</w:tabs>
+							<w:ind w:hanging="360" w:left="4128"/>
+						</w:pPr>
+					</w:lvl>
+					<w:lvl w:ilvl="6" w:tplc="0409000F">
+						<w:start w:val="1"/>
+						<w:numFmt w:val="decimal"/>
+						<w:lvlText w:val="%7."/>
+						<w:lvlJc w:val="left"/>
+						<w:pPr>
+							<w:tabs>
+								<w:tab w:pos="4848" w:val="num"/>
+							</w:tabs>
+							<w:ind w:hanging="360" w:left="4848"/>
+						</w:pPr>
+					</w:lvl>
+					<w:lvl w:ilvl="7" w:tplc="04090019">
+						<w:start w:val="1"/>
+						<w:numFmt w:val="decimal"/>
+						<w:lvlText w:val="%8."/>
+						<w:lvlJc w:val="left"/>
+						<w:pPr>
+							<w:tabs>
+								<w:tab w:pos="5568" w:val="num"/>
+							</w:tabs>
+							<w:ind w:hanging="360" w:left="5568"/>
+						</w:pPr>
+					</w:lvl>
+					<w:lvl w:ilvl="8" w:tplc="0409001B">
+						<w:start w:val="1"/>
+						<w:numFmt w:val="decimal"/>
+						<w:lvlText w:val="%9."/>
+						<w:lvlJc w:val="left"/>
+						<w:pPr>
+							<w:tabs>
+								<w:tab w:pos="6288" w:val="num"/>
+							</w:tabs>
+							<w:ind w:hanging="360" w:left="6288"/>
+						</w:pPr>
+					</w:lvl>
+				</w:abstractNum>
+				<w:abstractNum w:abstractNumId="8">
+					<w:nsid w:val="3B7F32BF"/>
+					<w:multiLevelType w:val="hybridMultilevel"/>
+					<w:tmpl w:val="AF12CBBE"/>
+					<w:lvl w:ilvl="0" w:tplc="86363766">
+						<w:start w:val="2"/>
+						<w:numFmt w:val="japaneseCounting"/>
+						<w:lvlText w:val="%1、"/>
+						<w:lvlJc w:val="left"/>
+						<w:pPr>
+							<w:ind w:hanging="420" w:left="1018"/>
+						</w:pPr>
+						<w:rPr>
+							<w:rFonts w:hint="default"/>
+						</w:rPr>
+					</w:lvl>
+					<w:lvl w:ilvl="1" w:tentative="1" w:tplc="04090019">
+						<w:start w:val="1"/>
+						<w:numFmt w:val="lowerLetter"/>
+						<w:lvlText w:val="%2)"/>
+						<w:lvlJc w:val="left"/>
+						<w:pPr>
+							<w:ind w:hanging="420" w:left="1438"/>
+						</w:pPr>
+					</w:lvl>
+					<w:lvl w:ilvl="2" w:tentative="1" w:tplc="0409001B">
+						<w:start w:val="1"/>
+						<w:numFmt w:val="lowerRoman"/>
+						<w:lvlText w:val="%3."/>
+						<w:lvlJc w:val="right"/>
+						<w:pPr>
+							<w:ind w:hanging="420" w:left="1858"/>
+						</w:pPr>
+					</w:lvl>
+					<w:lvl w:ilvl="3" w:tentative="1" w:tplc="0409000F">
+						<w:start w:val="1"/>
+						<w:numFmt w:val="decimal"/>
+						<w:lvlText w:val="%4."/>
+						<w:lvlJc w:val="left"/>
+						<w:pPr>
+							<w:ind w:hanging="420" w:left="2278"/>
+						</w:pPr>
+					</w:lvl>
+					<w:lvl w:ilvl="4" w:tentative="1" w:tplc="04090019">
+						<w:start w:val="1"/>
+						<w:numFmt w:val="lowerLetter"/>
+						<w:lvlText w:val="%5)"/>
+						<w:lvlJc w:val="left"/>
+						<w:pPr>
+							<w:ind w:hanging="420" w:left="2698"/>
+						</w:pPr>
+					</w:lvl>
+					<w:lvl w:ilvl="5" w:tentative="1" w:tplc="0409001B">
+						<w:start w:val="1"/>
+						<w:numFmt w:val="lowerRoman"/>
+						<w:lvlText w:val="%6."/>
+						<w:lvlJc w:val="right"/>
+						<w:pPr>
+							<w:ind w:hanging="420" w:left="3118"/>
+						</w:pPr>
+					</w:lvl>
+					<w:lvl w:ilvl="6" w:tentative="1" w:tplc="0409000F">
+						<w:start w:val="1"/>
+						<w:numFmt w:val="decimal"/>
+						<w:lvlText w:val="%7."/>
+						<w:lvlJc w:val="left"/>
+						<w:pPr>
+							<w:ind w:hanging="420" w:left="3538"/>
+						</w:pPr>
+					</w:lvl>
+					<w:lvl w:ilvl="7" w:tentative="1" w:tplc="04090019">
+						<w:start w:val="1"/>
+						<w:numFmt w:val="lowerLetter"/>
+						<w:lvlText w:val="%8)"/>
+						<w:lvlJc w:val="left"/>
+						<w:pPr>
+							<w:ind w:hanging="420" w:left="3958"/>
+						</w:pPr>
+					</w:lvl>
+					<w:lvl w:ilvl="8" w:tentative="1" w:tplc="0409001B">
+						<w:start w:val="1"/>
+						<w:numFmt w:val="lowerRoman"/>
+						<w:lvlText w:val="%9."/>
+						<w:lvlJc w:val="right"/>
+						<w:pPr>
+							<w:ind w:hanging="420" w:left="4378"/>
+						</w:pPr>
+					</w:lvl>
+				</w:abstractNum>
+				<w:abstractNum w:abstractNumId="9">
+					<w:nsid w:val="3E4A52E5"/>
+					<w:multiLevelType w:val="hybridMultilevel"/>
+					<w:tmpl w:val="48684CE4"/>
+					<w:lvl w:ilvl="0" w:tplc="1BAE2AB8">
+						<w:start w:val="1"/>
+						<w:numFmt w:val="upperLetter"/>
+						<w:lvlText w:val="%1."/>
+						<w:lvlJc w:val="left"/>
+						<w:pPr>
+							<w:ind w:hanging="360" w:left="780"/>
+						</w:pPr>
+						<w:rPr>
+							<w:rFonts w:hint="default"/>
+						</w:rPr>
+					</w:lvl>
+					<w:lvl w:ilvl="1" w:tentative="1" w:tplc="04090019">
+						<w:start w:val="1"/>
+						<w:numFmt w:val="lowerLetter"/>
+						<w:lvlText w:val="%2)"/>
+						<w:lvlJc w:val="left"/>
+						<w:pPr>
+							<w:ind w:hanging="420" w:left="1260"/>
+						</w:pPr>
+					</w:lvl>
+					<w:lvl w:ilvl="2" w:tentative="1" w:tplc="0409001B">
+						<w:start w:val="1"/>
+						<w:numFmt w:val="lowerRoman"/>
+						<w:lvlText w:val="%3."/>
+						<w:lvlJc w:val="right"/>
+						<w:pPr>
+							<w:ind w:hanging="420" w:left="1680"/>
+						</w:pPr>
+					</w:lvl>
+					<w:lvl w:ilvl="3" w:tentative="1" w:tplc="0409000F">
+						<w:start w:val="1"/>
+						<w:numFmt w:val="decimal"/>
+						<w:lvlText w:val="%4."/>
+						<w:lvlJc w:val="left"/>
+						<w:pPr>
+							<w:ind w:hanging="420" w:left="2100"/>
+						</w:pPr>
+					</w:lvl>
+					<w:lvl w:ilvl="4" w:tentative="1" w:tplc="04090019">
+						<w:start w:val="1"/>
+						<w:numFmt w:val="lowerLetter"/>
+						<w:lvlText w:val="%5)"/>
+						<w:lvlJc w:val="left"/>
+						<w:pPr>
+							<w:ind w:hanging="420" w:left="2520"/>
+						</w:pPr>
+					</w:lvl>
+					<w:lvl w:ilvl="5" w:tentative="1" w:tplc="0409001B">
+						<w:start w:val="1"/>
+						<w:numFmt w:val="lowerRoman"/>
+						<w:lvlText w:val="%6."/>
+						<w:lvlJc w:val="right"/>
+						<w:pPr>
+							<w:ind w:hanging="420" w:left="2940"/>
+						</w:pPr>
+					</w:lvl>
+					<w:lvl w:ilvl="6" w:tentative="1" w:tplc="0409000F">
+						<w:start w:val="1"/>
+						<w:numFmt w:val="decimal"/>
+						<w:lvlText w:val="%7."/>
+						<w:lvlJc w:val="left"/>
+						<w:pPr>
+							<w:ind w:hanging="420" w:left="3360"/>
+						</w:pPr>
+					</w:lvl>
+					<w:lvl w:ilvl="7" w:tentative="1" w:tplc="04090019">
+						<w:start w:val="1"/>
+						<w:numFmt w:val="lowerLetter"/>
+						<w:lvlText w:val="%8)"/>
+						<w:lvlJc w:val="left"/>
+						<w:pPr>
+							<w:ind w:hanging="420" w:left="3780"/>
+						</w:pPr>
+					</w:lvl>
+					<w:lvl w:ilvl="8" w:tentative="1" w:tplc="0409001B">
+						<w:start w:val="1"/>
+						<w:numFmt w:val="lowerRoman"/>
+						<w:lvlText w:val="%9."/>
+						<w:lvlJc w:val="right"/>
+						<w:pPr>
+							<w:ind w:hanging="420" w:left="4200"/>
+						</w:pPr>
+					</w:lvl>
+				</w:abstractNum>
+				<w:abstractNum w:abstractNumId="10">
+					<w:nsid w:val="41ED52A7"/>
+					<w:multiLevelType w:val="hybridMultilevel"/>
+					<w:tmpl w:val="3F480736"/>
+					<w:lvl w:ilvl="0" w:tplc="F9F83B52">
+						<w:start w:val="3"/>
+						<w:numFmt w:val="japaneseCounting"/>
+						<w:lvlText w:val="%1、"/>
+						<w:lvlJc w:val="left"/>
+						<w:pPr>
+							<w:ind w:hanging="432" w:left="1486"/>
+						</w:pPr>
+						<w:rPr>
+							<w:rFonts w:hint="default"/>
+						</w:rPr>
+					</w:lvl>
+					<w:lvl w:ilvl="1" w:tentative="1" w:tplc="04090019">
+						<w:start w:val="1"/>
+						<w:numFmt w:val="lowerLetter"/>
+						<w:lvlText w:val="%2)"/>
+						<w:lvlJc w:val="left"/>
+						<w:pPr>
+							<w:ind w:hanging="420" w:left="1894"/>
+						</w:pPr>
+					</w:lvl>
+					<w:lvl w:ilvl="2" w:tentative="1" w:tplc="0409001B">
+						<w:start w:val="1"/>
+						<w:numFmt w:val="lowerRoman"/>
+						<w:lvlText w:val="%3."/>
+						<w:lvlJc w:val="right"/>
+						<w:pPr>
+							<w:ind w:hanging="420" w:left="2314"/>
+						</w:pPr>
+					</w:lvl>
+					<w:lvl w:ilvl="3" w:tentative="1" w:tplc="0409000F">
+						<w:start w:val="1"/>
+						<w:numFmt w:val="decimal"/>
+						<w:lvlText w:val="%4."/>
+						<w:lvlJc w:val="left"/>
+						<w:pPr>
+							<w:ind w:hanging="420" w:left="2734"/>
+						</w:pPr>
+					</w:lvl>
+					<w:lvl w:ilvl="4" w:tentative="1" w:tplc="04090019">
+						<w:start w:val="1"/>
+						<w:numFmt w:val="lowerLetter"/>
+						<w:lvlText w:val="%5)"/>
+						<w:lvlJc w:val="left"/>
+						<w:pPr>
+							<w:ind w:hanging="420" w:left="3154"/>
+						</w:pPr>
+					</w:lvl>
+					<w:lvl w:ilvl="5" w:tentative="1" w:tplc="0409001B">
+						<w:start w:val="1"/>
+						<w:numFmt w:val="lowerRoman"/>
+						<w:lvlText w:val="%6."/>
+						<w:lvlJc w:val="right"/>
+						<w:pPr>
+							<w:ind w:hanging="420" w:left="3574"/>
+						</w:pPr>
+					</w:lvl>
+					<w:lvl w:ilvl="6" w:tentative="1" w:tplc="0409000F">
+						<w:start w:val="1"/>
+						<w:numFmt w:val="decimal"/>
+						<w:lvlText w:val="%7."/>
+						<w:lvlJc w:val="left"/>
+						<w:pPr>
+							<w:ind w:hanging="420" w:left="3994"/>
+						</w:pPr>
+					</w:lvl>
+					<w:lvl w:ilvl="7" w:tentative="1" w:tplc="04090019">
+						<w:start w:val="1"/>
+						<w:numFmt w:val="lowerLetter"/>
+						<w:lvlText w:val="%8)"/>
+						<w:lvlJc w:val="left"/>
+						<w:pPr>
+							<w:ind w:hanging="420" w:left="4414"/>
+						</w:pPr>
+					</w:lvl>
+					<w:lvl w:ilvl="8" w:tentative="1" w:tplc="0409001B">
+						<w:start w:val="1"/>
+						<w:numFmt w:val="lowerRoman"/>
+						<w:lvlText w:val="%9."/>
+						<w:lvlJc w:val="right"/>
+						<w:pPr>
+							<w:ind w:hanging="420" w:left="4834"/>
+						</w:pPr>
+					</w:lvl>
+				</w:abstractNum>
+				<w:abstractNum w:abstractNumId="11">
+					<w:nsid w:val="47445126"/>
+					<w:multiLevelType w:val="hybridMultilevel"/>
+					<w:tmpl w:val="A0B2366C"/>
+					<w:lvl w:ilvl="0" w:tplc="5406C7EA">
+						<w:start w:val="1"/>
+						<w:numFmt w:val="japaneseCounting"/>
+						<w:lvlText w:val="%1、"/>
+						<w:lvlJc w:val="left"/>
+						<w:pPr>
+							<w:ind w:hanging="456" w:left="456"/>
+						</w:pPr>
+						<w:rPr>
+							<w:rFonts w:hint="default"/>
+							<w:lang w:val="en-US"/>
+						</w:rPr>
+					</w:lvl>
+					<w:lvl w:ilvl="1" w:tentative="1" w:tplc="04090019">
+						<w:start w:val="1"/>
+						<w:numFmt w:val="lowerLetter"/>
+						<w:lvlText w:val="%2)"/>
+						<w:lvlJc w:val="left"/>
+						<w:pPr>
+							<w:ind w:hanging="420" w:left="840"/>
+						</w:pPr>
+					</w:lvl>
+					<w:lvl w:ilvl="2" w:tentative="1" w:tplc="0409001B">
+						<w:start w:val="1"/>
+						<w:numFmt w:val="lowerRoman"/>
+						<w:lvlText w:val="%3."/>
+						<w:lvlJc w:val="right"/>
+						<w:pPr>
+							<w:ind w:hanging="420" w:left="1260"/>
+						</w:pPr>
+					</w:lvl>
+					<w:lvl w:ilvl="3" w:tentative="1" w:tplc="0409000F">
+						<w:start w:val="1"/>
+						<w:numFmt w:val="decimal"/>
+						<w:lvlText w:val="%4."/>
+						<w:lvlJc w:val="left"/>
+						<w:pPr>
+							<w:ind w:hanging="420" w:left="1680"/>
+						</w:pPr>
+					</w:lvl>
+					<w:lvl w:ilvl="4" w:tentative="1" w:tplc="04090019">
+						<w:start w:val="1"/>
+						<w:numFmt w:val="lowerLetter"/>
+						<w:lvlText w:val="%5)"/>
+						<w:lvlJc w:val="left"/>
+						<w:pPr>
+							<w:ind w:hanging="420" w:left="2100"/>
+						</w:pPr>
+					</w:lvl>
+					<w:lvl w:ilvl="5" w:tentative="1" w:tplc="0409001B">
+						<w:start w:val="1"/>
+						<w:numFmt w:val="lowerRoman"/>
+						<w:lvlText w:val="%6."/>
+						<w:lvlJc w:val="right"/>
+						<w:pPr>
+							<w:ind w:hanging="420" w:left="2520"/>
+						</w:pPr>
+					</w:lvl>
+					<w:lvl w:ilvl="6" w:tentative="1" w:tplc="0409000F">
+						<w:start w:val="1"/>
+						<w:numFmt w:val="decimal"/>
+						<w:lvlText w:val="%7."/>
+						<w:lvlJc w:val="left"/>
+						<w:pPr>
+							<w:ind w:hanging="420" w:left="2940"/>
+						</w:pPr>
+					</w:lvl>
+					<w:lvl w:ilvl="7" w:tentative="1" w:tplc="04090019">
+						<w:start w:val="1"/>
+						<w:numFmt w:val="lowerLetter"/>
+						<w:lvlText w:val="%8)"/>
+						<w:lvlJc w:val="left"/>
+						<w:pPr>
+							<w:ind w:hanging="420" w:left="3360"/>
+						</w:pPr>
+					</w:lvl>
+					<w:lvl w:ilvl="8" w:tentative="1" w:tplc="0409001B">
+						<w:start w:val="1"/>
+						<w:numFmt w:val="lowerRoman"/>
+						<w:lvlText w:val="%9."/>
+						<w:lvlJc w:val="right"/>
+						<w:pPr>
+							<w:ind w:hanging="420" w:left="3780"/>
+						</w:pPr>
+					</w:lvl>
+				</w:abstractNum>
+				<w:abstractNum w:abstractNumId="12">
+					<w:nsid w:val="4B4270F7"/>
+					<w:multiLevelType w:val="hybridMultilevel"/>
+					<w:tmpl w:val="24FAE628"/>
+					<w:lvl w:ilvl="0" w:tplc="8C0626B4">
+						<w:start w:val="1"/>
+						<w:numFmt w:val="japaneseCounting"/>
+						<w:lvlText w:val="%1、"/>
+						<w:lvlJc w:val="left"/>
+						<w:pPr>
+							<w:ind w:hanging="456" w:left="598"/>
+						</w:pPr>
+						<w:rPr>
+							<w:rFonts w:hint="default"/>
+						</w:rPr>
+					</w:lvl>
+					<w:lvl w:ilvl="1" w:tentative="1" w:tplc="04090019">
+						<w:start w:val="1"/>
+						<w:numFmt w:val="lowerLetter"/>
+						<w:lvlText w:val="%2)"/>
+						<w:lvlJc w:val="left"/>
+						<w:pPr>
+							<w:ind w:hanging="420" w:left="840"/>
+						</w:pPr>
+					</w:lvl>
+					<w:lvl w:ilvl="2" w:tentative="1" w:tplc="0409001B">
+						<w:start w:val="1"/>
+						<w:numFmt w:val="lowerRoman"/>
+						<w:lvlText w:val="%3."/>
+						<w:lvlJc w:val="right"/>
+						<w:pPr>
+							<w:ind w:hanging="420" w:left="1260"/>
+						</w:pPr>
+					</w:lvl>
+					<w:lvl w:ilvl="3" w:tentative="1" w:tplc="0409000F">
+						<w:start w:val="1"/>
+						<w:numFmt w:val="decimal"/>
+						<w:lvlText w:val="%4."/>
+						<w:lvlJc w:val="left"/>
+						<w:pPr>
+							<w:ind w:hanging="420" w:left="1680"/>
+						</w:pPr>
+					</w:lvl>
+					<w:lvl w:ilvl="4" w:tentative="1" w:tplc="04090019">
+						<w:start w:val="1"/>
+						<w:numFmt w:val="lowerLetter"/>
+						<w:lvlText w:val="%5)"/>
+						<w:lvlJc w:val="left"/>
+						<w:pPr>
+							<w:ind w:hanging="420" w:left="2100"/>
+						</w:pPr>
+					</w:lvl>
+					<w:lvl w:ilvl="5" w:tentative="1" w:tplc="0409001B">
+						<w:start w:val="1"/>
+						<w:numFmt w:val="lowerRoman"/>
+						<w:lvlText w:val="%6."/>
+						<w:lvlJc w:val="right"/>
+						<w:pPr>
+							<w:ind w:hanging="420" w:left="2520"/>
+						</w:pPr>
+					</w:lvl>
+					<w:lvl w:ilvl="6" w:tentative="1" w:tplc="0409000F">
+						<w:start w:val="1"/>
+						<w:numFmt w:val="decimal"/>
+						<w:lvlText w:val="%7."/>
+						<w:lvlJc w:val="left"/>
+						<w:pPr>
+							<w:ind w:hanging="420" w:left="2940"/>
+						</w:pPr>
+					</w:lvl>
+					<w:lvl w:ilvl="7" w:tentative="1" w:tplc="04090019">
+						<w:start w:val="1"/>
+						<w:numFmt w:val="lowerLetter"/>
+						<w:lvlText w:val="%8)"/>
+						<w:lvlJc w:val="left"/>
+						<w:pPr>
+							<w:ind w:hanging="420" w:left="3360"/>
+						</w:pPr>
+					</w:lvl>
+					<w:lvl w:ilvl="8" w:tentative="1" w:tplc="0409001B">
+						<w:start w:val="1"/>
+						<w:numFmt w:val="lowerRoman"/>
+						<w:lvlText w:val="%9."/>
+						<w:lvlJc w:val="right"/>
+						<w:pPr>
+							<w:ind w:hanging="420" w:left="3780"/>
+						</w:pPr>
+					</w:lvl>
+				</w:abstractNum>
+				<w:abstractNum w:abstractNumId="13">
+					<w:nsid w:val="4C1E62C7"/>
+					<w:multiLevelType w:val="hybridMultilevel"/>
+					<w:tmpl w:val="D17645AE"/>
+					<w:lvl w:ilvl="0" w:tplc="A2FE6240">
+						<w:start w:val="3"/>
+						<w:numFmt w:val="japaneseCounting"/>
+						<w:lvlText w:val="%1、"/>
+						<w:lvlJc w:val="left"/>
+						<w:pPr>
+							<w:ind w:hanging="456" w:left="1054"/>
+						</w:pPr>
+						<w:rPr>
+							<w:rFonts w:hint="default"/>
+						</w:rPr>
+					</w:lvl>
+					<w:lvl w:ilvl="1" w:tentative="1" w:tplc="04090019">
+						<w:start w:val="1"/>
+						<w:numFmt w:val="lowerLetter"/>
+						<w:lvlText w:val="%2)"/>
+						<w:lvlJc w:val="left"/>
+						<w:pPr>
+							<w:ind w:hanging="420" w:left="1438"/>
+						</w:pPr>
+					</w:lvl>
+					<w:lvl w:ilvl="2" w:tentative="1" w:tplc="0409001B">
+						<w:start w:val="1"/>
+						<w:numFmt w:val="lowerRoman"/>
+						<w:lvlText w:val="%3."/>
+						<w:lvlJc w:val="right"/>
+						<w:pPr>
+							<w:ind w:hanging="420" w:left="1858"/>
+						</w:pPr>
+					</w:lvl>
+					<w:lvl w:ilvl="3" w:tentative="1" w:tplc="0409000F">
+						<w:start w:val="1"/>
+						<w:numFmt w:val="decimal"/>
+						<w:lvlText w:val="%4."/>
+						<w:lvlJc w:val="left"/>
+						<w:pPr>
+							<w:ind w:hanging="420" w:left="2278"/>
+						</w:pPr>
+					</w:lvl>
+					<w:lvl w:ilvl="4" w:tentative="1" w:tplc="04090019">
+						<w:start w:val="1"/>
+						<w:numFmt w:val="lowerLetter"/>
+						<w:lvlText w:val="%5)"/>
+						<w:lvlJc w:val="left"/>
+						<w:pPr>
+							<w:ind w:hanging="420" w:left="2698"/>
+						</w:pPr>
+					</w:lvl>
+					<w:lvl w:ilvl="5" w:tentative="1" w:tplc="0409001B">
+						<w:start w:val="1"/>
+						<w:numFmt w:val="lowerRoman"/>
+						<w:lvlText w:val="%6."/>
+						<w:lvlJc w:val="right"/>
+						<w:pPr>
+							<w:ind w:hanging="420" w:left="3118"/>
+						</w:pPr>
+					</w:lvl>
+					<w:lvl w:ilvl="6" w:tentative="1" w:tplc="0409000F">
+						<w:start w:val="1"/>
+						<w:numFmt w:val="decimal"/>
+						<w:lvlText w:val="%7."/>
+						<w:lvlJc w:val="left"/>
+						<w:pPr>
+							<w:ind w:hanging="420" w:left="3538"/>
+						</w:pPr>
+					</w:lvl>
+					<w:lvl w:ilvl="7" w:tentative="1" w:tplc="04090019">
+						<w:start w:val="1"/>
+						<w:numFmt w:val="lowerLetter"/>
+						<w:lvlText w:val="%8)"/>
+						<w:lvlJc w:val="left"/>
+						<w:pPr>
+							<w:ind w:hanging="420" w:left="3958"/>
+						</w:pPr>
+					</w:lvl>
+					<w:lvl w:ilvl="8" w:tentative="1" w:tplc="0409001B">
+						<w:start w:val="1"/>
+						<w:numFmt w:val="lowerRoman"/>
+						<w:lvlText w:val="%9."/>
+						<w:lvlJc w:val="right"/>
+						<w:pPr>
+							<w:ind w:hanging="420" w:left="4378"/>
+						</w:pPr>
+					</w:lvl>
+				</w:abstractNum>
+				<w:abstractNum w:abstractNumId="14">
+					<w:nsid w:val="5D4023F1"/>
+					<w:multiLevelType w:val="hybridMultilevel"/>
+					<w:tmpl w:val="8BDE2A18"/>
+					<w:lvl w:ilvl="0" w:tplc="3006B55E">
+						<w:start w:val="1"/>
+						<w:numFmt w:val="japaneseCounting"/>
+						<w:lvlText w:val="%1、"/>
+						<w:lvlJc w:val="left"/>
+						<w:pPr>
+							<w:ind w:hanging="456" w:left="1054"/>
+						</w:pPr>
+						<w:rPr>
+							<w:rFonts w:hint="default"/>
+						</w:rPr>
+					</w:lvl>
+					<w:lvl w:ilvl="1" w:tentative="1" w:tplc="04090019">
+						<w:start w:val="1"/>
+						<w:numFmt w:val="lowerLetter"/>
+						<w:lvlText w:val="%2)"/>
+						<w:lvlJc w:val="left"/>
+						<w:pPr>
+							<w:ind w:hanging="420" w:left="1438"/>
+						</w:pPr>
+					</w:lvl>
+					<w:lvl w:ilvl="2" w:tentative="1" w:tplc="0409001B">
+						<w:start w:val="1"/>
+						<w:numFmt w:val="lowerRoman"/>
+						<w:lvlText w:val="%3."/>
+						<w:lvlJc w:val="right"/>
+						<w:pPr>
+							<w:ind w:hanging="420" w:left="1858"/>
+						</w:pPr>
+					</w:lvl>
+					<w:lvl w:ilvl="3" w:tentative="1" w:tplc="0409000F">
+						<w:start w:val="1"/>
+						<w:numFmt w:val="decimal"/>
+						<w:lvlText w:val="%4."/>
+						<w:lvlJc w:val="left"/>
+						<w:pPr>
+							<w:ind w:hanging="420" w:left="2278"/>
+						</w:pPr>
+					</w:lvl>
+					<w:lvl w:ilvl="4" w:tentative="1" w:tplc="04090019">
+						<w:start w:val="1"/>
+						<w:numFmt w:val="lowerLetter"/>
+						<w:lvlText w:val="%5)"/>
+						<w:lvlJc w:val="left"/>
+						<w:pPr>
+							<w:ind w:hanging="420" w:left="2698"/>
+						</w:pPr>
+					</w:lvl>
+					<w:lvl w:ilvl="5" w:tentative="1" w:tplc="0409001B">
+						<w:start w:val="1"/>
+						<w:numFmt w:val="lowerRoman"/>
+						<w:lvlText w:val="%6."/>
+						<w:lvlJc w:val="right"/>
+						<w:pPr>
+							<w:ind w:hanging="420" w:left="3118"/>
+						</w:pPr>
+					</w:lvl>
+					<w:lvl w:ilvl="6" w:tentative="1" w:tplc="0409000F">
+						<w:start w:val="1"/>
+						<w:numFmt w:val="decimal"/>
+						<w:lvlText w:val="%7."/>
+						<w:lvlJc w:val="left"/>
+						<w:pPr>
+							<w:ind w:hanging="420" w:left="3538"/>
+						</w:pPr>
+					</w:lvl>
+					<w:lvl w:ilvl="7" w:tentative="1" w:tplc="04090019">
+						<w:start w:val="1"/>
+						<w:numFmt w:val="lowerLetter"/>
+						<w:lvlText w:val="%8)"/>
+						<w:lvlJc w:val="left"/>
+						<w:pPr>
+							<w:ind w:hanging="420" w:left="3958"/>
+						</w:pPr>
+					</w:lvl>
+					<w:lvl w:ilvl="8" w:tentative="1" w:tplc="0409001B">
+						<w:start w:val="1"/>
+						<w:numFmt w:val="lowerRoman"/>
+						<w:lvlText w:val="%9."/>
+						<w:lvlJc w:val="right"/>
+						<w:pPr>
+							<w:ind w:hanging="420" w:left="4378"/>
+						</w:pPr>
+					</w:lvl>
+				</w:abstractNum>
+				<w:abstractNum w:abstractNumId="15">
+					<w:nsid w:val="7A3B7293"/>
+					<w:multiLevelType w:val="hybridMultilevel"/>
+					<w:tmpl w:val="A32E9C5C"/>
+					<w:lvl w:ilvl="0" w:tplc="4C8299D4">
+						<w:start w:val="1"/>
+						<w:numFmt w:val="japaneseCounting"/>
+						<w:lvlText w:val="(%1)"/>
+						<w:lvlJc w:val="left"/>
+						<w:pPr>
+							<w:tabs>
+								<w:tab w:pos="1620" w:val="num"/>
+							</w:tabs>
+							<w:ind w:hanging="720" w:left="1620"/>
+						</w:pPr>
+						<w:rPr>
+							<w:rFonts w:hint="eastAsia"/>
+						</w:rPr>
+					</w:lvl>
+					<w:lvl w:ilvl="1" w:tplc="F8405D5E">
+						<w:start w:val="1"/>
+						<w:numFmt w:val="decimal"/>
+						<w:lvlText w:val="(%2)"/>
+						<w:lvlJc w:val="left"/>
+						<w:pPr>
+							<w:tabs>
+								<w:tab w:pos="720" w:val="num"/>
+							</w:tabs>
+							<w:ind w:hanging="720" w:left="720"/>
+						</w:pPr>
+						<w:rPr>
+							<w:rFonts w:hint="eastAsia"/>
+						</w:rPr>
+					</w:lvl>
+					<w:lvl w:ilvl="2" w:tentative="1" w:tplc="0409001B">
+						<w:start w:val="1"/>
+						<w:numFmt w:val="lowerRoman"/>
+						<w:lvlText w:val="%3."/>
+						<w:lvlJc w:val="right"/>
+						<w:pPr>
+							<w:tabs>
+								<w:tab w:pos="1260" w:val="num"/>
+							</w:tabs>
+							<w:ind w:hanging="420" w:left="1260"/>
+						</w:pPr>
+					</w:lvl>
+					<w:lvl w:ilvl="3" w:tentative="1" w:tplc="0409000F">
+						<w:start w:val="1"/>
+						<w:numFmt w:val="decimal"/>
+						<w:lvlText w:val="%4."/>
+						<w:lvlJc w:val="left"/>
+						<w:pPr>
+							<w:tabs>
+								<w:tab w:pos="1680" w:val="num"/>
+							</w:tabs>
+							<w:ind w:hanging="420" w:left="1680"/>
+						</w:pPr>
+					</w:lvl>
+					<w:lvl w:ilvl="4" w:tentative="1" w:tplc="04090019">
+						<w:start w:val="1"/>
+						<w:numFmt w:val="lowerLetter"/>
+						<w:lvlText w:val="%5)"/>
+						<w:lvlJc w:val="left"/>
+						<w:pPr>
+							<w:tabs>
+								<w:tab w:pos="2100" w:val="num"/>
+							</w:tabs>
+							<w:ind w:hanging="420" w:left="2100"/>
+						</w:pPr>
+					</w:lvl>
+					<w:lvl w:ilvl="5" w:tentative="1" w:tplc="0409001B">
+						<w:start w:val="1"/>
+						<w:numFmt w:val="lowerRoman"/>
+						<w:lvlText w:val="%6."/>
+						<w:lvlJc w:val="right"/>
+						<w:pPr>
+							<w:tabs>
+								<w:tab w:pos="2520" w:val="num"/>
+							</w:tabs>
+							<w:ind w:hanging="420" w:left="2520"/>
+						</w:pPr>
+					</w:lvl>
+					<w:lvl w:ilvl="6" w:tentative="1" w:tplc="0409000F">
+						<w:start w:val="1"/>
+						<w:numFmt w:val="decimal"/>
+						<w:lvlText w:val="%7."/>
+						<w:lvlJc w:val="left"/>
+						<w:pPr>
+							<w:tabs>
+								<w:tab w:pos="2940" w:val="num"/>
+							</w:tabs>
+							<w:ind w:hanging="420" w:left="2940"/>
+						</w:pPr>
+					</w:lvl>
+					<w:lvl w:ilvl="7" w:tentative="1" w:tplc="04090019">
+						<w:start w:val="1"/>
+						<w:numFmt w:val="lowerLetter"/>
+						<w:lvlText w:val="%8)"/>
+						<w:lvlJc w:val="left"/>
+						<w:pPr>
+							<w:tabs>
+								<w:tab w:pos="3360" w:val="num"/>
+							</w:tabs>
+							<w:ind w:hanging="420" w:left="3360"/>
+						</w:pPr>
+					</w:lvl>
+					<w:lvl w:ilvl="8" w:tentative="1" w:tplc="0409001B">
+						<w:start w:val="1"/>
+						<w:numFmt w:val="lowerRoman"/>
+						<w:lvlText w:val="%9."/>
+						<w:lvlJc w:val="right"/>
+						<w:pPr>
+							<w:tabs>
+								<w:tab w:pos="3780" w:val="num"/>
+							</w:tabs>
+							<w:ind w:hanging="420" w:left="3780"/>
+						</w:pPr>
+					</w:lvl>
+				</w:abstractNum>
+				<w:abstractNum w:abstractNumId="16">
+					<w:nsid w:val="7AF01177"/>
+					<w:multiLevelType w:val="hybridMultilevel"/>
+					<w:tmpl w:val="995AA33A"/>
+					<w:lvl w:ilvl="0" w:tplc="B330B920">
+						<w:start w:val="2"/>
+						<w:numFmt w:val="japaneseCounting"/>
+						<w:lvlText w:val="%1、"/>
+						<w:lvlJc w:val="left"/>
+						<w:pPr>
+							<w:ind w:hanging="420" w:left="1438"/>
+						</w:pPr>
+						<w:rPr>
+							<w:rFonts w:hint="default"/>
+						</w:rPr>
+					</w:lvl>
+					<w:lvl w:ilvl="1" w:tentative="1" w:tplc="04090019">
+						<w:start w:val="1"/>
+						<w:numFmt w:val="lowerLetter"/>
+						<w:lvlText w:val="%2)"/>
+						<w:lvlJc w:val="left"/>
+						<w:pPr>
+							<w:ind w:hanging="420" w:left="1858"/>
+						</w:pPr>
+					</w:lvl>
+					<w:lvl w:ilvl="2" w:tentative="1" w:tplc="0409001B">
+						<w:start w:val="1"/>
+						<w:numFmt w:val="lowerRoman"/>
+						<w:lvlText w:val="%3."/>
+						<w:lvlJc w:val="right"/>
+						<w:pPr>
+							<w:ind w:hanging="420" w:left="2278"/>
+						</w:pPr>
+					</w:lvl>
+					<w:lvl w:ilvl="3" w:tentative="1" w:tplc="0409000F">
+						<w:start w:val="1"/>
+						<w:numFmt w:val="decimal"/>
+						<w:lvlText w:val="%4."/>
+						<w:lvlJc w:val="left"/>
+						<w:pPr>
+							<w:ind w:hanging="420" w:left="2698"/>
+						</w:pPr>
+					</w:lvl>
+					<w:lvl w:ilvl="4" w:tentative="1" w:tplc="04090019">
+						<w:start w:val="1"/>
+						<w:numFmt w:val="lowerLetter"/>
+						<w:lvlText w:val="%5)"/>
+						<w:lvlJc w:val="left"/>
+						<w:pPr>
+							<w:ind w:hanging="420" w:left="3118"/>
+						</w:pPr>
+					</w:lvl>
+					<w:lvl w:ilvl="5" w:tentative="1" w:tplc="0409001B">
+						<w:start w:val="1"/>
+						<w:numFmt w:val="lowerRoman"/>
+						<w:lvlText w:val="%6."/>
+						<w:lvlJc w:val="right"/>
+						<w:pPr>
+							<w:ind w:hanging="420" w:left="3538"/>
+						</w:pPr>
+					</w:lvl>
+					<w:lvl w:ilvl="6" w:tentative="1" w:tplc="0409000F">
+						<w:start w:val="1"/>
+						<w:numFmt w:val="decimal"/>
+						<w:lvlText w:val="%7."/>
+						<w:lvlJc w:val="left"/>
+						<w:pPr>
+							<w:ind w:hanging="420" w:left="3958"/>
+						</w:pPr>
+					</w:lvl>
+					<w:lvl w:ilvl="7" w:tentative="1" w:tplc="04090019">
+						<w:start w:val="1"/>
+						<w:numFmt w:val="lowerLetter"/>
+						<w:lvlText w:val="%8)"/>
+						<w:lvlJc w:val="left"/>
+						<w:pPr>
+							<w:ind w:hanging="420" w:left="4378"/>
+						</w:pPr>
+					</w:lvl>
+					<w:lvl w:ilvl="8" w:tentative="1" w:tplc="0409001B">
+						<w:start w:val="1"/>
+						<w:numFmt w:val="lowerRoman"/>
+						<w:lvlText w:val="%9."/>
+						<w:lvlJc w:val="right"/>
+						<w:pPr>
+							<w:ind w:hanging="420" w:left="4798"/>
+						</w:pPr>
+					</w:lvl>
+				</w:abstractNum>
+				<w:abstractNum w:abstractNumId="17">
+					<w:nsid w:val="7BA06C7E"/>
+					<w:multiLevelType w:val="hybridMultilevel"/>
+					<w:tmpl w:val="E6BEA64C"/>
+					<w:lvl w:ilvl="0" w:tplc="C3B2F75A">
+						<w:start w:val="1"/>
+						<w:numFmt w:val="japaneseCounting"/>
+						<w:lvlText w:val="%1、"/>
+						<w:lvlJc w:val="left"/>
+						<w:pPr>
+							<w:ind w:hanging="456" w:left="456"/>
+						</w:pPr>
+						<w:rPr>
+							<w:rFonts w:hint="default"/>
+						</w:rPr>
+					</w:lvl>
+					<w:lvl w:ilvl="1" w:tentative="1" w:tplc="04090019">
+						<w:start w:val="1"/>
+						<w:numFmt w:val="lowerLetter"/>
+						<w:lvlText w:val="%2)"/>
+						<w:lvlJc w:val="left"/>
+						<w:pPr>
+							<w:ind w:hanging="420" w:left="840"/>
+						</w:pPr>
+					</w:lvl>
+					<w:lvl w:ilvl="2" w:tentative="1" w:tplc="0409001B">
+						<w:start w:val="1"/>
+						<w:numFmt w:val="lowerRoman"/>
+						<w:lvlText w:val="%3."/>
+						<w:lvlJc w:val="right"/>
+						<w:pPr>
+							<w:ind w:hanging="420" w:left="1260"/>
+						</w:pPr>
+					</w:lvl>
+					<w:lvl w:ilvl="3" w:tentative="1" w:tplc="0409000F">
+						<w:start w:val="1"/>
+						<w:numFmt w:val="decimal"/>
+						<w:lvlText w:val="%4."/>
+						<w:lvlJc w:val="left"/>
+						<w:pPr>
+							<w:ind w:hanging="420" w:left="1680"/>
+						</w:pPr>
+					</w:lvl>
+					<w:lvl w:ilvl="4" w:tentative="1" w:tplc="04090019">
+						<w:start w:val="1"/>
+						<w:numFmt w:val="lowerLetter"/>
+						<w:lvlText w:val="%5)"/>
+						<w:lvlJc w:val="left"/>
+						<w:pPr>
+							<w:ind w:hanging="420" w:left="2100"/>
+						</w:pPr>
+					</w:lvl>
+					<w:lvl w:ilvl="5" w:tentative="1" w:tplc="0409001B">
+						<w:start w:val="1"/>
+						<w:numFmt w:val="lowerRoman"/>
+						<w:lvlText w:val="%6."/>
+						<w:lvlJc w:val="right"/>
+						<w:pPr>
+							<w:ind w:hanging="420" w:left="2520"/>
+						</w:pPr>
+					</w:lvl>
+					<w:lvl w:ilvl="6" w:tentative="1" w:tplc="0409000F">
+						<w:start w:val="1"/>
+						<w:numFmt w:val="decimal"/>
+						<w:lvlText w:val="%7."/>
+						<w:lvlJc w:val="left"/>
+						<w:pPr>
+							<w:ind w:hanging="420" w:left="2940"/>
+						</w:pPr>
+					</w:lvl>
+					<w:lvl w:ilvl="7" w:tentative="1" w:tplc="04090019">
+						<w:start w:val="1"/>
+						<w:numFmt w:val="lowerLetter"/>
+						<w:lvlText w:val="%8)"/>
+						<w:lvlJc w:val="left"/>
+						<w:pPr>
+							<w:ind w:hanging="420" w:left="3360"/>
+						</w:pPr>
+					</w:lvl>
+					<w:lvl w:ilvl="8" w:tentative="1" w:tplc="0409001B">
+						<w:start w:val="1"/>
+						<w:numFmt w:val="lowerRoman"/>
+						<w:lvlText w:val="%9."/>
+						<w:lvlJc w:val="right"/>
+						<w:pPr>
+							<w:ind w:hanging="420" w:left="3780"/>
+						</w:pPr>
+					</w:lvl>
+				</w:abstractNum>
+				<w:num w:numId="1">
+					<w:abstractNumId w:val="2"/>
+				</w:num>
+				<w:num w:numId="2">
+					<w:abstractNumId w:val="15"/>
+				</w:num>
+				<w:num w:numId="3">
+					<w:abstractNumId w:val="7"/>
+					<w:lvlOverride w:ilvl="0">
+						<w:startOverride w:val="1"/>
+					</w:lvlOverride>
+					<w:lvlOverride w:ilvl="1">
+						<w:startOverride w:val="1"/>
+					</w:lvlOverride>
+					<w:lvlOverride w:ilvl="2">
+						<w:startOverride w:val="1"/>
+					</w:lvlOverride>
+					<w:lvlOverride w:ilvl="3">
+						<w:startOverride w:val="1"/>
+					</w:lvlOverride>
+					<w:lvlOverride w:ilvl="4">
+						<w:startOverride w:val="1"/>
+					</w:lvlOverride>
+					<w:lvlOverride w:ilvl="5">
+						<w:startOverride w:val="1"/>
+					</w:lvlOverride>
+					<w:lvlOverride w:ilvl="6">
+						<w:startOverride w:val="1"/>
+					</w:lvlOverride>
+					<w:lvlOverride w:ilvl="7">
+						<w:startOverride w:val="1"/>
+					</w:lvlOverride>
+					<w:lvlOverride w:ilvl="8">
+						<w:startOverride w:val="1"/>
+					</w:lvlOverride>
+				</w:num>
+				<w:num w:numId="4">
+					<w:abstractNumId w:val="3"/>
+				</w:num>
+				<w:num w:numId="5">
+					<w:abstractNumId w:val="9"/>
+				</w:num>
+				<w:num w:numId="6">
+					<w:abstractNumId w:val="17"/>
+				</w:num>
+				<w:num w:numId="7">
+					<w:abstractNumId w:val="11"/>
+				</w:num>
+				<w:num w:numId="8">
+					<w:abstractNumId w:val="0"/>
+				</w:num>
+				<w:num w:numId="9">
+					<w:abstractNumId w:val="12"/>
+				</w:num>
+				<w:num w:numId="10">
+					<w:abstractNumId w:val="1"/>
+					<w:lvlOverride w:ilvl="0">
+						<w:startOverride w:val="1"/>
+					</w:lvlOverride>
+					<w:lvlOverride w:ilvl="1">
+						<w:startOverride w:val="1"/>
+					</w:lvlOverride>
+					<w:lvlOverride w:ilvl="2">
+						<w:startOverride w:val="1"/>
+					</w:lvlOverride>
+					<w:lvlOverride w:ilvl="3">
+						<w:startOverride w:val="1"/>
+					</w:lvlOverride>
+					<w:lvlOverride w:ilvl="4">
+						<w:startOverride w:val="1"/>
+					</w:lvlOverride>
+					<w:lvlOverride w:ilvl="5">
+						<w:startOverride w:val="1"/>
+					</w:lvlOverride>
+					<w:lvlOverride w:ilvl="6">
+						<w:startOverride w:val="1"/>
+					</w:lvlOverride>
+					<w:lvlOverride w:ilvl="7">
+						<w:startOverride w:val="1"/>
+					</w:lvlOverride>
+					<w:lvlOverride w:ilvl="8">
+						<w:startOverride w:val="1"/>
+					</w:lvlOverride>
+				</w:num>
+				<w:num w:numId="11">
+					<w:abstractNumId w:val="4"/>
+				</w:num>
+				<w:num w:numId="12">
+					<w:abstractNumId w:val="5"/>
+				</w:num>
+				<w:num w:numId="13">
+					<w:abstractNumId w:val="14"/>
+				</w:num>
+				<w:num w:numId="14">
+					<w:abstractNumId w:val="6"/>
+				</w:num>
+				<w:num w:numId="15">
+					<w:abstractNumId w:val="8"/>
+				</w:num>
+				<w:num w:numId="16">
+					<w:abstractNumId w:val="16"/>
+				</w:num>
+				<w:num w:numId="17">
+					<w:abstractNumId w:val="13"/>
+				</w:num>
+				<w:num w:numId="18">
+					<w:abstractNumId w:val="10"/>
+				</w:num>
+			</w:numbering>
+		</pkg:xmlData>
+	</pkg:part>
+	<pkg:part pkg:contentType="application/vnd.openxmlformats-package.relationships+xml" pkg:name="/customXml/_rels/item1.xml.rels" pkg:padding="256">
+		<pkg:xmlData>
+			<Relationships xmlns="http://schemas.openxmlformats.org/package/2006/relationships">
+				<Relationship Id="rId1" Target="itemProps1.xml" Type="http://schemas.openxmlformats.org/officeDocument/2006/relationships/customXmlProps"/>
+			</Relationships>
+		</pkg:xmlData>
+	</pkg:part>
+	<pkg:part pkg:contentType="application/vnd.openxmlformats-officedocument.customXmlProperties+xml" pkg:name="/customXml/itemProps1.xml" pkg:padding="32">
+		<pkg:xmlData pkg:originalXmlStandalone="no">
+			<ds:datastoreItem ds:itemID="{C601F546-F657-40EF-BBA2-F86F623C1AAA}" xmlns:ds="http://schemas.openxmlformats.org/officeDocument/2006/customXml">
+				<ds:schemaRefs>
+					<ds:schemaRef ds:uri="http://schemas.openxmlformats.org/officeDocument/2006/bibliography"/>
+				</ds:schemaRefs>
+			</ds:datastoreItem>
+		</pkg:xmlData>
+	</pkg:part>
+	<pkg:part pkg:contentType="application/vnd.openxmlformats-officedocument.wordprocessingml.fontTable+xml" pkg:name="/word/fontTable.xml">
+		<pkg:xmlData>
+			<w:fonts mc:Ignorable="w14" xmlns:mc="http://schemas.openxmlformats.org/markup-compatibility/2006" xmlns:r="http://schemas.openxmlformats.org/officeDocument/2006/relationships" xmlns:w="http://schemas.openxmlformats.org/wordprocessingml/2006/main" xmlns:w14="http://schemas.microsoft.com/office/word/2010/wordml">
+				<w:font w:name="Times New Roman">
+					<w:panose1 w:val="02020603050405020304"/>
+					<w:charset w:val="00"/>
+					<w:family w:val="roman"/>
+					<w:pitch w:val="variable"/>
+					<w:sig w:csb0="000001FF" w:csb1="00000000" w:usb0="E0002EFF" w:usb1="C000785B" w:usb2="00000009" w:usb3="00000000"/>
+				</w:font>
+				<w:font w:name="宋体">
+					<w:altName w:val="SimSun"/>
+					<w:panose1 w:val="02010600030101010101"/>
+					<w:charset w:val="86"/>
+					<w:family w:val="auto"/>
+					<w:pitch w:val="variable"/>
+					<w:sig w:csb0="00040001" w:csb1="00000000" w:usb0="00000003" w:usb1="288F0000" w:usb2="00000016" w:usb3="00000000"/>
+				</w:font>
+				<w:font w:name="Cambria">
+					<w:panose1 w:val="02040503050406030204"/>
+					<w:charset w:val="00"/>
+					<w:family w:val="roman"/>
+					<w:pitch w:val="variable"/>
+					<w:sig w:csb0="0000019F" w:csb1="00000000" w:usb0="E00002FF" w:usb1="400004FF" w:usb2="00000000" w:usb3="00000000"/>
+				</w:font>
+				<w:font w:name="Calibri">
+					<w:panose1 w:val="020F0502020204030204"/>
+					<w:charset w:val="00"/>
+					<w:family w:val="swiss"/>
+					<w:pitch w:val="variable"/>
+					<w:sig w:csb0="000001FF" w:csb1="00000000" w:usb0="E0002AFF" w:usb1="C000247B" w:usb2="00000009" w:usb3="00000000"/>
+				</w:font>
+				<w:font w:name="黑体">
+					<w:altName w:val="SimHei"/>
+					<w:panose1 w:val="02010609060101010101"/>
+					<w:charset w:val="86"/>
+					<w:family w:val="modern"/>
+					<w:pitch w:val="fixed"/>
+					<w:sig w:csb0="00040001" w:csb1="00000000" w:usb0="800002BF" w:usb1="38CF7CFA" w:usb2="00000016" w:usb3="00000000"/>
+				</w:font>
+			</w:fonts>
+		</pkg:xmlData>
+	</pkg:part>
+	<pkg:part pkg:contentType="application/vnd.openxmlformats-package.core-properties+xml" pkg:name="/docProps/core.xml" pkg:padding="256">
+		<pkg:xmlData>
+			<cp:coreProperties xmlns:cp="http://schemas.openxmlformats.org/package/2006/metadata/core-properties" xmlns:dc="http://purl.org/dc/elements/1.1/" xmlns:dcmitype="http://purl.org/dc/dcmitype/" xmlns:dcterms="http://purl.org/dc/terms/" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance">
+				<dc:title>陕西师范大学网络教育考卷</dc:title>
+				<dc:creator>ThinkPad</dc:creator>
+				<cp:lastModifiedBy>chenken</cp:lastModifiedBy>
+				<cp:revision>2</cp:revision>
+				<cp:lastPrinted>2015-05-19T08:52:00Z</cp:lastPrinted>
+				<dcterms:created xsi:type="dcterms:W3CDTF">2017-07-07T02:54:00Z</dcterms:created>
+				<dcterms:modified xsi:type="dcterms:W3CDTF">2017-07-07T02:54:00Z</dcterms:modified>
+			</cp:coreProperties>
+		</pkg:xmlData>
+	</pkg:part>
+	<pkg:part pkg:contentType="application/xml" pkg:name="/customXml/item1.xml" pkg:padding="32">
+		<pkg:xmlData>
+			<b:Sources SelectedStyle="\APA.XSL" StyleName="APA Fifth Edition" xmlns="http://schemas.openxmlformats.org/officeDocument/2006/bibliography" xmlns:b="http://schemas.openxmlformats.org/officeDocument/2006/bibliography"/>
+		</pkg:xmlData>
+	</pkg:part>
+	<pkg:part pkg:contentType="application/vnd.openxmlformats-officedocument.wordprocessingml.webSettings+xml" pkg:name="/word/webSettings.xml">
+		<pkg:xmlData>
+			<w:webSettings mc:Ignorable="w14" xmlns:mc="http://schemas.openxmlformats.org/markup-compatibility/2006" xmlns:r="http://schemas.openxmlformats.org/officeDocument/2006/relationships" xmlns:w="http://schemas.openxmlformats.org/wordprocessingml/2006/main" xmlns:w14="http://schemas.microsoft.com/office/word/2010/wordml">
+				<w:divs>
+					<w:div w:id="455612022">
+						<w:bodyDiv w:val="1"/>
+						<w:marLeft w:val="0"/>
+						<w:marRight w:val="0"/>
+						<w:marTop w:val="0"/>
+						<w:marBottom w:val="0"/>
+						<w:divBdr>
+							<w:top w:color="auto" w:space="0" w:sz="0" w:val="none"/>
+							<w:left w:color="auto" w:space="0" w:sz="0" w:val="none"/>
+							<w:bottom w:color="auto" w:space="0" w:sz="0" w:val="none"/>
+							<w:right w:color="auto" w:space="0" w:sz="0" w:val="none"/>
+						</w:divBdr>
+						<w:divsChild>
+							<w:div w:id="844171662">
+								<w:marLeft w:val="0"/>
+								<w:marRight w:val="0"/>
+								<w:marTop w:val="0"/>
+								<w:marBottom w:val="0"/>
+								<w:divBdr>
+									<w:top w:color="auto" w:space="0" w:sz="0" w:val="none"/>
+									<w:left w:color="auto" w:space="0" w:sz="0" w:val="none"/>
+									<w:bottom w:color="auto" w:space="0" w:sz="0" w:val="none"/>
+									<w:right w:color="auto" w:space="0" w:sz="0" w:val="none"/>
+								</w:divBdr>
+							</w:div>
+						</w:divsChild>
+					</w:div>
+				</w:divs>
+				<w:optimizeForBrowser/>
+				<w:targetScreenSz w:val="800x600"/>
+			</w:webSettings>
+		</pkg:xmlData>
+	</pkg:part>
+	<pkg:part pkg:contentType="application/vnd.openxmlformats-officedocument.extended-properties+xml" pkg:name="/docProps/app.xml" pkg:padding="256">
+		<pkg:xmlData>
+			<Properties xmlns="http://schemas.openxmlformats.org/officeDocument/2006/extended-properties" xmlns:vt="http://schemas.openxmlformats.org/officeDocument/2006/docPropsVTypes">
+				<Template>Normal.dotm</Template>
+				<TotalTime>0</TotalTime>
+				<Pages>1</Pages>
+				<Words>80</Words>
+				<Characters>460</Characters>
+				<Application>Microsoft Office Word</Application>
+				<DocSecurity>0</DocSecurity>
+				<Lines>3</Lines>
+				<Paragraphs>1</Paragraphs>
+				<ScaleCrop>false</ScaleCrop>
+				<Company>Microsoft</Company>
+				<LinksUpToDate>false</LinksUpToDate>
+				<CharactersWithSpaces>539</CharactersWithSpaces>
+				<SharedDoc>false</SharedDoc>
+				<HyperlinksChanged>false</HyperlinksChanged>
+				<AppVersion>14.0000</AppVersion>
+			</Properties>
+		</pkg:xmlData>
+	</pkg:part>
+</pkg:package>

Diff do ficheiro suprimidas por serem muito extensas
+ 3952 - 0
cqb-comm-utils/src/main/resources/sddx_answer_template.ftl


+ 5009 - 0
cqb-comm-utils/src/main/resources/sddx_paper_template.ftl

@@ -0,0 +1,5009 @@
+<?xml version="1.0" encoding="UTF-8" standalone="yes"?>
+<?mso-application progid="Word.Document"?>
+<pkg:package xmlns:pkg="http://schemas.microsoft.com/office/2006/xmlPackage">
+	<pkg:part pkg:contentType="application/vnd.openxmlformats-package.relationships+xml" pkg:name="/_rels/.rels" pkg:padding="512">
+		<pkg:xmlData>
+			<Relationships xmlns="http://schemas.openxmlformats.org/package/2006/relationships">
+				<Relationship Id="rId3" Target="docProps/app.xml" Type="http://schemas.openxmlformats.org/officeDocument/2006/relationships/extended-properties"/>
+				<Relationship Id="rId2" Target="docProps/core.xml" Type="http://schemas.openxmlformats.org/package/2006/relationships/metadata/core-properties"/>
+				<Relationship Id="rId1" Target="word/document.xml" Type="http://schemas.openxmlformats.org/officeDocument/2006/relationships/officeDocument"/>
+			</Relationships>
+		</pkg:xmlData>
+	</pkg:part>
+	<pkg:part pkg:contentType="application/vnd.openxmlformats-package.relationships+xml" pkg:name="/word/_rels/document.xml.rels" pkg:padding="256">
+		<pkg:xmlData>
+			<Relationships xmlns="http://schemas.openxmlformats.org/package/2006/relationships">
+				<Relationship Id="rId8" Target="footer1.xml" Type="http://schemas.openxmlformats.org/officeDocument/2006/relationships/footer"/>
+				<Relationship Id="rId3" Target="styles.xml" Type="http://schemas.openxmlformats.org/officeDocument/2006/relationships/styles"/>
+				<Relationship Id="rId7" Target="endnotes.xml" Type="http://schemas.openxmlformats.org/officeDocument/2006/relationships/endnotes"/>
+				<Relationship Id="rId2" Target="numbering.xml" Type="http://schemas.openxmlformats.org/officeDocument/2006/relationships/numbering"/>
+				<Relationship Id="rId1" Target="../customXml/item1.xml" Type="http://schemas.openxmlformats.org/officeDocument/2006/relationships/customXml"/>
+				<Relationship Id="rId6" Target="footnotes.xml" Type="http://schemas.openxmlformats.org/officeDocument/2006/relationships/footnotes"/>
+				<Relationship Id="rId11" Target="theme/theme1.xml" Type="http://schemas.openxmlformats.org/officeDocument/2006/relationships/theme"/>
+				<Relationship Id="rId5" Target="webSettings.xml" Type="http://schemas.openxmlformats.org/officeDocument/2006/relationships/webSettings"/>
+				<Relationship Id="rId10" Target="fontTable.xml" Type="http://schemas.openxmlformats.org/officeDocument/2006/relationships/fontTable"/>
+				<Relationship Id="rId4" Target="settings.xml" Type="http://schemas.openxmlformats.org/officeDocument/2006/relationships/settings"/>
+				<Relationship Id="rId9" Target="footer2.xml" Type="http://schemas.openxmlformats.org/officeDocument/2006/relationships/footer"/>
+			</Relationships>
+		</pkg:xmlData>
+	</pkg:part>
+	<pkg:part pkg:contentType="application/vnd.openxmlformats-officedocument.wordprocessingml.document.main+xml" pkg:name="/word/document.xml">
+		<pkg:xmlData>
+			<w:document mc:Ignorable="w14 wp14" xmlns:m="http://schemas.openxmlformats.org/officeDocument/2006/math" xmlns:mc="http://schemas.openxmlformats.org/markup-compatibility/2006" xmlns:o="urn:schemas-microsoft-com:office:office" xmlns:r="http://schemas.openxmlformats.org/officeDocument/2006/relationships" xmlns:v="urn:schemas-microsoft-com:vml" xmlns:w="http://schemas.openxmlformats.org/wordprocessingml/2006/main" xmlns:w10="urn:schemas-microsoft-com:office:word" xmlns:w14="http://schemas.microsoft.com/office/word/2010/wordml" xmlns:wne="http://schemas.microsoft.com/office/word/2006/wordml" xmlns:wp="http://schemas.openxmlformats.org/drawingml/2006/wordprocessingDrawing" xmlns:wp14="http://schemas.microsoft.com/office/word/2010/wordprocessingDrawing" xmlns:wpc="http://schemas.microsoft.com/office/word/2010/wordprocessingCanvas" xmlns:wpg="http://schemas.microsoft.com/office/word/2010/wordprocessingGroup" xmlns:wpi="http://schemas.microsoft.com/office/word/2010/wordprocessingInk" xmlns:wps="http://schemas.microsoft.com/office/word/2010/wordprocessingShape">
+				<w:body>
+					<w:p w:rsidP="00C0008F" w:rsidR="00C0008F" w:rsidRDefault="00C0008F" w:rsidRPr="00D948E2">
+						<w:pPr>
+							<w:rPr>
+								<w:rFonts w:ascii="宋体" w:hAnsi="宋体"/>
+								<w:b/>
+								<w:bCs/>
+								<w:color w:val="FF0000"/>
+								<w:sz w:val="28"/>
+								<w:szCs w:val="28"/>
+							</w:rPr>
+						</w:pPr>
+						<w:bookmarkStart w:id="0" w:name="_GoBack"/>
+						<w:bookmarkEnd w:id="0"/>
+					</w:p>
+					<w:p w:rsidP="001A2234" w:rsidR="001A2234" w:rsidRDefault="005E06FB" w:rsidRPr="001A2234">
+						<w:pPr>
+							<w:ind w:left="-567" w:leftChars="-270"/>
+							<w:jc w:val="center"/>
+							<w:rPr>
+								<w:rFonts w:eastAsia="黑体" w:hint="eastAsia"/>
+								<w:b/>
+								<w:bCs/>
+								<w:noProof/>
+								<w:sz w:val="44"/>
+								<w:szCs w:val="44"/>
+							</w:rPr>
+						</w:pPr>
+						<w:r w:rsidRPr="001A2234">
+							<w:rPr>
+								<w:rFonts w:eastAsia="黑体"/>
+								<w:b/>
+								<w:bCs/>
+								<w:noProof/>
+								<w:sz w:val="44"/>
+								<w:szCs w:val="44"/>
+							</w:rPr>
+							<w:pict>
+								<v:shapetype coordsize="21600,21600" id="_x0000_t202" o:spt="202" path="m,l,21600r21600,l21600,xe">
+									<v:stroke joinstyle="miter"/>
+									<v:path gradientshapeok="t" o:connecttype="rect"/>
+								</v:shapetype>
+								<v:shape id="_x0000_s1254" stroked="f" style="position:absolute;left:0;text-align:left;margin-left:-63pt;margin-top:-39pt;width:81pt;height:803.4pt;z-index:1" type="#_x0000_t202">
+									<v:textbox style="layout-flow:vertical;mso-layout-flow-alt:bottom-to-top;mso-next-textbox:#_x0000_s1254">
+										<w:txbxContent>
+											<w:p w:rsidP="005E06FB" w:rsidR="005E06FB" w:rsidRDefault="005E06FB">
+												<w:pPr>
+													<w:spacing w:line="360" w:lineRule="auto"/>
+													<w:jc w:val="center"/>
+													<w:rPr>
+														<w:rFonts w:hint="eastAsia"/>
+														<w:sz w:val="24"/>
+													</w:rPr>
+												</w:pPr>
+												<w:r>
+													<w:rPr>
+														<w:rFonts w:hint="eastAsia"/>
+														<w:sz w:val="24"/>
+													</w:rPr>
+													<w:t>姓名</w:t>
+												</w:r>
+												<w:r>
+													<w:rPr>
+														<w:rFonts w:hint="eastAsia"/>
+														<w:sz w:val="24"/>
+													</w:rPr>
+													<w:t xml:space="preserve">__________________ </w:t>
+												</w:r>
+												<w:r>
+													<w:rPr>
+														<w:rFonts w:hint="eastAsia"/>
+														<w:sz w:val="24"/>
+													</w:rPr>
+													<w:t>专业名称</w:t>
+												</w:r>
+												<w:r>
+													<w:rPr>
+														<w:rFonts w:hint="eastAsia"/>
+														<w:sz w:val="24"/>
+													</w:rPr>
+													<w:t>__________________</w:t>
+												</w:r>
+												<w:r>
+													<w:rPr>
+														<w:rFonts w:hint="eastAsia"/>
+														<w:sz w:val="24"/>
+													</w:rPr>
+													<w:t xml:space="preserve">  班号</w:t>
+												</w:r>
+												<w:r>
+													<w:rPr>
+														<w:rFonts w:hint="eastAsia"/>
+														<w:sz w:val="24"/>
+													</w:rPr>
+													<w:t>________________</w:t>
+												</w:r>
+												<w:r>
+													<w:rPr>
+														<w:rFonts w:hint="eastAsia"/>
+														<w:sz w:val="24"/>
+													</w:rPr>
+													<w:t>学号</w:t>
+												</w:r>
+												<w:r>
+													<w:rPr>
+														<w:rFonts w:hint="eastAsia"/>
+														<w:sz w:val="24"/>
+													</w:rPr>
+													<w:t>__________________</w:t>
+												</w:r>
+												<w:r>
+													<w:rPr>
+														<w:rFonts w:hint="eastAsia"/>
+														<w:sz w:val="24"/>
+													</w:rPr>
+													<w:t>学习中心</w:t>
+												</w:r>
+												<w:r>
+													<w:rPr>
+														<w:rFonts w:hint="eastAsia"/>
+														<w:sz w:val="24"/>
+													</w:rPr>
+													<w:t>_________________</w:t>
+												</w:r>
+											</w:p>
+											<w:p w:rsidP="005E06FB" w:rsidR="005E06FB" w:rsidRDefault="005E06FB">
+												<w:pPr>
+													<w:ind w:hanging="720" w:hangingChars="300" w:left="720"/>
+													<w:jc w:val="center"/>
+												</w:pPr>
+												<w:r>
+													<w:rPr>
+														<w:sz w:val="24"/>
+													</w:rPr>
+													<w:t>……………………</w:t>
+												</w:r>
+												<w:r>
+													<w:rPr>
+														<w:rFonts w:hint="eastAsia"/>
+														<w:sz w:val="24"/>
+													</w:rPr>
+													<w:t xml:space="preserve"/>
+												</w:r>
+												<w:r>
+													<w:rPr>
+														<w:sz w:val="24"/>
+													</w:rPr>
+													<w:t>……</w:t>
+												</w:r>
+												<w:r>
+													<w:rPr>
+														<w:rFonts w:hint="eastAsia"/>
+														<w:sz w:val="24"/>
+													</w:rPr>
+													<w:t xml:space="preserve"/>
+												</w:r>
+												<w:r>
+													<w:rPr>
+														<w:sz w:val="24"/>
+													</w:rPr>
+													<w:t>…</w:t>
+												</w:r>
+												<w:r>
+													<w:rPr>
+														<w:rFonts w:hint="eastAsia"/>
+														<w:sz w:val="24"/>
+													</w:rPr>
+													<w:t xml:space="preserve"/>
+												</w:r>
+												<w:r>
+													<w:rPr>
+														<w:sz w:val="24"/>
+													</w:rPr>
+													<w:t>…</w:t>
+												</w:r>
+												<w:r>
+													<w:rPr>
+														<w:rFonts w:hint="eastAsia"/>
+														<w:sz w:val="24"/>
+													</w:rPr>
+													<w:t xml:space="preserve"/>
+												</w:r>
+												<w:r>
+													<w:rPr>
+														<w:sz w:val="24"/>
+													</w:rPr>
+													<w:t>…</w:t>
+												</w:r>
+												<w:r>
+													<w:rPr>
+														<w:rFonts w:hint="eastAsia"/>
+														<w:sz w:val="24"/>
+													</w:rPr>
+													<w:t xml:space="preserve"/>
+												</w:r>
+												<w:r>
+													<w:rPr>
+														<w:sz w:val="24"/>
+													</w:rPr>
+													<w:t>…</w:t>
+												</w:r>
+												<w:r>
+													<w:rPr>
+														<w:rFonts w:hint="eastAsia"/>
+														<w:sz w:val="24"/>
+													</w:rPr>
+													<w:t xml:space="preserve"/>
+												</w:r>
+												<w:r>
+													<w:rPr>
+														<w:sz w:val="24"/>
+													</w:rPr>
+													<w:t>…</w:t>
+												</w:r>
+												<w:r>
+													<w:rPr>
+														<w:rFonts w:hint="eastAsia"/>
+														<w:sz w:val="24"/>
+													</w:rPr>
+													<w:t>密</w:t>
+												</w:r>
+												<w:r>
+													<w:rPr>
+														<w:sz w:val="24"/>
+													</w:rPr>
+													<w:t>…………………</w:t>
+												</w:r>
+												<w:r>
+													<w:rPr>
+														<w:rFonts w:hint="eastAsia"/>
+														<w:sz w:val="24"/>
+													</w:rPr>
+													<w:t xml:space="preserve"/>
+												</w:r>
+												<w:r>
+													<w:rPr>
+														<w:sz w:val="24"/>
+													</w:rPr>
+													<w:t>……</w:t>
+												</w:r>
+												<w:r>
+													<w:rPr>
+														<w:rFonts w:hint="eastAsia"/>
+														<w:sz w:val="24"/>
+													</w:rPr>
+													<w:t xml:space="preserve"/>
+												</w:r>
+												<w:r>
+													<w:rPr>
+														<w:sz w:val="24"/>
+													</w:rPr>
+													<w:t>…</w:t>
+												</w:r>
+												<w:r>
+													<w:rPr>
+														<w:rFonts w:hint="eastAsia"/>
+														<w:sz w:val="24"/>
+													</w:rPr>
+													<w:t xml:space="preserve"/>
+												</w:r>
+												<w:r>
+													<w:rPr>
+														<w:sz w:val="24"/>
+													</w:rPr>
+													<w:t>…</w:t>
+												</w:r>
+												<w:r>
+													<w:rPr>
+														<w:rFonts w:hint="eastAsia"/>
+														<w:sz w:val="24"/>
+													</w:rPr>
+													<w:t xml:space="preserve"/>
+												</w:r>
+												<w:r>
+													<w:rPr>
+														<w:sz w:val="24"/>
+													</w:rPr>
+													<w:t>…</w:t>
+												</w:r>
+												<w:r>
+													<w:rPr>
+														<w:rFonts w:hint="eastAsia"/>
+														<w:sz w:val="24"/>
+													</w:rPr>
+													<w:t xml:space="preserve"/>
+												</w:r>
+												<w:r>
+													<w:rPr>
+														<w:sz w:val="24"/>
+													</w:rPr>
+													<w:t>…</w:t>
+												</w:r>
+												<w:r>
+													<w:rPr>
+														<w:rFonts w:hint="eastAsia"/>
+														<w:sz w:val="24"/>
+													</w:rPr>
+													<w:t xml:space="preserve"/>
+												</w:r>
+												<w:r>
+													<w:rPr>
+														<w:sz w:val="24"/>
+													</w:rPr>
+													<w:t>……</w:t>
+												</w:r>
+												<w:r>
+													<w:rPr>
+														<w:rFonts w:hint="eastAsia"/>
+														<w:sz w:val="24"/>
+													</w:rPr>
+													<w:t>封</w:t>
+												</w:r>
+												<w:r>
+													<w:rPr>
+														<w:sz w:val="24"/>
+													</w:rPr>
+													<w:t>………………</w:t>
+												</w:r>
+												<w:r>
+													<w:rPr>
+														<w:rFonts w:hint="eastAsia"/>
+														<w:sz w:val="24"/>
+													</w:rPr>
+													<w:t xml:space="preserve"/>
+												</w:r>
+												<w:r>
+													<w:rPr>
+														<w:sz w:val="24"/>
+													</w:rPr>
+													<w:t>……</w:t>
+												</w:r>
+												<w:r>
+													<w:rPr>
+														<w:rFonts w:hint="eastAsia"/>
+														<w:sz w:val="24"/>
+													</w:rPr>
+													<w:t xml:space="preserve"/>
+												</w:r>
+												<w:r>
+													<w:rPr>
+														<w:sz w:val="24"/>
+													</w:rPr>
+													<w:t>…</w:t>
+												</w:r>
+												<w:r>
+													<w:rPr>
+														<w:rFonts w:hint="eastAsia"/>
+														<w:sz w:val="24"/>
+													</w:rPr>
+													<w:t xml:space="preserve"/>
+												</w:r>
+												<w:r>
+													<w:rPr>
+														<w:sz w:val="24"/>
+													</w:rPr>
+													<w:t>…</w:t>
+												</w:r>
+												<w:r>
+													<w:rPr>
+														<w:rFonts w:hint="eastAsia"/>
+														<w:sz w:val="24"/>
+													</w:rPr>
+													<w:t xml:space="preserve"/>
+												</w:r>
+												<w:r>
+													<w:rPr>
+														<w:sz w:val="24"/>
+													</w:rPr>
+													<w:t>…</w:t>
+												</w:r>
+												<w:r>
+													<w:rPr>
+														<w:rFonts w:hint="eastAsia"/>
+														<w:sz w:val="24"/>
+													</w:rPr>
+													<w:t>线</w:t>
+												</w:r>
+												<w:r>
+													<w:rPr>
+														<w:sz w:val="24"/>
+													</w:rPr>
+													<w:t>…</w:t>
+												</w:r>
+												<w:r>
+													<w:rPr>
+														<w:rFonts w:hint="eastAsia"/>
+														<w:sz w:val="24"/>
+													</w:rPr>
+													<w:t xml:space="preserve"/>
+												</w:r>
+												<w:r>
+													<w:rPr>
+														<w:sz w:val="24"/>
+													</w:rPr>
+													<w:t>…</w:t>
+												</w:r>
+												<w:r>
+													<w:rPr>
+														<w:rFonts w:hint="eastAsia"/>
+														<w:sz w:val="24"/>
+													</w:rPr>
+													<w:t xml:space="preserve"/>
+												</w:r>
+												<w:r>
+													<w:rPr>
+														<w:sz w:val="24"/>
+													</w:rPr>
+													<w:t>…</w:t>
+												</w:r>
+												<w:r>
+													<w:rPr>
+														<w:rFonts w:hint="eastAsia"/>
+														<w:sz w:val="24"/>
+													</w:rPr>
+													<w:t xml:space="preserve"/>
+												</w:r>
+												<w:r>
+													<w:rPr>
+														<w:sz w:val="24"/>
+													</w:rPr>
+													<w:t>……</w:t>
+												</w:r>
+												<w:r>
+													<w:rPr>
+														<w:rFonts w:hint="eastAsia"/>
+														<w:sz w:val="24"/>
+													</w:rPr>
+													<w:t xml:space="preserve"/>
+												</w:r>
+												<w:r>
+													<w:rPr>
+														<w:sz w:val="24"/>
+													</w:rPr>
+													<w:t>…</w:t>
+												</w:r>
+												<w:r>
+													<w:rPr>
+														<w:rFonts w:hint="eastAsia"/>
+														<w:sz w:val="24"/>
+													</w:rPr>
+													<w:t xml:space="preserve"/>
+												</w:r>
+												<w:r>
+													<w:rPr>
+														<w:sz w:val="24"/>
+													</w:rPr>
+													<w:t>…</w:t>
+												</w:r>
+												<w:r>
+													<w:rPr>
+														<w:rFonts w:hint="eastAsia"/>
+														<w:sz w:val="24"/>
+													</w:rPr>
+													<w:t xml:space="preserve"/>
+												</w:r>
+												<w:r>
+													<w:rPr>
+														<w:sz w:val="24"/>
+													</w:rPr>
+													<w:t>……………………</w:t>
+												</w:r>
+											</w:p>
+										</w:txbxContent>
+									</v:textbox>
+									<w10:wrap type="square"/>
+								</v:shape>
+							</w:pict>
+						</w:r>
+						<w:r w:rsidR="001A2234" w:rsidRPr="001A2234">
+							<w:rPr>
+								<w:rFonts w:eastAsia="黑体" w:hint="eastAsia"/>
+								<w:b/>
+								<w:bCs/>
+								<w:noProof/>
+								<w:sz w:val="44"/>
+								<w:szCs w:val="44"/>
+							</w:rPr>
+							<w:t>山东大学(网络教育)</w:t>
+						</w:r>
+					</w:p>
+					<w:p w:rsidP="001A2234" w:rsidR="00D948E2" w:rsidRDefault="001A2234" w:rsidRPr="001A2234">
+						<w:pPr>
+							<w:ind w:left="-567" w:leftChars="-270"/>
+							<w:jc w:val="center"/>
+							<w:rPr>
+								<w:rFonts w:eastAsia="黑体" w:hint="eastAsia"/>
+								<w:b/>
+								<w:bCs/>
+								<w:sz w:val="36"/>
+								<w:szCs w:val="36"/>
+							</w:rPr>
+						</w:pPr>
+						<w:r w:rsidRPr="001A2234">
+							<w:rPr>
+								<w:rFonts w:eastAsia="黑体" w:hint="eastAsia"/>
+								<w:b/>
+								<w:bCs/>
+								<w:noProof/>
+								<w:sz w:val="36"/>
+								<w:szCs w:val="36"/>
+							</w:rPr>
+							<w:t>课程考试</w:t>
+						</w:r>
+					</w:p>
+					<w:p w:rsidP="005E06FB" w:rsidR="001A2234" w:rsidRDefault="001A2234">
+						<w:pPr>
+							<w:spacing w:line="480" w:lineRule="auto"/>
+							<w:rPr>
+								<w:rFonts w:hint="eastAsia"/>
+								<w:b/>
+								<w:sz w:val="24"/>
+							</w:rPr>
+						</w:pPr>
+					</w:p>
+					<w:tbl>
+						<w:tblPr>
+							<w:tblW w:type="auto" w:w="0"/>
+							<w:tblLook w:firstColumn="1" w:firstRow="1" w:lastColumn="0" w:lastRow="0" w:noHBand="0" w:noVBand="1" w:val="04A0"/>
+						</w:tblPr>
+						<w:tblGrid>
+							<w:gridCol w:w="5495"/>
+							<w:gridCol w:w="3969"/>
+						</w:tblGrid>
+						<w:tr w:rsidR="001A2234" w:rsidRPr="003907C3" w:rsidTr="003907C3">
+							<w:tc>
+								<w:tcPr>
+									<w:tcW w:type="dxa" w:w="5495"/>
+								</w:tcPr>
+								<w:p w:rsidP="003907C3" w:rsidR="001A2234" w:rsidRDefault="001A2234" w:rsidRPr="003907C3">
+									<w:pPr>
+										<w:spacing w:line="480" w:lineRule="auto"/>
+										<w:rPr>
+											<w:rFonts w:hint="eastAsia"/>
+											<w:b/>
+											<w:sz w:val="24"/>
+										</w:rPr>
+									</w:pPr>
+									<w:r w:rsidRPr="003907C3">
+										<w:rPr>
+											<w:rFonts w:hint="eastAsia"/>
+											<w:b/>
+											<w:sz w:val="24"/>
+										</w:rPr>
+										<w:t>考试时间:</w:t>
+									</w:r>
+									<w:r w:rsidRPr="003907C3">
+										<w:rPr>
+											<w:rFonts w:hint="eastAsia"/>
+											<w:sz w:val="24"/>
+											<w:u w:val="single"/>
+										</w:rPr>
+										<w:t xml:space="preserve"/>
+									</w:r>
+									<w:r w:rsidRPr="003907C3">
+										<w:rPr>
+											<w:rFonts w:hint="eastAsia"/>
+											<w:b/>
+											<w:sz w:val="24"/>
+											<w:u w:val="single"/>
+										</w:rPr>
+										<w:t>90</w:t>
+									</w:r>
+									<w:r w:rsidRPr="003907C3">
+										<w:rPr>
+											<w:rFonts w:hint="eastAsia"/>
+											<w:b/>
+											<w:sz w:val="24"/>
+											<w:u w:val="single"/>
+										</w:rPr>
+										<w:t>分钟</w:t>
+									</w:r>
+									<w:r w:rsidRPr="003907C3">
+										<w:rPr>
+											<w:rFonts w:hint="eastAsia"/>
+											<w:sz w:val="24"/>
+											<w:u w:val="single"/>
+										</w:rPr>
+										<w:t xml:space="preserve"/>
+									</w:r>
+								</w:p>
+							</w:tc>
+							<w:tc>
+								<w:tcPr>
+									<w:tcW w:type="dxa" w:w="3969"/>
+								</w:tcPr>
+								<w:p w:rsidP="003907C3" w:rsidR="001A2234" w:rsidRDefault="001A2234" w:rsidRPr="003907C3">
+									<w:pPr>
+										<w:spacing w:line="480" w:lineRule="auto"/>
+										<w:rPr>
+											<w:rFonts w:hint="eastAsia"/>
+											<w:b/>
+											<w:sz w:val="24"/>
+										</w:rPr>
+									</w:pPr>
+									<w:r w:rsidRPr="003907C3">
+										<w:rPr>
+											<w:rFonts w:hint="eastAsia"/>
+											<w:b/>
+											<w:sz w:val="24"/>
+										</w:rPr>
+										<w:t>课程层次:</w:t>
+									</w:r>
+									<w:r w:rsidRPr="003907C3">
+										<w:rPr>
+											<w:rFonts w:hint="eastAsia"/>
+											<w:b/>
+											<w:sz w:val="24"/>
+											<w:u w:val="single"/>
+										</w:rPr>
+										<w:t xml:space="preserve"/>
+									</w:r>
+									<w:r w:rsidRPr="003907C3">
+										<w:rPr>
+											<w:rFonts w:ascii="宋体" w:hint="eastAsia"/>
+											<w:b/>
+											<w:color w:val="FF0000"/>
+											<w:sz w:val="24"/>
+											<w:u w:val="single"/>
+										</w:rPr>
+										<w:t>${paper.courseLevel}</w:t>
+									</w:r>
+									<w:r w:rsidRPr="003907C3">
+										<w:rPr>
+											<w:rFonts w:ascii="宋体" w:hint="eastAsia"/>
+											<w:b/>
+											<w:color w:val="000000"/>
+											<w:sz w:val="24"/>
+											<w:u w:val="single"/>
+										</w:rPr>
+										<w:t xml:space="preserve"/>
+									</w:r>
+									<w:r w:rsidRPr="003907C3">
+										<w:rPr>
+											<w:rFonts w:hint="eastAsia"/>
+											<w:b/>
+											<w:sz w:val="24"/>
+											<w:u w:val="single"/>
+										</w:rPr>
+										<w:t xml:space="preserve"/>
+									</w:r>
+								</w:p>
+							</w:tc>
+						</w:tr>
+						<w:tr w:rsidR="001A2234" w:rsidRPr="003907C3" w:rsidTr="003907C3">
+							<w:tc>
+								<w:tcPr>
+									<w:tcW w:type="dxa" w:w="5495"/>
+								</w:tcPr>
+								<w:p w:rsidP="003907C3" w:rsidR="001A2234" w:rsidRDefault="001A2234" w:rsidRPr="003907C3">
+									<w:pPr>
+										<w:spacing w:line="480" w:lineRule="auto"/>
+										<w:rPr>
+											<w:rFonts w:hint="eastAsia"/>
+											<w:b/>
+											<w:sz w:val="24"/>
+										</w:rPr>
+									</w:pPr>
+									<w:r w:rsidRPr="003907C3">
+										<w:rPr>
+											<w:rFonts w:hint="eastAsia"/>
+											<w:b/>
+											<w:sz w:val="24"/>
+										</w:rPr>
+										<w:t>课程名称:</w:t>
+									</w:r>
+									<w:r w:rsidRPr="003907C3">
+										<w:rPr>
+											<w:rFonts w:hint="eastAsia"/>
+											<w:b/>
+											<w:sz w:val="24"/>
+											<w:u w:val="single"/>
+										</w:rPr>
+										<w:t xml:space="preserve"/>
+									</w:r>
+									<w:r w:rsidRPr="003907C3">
+										<w:rPr>
+											<w:rFonts w:hint="eastAsia"/>
+											<w:b/>
+											<w:color w:val="FF0000"/>
+											<w:sz w:val="24"/>
+											<w:u w:val="single"/>
+										</w:rPr>
+										<w:t>${paper.courseName}</w:t>
+									</w:r>
+									<w:r w:rsidRPr="003907C3">
+										<w:rPr>
+											<w:rFonts w:ascii="宋体" w:hint="eastAsia"/>
+											<w:b/>
+											<w:color w:val="FF0000"/>
+											<w:sz w:val="24"/>
+											<w:u w:val="single"/>
+										</w:rPr>
+										<w:t xml:space="preserve"/>
+									</w:r>
+									<w:r w:rsidRPr="003907C3">
+										<w:rPr>
+											<w:rFonts w:ascii="宋体" w:hint="eastAsia"/>
+											<w:b/>
+											<w:color w:val="000000"/>
+											<w:sz w:val="24"/>
+											<w:u w:val="single"/>
+										</w:rPr>
+										<w:t xml:space="preserve"/>
+									</w:r>
+								</w:p>
+							</w:tc>
+							<w:tc>
+								<w:tcPr>
+									<w:tcW w:type="dxa" w:w="3969"/>
+								</w:tcPr>
+								<w:p w:rsidP="003907C3" w:rsidR="001A2234" w:rsidRDefault="001A2234" w:rsidRPr="003907C3">
+									<w:pPr>
+										<w:spacing w:line="480" w:lineRule="auto"/>
+										<w:rPr>
+											<w:rFonts w:hint="eastAsia"/>
+											<w:b/>
+											<w:sz w:val="24"/>
+										</w:rPr>
+									</w:pPr>
+									<w:r w:rsidRPr="003907C3">
+										<w:rPr>
+											<w:rFonts w:ascii="宋体" w:hint="eastAsia"/>
+											<w:b/>
+											<w:color w:val="000000"/>
+											<w:sz w:val="24"/>
+										</w:rPr>
+										<w:t>课程代码:</w:t>
+									</w:r>
+									<w:r w:rsidRPr="003907C3">
+										<w:rPr>
+											<w:rFonts w:ascii="宋体" w:hint="eastAsia"/>
+											<w:b/>
+											<w:color w:val="000000"/>
+											<w:sz w:val="24"/>
+											<w:u w:val="single"/>
+										</w:rPr>
+										<w:t xml:space="preserve"/>
+									</w:r>
+									<w:r w:rsidRPr="003907C3">
+										<w:rPr>
+											<w:rFonts w:ascii="宋体" w:hint="eastAsia"/>
+											<w:b/>
+											<w:color w:val="FF0000"/>
+											<w:sz w:val="24"/>
+											<w:u w:val="single"/>
+										</w:rPr>
+										<w:t>${paper.courseNo}</w:t>
+									</w:r>
+									<w:r w:rsidRPr="003907C3">
+										<w:rPr>
+											<w:rFonts w:ascii="宋体" w:hint="eastAsia"/>
+											<w:b/>
+											<w:color w:val="000000"/>
+											<w:sz w:val="24"/>
+											<w:u w:val="single"/>
+										</w:rPr>
+										<w:t xml:space="preserve"/>
+									</w:r>
+								</w:p>
+							</w:tc>
+						</w:tr>
+					</w:tbl>
+					<w:p w:rsidP="00E05F09" w:rsidR="00A600F0" w:rsidRDefault="00E05F09" w:rsidRPr="00A669E4">
+						<w:pPr>
+							<w:spacing w:line="480" w:lineRule="auto"/>
+							<w:rPr>
+								<w:rFonts w:ascii="宋体" w:hAnsi="宋体" w:hint="eastAsia"/>
+								<w:b/>
+								<w:bCs/>
+								<w:szCs w:val="21"/>
+							</w:rPr>
+						</w:pPr>
+						<w:r w:rsidRPr="00A669E4">
+							<w:rPr>
+								<w:rFonts w:ascii="宋体" w:hAnsi="宋体" w:hint="eastAsia"/>
+								<w:b/>
+								<w:bCs/>
+								<w:szCs w:val="21"/>
+							</w:rPr>
+							<w:t>本试卷分为两部分</w:t>
+						</w:r>
+						<w:r w:rsidR="00A600F0" w:rsidRPr="00A669E4">
+							<w:rPr>
+								<w:rFonts w:ascii="宋体" w:hAnsi="宋体" w:hint="eastAsia"/>
+								<w:b/>
+								<w:bCs/>
+								<w:szCs w:val="21"/>
+							</w:rPr>
+							<w:t>:</w:t>
+						</w:r>
+					</w:p>
+					<w:p w:rsidP="00E05F09" w:rsidR="005E06FB" w:rsidRDefault="005E06FB" w:rsidRPr="00A669E4">
+						<w:pPr>
+							<w:spacing w:line="480" w:lineRule="auto"/>
+							<w:rPr>
+								<w:rFonts w:ascii="黑体" w:eastAsia="黑体" w:hAnsi="宋体" w:hint="eastAsia"/>
+								<w:b/>
+								<w:bCs/>
+								<w:szCs w:val="21"/>
+							</w:rPr>
+						</w:pPr>
+						<w:r w:rsidRPr="00A669E4">
+							<w:rPr>
+								<w:rFonts w:ascii="宋体" w:hAnsi="宋体" w:hint="eastAsia"/>
+								<w:b/>
+								<w:szCs w:val="21"/>
+							</w:rPr>
+							<w:t>第一部分为客观题</w:t>
+						</w:r>
+						<w:r w:rsidR="00A600F0" w:rsidRPr="00A669E4">
+							<w:rPr>
+								<w:rFonts w:ascii="宋体" w:hAnsi="宋体" w:hint="eastAsia"/>
+								<w:b/>
+								<w:szCs w:val="21"/>
+							</w:rPr>
+							<w:t xml:space="preserve"/>
+						</w:r>
+						<w:r w:rsidRPr="00A669E4">
+							<w:rPr>
+								<w:rFonts w:ascii="宋体" w:hAnsi="宋体" w:hint="eastAsia"/>
+								<w:b/>
+								<w:szCs w:val="21"/>
+							</w:rPr>
+							<w:t>必须按试题顺序在“答题卡”上按要求填涂,答在试卷上的答案无效。</w:t>
+						</w:r>
+					</w:p>
+					<w:p w:rsidP="005E06FB" w:rsidR="005E06FB" w:rsidRDefault="005E06FB" w:rsidRPr="00A669E4">
+						<w:pPr>
+							<w:spacing w:line="480" w:lineRule="auto"/>
+							<w:rPr>
+								<w:rFonts w:ascii="黑体" w:eastAsia="黑体" w:hAnsi="宋体" w:hint="eastAsia"/>
+								<w:b/>
+								<w:bCs/>
+								<w:szCs w:val="21"/>
+							</w:rPr>
+						</w:pPr>
+						<w:r w:rsidRPr="00A669E4">
+							<w:rPr>
+								<w:rFonts w:ascii="宋体" w:hAnsi="宋体" w:hint="eastAsia"/>
+								<w:b/>
+								<w:szCs w:val="21"/>
+							</w:rPr>
+							<w:t>第二部分为主观题</w:t>
+						</w:r>
+						<w:r w:rsidR="00A600F0" w:rsidRPr="00A669E4">
+							<w:rPr>
+								<w:rFonts w:ascii="宋体" w:hAnsi="宋体" w:hint="eastAsia"/>
+								<w:b/>
+								<w:szCs w:val="21"/>
+							</w:rPr>
+							<w:t xml:space="preserve"/>
+						</w:r>
+						<w:r w:rsidRPr="00A669E4">
+							<w:rPr>
+								<w:rFonts w:ascii="宋体" w:hAnsi="宋体" w:hint="eastAsia"/>
+								<w:b/>
+								<w:szCs w:val="21"/>
+							</w:rPr>
+							<w:t>必须按试题顺序在“答题卡”上按要求作答,答在试卷上的答案无效。</w:t>
+						</w:r>
+					</w:p>
+					<w:p w:rsidP="000D249A" w:rsidR="00F3740E" w:rsidRDefault="00F3740E" w:rsidRPr="006E2D68">
+						<w:pPr>
+							<w:spacing w:line="400" w:lineRule="exact"/>
+							<w:ind w:firstLine="632" w:firstLineChars="300"/>
+							<w:rPr>
+								<w:rFonts w:ascii="宋体" w:hAnsi="宋体" w:hint="eastAsia"/>
+								<w:b/>
+								<w:szCs w:val="21"/>
+							</w:rPr>
+						</w:pPr>
+						<w:r w:rsidRPr="006E2D68">
+							<w:rPr>
+								<w:rFonts w:ascii="宋体" w:hAnsi="宋体" w:hint="eastAsia"/>
+								<w:b/>
+								<w:szCs w:val="21"/>
+							</w:rPr>
+							<w:t xml:space="preserve"/>
+						</w:r>
+						<w:r w:rsidR="004110E9" w:rsidRPr="006E2D68">
+							<w:rPr>
+								<w:rFonts w:ascii="宋体" w:hAnsi="宋体" w:hint="eastAsia"/>
+								<w:b/>
+								<w:szCs w:val="21"/>
+							</w:rPr>
+							<w:t xml:space="preserve"/>
+						</w:r>
+					</w:p>
+					<#if paper.objectiveScore != 0>
+					<w:p w:rsidP="004072CF" w:rsidR="00BC611E" w:rsidRDefault="00F3740E" w:rsidRPr="004072CF">
+						<w:pPr>
+							<w:spacing w:line="400" w:lineRule="exact"/>
+							<w:ind w:firstLine="2249" w:firstLineChars="800"/>
+							<w:rPr>
+								<w:rFonts w:ascii="宋体" w:hAnsi="宋体" w:hint="eastAsia"/>
+								<w:b/>
+								<w:sz w:val="28"/>
+								<w:szCs w:val="28"/>
+							</w:rPr>
+						</w:pPr>
+						<w:r w:rsidRPr="004072CF">
+							<w:rPr>
+								<w:rFonts w:ascii="宋体" w:hAnsi="宋体" w:hint="eastAsia"/>
+								<w:b/>
+								<w:sz w:val="28"/>
+								<w:szCs w:val="28"/>
+							</w:rPr>
+							<w:t>第一部分    客观题(</w:t>
+						</w:r>
+						<w:r w:rsidR="0007594E" w:rsidRPr="004072CF">
+							<w:rPr>
+								<w:rFonts w:ascii="宋体" w:hAnsi="宋体" w:hint="eastAsia"/>
+								<w:b/>
+								<w:sz w:val="28"/>
+								<w:szCs w:val="28"/>
+							</w:rPr>
+							<w:t>总分</w:t>
+						</w:r>
+						<w:r w:rsidR="001A590C">
+							<w:rPr>
+								<w:rFonts w:ascii="宋体" w:hAnsi="宋体" w:hint="eastAsia"/>
+								<w:b/>
+								<w:color w:val="FF0000"/>
+								<w:sz w:val="28"/>
+								<w:szCs w:val="28"/>
+							</w:rPr>
+							<w:t xml:space="preserve"/>
+						</w:r>
+						<w:r w:rsidR="004D3783">
+							<w:rPr>
+								<w:rFonts w:ascii="宋体" w:hAnsi="宋体" w:hint="eastAsia"/>
+								<w:b/>
+								<w:color w:val="FF0000"/>
+								<w:sz w:val="28"/>
+								<w:szCs w:val="28"/>
+							</w:rPr>
+							<w:t xml:space="preserve">${paper.objectiveScore} </w:t>
+						</w:r>
+						<w:r w:rsidRPr="004072CF">
+							<w:rPr>
+								<w:rFonts w:ascii="宋体" w:hAnsi="宋体" w:hint="eastAsia"/>
+								<w:b/>
+								<w:sz w:val="28"/>
+								<w:szCs w:val="28"/>
+							</w:rPr>
+							<w:t>分)</w:t>
+						</w:r>
+					</w:p>
+					</#if>
+					<w:p w:rsidP="00755E9E" w:rsidR="00017BD2" w:rsidRDefault="00017BD2" w:rsidRPr="006E2D68">
+						<w:pPr>
+							<w:spacing w:line="400" w:lineRule="exact"/>
+							<w:rPr>
+								<w:rFonts w:ascii="宋体" w:hAnsi="宋体" w:hint="eastAsia"/>
+								<w:b/>
+								<w:szCs w:val="21"/>
+							</w:rPr>
+						</w:pPr>
+					</w:p>
+					
+					<!--循环客观题-->
+				    <#if paper.objectiveDetails?exists>
+                    <#list paper.objectiveDetails as paperDetail>
+					<w:p w:rsidP="004D3783" w:rsidR="00687CD1" w:rsidRDefault="004D3783" w:rsidRPr="006E2D68">
+						<w:r>
+							<w:rPr>
+								<w:rFonts w:ascii="宋体" w:hAnsi="宋体" w:hint="eastAsia"/>
+								<w:b/>
+								<w:szCs w:val="21"/>
+							</w:rPr>
+							<w:t>${paperDetail.cnNum}</w:t>
+						</w:r>
+						 <w:r>
+							<w:rPr>
+								<w:rFonts w:ascii="宋体" w:hAnsi="宋体" w:hint="eastAsia"/>
+								<w:b/>
+								<w:szCs w:val="21"/>
+							</w:rPr>
+							<w:t>、</w:t>
+						</w:r>
+			            <w:r>
+							<w:rPr>
+								<w:rFonts w:ascii="宋体" w:hAnsi="宋体" w:hint="eastAsia"/>
+								<w:b/>
+								<w:szCs w:val="21"/>
+							</w:rPr>
+							<w:t>${paperDetail.name}</w:t>
+						</w:r>
+						<w:r>
+							<w:rPr>
+								<w:rFonts w:ascii="宋体" w:hAnsi="宋体" w:hint="eastAsia"/>
+								<w:b/>
+								<w:szCs w:val="21"/>
+							</w:rPr>
+							<w:t>${paperDetail.title}</w:t>
+						</w:r>
+					</w:p>
+				 <!--循环小题-->
+				    <#if paperDetail.paperDetailUnits?exists>
+                    <#list paperDetail.paperDetailUnits as paperDetailUnit>
+                        ${paperDetailUnit.question.quesBodyWord}
+                    <#if paperDetailUnit.question.subQuestions?exists>
+                    <#list paperDetailUnit.question.subQuestions as subQuestion>
+
+                        ${subQuestion.quesBodyWord}
+
+                        <#if subQuestion.quesOptions?exists>
+                        <#list subQuestion.quesOptions as subQuesOption>
+                            ${subQuesOption.optionBodyWord}
+                        </#list>
+                        </#if>
+                    </#list>
+                    </#if>
+
+                    <#if paperDetailUnit.question.quesOptions?exists>
+                    <#list paperDetailUnit.question.quesOptions as quesOption>
+                        ${quesOption.optionBodyWord}
+                     </#list>
+                    </#if>
+					<w:p w:rsidP="00852887" w:rsidR="00852887" w:rsidRDefault="00852887">
+						<w:pPr>
+							<w:spacing w:line="400" w:lineRule="exact"/>
+							<w:rPr>
+								<w:rFonts w:ascii="宋体" w:hAnsi="宋体"/>
+								<w:b/>
+								<w:sz w:val="28"/>
+								<w:szCs w:val="28"/>
+							</w:rPr>
+						</w:pPr>
+					</w:p>
+					</#list>
+                    </#if>
+                    </#list>
+                    </#if>
+					
+					
+					<#if paper.subjectiveScore != 0>
+					<w:p w:rsidP="001A590C" w:rsidR="001A590C" w:rsidRDefault="001A590C">
+						<w:pPr>
+							<w:spacing w:line="400" w:lineRule="exact"/>
+							<w:ind w:firstLine="2249" w:firstLineChars="800"/>
+							<w:rPr>
+								<w:rFonts w:ascii="宋体" w:hAnsi="宋体"/>
+								<w:b/>
+								<w:sz w:val="28"/>
+								<w:szCs w:val="28"/>
+							</w:rPr>
+						</w:pPr>
+						<w:r w:rsidRPr="004072CF">
+							<w:rPr>
+								<w:rFonts w:ascii="宋体" w:hAnsi="宋体" w:hint="eastAsia"/>
+								<w:b/>
+								<w:sz w:val="28"/>
+								<w:szCs w:val="28"/>
+							</w:rPr>
+							<w:t>第</w:t>
+						</w:r>
+						<w:r>
+							<w:rPr>
+								<w:rFonts w:ascii="宋体" w:hAnsi="宋体" w:hint="eastAsia"/>
+								<w:b/>
+								<w:sz w:val="28"/>
+								<w:szCs w:val="28"/>
+							</w:rPr>
+							<w:t>二</w:t>
+						</w:r>
+						<w:r w:rsidRPr="004072CF">
+							<w:rPr>
+								<w:rFonts w:ascii="宋体" w:hAnsi="宋体" w:hint="eastAsia"/>
+								<w:b/>
+								<w:sz w:val="28"/>
+								<w:szCs w:val="28"/>
+							</w:rPr>
+							<w:t xml:space="preserve">部分    </w:t>
+						</w:r>
+						<w:r>
+							<w:rPr>
+								<w:rFonts w:ascii="宋体" w:hAnsi="宋体" w:hint="eastAsia"/>
+								<w:b/>
+								<w:sz w:val="28"/>
+								<w:szCs w:val="28"/>
+							</w:rPr>
+							<w:t>主</w:t>
+						</w:r>
+						<w:r w:rsidRPr="004072CF">
+							<w:rPr>
+								<w:rFonts w:ascii="宋体" w:hAnsi="宋体" w:hint="eastAsia"/>
+								<w:b/>
+								<w:sz w:val="28"/>
+								<w:szCs w:val="28"/>
+							</w:rPr>
+							<w:t>观题(总分</w:t>
+						</w:r>
+						<w:r w:rsidR="004D3783">
+							<w:rPr>
+								<w:rFonts w:ascii="宋体" w:hAnsi="宋体" w:hint="eastAsia"/>
+								<w:b/>
+								<w:sz w:val="28"/>
+								<w:szCs w:val="28"/>
+							</w:rPr>
+							<w:t xml:space="preserve">${paper.subjectiveScore} </w:t>
+						</w:r>
+						<w:r w:rsidRPr="004072CF">
+							<w:rPr>
+								<w:rFonts w:ascii="宋体" w:hAnsi="宋体" w:hint="eastAsia"/>
+								<w:b/>
+								<w:sz w:val="28"/>
+								<w:szCs w:val="28"/>
+							</w:rPr>
+							<w:t>分)</w:t>
+						</w:r>
+					</w:p>
+					 </#if>
+					<w:p w:rsidP="003D4B52" w:rsidR="003D4B52" w:rsidRDefault="003D4B52">
+						<w:pPr>
+							<w:spacing w:line="420" w:lineRule="atLeast"/>
+							<w:rPr>
+								<w:rFonts w:ascii="宋体" w:hAnsi="宋体"/>
+								<w:b/>
+								<w:szCs w:val="21"/>
+							</w:rPr>
+						</w:pPr>
+						<w:r w:rsidRPr="006E2D68">
+							<w:rPr>
+								<w:rFonts w:ascii="宋体" w:hAnsi="宋体" w:hint="eastAsia"/>
+								<w:b/>
+								<w:szCs w:val="21"/>
+							</w:rPr>
+							<w:t></w:t>
+						</w:r>
+					</w:p>
+					
+					<!--循环主观题-->
+					<#if paper.subjectiveDetails?exists>
+                    <#list paper.subjectiveDetails as paperDetail>
+					<w:p w:rsidP="004D3783" w:rsidR="00687CD1" w:rsidRDefault="004D3783" w:rsidRPr="006E2D68">
+						<w:r>
+							<w:rPr>
+								<w:rFonts w:ascii="宋体" w:hAnsi="宋体" w:hint="eastAsia"/>
+								<w:b/>
+								<w:szCs w:val="21"/>
+							</w:rPr>
+							<w:t>${paperDetail.cnNum}</w:t>
+						</w:r>
+						 <w:r>
+							<w:rPr>
+								<w:rFonts w:ascii="宋体" w:hAnsi="宋体" w:hint="eastAsia"/>
+								<w:b/>
+								<w:szCs w:val="21"/>
+							</w:rPr>
+							<w:t>、</w:t>
+						</w:r>
+			            <w:r>
+							<w:rPr>
+								<w:rFonts w:ascii="宋体" w:hAnsi="宋体" w:hint="eastAsia"/>
+								<w:b/>
+								<w:szCs w:val="21"/>
+							</w:rPr>
+							<w:t>${paperDetail.name}</w:t>
+						</w:r>
+						<w:r>
+							<w:rPr>
+								<w:rFonts w:ascii="宋体" w:hAnsi="宋体" w:hint="eastAsia"/>
+								<w:b/>
+								<w:szCs w:val="21"/>
+							</w:rPr>
+							<w:t>${paperDetail.title}</w:t>
+						</w:r>
+					</w:p>
+					<!--循环小题-->
+                    <#if paperDetail.paperDetailUnits?exists>
+                    <#list paperDetail.paperDetailUnits as paperDetailUnit>
+
+                        ${paperDetailUnit.question.quesBodyWord}
+
+                    <#if paperDetailUnit.question.subQuestions?exists>
+                    <#list paperDetailUnit.question.subQuestions as subQuestion>
+
+                        ${subQuestion.quesBodyWord}
+
+                        <#if subQuestion.quesOptions?exists>
+                        <#list subQuestion.quesOptions as subQuesOption>
+                            ${subQuesOption.optionBodyWord}
+                        </#list>
+                        </#if>
+                    </#list>
+                    </#if>
+
+                    <#if paperDetailUnit.question.quesOptions?exists>
+                    <#list paperDetailUnit.question.quesOptions as quesOption>
+                        ${quesOption.optionBodyWord}
+                     </#list>
+                    </#if>
+					<w:p w:rsidP="003D4B52" w:rsidR="00852887" w:rsidRDefault="00852887">
+						<w:pPr>
+							<w:spacing w:line="420" w:lineRule="atLeast"/>
+							<w:rPr>
+								<w:rFonts w:ascii="宋体" w:hAnsi="宋体"/>
+								<w:b/>
+								<w:szCs w:val="21"/>
+							</w:rPr>
+						</w:pPr>
+					</w:p>
+					</#list>
+                    </#if>
+                    </#list>
+                    </#if>
+                    
+					<w:p w:rsidP="00361123" w:rsidR="002075AC" w:rsidRDefault="002075AC">
+						<w:pPr>
+							<w:spacing w:line="400" w:lineRule="exact"/>
+							<w:rPr>
+								<w:rFonts w:ascii="宋体" w:hAnsi="宋体" w:hint="eastAsia"/>
+								<w:szCs w:val="21"/>
+							</w:rPr>
+						</w:pPr>
+					</w:p>
+					<w:p w:rsidP="00361123" w:rsidR="002075AC" w:rsidRDefault="002075AC">
+						<w:pPr>
+							<w:spacing w:line="400" w:lineRule="exact"/>
+							<w:rPr>
+								<w:rFonts w:ascii="宋体" w:hAnsi="宋体" w:hint="eastAsia"/>
+								<w:szCs w:val="21"/>
+							</w:rPr>
+						</w:pPr>
+					</w:p>
+					<w:p w:rsidP="00361123" w:rsidR="002075AC" w:rsidRDefault="002075AC">
+						<w:pPr>
+							<w:spacing w:line="400" w:lineRule="exact"/>
+							<w:rPr>
+								<w:rFonts w:ascii="宋体" w:hAnsi="宋体" w:hint="eastAsia"/>
+								<w:szCs w:val="21"/>
+							</w:rPr>
+						</w:pPr>
+					</w:p>
+					<w:p w:rsidP="00361123" w:rsidR="002075AC" w:rsidRDefault="002075AC">
+						<w:pPr>
+							<w:spacing w:line="400" w:lineRule="exact"/>
+							<w:rPr>
+								<w:rFonts w:ascii="宋体" w:hAnsi="宋体" w:hint="eastAsia"/>
+								<w:szCs w:val="21"/>
+							</w:rPr>
+						</w:pPr>
+					</w:p>
+					<w:p w:rsidP="00361123" w:rsidR="002075AC" w:rsidRDefault="002075AC">
+						<w:pPr>
+							<w:spacing w:line="400" w:lineRule="exact"/>
+							<w:rPr>
+								<w:rFonts w:ascii="宋体" w:hAnsi="宋体" w:hint="eastAsia"/>
+								<w:szCs w:val="21"/>
+							</w:rPr>
+						</w:pPr>
+					</w:p>
+					<w:p w:rsidP="00361123" w:rsidR="002075AC" w:rsidRDefault="002075AC">
+						<w:pPr>
+							<w:spacing w:line="400" w:lineRule="exact"/>
+							<w:rPr>
+								<w:rFonts w:ascii="宋体" w:hAnsi="宋体" w:hint="eastAsia"/>
+								<w:szCs w:val="21"/>
+							</w:rPr>
+						</w:pPr>
+					</w:p>
+					<w:p w:rsidP="00361123" w:rsidR="002075AC" w:rsidRDefault="002075AC">
+						<w:pPr>
+							<w:spacing w:line="400" w:lineRule="exact"/>
+							<w:rPr>
+								<w:rFonts w:ascii="宋体" w:hAnsi="宋体" w:hint="eastAsia"/>
+								<w:szCs w:val="21"/>
+							</w:rPr>
+						</w:pPr>
+					</w:p>
+					<w:p w:rsidP="00361123" w:rsidR="002075AC" w:rsidRDefault="002075AC">
+						<w:pPr>
+							<w:spacing w:line="400" w:lineRule="exact"/>
+							<w:rPr>
+								<w:rFonts w:ascii="宋体" w:hAnsi="宋体" w:hint="eastAsia"/>
+								<w:szCs w:val="21"/>
+							</w:rPr>
+						</w:pPr>
+					</w:p>
+					<w:p w:rsidP="00361123" w:rsidR="002075AC" w:rsidRDefault="002075AC">
+						<w:pPr>
+							<w:spacing w:line="400" w:lineRule="exact"/>
+							<w:rPr>
+								<w:rFonts w:ascii="宋体" w:hAnsi="宋体" w:hint="eastAsia"/>
+								<w:szCs w:val="21"/>
+							</w:rPr>
+						</w:pPr>
+					</w:p>
+					<w:p w:rsidP="00361123" w:rsidR="002075AC" w:rsidRDefault="002075AC">
+						<w:pPr>
+							<w:spacing w:line="400" w:lineRule="exact"/>
+							<w:rPr>
+								<w:rFonts w:ascii="宋体" w:hAnsi="宋体" w:hint="eastAsia"/>
+								<w:szCs w:val="21"/>
+							</w:rPr>
+						</w:pPr>
+					</w:p>
+					<w:p w:rsidP="00361123" w:rsidR="002075AC" w:rsidRDefault="002075AC">
+						<w:pPr>
+							<w:spacing w:line="400" w:lineRule="exact"/>
+							<w:rPr>
+								<w:rFonts w:ascii="宋体" w:hAnsi="宋体" w:hint="eastAsia"/>
+								<w:szCs w:val="21"/>
+							</w:rPr>
+						</w:pPr>
+					</w:p>
+					<w:p w:rsidP="00361123" w:rsidR="002075AC" w:rsidRDefault="002075AC">
+						<w:pPr>
+							<w:spacing w:line="400" w:lineRule="exact"/>
+							<w:rPr>
+								<w:rFonts w:ascii="宋体" w:hAnsi="宋体" w:hint="eastAsia"/>
+								<w:szCs w:val="21"/>
+							</w:rPr>
+						</w:pPr>
+					</w:p>
+					<w:p w:rsidP="00361123" w:rsidR="002075AC" w:rsidRDefault="002075AC">
+						<w:pPr>
+							<w:spacing w:line="400" w:lineRule="exact"/>
+							<w:rPr>
+								<w:rFonts w:ascii="宋体" w:hAnsi="宋体" w:hint="eastAsia"/>
+								<w:szCs w:val="21"/>
+							</w:rPr>
+						</w:pPr>
+					</w:p>
+					<w:p w:rsidP="00361123" w:rsidR="002075AC" w:rsidRDefault="002075AC">
+						<w:pPr>
+							<w:spacing w:line="400" w:lineRule="exact"/>
+							<w:rPr>
+								<w:rFonts w:ascii="宋体" w:hAnsi="宋体" w:hint="eastAsia"/>
+								<w:szCs w:val="21"/>
+							</w:rPr>
+						</w:pPr>
+					</w:p>
+					<w:p w:rsidP="00361123" w:rsidR="002075AC" w:rsidRDefault="002075AC">
+						<w:pPr>
+							<w:spacing w:line="400" w:lineRule="exact"/>
+							<w:rPr>
+								<w:rFonts w:ascii="宋体" w:hAnsi="宋体" w:hint="eastAsia"/>
+								<w:szCs w:val="21"/>
+							</w:rPr>
+						</w:pPr>
+					</w:p>
+					<w:p w:rsidP="00361123" w:rsidR="002075AC" w:rsidRDefault="002075AC">
+						<w:pPr>
+							<w:spacing w:line="400" w:lineRule="exact"/>
+							<w:rPr>
+								<w:rFonts w:ascii="宋体" w:hAnsi="宋体" w:hint="eastAsia"/>
+								<w:szCs w:val="21"/>
+							</w:rPr>
+						</w:pPr>
+					</w:p>
+					<w:p w:rsidP="00361123" w:rsidR="002075AC" w:rsidRDefault="002075AC">
+						<w:pPr>
+							<w:spacing w:line="400" w:lineRule="exact"/>
+							<w:rPr>
+								<w:rFonts w:ascii="宋体" w:hAnsi="宋体" w:hint="eastAsia"/>
+								<w:szCs w:val="21"/>
+							</w:rPr>
+						</w:pPr>
+					</w:p>
+					<w:p w:rsidP="00361123" w:rsidR="002075AC" w:rsidRDefault="002075AC">
+						<w:pPr>
+							<w:spacing w:line="400" w:lineRule="exact"/>
+							<w:rPr>
+								<w:rFonts w:ascii="宋体" w:hAnsi="宋体" w:hint="eastAsia"/>
+								<w:szCs w:val="21"/>
+							</w:rPr>
+						</w:pPr>
+					</w:p>
+					<w:p w:rsidP="00361123" w:rsidR="002075AC" w:rsidRDefault="002075AC">
+						<w:pPr>
+							<w:spacing w:line="400" w:lineRule="exact"/>
+							<w:rPr>
+								<w:rFonts w:ascii="宋体" w:hAnsi="宋体" w:hint="eastAsia"/>
+								<w:szCs w:val="21"/>
+							</w:rPr>
+						</w:pPr>
+					</w:p>
+					<w:p w:rsidP="00361123" w:rsidR="002075AC" w:rsidRDefault="002075AC">
+						<w:pPr>
+							<w:spacing w:line="400" w:lineRule="exact"/>
+							<w:rPr>
+								<w:rFonts w:ascii="宋体" w:hAnsi="宋体" w:hint="eastAsia"/>
+								<w:szCs w:val="21"/>
+							</w:rPr>
+						</w:pPr>
+					</w:p>
+					<w:p w:rsidP="00361123" w:rsidR="002075AC" w:rsidRDefault="002075AC">
+						<w:pPr>
+							<w:spacing w:line="400" w:lineRule="exact"/>
+							<w:rPr>
+								<w:rFonts w:ascii="宋体" w:hAnsi="宋体" w:hint="eastAsia"/>
+								<w:szCs w:val="21"/>
+							</w:rPr>
+						</w:pPr>
+					</w:p>
+					<w:p w:rsidP="00361123" w:rsidR="002075AC" w:rsidRDefault="002075AC">
+						<w:pPr>
+							<w:spacing w:line="400" w:lineRule="exact"/>
+							<w:rPr>
+								<w:rFonts w:ascii="宋体" w:hAnsi="宋体" w:hint="eastAsia"/>
+								<w:szCs w:val="21"/>
+							</w:rPr>
+						</w:pPr>
+					</w:p>
+					<w:p w:rsidP="00361123" w:rsidR="002075AC" w:rsidRDefault="002075AC">
+						<w:pPr>
+							<w:spacing w:line="400" w:lineRule="exact"/>
+							<w:rPr>
+								<w:rFonts w:ascii="宋体" w:hAnsi="宋体" w:hint="eastAsia"/>
+								<w:szCs w:val="21"/>
+							</w:rPr>
+						</w:pPr>
+					</w:p>
+					<w:p w:rsidP="00361123" w:rsidR="002075AC" w:rsidRDefault="002075AC">
+						<w:pPr>
+							<w:spacing w:line="400" w:lineRule="exact"/>
+							<w:rPr>
+								<w:rFonts w:ascii="宋体" w:hAnsi="宋体" w:hint="eastAsia"/>
+								<w:szCs w:val="21"/>
+							</w:rPr>
+						</w:pPr>
+					</w:p>
+					<w:p w:rsidP="00361123" w:rsidR="002075AC" w:rsidRDefault="002075AC">
+						<w:pPr>
+							<w:spacing w:line="400" w:lineRule="exact"/>
+							<w:rPr>
+								<w:rFonts w:ascii="宋体" w:hAnsi="宋体" w:hint="eastAsia"/>
+								<w:szCs w:val="21"/>
+							</w:rPr>
+						</w:pPr>
+					</w:p>
+					<w:p w:rsidP="00361123" w:rsidR="002075AC" w:rsidRDefault="002075AC">
+						<w:pPr>
+							<w:spacing w:line="400" w:lineRule="exact"/>
+							<w:rPr>
+								<w:rFonts w:ascii="宋体" w:hAnsi="宋体" w:hint="eastAsia"/>
+								<w:szCs w:val="21"/>
+							</w:rPr>
+						</w:pPr>
+					</w:p>
+					<w:p w:rsidP="00361123" w:rsidR="002075AC" w:rsidRDefault="002075AC">
+						<w:pPr>
+							<w:spacing w:line="400" w:lineRule="exact"/>
+							<w:rPr>
+								<w:rFonts w:ascii="宋体" w:hAnsi="宋体" w:hint="eastAsia"/>
+								<w:szCs w:val="21"/>
+							</w:rPr>
+						</w:pPr>
+					</w:p>
+					<w:p w:rsidP="00361123" w:rsidR="002075AC" w:rsidRDefault="002075AC">
+						<w:pPr>
+							<w:spacing w:line="400" w:lineRule="exact"/>
+							<w:rPr>
+								<w:rFonts w:ascii="宋体" w:hAnsi="宋体" w:hint="eastAsia"/>
+								<w:szCs w:val="21"/>
+							</w:rPr>
+						</w:pPr>
+					</w:p>
+					<w:p w:rsidP="00361123" w:rsidR="002075AC" w:rsidRDefault="002075AC">
+						<w:pPr>
+							<w:spacing w:line="400" w:lineRule="exact"/>
+							<w:rPr>
+								<w:rFonts w:ascii="宋体" w:hAnsi="宋体" w:hint="eastAsia"/>
+								<w:szCs w:val="21"/>
+							</w:rPr>
+						</w:pPr>
+					</w:p>
+					<w:p w:rsidP="00361123" w:rsidR="002075AC" w:rsidRDefault="002075AC">
+						<w:pPr>
+							<w:spacing w:line="400" w:lineRule="exact"/>
+							<w:rPr>
+								<w:rFonts w:ascii="宋体" w:hAnsi="宋体" w:hint="eastAsia"/>
+								<w:szCs w:val="21"/>
+							</w:rPr>
+						</w:pPr>
+					</w:p>
+					<w:p w:rsidP="00361123" w:rsidR="002075AC" w:rsidRDefault="002075AC">
+						<w:pPr>
+							<w:spacing w:line="400" w:lineRule="exact"/>
+							<w:rPr>
+								<w:rFonts w:ascii="宋体" w:hAnsi="宋体" w:hint="eastAsia"/>
+								<w:szCs w:val="21"/>
+							</w:rPr>
+						</w:pPr>
+					</w:p>
+					<w:p w:rsidP="00361123" w:rsidR="002075AC" w:rsidRDefault="002075AC">
+						<w:pPr>
+							<w:spacing w:line="400" w:lineRule="exact"/>
+							<w:rPr>
+								<w:rFonts w:ascii="宋体" w:hAnsi="宋体" w:hint="eastAsia"/>
+								<w:szCs w:val="21"/>
+							</w:rPr>
+						</w:pPr>
+					</w:p>
+					<w:p w:rsidP="00361123" w:rsidR="002075AC" w:rsidRDefault="002075AC" w:rsidRPr="003D4B52">
+						<w:pPr>
+							<w:spacing w:line="400" w:lineRule="exact"/>
+							<w:rPr>
+								<w:rFonts w:ascii="宋体" w:hAnsi="宋体" w:hint="eastAsia"/>
+								<w:szCs w:val="21"/>
+							</w:rPr>
+						</w:pPr>
+					</w:p>
+					<w:sectPr w:rsidR="002075AC" w:rsidRPr="003D4B52" w:rsidSect="00D948E2">
+						<w:footerReference r:id="rId8" w:type="even"/>
+						<w:footerReference r:id="rId9" w:type="default"/>
+						<w:pgSz w:code="8" w:h="16840" w:orient="landscape" w:w="23814"/>
+						<w:pgMar w:bottom="851" w:footer="992" w:gutter="0" w:header="851" w:left="1418" w:right="1418" w:top="568"/>
+						<w:cols w:num="2" w:space="1134"/>
+						<w:docGrid w:linePitch="312" w:type="lines"/>
+					</w:sectPr>
+				</w:body>
+			</w:document>
+		</pkg:xmlData>
+	</pkg:part>
+	<pkg:part pkg:contentType="application/vnd.openxmlformats-officedocument.wordprocessingml.footer+xml" pkg:name="/word/footer1.xml">
+		<pkg:xmlData>
+			<w:ftr mc:Ignorable="w14 wp14" xmlns:m="http://schemas.openxmlformats.org/officeDocument/2006/math" xmlns:mc="http://schemas.openxmlformats.org/markup-compatibility/2006" xmlns:o="urn:schemas-microsoft-com:office:office" xmlns:r="http://schemas.openxmlformats.org/officeDocument/2006/relationships" xmlns:v="urn:schemas-microsoft-com:vml" xmlns:w="http://schemas.openxmlformats.org/wordprocessingml/2006/main" xmlns:w10="urn:schemas-microsoft-com:office:word" xmlns:w14="http://schemas.microsoft.com/office/word/2010/wordml" xmlns:wne="http://schemas.microsoft.com/office/word/2006/wordml" xmlns:wp="http://schemas.openxmlformats.org/drawingml/2006/wordprocessingDrawing" xmlns:wp14="http://schemas.microsoft.com/office/word/2010/wordprocessingDrawing" xmlns:wpc="http://schemas.microsoft.com/office/word/2010/wordprocessingCanvas" xmlns:wpg="http://schemas.microsoft.com/office/word/2010/wordprocessingGroup" xmlns:wpi="http://schemas.microsoft.com/office/word/2010/wordprocessingInk" xmlns:wps="http://schemas.microsoft.com/office/word/2010/wordprocessingShape">
+				<w:p w:rsidP="00494A57" w:rsidR="002A4355" w:rsidRDefault="005C7401">
+					<w:pPr>
+						<w:pStyle w:val="a3"/>
+						<w:ind w:right="360"/>
+					</w:pPr>
+					<w:r>
+						<w:rPr>
+							<w:rFonts w:hint="eastAsia"/>
+						</w:rPr>
+						<w:tab/>
+					</w:r>
+					<w:r>
+						<w:rPr>
+							<w:rFonts w:hint="eastAsia"/>
+						</w:rPr>
+						<w:t>第</w:t>
+					</w:r>
+					<w:r>
+						<w:rPr>
+							<w:rFonts w:hint="eastAsia"/>
+						</w:rPr>
+						<w:t>3</w:t>
+					</w:r>
+					<w:r>
+						<w:rPr>
+							<w:rFonts w:hint="eastAsia"/>
+						</w:rPr>
+						<w:t>页</w:t>
+					</w:r>
+					<w:r>
+						<w:rPr>
+							<w:rFonts w:hint="eastAsia"/>
+						</w:rPr>
+						<w:t xml:space="preserve"/>
+					</w:r>
+					<w:r>
+						<w:rPr>
+							<w:rFonts w:hint="eastAsia"/>
+						</w:rPr>
+						<w:t>共</w:t>
+					</w:r>
+					<w:r>
+						<w:rPr>
+							<w:rFonts w:hint="eastAsia"/>
+						</w:rPr>
+						<w:t>4</w:t>
+					</w:r>
+					<w:r>
+						<w:rPr>
+							<w:rFonts w:hint="eastAsia"/>
+						</w:rPr>
+						<w:t>页</w:t>
+					</w:r>
+					<w:r>
+						<w:rPr>
+							<w:rFonts w:hint="eastAsia"/>
+						</w:rPr>
+						<w:tab/>
+					</w:r>
+					<w:r>
+						<w:rPr>
+							<w:rFonts w:hint="eastAsia"/>
+						</w:rPr>
+						<w:tab/>
+					</w:r>
+					<w:r>
+						<w:rPr>
+							<w:rFonts w:hint="eastAsia"/>
+						</w:rPr>
+						<w:tab/>
+					</w:r>
+					<w:r>
+						<w:rPr>
+							<w:rFonts w:hint="eastAsia"/>
+						</w:rPr>
+						<w:tab/>
+					</w:r>
+					<w:r>
+						<w:rPr>
+							<w:rFonts w:hint="eastAsia"/>
+						</w:rPr>
+						<w:tab/>
+					</w:r>
+					<w:r>
+						<w:rPr>
+							<w:rFonts w:hint="eastAsia"/>
+						</w:rPr>
+						<w:tab/>
+					</w:r>
+					<w:r>
+						<w:rPr>
+							<w:rFonts w:hint="eastAsia"/>
+						</w:rPr>
+						<w:tab/>
+					</w:r>
+					<w:r>
+						<w:rPr>
+							<w:rFonts w:hint="eastAsia"/>
+						</w:rPr>
+						<w:tab/>
+					</w:r>
+					<w:r>
+						<w:rPr>
+							<w:rFonts w:hint="eastAsia"/>
+						</w:rPr>
+						<w:tab/>
+					</w:r>
+					<w:r>
+						<w:rPr>
+							<w:rFonts w:hint="eastAsia"/>
+						</w:rPr>
+						<w:tab/>
+					</w:r>
+					<w:r>
+						<w:rPr>
+							<w:rFonts w:hint="eastAsia"/>
+						</w:rPr>
+						<w:tab/>
+					</w:r>
+					<w:r>
+						<w:rPr>
+							<w:rFonts w:hint="eastAsia"/>
+						</w:rPr>
+						<w:tab/>
+					</w:r>
+					<w:r>
+						<w:rPr>
+							<w:rFonts w:hint="eastAsia"/>
+						</w:rPr>
+						<w:tab/>
+					</w:r>
+					<w:r>
+						<w:rPr>
+							<w:rFonts w:hint="eastAsia"/>
+						</w:rPr>
+						<w:tab/>
+					</w:r>
+					<w:r>
+						<w:rPr>
+							<w:rFonts w:hint="eastAsia"/>
+						</w:rPr>
+						<w:tab/>
+					</w:r>
+					<w:r>
+						<w:rPr>
+							<w:rFonts w:hint="eastAsia"/>
+						</w:rPr>
+						<w:tab/>
+					</w:r>
+					<w:r>
+						<w:rPr>
+							<w:rFonts w:hint="eastAsia"/>
+						</w:rPr>
+						<w:tab/>
+					</w:r>
+					<w:r>
+						<w:rPr>
+							<w:rFonts w:hint="eastAsia"/>
+						</w:rPr>
+						<w:tab/>
+					</w:r>
+					<w:r>
+						<w:rPr>
+							<w:rFonts w:hint="eastAsia"/>
+						</w:rPr>
+						<w:tab/>
+					</w:r>
+					<w:r>
+						<w:rPr>
+							<w:rFonts w:hint="eastAsia"/>
+						</w:rPr>
+						<w:t>第</w:t>
+					</w:r>
+					<w:r>
+						<w:rPr>
+							<w:rFonts w:hint="eastAsia"/>
+						</w:rPr>
+						<w:t>4</w:t>
+					</w:r>
+					<w:r>
+						<w:rPr>
+							<w:rFonts w:hint="eastAsia"/>
+						</w:rPr>
+						<w:t>页</w:t>
+					</w:r>
+					<w:r>
+						<w:rPr>
+							<w:rFonts w:hint="eastAsia"/>
+						</w:rPr>
+						<w:t xml:space="preserve"/>
+					</w:r>
+					<w:r>
+						<w:rPr>
+							<w:rFonts w:hint="eastAsia"/>
+						</w:rPr>
+						<w:t>共</w:t>
+					</w:r>
+					<w:r>
+						<w:rPr>
+							<w:rFonts w:hint="eastAsia"/>
+						</w:rPr>
+						<w:t>4</w:t>
+					</w:r>
+					<w:r>
+						<w:rPr>
+							<w:rFonts w:hint="eastAsia"/>
+						</w:rPr>
+						<w:t>页</w:t>
+					</w:r>
+				</w:p>
+			</w:ftr>
+		</pkg:xmlData>
+	</pkg:part>
+	<pkg:part pkg:contentType="application/vnd.openxmlformats-officedocument.wordprocessingml.endnotes+xml" pkg:name="/word/endnotes.xml">
+		<pkg:xmlData>
+			<w:endnotes mc:Ignorable="w14 wp14" xmlns:m="http://schemas.openxmlformats.org/officeDocument/2006/math" xmlns:mc="http://schemas.openxmlformats.org/markup-compatibility/2006" xmlns:o="urn:schemas-microsoft-com:office:office" xmlns:r="http://schemas.openxmlformats.org/officeDocument/2006/relationships" xmlns:v="urn:schemas-microsoft-com:vml" xmlns:w="http://schemas.openxmlformats.org/wordprocessingml/2006/main" xmlns:w10="urn:schemas-microsoft-com:office:word" xmlns:w14="http://schemas.microsoft.com/office/word/2010/wordml" xmlns:wne="http://schemas.microsoft.com/office/word/2006/wordml" xmlns:wp="http://schemas.openxmlformats.org/drawingml/2006/wordprocessingDrawing" xmlns:wp14="http://schemas.microsoft.com/office/word/2010/wordprocessingDrawing" xmlns:wpc="http://schemas.microsoft.com/office/word/2010/wordprocessingCanvas" xmlns:wpg="http://schemas.microsoft.com/office/word/2010/wordprocessingGroup" xmlns:wpi="http://schemas.microsoft.com/office/word/2010/wordprocessingInk" xmlns:wps="http://schemas.microsoft.com/office/word/2010/wordprocessingShape">
+				<w:endnote w:id="-1" w:type="separator">
+					<w:p w:rsidR="0051225E" w:rsidRDefault="0051225E">
+						<w:r>
+							<w:separator/>
+						</w:r>
+					</w:p>
+				</w:endnote>
+				<w:endnote w:id="0" w:type="continuationSeparator">
+					<w:p w:rsidR="0051225E" w:rsidRDefault="0051225E">
+						<w:r>
+							<w:continuationSeparator/>
+						</w:r>
+					</w:p>
+				</w:endnote>
+			</w:endnotes>
+		</pkg:xmlData>
+	</pkg:part>
+	<pkg:part pkg:contentType="application/vnd.openxmlformats-officedocument.wordprocessingml.footer+xml" pkg:name="/word/footer2.xml">
+		<pkg:xmlData>
+			<w:ftr mc:Ignorable="w14 wp14" xmlns:m="http://schemas.openxmlformats.org/officeDocument/2006/math" xmlns:mc="http://schemas.openxmlformats.org/markup-compatibility/2006" xmlns:o="urn:schemas-microsoft-com:office:office" xmlns:r="http://schemas.openxmlformats.org/officeDocument/2006/relationships" xmlns:v="urn:schemas-microsoft-com:vml" xmlns:w="http://schemas.openxmlformats.org/wordprocessingml/2006/main" xmlns:w10="urn:schemas-microsoft-com:office:word" xmlns:w14="http://schemas.microsoft.com/office/word/2010/wordml" xmlns:wne="http://schemas.microsoft.com/office/word/2006/wordml" xmlns:wp="http://schemas.openxmlformats.org/drawingml/2006/wordprocessingDrawing" xmlns:wp14="http://schemas.microsoft.com/office/word/2010/wordprocessingDrawing" xmlns:wpc="http://schemas.microsoft.com/office/word/2010/wordprocessingCanvas" xmlns:wpg="http://schemas.microsoft.com/office/word/2010/wordprocessingGroup" xmlns:wpi="http://schemas.microsoft.com/office/word/2010/wordprocessingInk" xmlns:wps="http://schemas.microsoft.com/office/word/2010/wordprocessingShape">
+				<w:p w:rsidP="00D87C35" w:rsidR="002A4355" w:rsidRDefault="00130ED7">
+					<w:pPr>
+						<w:pStyle w:val="a3"/>
+						<w:rPr>
+							<w:rFonts w:hint="eastAsia"/>
+						</w:rPr>
+					</w:pPr>
+					<w:r>
+						<w:rPr>
+							<w:rFonts w:hint="eastAsia"/>
+						</w:rPr>
+						<w:tab/>
+					</w:r>
+					<w:r>
+						<w:rPr>
+							<w:rFonts w:hint="eastAsia"/>
+						</w:rPr>
+						<w:t>第</w:t>
+					</w:r>
+					<w:r>
+						<w:rPr>
+							<w:rFonts w:hint="eastAsia"/>
+						</w:rPr>
+						<w:t>1</w:t>
+					</w:r>
+					<w:r>
+						<w:rPr>
+							<w:rFonts w:hint="eastAsia"/>
+						</w:rPr>
+						<w:t>页</w:t>
+					</w:r>
+					<w:r>
+						<w:rPr>
+							<w:rFonts w:hint="eastAsia"/>
+						</w:rPr>
+						<w:t xml:space="preserve"/>
+					</w:r>
+					<w:r>
+						<w:rPr>
+							<w:rFonts w:hint="eastAsia"/>
+						</w:rPr>
+						<w:t>共</w:t>
+					</w:r>
+					<w:r>
+						<w:rPr>
+							<w:rFonts w:hint="eastAsia"/>
+						</w:rPr>
+						<w:t>4</w:t>
+					</w:r>
+					<w:r>
+						<w:rPr>
+							<w:rFonts w:hint="eastAsia"/>
+						</w:rPr>
+						<w:t>页</w:t>
+					</w:r>
+					<w:r>
+						<w:rPr>
+							<w:rFonts w:hint="eastAsia"/>
+						</w:rPr>
+						<w:tab/>
+					</w:r>
+					<w:r>
+						<w:rPr>
+							<w:rFonts w:hint="eastAsia"/>
+						</w:rPr>
+						<w:tab/>
+					</w:r>
+					<w:r>
+						<w:rPr>
+							<w:rFonts w:hint="eastAsia"/>
+						</w:rPr>
+						<w:tab/>
+					</w:r>
+					<w:r>
+						<w:rPr>
+							<w:rFonts w:hint="eastAsia"/>
+						</w:rPr>
+						<w:tab/>
+					</w:r>
+					<w:r>
+						<w:rPr>
+							<w:rFonts w:hint="eastAsia"/>
+						</w:rPr>
+						<w:tab/>
+					</w:r>
+					<w:r>
+						<w:rPr>
+							<w:rFonts w:hint="eastAsia"/>
+						</w:rPr>
+						<w:tab/>
+					</w:r>
+					<w:r>
+						<w:rPr>
+							<w:rFonts w:hint="eastAsia"/>
+						</w:rPr>
+						<w:tab/>
+					</w:r>
+					<w:r>
+						<w:rPr>
+							<w:rFonts w:hint="eastAsia"/>
+						</w:rPr>
+						<w:tab/>
+					</w:r>
+					<w:r>
+						<w:rPr>
+							<w:rFonts w:hint="eastAsia"/>
+						</w:rPr>
+						<w:tab/>
+					</w:r>
+					<w:r>
+						<w:rPr>
+							<w:rFonts w:hint="eastAsia"/>
+						</w:rPr>
+						<w:tab/>
+					</w:r>
+					<w:r>
+						<w:rPr>
+							<w:rFonts w:hint="eastAsia"/>
+						</w:rPr>
+						<w:tab/>
+					</w:r>
+					<w:r>
+						<w:rPr>
+							<w:rFonts w:hint="eastAsia"/>
+						</w:rPr>
+						<w:tab/>
+					</w:r>
+					<w:r>
+						<w:rPr>
+							<w:rFonts w:hint="eastAsia"/>
+						</w:rPr>
+						<w:tab/>
+					</w:r>
+					<w:r>
+						<w:rPr>
+							<w:rFonts w:hint="eastAsia"/>
+						</w:rPr>
+						<w:tab/>
+					</w:r>
+					<w:r>
+						<w:rPr>
+							<w:rFonts w:hint="eastAsia"/>
+						</w:rPr>
+						<w:tab/>
+					</w:r>
+					<w:r>
+						<w:rPr>
+							<w:rFonts w:hint="eastAsia"/>
+						</w:rPr>
+						<w:tab/>
+					</w:r>
+					<w:r>
+						<w:rPr>
+							<w:rFonts w:hint="eastAsia"/>
+						</w:rPr>
+						<w:tab/>
+					</w:r>
+					<w:r>
+						<w:rPr>
+							<w:rFonts w:hint="eastAsia"/>
+						</w:rPr>
+						<w:tab/>
+					</w:r>
+					<w:r>
+						<w:rPr>
+							<w:rFonts w:hint="eastAsia"/>
+						</w:rPr>
+						<w:tab/>
+					</w:r>
+					<w:r>
+						<w:rPr>
+							<w:rFonts w:hint="eastAsia"/>
+						</w:rPr>
+						<w:t>第</w:t>
+					</w:r>
+					<w:r>
+						<w:rPr>
+							<w:rFonts w:hint="eastAsia"/>
+						</w:rPr>
+						<w:t>2</w:t>
+					</w:r>
+					<w:r>
+						<w:rPr>
+							<w:rFonts w:hint="eastAsia"/>
+						</w:rPr>
+						<w:t>页</w:t>
+					</w:r>
+					<w:r>
+						<w:rPr>
+							<w:rFonts w:hint="eastAsia"/>
+						</w:rPr>
+						<w:t xml:space="preserve"/>
+					</w:r>
+					<w:r>
+						<w:rPr>
+							<w:rFonts w:hint="eastAsia"/>
+						</w:rPr>
+						<w:t>共</w:t>
+					</w:r>
+					<w:r>
+						<w:rPr>
+							<w:rFonts w:hint="eastAsia"/>
+						</w:rPr>
+						<w:t>4</w:t>
+					</w:r>
+					<w:r>
+						<w:rPr>
+							<w:rFonts w:hint="eastAsia"/>
+						</w:rPr>
+						<w:t>页</w:t>
+					</w:r>
+				</w:p>
+			</w:ftr>
+		</pkg:xmlData>
+	</pkg:part>
+	<pkg:part pkg:contentType="application/vnd.openxmlformats-officedocument.wordprocessingml.footnotes+xml" pkg:name="/word/footnotes.xml">
+		<pkg:xmlData>
+			<w:footnotes mc:Ignorable="w14 wp14" xmlns:m="http://schemas.openxmlformats.org/officeDocument/2006/math" xmlns:mc="http://schemas.openxmlformats.org/markup-compatibility/2006" xmlns:o="urn:schemas-microsoft-com:office:office" xmlns:r="http://schemas.openxmlformats.org/officeDocument/2006/relationships" xmlns:v="urn:schemas-microsoft-com:vml" xmlns:w="http://schemas.openxmlformats.org/wordprocessingml/2006/main" xmlns:w10="urn:schemas-microsoft-com:office:word" xmlns:w14="http://schemas.microsoft.com/office/word/2010/wordml" xmlns:wne="http://schemas.microsoft.com/office/word/2006/wordml" xmlns:wp="http://schemas.openxmlformats.org/drawingml/2006/wordprocessingDrawing" xmlns:wp14="http://schemas.microsoft.com/office/word/2010/wordprocessingDrawing" xmlns:wpc="http://schemas.microsoft.com/office/word/2010/wordprocessingCanvas" xmlns:wpg="http://schemas.microsoft.com/office/word/2010/wordprocessingGroup" xmlns:wpi="http://schemas.microsoft.com/office/word/2010/wordprocessingInk" xmlns:wps="http://schemas.microsoft.com/office/word/2010/wordprocessingShape">
+				<w:footnote w:id="-1" w:type="separator">
+					<w:p w:rsidR="0051225E" w:rsidRDefault="0051225E">
+						<w:r>
+							<w:separator/>
+						</w:r>
+					</w:p>
+				</w:footnote>
+				<w:footnote w:id="0" w:type="continuationSeparator">
+					<w:p w:rsidR="0051225E" w:rsidRDefault="0051225E">
+						<w:r>
+							<w:continuationSeparator/>
+						</w:r>
+					</w:p>
+				</w:footnote>
+			</w:footnotes>
+		</pkg:xmlData>
+	</pkg:part>
+	<pkg:part pkg:contentType="application/vnd.openxmlformats-officedocument.theme+xml" pkg:name="/word/theme/theme1.xml">
+		<pkg:xmlData>
+			<a:theme name="Office 主题​​" xmlns:a="http://schemas.openxmlformats.org/drawingml/2006/main">
+				<a:themeElements>
+					<a:clrScheme name="Office">
+						<a:dk1>
+							<a:sysClr lastClr="000000" val="windowText"/>
+						</a:dk1>
+						<a:lt1>
+							<a:sysClr lastClr="FFFFFF" val="window"/>
+						</a:lt1>
+						<a:dk2>
+							<a:srgbClr val="1F497D"/>
+						</a:dk2>
+						<a:lt2>
+							<a:srgbClr val="EEECE1"/>
+						</a:lt2>
+						<a:accent1>
+							<a:srgbClr val="4F81BD"/>
+						</a:accent1>
+						<a:accent2>
+							<a:srgbClr val="C0504D"/>
+						</a:accent2>
+						<a:accent3>
+							<a:srgbClr val="9BBB59"/>
+						</a:accent3>
+						<a:accent4>
+							<a:srgbClr val="8064A2"/>
+						</a:accent4>
+						<a:accent5>
+							<a:srgbClr val="4BACC6"/>
+						</a:accent5>
+						<a:accent6>
+							<a:srgbClr val="F79646"/>
+						</a:accent6>
+						<a:hlink>
+							<a:srgbClr val="0000FF"/>
+						</a:hlink>
+						<a:folHlink>
+							<a:srgbClr val="800080"/>
+						</a:folHlink>
+					</a:clrScheme>
+					<a:fontScheme name="Office">
+						<a:majorFont>
+							<a:latin typeface="Cambria"/>
+							<a:ea typeface=""/>
+							<a:cs typeface=""/>
+							<a:font script="Jpan" typeface="MS ゴシック"/>
+							<a:font script="Hang" typeface="맑은 고딕"/>
+							<a:font script="Hans" typeface="宋体"/>
+							<a:font script="Hant" typeface="新細明體"/>
+							<a:font script="Arab" typeface="Times New Roman"/>
+							<a:font script="Hebr" typeface="Times New Roman"/>
+							<a:font script="Thai" typeface="Angsana New"/>
+							<a:font script="Ethi" typeface="Nyala"/>
+							<a:font script="Beng" typeface="Vrinda"/>
+							<a:font script="Gujr" typeface="Shruti"/>
+							<a:font script="Khmr" typeface="MoolBoran"/>
+							<a:font script="Knda" typeface="Tunga"/>
+							<a:font script="Guru" typeface="Raavi"/>
+							<a:font script="Cans" typeface="Euphemia"/>
+							<a:font script="Cher" typeface="Plantagenet Cherokee"/>
+							<a:font script="Yiii" typeface="Microsoft Yi Baiti"/>
+							<a:font script="Tibt" typeface="Microsoft Himalaya"/>
+							<a:font script="Thaa" typeface="MV Boli"/>
+							<a:font script="Deva" typeface="Mangal"/>
+							<a:font script="Telu" typeface="Gautami"/>
+							<a:font script="Taml" typeface="Latha"/>
+							<a:font script="Syrc" typeface="Estrangelo Edessa"/>
+							<a:font script="Orya" typeface="Kalinga"/>
+							<a:font script="Mlym" typeface="Kartika"/>
+							<a:font script="Laoo" typeface="DokChampa"/>
+							<a:font script="Sinh" typeface="Iskoola Pota"/>
+							<a:font script="Mong" typeface="Mongolian Baiti"/>
+							<a:font script="Viet" typeface="Times New Roman"/>
+							<a:font script="Uigh" typeface="Microsoft Uighur"/>
+							<a:font script="Geor" typeface="Sylfaen"/>
+						</a:majorFont>
+						<a:minorFont>
+							<a:latin typeface="Calibri"/>
+							<a:ea typeface=""/>
+							<a:cs typeface=""/>
+							<a:font script="Jpan" typeface="MS 明朝"/>
+							<a:font script="Hang" typeface="맑은 고딕"/>
+							<a:font script="Hans" typeface="宋体"/>
+							<a:font script="Hant" typeface="新細明體"/>
+							<a:font script="Arab" typeface="Arial"/>
+							<a:font script="Hebr" typeface="Arial"/>
+							<a:font script="Thai" typeface="Cordia New"/>
+							<a:font script="Ethi" typeface="Nyala"/>
+							<a:font script="Beng" typeface="Vrinda"/>
+							<a:font script="Gujr" typeface="Shruti"/>
+							<a:font script="Khmr" typeface="DaunPenh"/>
+							<a:font script="Knda" typeface="Tunga"/>
+							<a:font script="Guru" typeface="Raavi"/>
+							<a:font script="Cans" typeface="Euphemia"/>
+							<a:font script="Cher" typeface="Plantagenet Cherokee"/>
+							<a:font script="Yiii" typeface="Microsoft Yi Baiti"/>
+							<a:font script="Tibt" typeface="Microsoft Himalaya"/>
+							<a:font script="Thaa" typeface="MV Boli"/>
+							<a:font script="Deva" typeface="Mangal"/>
+							<a:font script="Telu" typeface="Gautami"/>
+							<a:font script="Taml" typeface="Latha"/>
+							<a:font script="Syrc" typeface="Estrangelo Edessa"/>
+							<a:font script="Orya" typeface="Kalinga"/>
+							<a:font script="Mlym" typeface="Kartika"/>
+							<a:font script="Laoo" typeface="DokChampa"/>
+							<a:font script="Sinh" typeface="Iskoola Pota"/>
+							<a:font script="Mong" typeface="Mongolian Baiti"/>
+							<a:font script="Viet" typeface="Arial"/>
+							<a:font script="Uigh" typeface="Microsoft Uighur"/>
+							<a:font script="Geor" typeface="Sylfaen"/>
+						</a:minorFont>
+					</a:fontScheme>
+					<a:fmtScheme name="Office">
+						<a:fillStyleLst>
+							<a:solidFill>
+								<a:schemeClr val="phClr"/>
+							</a:solidFill>
+							<a:gradFill rotWithShape="1">
+								<a:gsLst>
+									<a:gs pos="0">
+										<a:schemeClr val="phClr">
+											<a:tint val="50000"/>
+											<a:satMod val="300000"/>
+										</a:schemeClr>
+									</a:gs>
+									<a:gs pos="35000">
+										<a:schemeClr val="phClr">
+											<a:tint val="37000"/>
+											<a:satMod val="300000"/>
+										</a:schemeClr>
+									</a:gs>
+									<a:gs pos="100000">
+										<a:schemeClr val="phClr">
+											<a:tint val="15000"/>
+											<a:satMod val="350000"/>
+										</a:schemeClr>
+									</a:gs>
+								</a:gsLst>
+								<a:lin ang="16200000" scaled="1"/>
+							</a:gradFill>
+							<a:gradFill rotWithShape="1">
+								<a:gsLst>
+									<a:gs pos="0">
+										<a:schemeClr val="phClr">
+											<a:shade val="51000"/>
+											<a:satMod val="130000"/>
+										</a:schemeClr>
+									</a:gs>
+									<a:gs pos="80000">
+										<a:schemeClr val="phClr">
+											<a:shade val="93000"/>
+											<a:satMod val="130000"/>
+										</a:schemeClr>
+									</a:gs>
+									<a:gs pos="100000">
+										<a:schemeClr val="phClr">
+											<a:shade val="94000"/>
+											<a:satMod val="135000"/>
+										</a:schemeClr>
+									</a:gs>
+								</a:gsLst>
+								<a:lin ang="16200000" scaled="0"/>
+							</a:gradFill>
+						</a:fillStyleLst>
+						<a:lnStyleLst>
+							<a:ln algn="ctr" cap="flat" cmpd="sng" w="9525">
+								<a:solidFill>
+									<a:schemeClr val="phClr">
+										<a:shade val="95000"/>
+										<a:satMod val="105000"/>
+									</a:schemeClr>
+								</a:solidFill>
+								<a:prstDash val="solid"/>
+							</a:ln>
+							<a:ln algn="ctr" cap="flat" cmpd="sng" w="25400">
+								<a:solidFill>
+									<a:schemeClr val="phClr"/>
+								</a:solidFill>
+								<a:prstDash val="solid"/>
+							</a:ln>
+							<a:ln algn="ctr" cap="flat" cmpd="sng" w="38100">
+								<a:solidFill>
+									<a:schemeClr val="phClr"/>
+								</a:solidFill>
+								<a:prstDash val="solid"/>
+							</a:ln>
+						</a:lnStyleLst>
+						<a:effectStyleLst>
+							<a:effectStyle>
+								<a:effectLst>
+									<a:outerShdw blurRad="40000" dir="5400000" dist="20000" rotWithShape="0">
+										<a:srgbClr val="000000">
+											<a:alpha val="38000"/>
+										</a:srgbClr>
+									</a:outerShdw>
+								</a:effectLst>
+							</a:effectStyle>
+							<a:effectStyle>
+								<a:effectLst>
+									<a:outerShdw blurRad="40000" dir="5400000" dist="23000" rotWithShape="0">
+										<a:srgbClr val="000000">
+											<a:alpha val="35000"/>
+										</a:srgbClr>
+									</a:outerShdw>
+								</a:effectLst>
+							</a:effectStyle>
+							<a:effectStyle>
+								<a:effectLst>
+									<a:outerShdw blurRad="40000" dir="5400000" dist="23000" rotWithShape="0">
+										<a:srgbClr val="000000">
+											<a:alpha val="35000"/>
+										</a:srgbClr>
+									</a:outerShdw>
+								</a:effectLst>
+								<a:scene3d>
+									<a:camera prst="orthographicFront">
+										<a:rot lat="0" lon="0" rev="0"/>
+									</a:camera>
+									<a:lightRig dir="t" rig="threePt">
+										<a:rot lat="0" lon="0" rev="1200000"/>
+									</a:lightRig>
+								</a:scene3d>
+								<a:sp3d>
+									<a:bevelT h="25400" w="63500"/>
+								</a:sp3d>
+							</a:effectStyle>
+						</a:effectStyleLst>
+						<a:bgFillStyleLst>
+							<a:solidFill>
+								<a:schemeClr val="phClr"/>
+							</a:solidFill>
+							<a:gradFill rotWithShape="1">
+								<a:gsLst>
+									<a:gs pos="0">
+										<a:schemeClr val="phClr">
+											<a:tint val="40000"/>
+											<a:satMod val="350000"/>
+										</a:schemeClr>
+									</a:gs>
+									<a:gs pos="40000">
+										<a:schemeClr val="phClr">
+											<a:tint val="45000"/>
+											<a:shade val="99000"/>
+											<a:satMod val="350000"/>
+										</a:schemeClr>
+									</a:gs>
+									<a:gs pos="100000">
+										<a:schemeClr val="phClr">
+											<a:shade val="20000"/>
+											<a:satMod val="255000"/>
+										</a:schemeClr>
+									</a:gs>
+								</a:gsLst>
+								<a:path path="circle">
+									<a:fillToRect b="180000" l="50000" r="50000" t="-80000"/>
+								</a:path>
+							</a:gradFill>
+							<a:gradFill rotWithShape="1">
+								<a:gsLst>
+									<a:gs pos="0">
+										<a:schemeClr val="phClr">
+											<a:tint val="80000"/>
+											<a:satMod val="300000"/>
+										</a:schemeClr>
+									</a:gs>
+									<a:gs pos="100000">
+										<a:schemeClr val="phClr">
+											<a:shade val="30000"/>
+											<a:satMod val="200000"/>
+										</a:schemeClr>
+									</a:gs>
+								</a:gsLst>
+								<a:path path="circle">
+									<a:fillToRect b="50000" l="50000" r="50000" t="50000"/>
+								</a:path>
+							</a:gradFill>
+						</a:bgFillStyleLst>
+					</a:fmtScheme>
+				</a:themeElements>
+				<a:objectDefaults/>
+				<a:extraClrSchemeLst/>
+			</a:theme>
+		</pkg:xmlData>
+	</pkg:part>
+	<pkg:part pkg:contentType="application/vnd.openxmlformats-officedocument.wordprocessingml.settings+xml" pkg:name="/word/settings.xml">
+		<pkg:xmlData>
+			<w:settings mc:Ignorable="w14" xmlns:m="http://schemas.openxmlformats.org/officeDocument/2006/math" xmlns:mc="http://schemas.openxmlformats.org/markup-compatibility/2006" xmlns:o="urn:schemas-microsoft-com:office:office" xmlns:r="http://schemas.openxmlformats.org/officeDocument/2006/relationships" xmlns:sl="http://schemas.openxmlformats.org/schemaLibrary/2006/main" xmlns:v="urn:schemas-microsoft-com:vml" xmlns:w="http://schemas.openxmlformats.org/wordprocessingml/2006/main" xmlns:w10="urn:schemas-microsoft-com:office:word" xmlns:w14="http://schemas.microsoft.com/office/word/2010/wordml">
+				<w:zoom w:percent="100"/>
+				<w:bordersDoNotSurroundHeader/>
+				<w:bordersDoNotSurroundFooter/>
+				<w:stylePaneFormatFilter w:allStyles="1" w:alternateStyleNames="0" w:clearFormatting="1" w:customStyles="0" w:directFormattingOnNumbering="1" w:directFormattingOnParagraphs="1" w:directFormattingOnRuns="1" w:directFormattingOnTables="1" w:headingStyles="0" w:latentStyles="0" w:numberingStyles="0" w:stylesInUse="0" w:tableStyles="0" w:top3HeadingStyles="1" w:val="3F01" w:visibleStyles="0"/>
+				<w:doNotTrackMoves/>
+				<w:defaultTabStop w:val="420"/>
+				<w:evenAndOddHeaders/>
+				<w:drawingGridHorizontalSpacing w:val="105"/>
+				<w:drawingGridVerticalSpacing w:val="156"/>
+				<w:displayHorizontalDrawingGridEvery w:val="0"/>
+				<w:displayVerticalDrawingGridEvery w:val="2"/>
+				<w:characterSpacingControl w:val="compressPunctuation"/>
+				<w:hdrShapeDefaults>
+					<o:shapedefaults spidmax="2049" v:ext="edit"/>
+				</w:hdrShapeDefaults>
+				<w:footnotePr>
+					<w:footnote w:id="-1"/>
+					<w:footnote w:id="0"/>
+				</w:footnotePr>
+				<w:endnotePr>
+					<w:endnote w:id="-1"/>
+					<w:endnote w:id="0"/>
+				</w:endnotePr>
+				<w:compat>
+					<w:spaceForUL/>
+					<w:balanceSingleByteDoubleByteWidth/>
+					<w:doNotLeaveBackslashAlone/>
+					<w:ulTrailSpace/>
+					<w:doNotExpandShiftReturn/>
+					<w:adjustLineHeightInTable/>
+					<w:useFELayout/>
+					<w:useNormalStyleForList/>
+					<w:doNotUseIndentAsNumberingTabStop/>
+					<w:useAltKinsokuLineBreakRules/>
+					<w:allowSpaceOfSameStyleInTable/>
+					<w:doNotSuppressIndentation/>
+					<w:doNotAutofitConstrainedTables/>
+					<w:autofitToFirstFixedWidthCell/>
+					<w:displayHangulFixedWidth/>
+					<w:splitPgBreakAndParaMark/>
+					<w:doNotVertAlignCellWithSp/>
+					<w:doNotBreakConstrainedForcedTable/>
+					<w:doNotVertAlignInTxbx/>
+					<w:useAnsiKerningPairs/>
+					<w:cachedColBalance/>
+					<w:compatSetting w:name="compatibilityMode" w:uri="http://schemas.microsoft.com/office/word" w:val="11"/>
+				</w:compat>
+				<w:rsids>
+					<w:rsidRoot w:val="00704D29"/>
+					<w:rsid w:val="00013B5B"/>
+					<w:rsid w:val="00017BD2"/>
+					<w:rsid w:val="00024353"/>
+					<w:rsid w:val="00032AB6"/>
+					<w:rsid w:val="000335E0"/>
+					<w:rsid w:val="00037026"/>
+					<w:rsid w:val="00041207"/>
+					<w:rsid w:val="00045F7D"/>
+					<w:rsid w:val="000634FF"/>
+					<w:rsid w:val="000675A8"/>
+					<w:rsid w:val="00072663"/>
+					<w:rsid w:val="0007594E"/>
+					<w:rsid w:val="0008659D"/>
+					<w:rsid w:val="00091494"/>
+					<w:rsid w:val="000A26C9"/>
+					<w:rsid w:val="000A4291"/>
+					<w:rsid w:val="000D249A"/>
+					<w:rsid w:val="000D7EE1"/>
+					<w:rsid w:val="0010199E"/>
+					<w:rsid w:val="0012364B"/>
+					<w:rsid w:val="00130ED7"/>
+					<w:rsid w:val="001400FE"/>
+					<w:rsid w:val="001409D1"/>
+					<w:rsid w:val="0015368E"/>
+					<w:rsid w:val="001577A3"/>
+					<w:rsid w:val="00163265"/>
+					<w:rsid w:val="00171408"/>
+					<w:rsid w:val="001973CF"/>
+					<w:rsid w:val="001A2234"/>
+					<w:rsid w:val="001A590C"/>
+					<w:rsid w:val="001A6F9A"/>
+					<w:rsid w:val="001C6D03"/>
+					<w:rsid w:val="001D2BFB"/>
+					<w:rsid w:val="001F1FD6"/>
+					<w:rsid w:val="001F2AE4"/>
+					<w:rsid w:val="002075AC"/>
+					<w:rsid w:val="00210DBC"/>
+					<w:rsid w:val="00223926"/>
+					<w:rsid w:val="00240F49"/>
+					<w:rsid w:val="00256922"/>
+					<w:rsid w:val="00275877"/>
+					<w:rsid w:val="00280430"/>
+					<w:rsid w:val="0028270C"/>
+					<w:rsid w:val="002A4355"/>
+					<w:rsid w:val="002A490A"/>
+					<w:rsid w:val="002B0EFC"/>
+					<w:rsid w:val="002C492A"/>
+					<w:rsid w:val="002E11A7"/>
+					<w:rsid w:val="002F1D39"/>
+					<w:rsid w:val="00300FB4"/>
+					<w:rsid w:val="003165E8"/>
+					<w:rsid w:val="003271AC"/>
+					<w:rsid w:val="00330D81"/>
+					<w:rsid w:val="003452C5"/>
+					<w:rsid w:val="00361123"/>
+					<w:rsid w:val="00366B8D"/>
+					<w:rsid w:val="00366D83"/>
+					<w:rsid w:val="00387887"/>
+					<w:rsid w:val="003907C3"/>
+					<w:rsid w:val="003D4B52"/>
+					<w:rsid w:val="003F2697"/>
+					<w:rsid w:val="00406040"/>
+					<w:rsid w:val="004072CF"/>
+					<w:rsid w:val="004110E9"/>
+					<w:rsid w:val="00440B4B"/>
+					<w:rsid w:val="00442167"/>
+					<w:rsid w:val="0046265F"/>
+					<w:rsid w:val="004775A3"/>
+					<w:rsid w:val="004908DE"/>
+					<w:rsid w:val="00494A57"/>
+					<w:rsid w:val="004B0E53"/>
+					<w:rsid w:val="004B2EDE"/>
+					<w:rsid w:val="004B4FE3"/>
+					<w:rsid w:val="004B56A1"/>
+					<w:rsid w:val="004D3783"/>
+					<w:rsid w:val="004D582C"/>
+					<w:rsid w:val="004F12B4"/>
+					<w:rsid w:val="00505A8F"/>
+					<w:rsid w:val="0051225E"/>
+					<w:rsid w:val="0051564D"/>
+					<w:rsid w:val="00595E9A"/>
+					<w:rsid w:val="005A1C06"/>
+					<w:rsid w:val="005A4541"/>
+					<w:rsid w:val="005B0CA3"/>
+					<w:rsid w:val="005C2812"/>
+					<w:rsid w:val="005C3104"/>
+					<w:rsid w:val="005C4F99"/>
+					<w:rsid w:val="005C6D37"/>
+					<w:rsid w:val="005C7401"/>
+					<w:rsid w:val="005D4AB5"/>
+					<w:rsid w:val="005E06FB"/>
+					<w:rsid w:val="00604C4E"/>
+					<w:rsid w:val="0063790A"/>
+					<w:rsid w:val="00650B9D"/>
+					<w:rsid w:val="0066580D"/>
+					<w:rsid w:val="0067001D"/>
+					<w:rsid w:val="00672D0B"/>
+					<w:rsid w:val="00673A66"/>
+					<w:rsid w:val="00681FC6"/>
+					<w:rsid w:val="00686BEF"/>
+					<w:rsid w:val="00687CD1"/>
+					<w:rsid w:val="00691209"/>
+					<w:rsid w:val="006976BF"/>
+					<w:rsid w:val="00697C8B"/>
+					<w:rsid w:val="006A4731"/>
+					<w:rsid w:val="006C3AF0"/>
+					<w:rsid w:val="006D7134"/>
+					<w:rsid w:val="006E2D68"/>
+					<w:rsid w:val="006E31F6"/>
+					<w:rsid w:val="006E50E5"/>
+					<w:rsid w:val="00704D29"/>
+					<w:rsid w:val="00755E9E"/>
+					<w:rsid w:val="007620DA"/>
+					<w:rsid w:val="0077243B"/>
+					<w:rsid w:val="00790892"/>
+					<w:rsid w:val="00796618"/>
+					<w:rsid w:val="007A117C"/>
+					<w:rsid w:val="007C462F"/>
+					<w:rsid w:val="007D418E"/>
+					<w:rsid w:val="007F0875"/>
+					<w:rsid w:val="007F49E4"/>
+					<w:rsid w:val="00800F02"/>
+					<w:rsid w:val="00824944"/>
+					<w:rsid w:val="00846AEA"/>
+					<w:rsid w:val="00847F37"/>
+					<w:rsid w:val="00852887"/>
+					<w:rsid w:val="008A675A"/>
+					<w:rsid w:val="008B3D93"/>
+					<w:rsid w:val="008E6EC4"/>
+					<w:rsid w:val="008F220F"/>
+					<w:rsid w:val="0090557A"/>
+					<w:rsid w:val="0090721C"/>
+					<w:rsid w:val="009166C9"/>
+					<w:rsid w:val="00923DA0"/>
+					<w:rsid w:val="009260B5"/>
+					<w:rsid w:val="00930061"/>
+					<w:rsid w:val="00942CDF"/>
+					<w:rsid w:val="00950E61"/>
+					<w:rsid w:val="00955048"/>
+					<w:rsid w:val="009554A8"/>
+					<w:rsid w:val="00955E36"/>
+					<w:rsid w:val="00961BB1"/>
+					<w:rsid w:val="00980DC7"/>
+					<w:rsid w:val="009914D1"/>
+					<w:rsid w:val="009F69C1"/>
+					<w:rsid w:val="00A16045"/>
+					<w:rsid w:val="00A31223"/>
+					<w:rsid w:val="00A41C3A"/>
+					<w:rsid w:val="00A600F0"/>
+					<w:rsid w:val="00A64D36"/>
+					<w:rsid w:val="00A669E4"/>
+					<w:rsid w:val="00A91E20"/>
+					<w:rsid w:val="00AA16BB"/>
+					<w:rsid w:val="00AC3DDB"/>
+					<w:rsid w:val="00AD1A65"/>
+					<w:rsid w:val="00AE0411"/>
+					<w:rsid w:val="00AF6276"/>
+					<w:rsid w:val="00AF70CE"/>
+					<w:rsid w:val="00B02463"/>
+					<w:rsid w:val="00B56D1E"/>
+					<w:rsid w:val="00B570FB"/>
+					<w:rsid w:val="00B578C1"/>
+					<w:rsid w:val="00B6458D"/>
+					<w:rsid w:val="00B91B1A"/>
+					<w:rsid w:val="00BB7424"/>
+					<w:rsid w:val="00BC611E"/>
+					<w:rsid w:val="00BE5DDC"/>
+					<w:rsid w:val="00C0008F"/>
+					<w:rsid w:val="00C051F1"/>
+					<w:rsid w:val="00C15C76"/>
+					<w:rsid w:val="00C52CFB"/>
+					<w:rsid w:val="00C93D1E"/>
+					<w:rsid w:val="00CA64A5"/>
+					<w:rsid w:val="00CB1F89"/>
+					<w:rsid w:val="00CB7C72"/>
+					<w:rsid w:val="00CE3A65"/>
+					<w:rsid w:val="00CF6269"/>
+					<w:rsid w:val="00D02820"/>
+					<w:rsid w:val="00D07140"/>
+					<w:rsid w:val="00D17D54"/>
+					<w:rsid w:val="00D43792"/>
+					<w:rsid w:val="00D50577"/>
+					<w:rsid w:val="00D55C78"/>
+					<w:rsid w:val="00D85659"/>
+					<w:rsid w:val="00D87C35"/>
+					<w:rsid w:val="00D948E2"/>
+					<w:rsid w:val="00DA04B6"/>
+					<w:rsid w:val="00DA558B"/>
+					<w:rsid w:val="00DD230C"/>
+					<w:rsid w:val="00DD6E04"/>
+					<w:rsid w:val="00DE376D"/>
+					<w:rsid w:val="00DF64E3"/>
+					<w:rsid w:val="00E05F09"/>
+					<w:rsid w:val="00E17E78"/>
+					<w:rsid w:val="00E30F8F"/>
+					<w:rsid w:val="00E56C79"/>
+					<w:rsid w:val="00E72F4D"/>
+					<w:rsid w:val="00EA2F18"/>
+					<w:rsid w:val="00EB1E10"/>
+					<w:rsid w:val="00EB3511"/>
+					<w:rsid w:val="00EB5A61"/>
+					<w:rsid w:val="00EB6BE7"/>
+					<w:rsid w:val="00EC68F5"/>
+					<w:rsid w:val="00EE1A58"/>
+					<w:rsid w:val="00EE27E1"/>
+					<w:rsid w:val="00EF4E54"/>
+					<w:rsid w:val="00F029FF"/>
+					<w:rsid w:val="00F17F9A"/>
+					<w:rsid w:val="00F30893"/>
+					<w:rsid w:val="00F3740E"/>
+					<w:rsid w:val="00F40516"/>
+					<w:rsid w:val="00F675E5"/>
+					<w:rsid w:val="00F825CF"/>
+					<w:rsid w:val="00FE08EA"/>
+					<w:rsid w:val="00FE5490"/>
+					<w:rsid w:val="00FF14B8"/>
+				</w:rsids>
+				<m:mathPr>
+					<m:mathFont m:val="Cambria Math"/>
+					<m:brkBin m:val="before"/>
+					<m:brkBinSub m:val="--"/>
+					<m:smallFrac m:val="0"/>
+					<m:dispDef/>
+					<m:lMargin m:val="0"/>
+					<m:rMargin m:val="0"/>
+					<m:defJc m:val="centerGroup"/>
+					<m:wrapIndent m:val="1440"/>
+					<m:intLim m:val="subSup"/>
+					<m:naryLim m:val="undOvr"/>
+				</m:mathPr>
+				<w:themeFontLang w:eastAsia="zh-CN" w:val="en-US"/>
+				<w:clrSchemeMapping w:accent1="accent1" w:accent2="accent2" w:accent3="accent3" w:accent4="accent4" w:accent5="accent5" w:accent6="accent6" w:bg1="light1" w:bg2="light2" w:followedHyperlink="followedHyperlink" w:hyperlink="hyperlink" w:t1="dark1" w:t2="dark2"/>
+				<w:doNotIncludeSubdocsInStats/>
+				<w:shapeDefaults>
+					<o:shapedefaults spidmax="2049" v:ext="edit"/>
+					<o:shapelayout v:ext="edit">
+						<o:idmap data="1" v:ext="edit"/>
+					</o:shapelayout>
+				</w:shapeDefaults>
+				<w:decimalSymbol w:val="."/>
+				<w:listSeparator w:val=","/>
+			</w:settings>
+		</pkg:xmlData>
+	</pkg:part>
+	<pkg:part pkg:contentType="application/vnd.openxmlformats-officedocument.wordprocessingml.styles+xml" pkg:name="/word/styles.xml">
+		<pkg:xmlData>
+			<w:styles mc:Ignorable="w14" xmlns:mc="http://schemas.openxmlformats.org/markup-compatibility/2006" xmlns:r="http://schemas.openxmlformats.org/officeDocument/2006/relationships" xmlns:w="http://schemas.openxmlformats.org/wordprocessingml/2006/main" xmlns:w14="http://schemas.microsoft.com/office/word/2010/wordml">
+				<w:docDefaults>
+					<w:rPrDefault>
+						<w:rPr>
+							<w:rFonts w:ascii="Times New Roman" w:cs="Times New Roman" w:eastAsia="宋体" w:hAnsi="Times New Roman"/>
+							<w:lang w:bidi="ar-SA" w:eastAsia="zh-CN" w:val="en-US"/>
+						</w:rPr>
+					</w:rPrDefault>
+					<w:pPrDefault/>
+				</w:docDefaults>
+				<w:latentStyles w:count="267" w:defLockedState="0" w:defQFormat="0" w:defSemiHidden="0" w:defUIPriority="0" w:defUnhideWhenUsed="0">
+					<w:lsdException w:name="Normal" w:qFormat="1"/>
+					<w:lsdException w:name="heading 1" w:qFormat="1"/>
+					<w:lsdException w:name="heading 2" w:qFormat="1" w:semiHidden="1" w:unhideWhenUsed="1"/>
+					<w:lsdException w:name="heading 3" w:qFormat="1" w:semiHidden="1" w:unhideWhenUsed="1"/>
+					<w:lsdException w:name="heading 4" w:qFormat="1" w:semiHidden="1" w:unhideWhenUsed="1"/>
+					<w:lsdException w:name="heading 5" w:qFormat="1" w:semiHidden="1" w:unhideWhenUsed="1"/>
+					<w:lsdException w:name="heading 6" w:qFormat="1" w:semiHidden="1" w:unhideWhenUsed="1"/>
+					<w:lsdException w:name="heading 7" w:qFormat="1" w:semiHidden="1" w:unhideWhenUsed="1"/>
+					<w:lsdException w:name="heading 8" w:qFormat="1" w:semiHidden="1" w:unhideWhenUsed="1"/>
+					<w:lsdException w:name="heading 9" w:qFormat="1" w:semiHidden="1" w:unhideWhenUsed="1"/>
+					<w:lsdException w:name="header" w:uiPriority="99"/>
+					<w:lsdException w:name="footer" w:uiPriority="99"/>
+					<w:lsdException w:name="caption" w:qFormat="1" w:semiHidden="1" w:unhideWhenUsed="1"/>
+					<w:lsdException w:name="Title" w:qFormat="1"/>
+					<w:lsdException w:name="Subtitle" w:qFormat="1"/>
+					<w:lsdException w:name="Strong" w:qFormat="1"/>
+					<w:lsdException w:name="Emphasis" w:qFormat="1"/>
+					<w:lsdException w:name="Placeholder Text" w:semiHidden="1" w:uiPriority="99"/>
+					<w:lsdException w:name="No Spacing" w:qFormat="1" w:uiPriority="1"/>
+					<w:lsdException w:name="Light Shading" w:uiPriority="60"/>
+					<w:lsdException w:name="Light List" w:uiPriority="61"/>
+					<w:lsdException w:name="Light Grid" w:uiPriority="62"/>
+					<w:lsdException w:name="Medium Shading 1" w:uiPriority="63"/>
+					<w:lsdException w:name="Medium Shading 2" w:uiPriority="64"/>
+					<w:lsdException w:name="Medium List 1" w:uiPriority="65"/>
+					<w:lsdException w:name="Medium List 2" w:uiPriority="66"/>
+					<w:lsdException w:name="Medium Grid 1" w:uiPriority="67"/>
+					<w:lsdException w:name="Medium Grid 2" w:uiPriority="68"/>
+					<w:lsdException w:name="Medium Grid 3" w:uiPriority="69"/>
+					<w:lsdException w:name="Dark List" w:uiPriority="70"/>
+					<w:lsdException w:name="Colorful Shading" w:uiPriority="71"/>
+					<w:lsdException w:name="Colorful List" w:uiPriority="72"/>
+					<w:lsdException w:name="Colorful Grid" w:uiPriority="73"/>
+					<w:lsdException w:name="Light Shading Accent 1" w:uiPriority="60"/>
+					<w:lsdException w:name="Light List Accent 1" w:uiPriority="61"/>
+					<w:lsdException w:name="Light Grid Accent 1" w:uiPriority="62"/>
+					<w:lsdException w:name="Medium Shading 1 Accent 1" w:uiPriority="63"/>
+					<w:lsdException w:name="Medium Shading 2 Accent 1" w:uiPriority="64"/>
+					<w:lsdException w:name="Medium List 1 Accent 1" w:uiPriority="65"/>
+					<w:lsdException w:name="Revision" w:semiHidden="1" w:uiPriority="99"/>
+					<w:lsdException w:name="List Paragraph" w:qFormat="1" w:uiPriority="34"/>
+					<w:lsdException w:name="Quote" w:qFormat="1" w:uiPriority="29"/>
+					<w:lsdException w:name="Intense Quote" w:qFormat="1" w:uiPriority="30"/>
+					<w:lsdException w:name="Medium List 2 Accent 1" w:uiPriority="66"/>
+					<w:lsdException w:name="Medium Grid 1 Accent 1" w:uiPriority="67"/>
+					<w:lsdException w:name="Medium Grid 2 Accent 1" w:uiPriority="68"/>
+					<w:lsdException w:name="Medium Grid 3 Accent 1" w:uiPriority="69"/>
+					<w:lsdException w:name="Dark List Accent 1" w:uiPriority="70"/>
+					<w:lsdException w:name="Colorful Shading Accent 1" w:uiPriority="71"/>
+					<w:lsdException w:name="Colorful List Accent 1" w:uiPriority="72"/>
+					<w:lsdException w:name="Colorful Grid Accent 1" w:uiPriority="73"/>
+					<w:lsdException w:name="Light Shading Accent 2" w:uiPriority="60"/>
+					<w:lsdException w:name="Light List Accent 2" w:uiPriority="61"/>
+					<w:lsdException w:name="Light Grid Accent 2" w:uiPriority="62"/>
+					<w:lsdException w:name="Medium Shading 1 Accent 2" w:uiPriority="63"/>
+					<w:lsdException w:name="Medium Shading 2 Accent 2" w:uiPriority="64"/>
+					<w:lsdException w:name="Medium List 1 Accent 2" w:uiPriority="65"/>
+					<w:lsdException w:name="Medium List 2 Accent 2" w:uiPriority="66"/>
+					<w:lsdException w:name="Medium Grid 1 Accent 2" w:uiPriority="67"/>
+					<w:lsdException w:name="Medium Grid 2 Accent 2" w:uiPriority="68"/>
+					<w:lsdException w:name="Medium Grid 3 Accent 2" w:uiPriority="69"/>
+					<w:lsdException w:name="Dark List Accent 2" w:uiPriority="70"/>
+					<w:lsdException w:name="Colorful Shading Accent 2" w:uiPriority="71"/>
+					<w:lsdException w:name="Colorful List Accent 2" w:uiPriority="72"/>
+					<w:lsdException w:name="Colorful Grid Accent 2" w:uiPriority="73"/>
+					<w:lsdException w:name="Light Shading Accent 3" w:uiPriority="60"/>
+					<w:lsdException w:name="Light List Accent 3" w:uiPriority="61"/>
+					<w:lsdException w:name="Light Grid Accent 3" w:uiPriority="62"/>
+					<w:lsdException w:name="Medium Shading 1 Accent 3" w:uiPriority="63"/>
+					<w:lsdException w:name="Medium Shading 2 Accent 3" w:uiPriority="64"/>
+					<w:lsdException w:name="Medium List 1 Accent 3" w:uiPriority="65"/>
+					<w:lsdException w:name="Medium List 2 Accent 3" w:uiPriority="66"/>
+					<w:lsdException w:name="Medium Grid 1 Accent 3" w:uiPriority="67"/>
+					<w:lsdException w:name="Medium Grid 2 Accent 3" w:uiPriority="68"/>
+					<w:lsdException w:name="Medium Grid 3 Accent 3" w:uiPriority="69"/>
+					<w:lsdException w:name="Dark List Accent 3" w:uiPriority="70"/>
+					<w:lsdException w:name="Colorful Shading Accent 3" w:uiPriority="71"/>
+					<w:lsdException w:name="Colorful List Accent 3" w:uiPriority="72"/>
+					<w:lsdException w:name="Colorful Grid Accent 3" w:uiPriority="73"/>
+					<w:lsdException w:name="Light Shading Accent 4" w:uiPriority="60"/>
+					<w:lsdException w:name="Light List Accent 4" w:uiPriority="61"/>
+					<w:lsdException w:name="Light Grid Accent 4" w:uiPriority="62"/>
+					<w:lsdException w:name="Medium Shading 1 Accent 4" w:uiPriority="63"/>
+					<w:lsdException w:name="Medium Shading 2 Accent 4" w:uiPriority="64"/>
+					<w:lsdException w:name="Medium List 1 Accent 4" w:uiPriority="65"/>
+					<w:lsdException w:name="Medium List 2 Accent 4" w:uiPriority="66"/>
+					<w:lsdException w:name="Medium Grid 1 Accent 4" w:uiPriority="67"/>
+					<w:lsdException w:name="Medium Grid 2 Accent 4" w:uiPriority="68"/>
+					<w:lsdException w:name="Medium Grid 3 Accent 4" w:uiPriority="69"/>
+					<w:lsdException w:name="Dark List Accent 4" w:uiPriority="70"/>
+					<w:lsdException w:name="Colorful Shading Accent 4" w:uiPriority="71"/>
+					<w:lsdException w:name="Colorful List Accent 4" w:uiPriority="72"/>
+					<w:lsdException w:name="Colorful Grid Accent 4" w:uiPriority="73"/>
+					<w:lsdException w:name="Light Shading Accent 5" w:uiPriority="60"/>
+					<w:lsdException w:name="Light List Accent 5" w:uiPriority="61"/>
+					<w:lsdException w:name="Light Grid Accent 5" w:uiPriority="62"/>
+					<w:lsdException w:name="Medium Shading 1 Accent 5" w:uiPriority="63"/>
+					<w:lsdException w:name="Medium Shading 2 Accent 5" w:uiPriority="64"/>
+					<w:lsdException w:name="Medium List 1 Accent 5" w:uiPriority="65"/>
+					<w:lsdException w:name="Medium List 2 Accent 5" w:uiPriority="66"/>
+					<w:lsdException w:name="Medium Grid 1 Accent 5" w:uiPriority="67"/>
+					<w:lsdException w:name="Medium Grid 2 Accent 5" w:uiPriority="68"/>
+					<w:lsdException w:name="Medium Grid 3 Accent 5" w:uiPriority="69"/>
+					<w:lsdException w:name="Dark List Accent 5" w:uiPriority="70"/>
+					<w:lsdException w:name="Colorful Shading Accent 5" w:uiPriority="71"/>
+					<w:lsdException w:name="Colorful List Accent 5" w:uiPriority="72"/>
+					<w:lsdException w:name="Colorful Grid Accent 5" w:uiPriority="73"/>
+					<w:lsdException w:name="Light Shading Accent 6" w:uiPriority="60"/>
+					<w:lsdException w:name="Light List Accent 6" w:uiPriority="61"/>
+					<w:lsdException w:name="Light Grid Accent 6" w:uiPriority="62"/>
+					<w:lsdException w:name="Medium Shading 1 Accent 6" w:uiPriority="63"/>
+					<w:lsdException w:name="Medium Shading 2 Accent 6" w:uiPriority="64"/>
+					<w:lsdException w:name="Medium List 1 Accent 6" w:uiPriority="65"/>
+					<w:lsdException w:name="Medium List 2 Accent 6" w:uiPriority="66"/>
+					<w:lsdException w:name="Medium Grid 1 Accent 6" w:uiPriority="67"/>
+					<w:lsdException w:name="Medium Grid 2 Accent 6" w:uiPriority="68"/>
+					<w:lsdException w:name="Medium Grid 3 Accent 6" w:uiPriority="69"/>
+					<w:lsdException w:name="Dark List Accent 6" w:uiPriority="70"/>
+					<w:lsdException w:name="Colorful Shading Accent 6" w:uiPriority="71"/>
+					<w:lsdException w:name="Colorful List Accent 6" w:uiPriority="72"/>
+					<w:lsdException w:name="Colorful Grid Accent 6" w:uiPriority="73"/>
+					<w:lsdException w:name="Subtle Emphasis" w:qFormat="1" w:uiPriority="19"/>
+					<w:lsdException w:name="Intense Emphasis" w:qFormat="1" w:uiPriority="21"/>
+					<w:lsdException w:name="Subtle Reference" w:qFormat="1" w:uiPriority="31"/>
+					<w:lsdException w:name="Intense Reference" w:qFormat="1" w:uiPriority="32"/>
+					<w:lsdException w:name="Book Title" w:qFormat="1" w:uiPriority="33"/>
+					<w:lsdException w:name="Bibliography" w:semiHidden="1" w:uiPriority="37" w:unhideWhenUsed="1"/>
+					<w:lsdException w:name="TOC Heading" w:qFormat="1" w:semiHidden="1" w:uiPriority="39" w:unhideWhenUsed="1"/>
+				</w:latentStyles>
+				<w:style w:default="1" w:styleId="a" w:type="paragraph">
+					<w:name w:val="Normal"/>
+					<w:qFormat/>
+					<w:rsid w:val="00704D29"/>
+					<w:pPr>
+						<w:widowControl w:val="0"/>
+						<w:jc w:val="both"/>
+					</w:pPr>
+					<w:rPr>
+						<w:kern w:val="2"/>
+						<w:sz w:val="21"/>
+						<w:szCs w:val="24"/>
+					</w:rPr>
+				</w:style>
+				<w:style w:styleId="1" w:type="paragraph">
+					<w:name w:val="heading 1"/>
+					<w:basedOn w:val="a"/>
+					<w:next w:val="a"/>
+					<w:link w:val="1Char"/>
+					<w:qFormat/>
+					<w:rsid w:val="00B02463"/>
+					<w:pPr>
+						<w:keepNext/>
+						<w:widowControl/>
+						<w:ind w:firstLine="435"/>
+						<w:jc w:val="left"/>
+						<w:outlineLvl w:val="0"/>
+					</w:pPr>
+					<w:rPr>
+						<w:rFonts w:ascii="宋体" w:hAnsi="宋体"/>
+						<w:kern w:val="0"/>
+						<w:sz w:val="28"/>
+					</w:rPr>
+				</w:style>
+				<w:style w:styleId="2" w:type="paragraph">
+					<w:name w:val="heading 2"/>
+					<w:basedOn w:val="a"/>
+					<w:next w:val="a"/>
+					<w:link w:val="2Char"/>
+					<w:semiHidden/>
+					<w:unhideWhenUsed/>
+					<w:qFormat/>
+					<w:rsid w:val="00B02463"/>
+					<w:pPr>
+						<w:keepNext/>
+						<w:keepLines/>
+						<w:spacing w:after="260" w:before="260" w:line="416" w:lineRule="auto"/>
+						<w:outlineLvl w:val="1"/>
+					</w:pPr>
+					<w:rPr>
+						<w:rFonts w:ascii="Cambria" w:hAnsi="Cambria"/>
+						<w:b/>
+						<w:bCs/>
+						<w:sz w:val="32"/>
+						<w:szCs w:val="32"/>
+					</w:rPr>
+				</w:style>
+				<w:style w:default="1" w:styleId="a0" w:type="character">
+					<w:name w:val="Default Paragraph Font"/>
+					<w:semiHidden/>
+				</w:style>
+				<w:style w:default="1" w:styleId="a1" w:type="table">
+					<w:name w:val="Normal Table"/>
+					<w:semiHidden/>
+					<w:tblPr>
+						<w:tblInd w:type="dxa" w:w="0"/>
+						<w:tblCellMar>
+							<w:top w:type="dxa" w:w="0"/>
+							<w:left w:type="dxa" w:w="108"/>
+							<w:bottom w:type="dxa" w:w="0"/>
+							<w:right w:type="dxa" w:w="108"/>
+						</w:tblCellMar>
+					</w:tblPr>
+				</w:style>
+				<w:style w:default="1" w:styleId="a2" w:type="numbering">
+					<w:name w:val="No List"/>
+					<w:semiHidden/>
+				</w:style>
+				<w:style w:styleId="a3" w:type="paragraph">
+					<w:name w:val="footer"/>
+					<w:basedOn w:val="a"/>
+					<w:link w:val="Char"/>
+					<w:uiPriority w:val="99"/>
+					<w:rsid w:val="00704D29"/>
+					<w:pPr>
+						<w:tabs>
+							<w:tab w:pos="4153" w:val="center"/>
+							<w:tab w:pos="8306" w:val="right"/>
+						</w:tabs>
+						<w:snapToGrid w:val="0"/>
+						<w:jc w:val="left"/>
+					</w:pPr>
+					<w:rPr>
+						<w:sz w:val="18"/>
+						<w:szCs w:val="18"/>
+					</w:rPr>
+				</w:style>
+				<w:style w:styleId="a4" w:type="character">
+					<w:name w:val="page number"/>
+					<w:basedOn w:val="a0"/>
+					<w:rsid w:val="00704D29"/>
+				</w:style>
+				<w:style w:styleId="a5" w:type="paragraph">
+					<w:name w:val="header"/>
+					<w:basedOn w:val="a"/>
+					<w:link w:val="Char0"/>
+					<w:uiPriority w:val="99"/>
+					<w:rsid w:val="00595E9A"/>
+					<w:pPr>
+						<w:pBdr>
+							<w:bottom w:color="auto" w:space="1" w:sz="6" w:val="single"/>
+						</w:pBdr>
+						<w:tabs>
+							<w:tab w:pos="4153" w:val="center"/>
+							<w:tab w:pos="8306" w:val="right"/>
+						</w:tabs>
+						<w:snapToGrid w:val="0"/>
+						<w:jc w:val="center"/>
+					</w:pPr>
+					<w:rPr>
+						<w:sz w:val="18"/>
+						<w:szCs w:val="18"/>
+						<w:lang w:eastAsia="x-none" w:val="x-none"/>
+					</w:rPr>
+				</w:style>
+				<w:style w:customStyle="1" w:styleId="Char0" w:type="character">
+					<w:name w:val="页眉 Char"/>
+					<w:link w:val="a5"/>
+					<w:uiPriority w:val="99"/>
+					<w:rsid w:val="00595E9A"/>
+					<w:rPr>
+						<w:kern w:val="2"/>
+						<w:sz w:val="18"/>
+						<w:szCs w:val="18"/>
+					</w:rPr>
+				</w:style>
+				<w:style w:customStyle="1" w:styleId="1Char" w:type="character">
+					<w:name w:val="标题 1 Char"/>
+					<w:link w:val="1"/>
+					<w:rsid w:val="00B02463"/>
+					<w:rPr>
+						<w:rFonts w:ascii="宋体" w:hAnsi="宋体"/>
+						<w:sz w:val="28"/>
+						<w:szCs w:val="24"/>
+					</w:rPr>
+				</w:style>
+				<w:style w:customStyle="1" w:styleId="2Char" w:type="character">
+					<w:name w:val="标题 2 Char"/>
+					<w:link w:val="2"/>
+					<w:semiHidden/>
+					<w:rsid w:val="00B02463"/>
+					<w:rPr>
+						<w:rFonts w:ascii="Cambria" w:cs="Times New Roman" w:eastAsia="宋体" w:hAnsi="Cambria"/>
+						<w:b/>
+						<w:bCs/>
+						<w:kern w:val="2"/>
+						<w:sz w:val="32"/>
+						<w:szCs w:val="32"/>
+					</w:rPr>
+				</w:style>
+				<w:style w:customStyle="1" w:styleId="MTDisplayEquation" w:type="paragraph">
+					<w:name w:val="MTDisplayEquation"/>
+					<w:basedOn w:val="a"/>
+					<w:next w:val="a"/>
+					<w:rsid w:val="00B02463"/>
+					<w:pPr>
+						<w:widowControl/>
+						<w:tabs>
+							<w:tab w:pos="4540" w:val="center"/>
+							<w:tab w:pos="9080" w:val="right"/>
+						</w:tabs>
+						<w:jc w:val="left"/>
+					</w:pPr>
+					<w:rPr>
+						<w:rFonts w:ascii="宋体" w:hAnsi="宋体"/>
+						<w:kern w:val="0"/>
+						<w:sz w:val="28"/>
+					</w:rPr>
+				</w:style>
+				<w:style w:customStyle="1" w:styleId="Char" w:type="character">
+					<w:name w:val="页脚 Char"/>
+					<w:link w:val="a3"/>
+					<w:uiPriority w:val="99"/>
+					<w:rsid w:val="00B570FB"/>
+					<w:rPr>
+						<w:kern w:val="2"/>
+						<w:sz w:val="18"/>
+						<w:szCs w:val="18"/>
+					</w:rPr>
+				</w:style>
+				<w:style w:styleId="a6" w:type="paragraph">
+					<w:name w:val="Balloon Text"/>
+					<w:basedOn w:val="a"/>
+					<w:link w:val="Char1"/>
+					<w:rsid w:val="00B570FB"/>
+					<w:rPr>
+						<w:sz w:val="18"/>
+						<w:szCs w:val="18"/>
+					</w:rPr>
+				</w:style>
+				<w:style w:customStyle="1" w:styleId="Char1" w:type="character">
+					<w:name w:val="批注框文本 Char"/>
+					<w:link w:val="a6"/>
+					<w:rsid w:val="00B570FB"/>
+					<w:rPr>
+						<w:kern w:val="2"/>
+						<w:sz w:val="18"/>
+						<w:szCs w:val="18"/>
+					</w:rPr>
+				</w:style>
+				<w:style w:styleId="a7" w:type="paragraph">
+					<w:name w:val="No Spacing"/>
+					<w:link w:val="Char2"/>
+					<w:uiPriority w:val="1"/>
+					<w:qFormat/>
+					<w:rsid w:val="00B570FB"/>
+					<w:rPr>
+						<w:rFonts w:ascii="Calibri" w:hAnsi="Calibri"/>
+						<w:sz w:val="22"/>
+						<w:szCs w:val="22"/>
+					</w:rPr>
+				</w:style>
+				<w:style w:customStyle="1" w:styleId="Char2" w:type="character">
+					<w:name w:val="无间隔 Char"/>
+					<w:link w:val="a7"/>
+					<w:uiPriority w:val="1"/>
+					<w:rsid w:val="00B570FB"/>
+					<w:rPr>
+						<w:rFonts w:ascii="Calibri" w:hAnsi="Calibri"/>
+						<w:sz w:val="22"/>
+						<w:szCs w:val="22"/>
+						<w:lang w:bidi="ar-SA" w:eastAsia="zh-CN" w:val="en-US"/>
+					</w:rPr>
+				</w:style>
+				<w:style w:styleId="a8" w:type="paragraph">
+					<w:name w:val="List Paragraph"/>
+					<w:basedOn w:val="a"/>
+					<w:uiPriority w:val="34"/>
+					<w:qFormat/>
+					<w:rsid w:val="001A590C"/>
+					<w:pPr>
+						<w:ind w:firstLine="420" w:firstLineChars="200"/>
+					</w:pPr>
+				</w:style>
+				<w:style w:styleId="20" w:type="paragraph">
+					<w:name w:val="List 2"/>
+					<w:basedOn w:val="a"/>
+					<w:rsid w:val="00DE376D"/>
+					<w:pPr>
+						<w:ind w:hanging="200" w:left="100"/>
+					</w:pPr>
+					<w:rPr>
+						<w:szCs w:val="20"/>
+					</w:rPr>
+				</w:style>
+				<w:style w:styleId="a9" w:type="paragraph">
+					<w:name w:val="Document Map"/>
+					<w:basedOn w:val="a"/>
+					<w:link w:val="Char3"/>
+					<w:rsid w:val="001A2234"/>
+					<w:rPr>
+						<w:rFonts w:ascii="宋体"/>
+						<w:sz w:val="18"/>
+						<w:szCs w:val="18"/>
+					</w:rPr>
+				</w:style>
+				<w:style w:customStyle="1" w:styleId="Char3" w:type="character">
+					<w:name w:val="文档结构图 Char"/>
+					<w:link w:val="a9"/>
+					<w:rsid w:val="001A2234"/>
+					<w:rPr>
+						<w:rFonts w:ascii="宋体"/>
+						<w:kern w:val="2"/>
+						<w:sz w:val="18"/>
+						<w:szCs w:val="18"/>
+					</w:rPr>
+				</w:style>
+				<w:style w:styleId="aa" w:type="table">
+					<w:name w:val="Table Grid"/>
+					<w:basedOn w:val="a1"/>
+					<w:rsid w:val="001A2234"/>
+					<w:tblPr>
+						<w:tblInd w:type="dxa" w:w="0"/>
+						<w:tblBorders>
+							<w:top w:color="000000" w:space="0" w:sz="4" w:val="single"/>
+							<w:left w:color="000000" w:space="0" w:sz="4" w:val="single"/>
+							<w:bottom w:color="000000" w:space="0" w:sz="4" w:val="single"/>
+							<w:right w:color="000000" w:space="0" w:sz="4" w:val="single"/>
+							<w:insideH w:color="000000" w:space="0" w:sz="4" w:val="single"/>
+							<w:insideV w:color="000000" w:space="0" w:sz="4" w:val="single"/>
+						</w:tblBorders>
+						<w:tblCellMar>
+							<w:top w:type="dxa" w:w="0"/>
+							<w:left w:type="dxa" w:w="108"/>
+							<w:bottom w:type="dxa" w:w="0"/>
+							<w:right w:type="dxa" w:w="108"/>
+						</w:tblCellMar>
+					</w:tblPr>
+				</w:style>
+			</w:styles>
+		</pkg:xmlData>
+	</pkg:part>
+	<pkg:part pkg:contentType="application/vnd.openxmlformats-officedocument.wordprocessingml.numbering+xml" pkg:name="/word/numbering.xml">
+		<pkg:xmlData>
+			<w:numbering mc:Ignorable="w14 wp14" xmlns:m="http://schemas.openxmlformats.org/officeDocument/2006/math" xmlns:mc="http://schemas.openxmlformats.org/markup-compatibility/2006" xmlns:o="urn:schemas-microsoft-com:office:office" xmlns:r="http://schemas.openxmlformats.org/officeDocument/2006/relationships" xmlns:v="urn:schemas-microsoft-com:vml" xmlns:w="http://schemas.openxmlformats.org/wordprocessingml/2006/main" xmlns:w10="urn:schemas-microsoft-com:office:word" xmlns:w14="http://schemas.microsoft.com/office/word/2010/wordml" xmlns:wne="http://schemas.microsoft.com/office/word/2006/wordml" xmlns:wp="http://schemas.openxmlformats.org/drawingml/2006/wordprocessingDrawing" xmlns:wp14="http://schemas.microsoft.com/office/word/2010/wordprocessingDrawing" xmlns:wpc="http://schemas.microsoft.com/office/word/2010/wordprocessingCanvas" xmlns:wpg="http://schemas.microsoft.com/office/word/2010/wordprocessingGroup" xmlns:wpi="http://schemas.microsoft.com/office/word/2010/wordprocessingInk" xmlns:wps="http://schemas.microsoft.com/office/word/2010/wordprocessingShape">
+				<w:abstractNum w:abstractNumId="0">
+					<w:nsid w:val="01F00F88"/>
+					<w:multiLevelType w:val="hybridMultilevel"/>
+					<w:tmpl w:val="24FAE628"/>
+					<w:lvl w:ilvl="0" w:tplc="8C0626B4">
+						<w:start w:val="1"/>
+						<w:numFmt w:val="japaneseCounting"/>
+						<w:lvlText w:val="%1、"/>
+						<w:lvlJc w:val="left"/>
+						<w:pPr>
+							<w:ind w:hanging="456" w:left="598"/>
+						</w:pPr>
+						<w:rPr>
+							<w:rFonts w:hint="default"/>
+						</w:rPr>
+					</w:lvl>
+					<w:lvl w:ilvl="1" w:tentative="1" w:tplc="04090019">
+						<w:start w:val="1"/>
+						<w:numFmt w:val="lowerLetter"/>
+						<w:lvlText w:val="%2)"/>
+						<w:lvlJc w:val="left"/>
+						<w:pPr>
+							<w:ind w:hanging="420" w:left="840"/>
+						</w:pPr>
+					</w:lvl>
+					<w:lvl w:ilvl="2" w:tentative="1" w:tplc="0409001B">
+						<w:start w:val="1"/>
+						<w:numFmt w:val="lowerRoman"/>
+						<w:lvlText w:val="%3."/>
+						<w:lvlJc w:val="right"/>
+						<w:pPr>
+							<w:ind w:hanging="420" w:left="1260"/>
+						</w:pPr>
+					</w:lvl>
+					<w:lvl w:ilvl="3" w:tentative="1" w:tplc="0409000F">
+						<w:start w:val="1"/>
+						<w:numFmt w:val="decimal"/>
+						<w:lvlText w:val="%4."/>
+						<w:lvlJc w:val="left"/>
+						<w:pPr>
+							<w:ind w:hanging="420" w:left="1680"/>
+						</w:pPr>
+					</w:lvl>
+					<w:lvl w:ilvl="4" w:tentative="1" w:tplc="04090019">
+						<w:start w:val="1"/>
+						<w:numFmt w:val="lowerLetter"/>
+						<w:lvlText w:val="%5)"/>
+						<w:lvlJc w:val="left"/>
+						<w:pPr>
+							<w:ind w:hanging="420" w:left="2100"/>
+						</w:pPr>
+					</w:lvl>
+					<w:lvl w:ilvl="5" w:tentative="1" w:tplc="0409001B">
+						<w:start w:val="1"/>
+						<w:numFmt w:val="lowerRoman"/>
+						<w:lvlText w:val="%6."/>
+						<w:lvlJc w:val="right"/>
+						<w:pPr>
+							<w:ind w:hanging="420" w:left="2520"/>
+						</w:pPr>
+					</w:lvl>
+					<w:lvl w:ilvl="6" w:tentative="1" w:tplc="0409000F">
+						<w:start w:val="1"/>
+						<w:numFmt w:val="decimal"/>
+						<w:lvlText w:val="%7."/>
+						<w:lvlJc w:val="left"/>
+						<w:pPr>
+							<w:ind w:hanging="420" w:left="2940"/>
+						</w:pPr>
+					</w:lvl>
+					<w:lvl w:ilvl="7" w:tentative="1" w:tplc="04090019">
+						<w:start w:val="1"/>
+						<w:numFmt w:val="lowerLetter"/>
+						<w:lvlText w:val="%8)"/>
+						<w:lvlJc w:val="left"/>
+						<w:pPr>
+							<w:ind w:hanging="420" w:left="3360"/>
+						</w:pPr>
+					</w:lvl>
+					<w:lvl w:ilvl="8" w:tentative="1" w:tplc="0409001B">
+						<w:start w:val="1"/>
+						<w:numFmt w:val="lowerRoman"/>
+						<w:lvlText w:val="%9."/>
+						<w:lvlJc w:val="right"/>
+						<w:pPr>
+							<w:ind w:hanging="420" w:left="3780"/>
+						</w:pPr>
+					</w:lvl>
+				</w:abstractNum>
+				<w:abstractNum w:abstractNumId="1">
+					<w:nsid w:val="020A5E2D"/>
+					<w:multiLevelType w:val="hybridMultilevel"/>
+					<w:tmpl w:val="066CBE6A"/>
+					<w:lvl w:ilvl="0" w:tplc="2DAA272E">
+						<w:start w:val="1"/>
+						<w:numFmt w:val="japaneseCounting"/>
+						<w:lvlText w:val="%1、"/>
+						<w:lvlJc w:val="left"/>
+						<w:pPr>
+							<w:tabs>
+								<w:tab w:pos="420" w:val="num"/>
+							</w:tabs>
+							<w:ind w:hanging="420" w:left="420"/>
+						</w:pPr>
+					</w:lvl>
+					<w:lvl w:ilvl="1" w:tplc="82741D52">
+						<w:start w:val="1"/>
+						<w:numFmt w:val="decimal"/>
+						<w:lvlText w:val="%2、"/>
+						<w:lvlJc w:val="left"/>
+						<w:pPr>
+							<w:tabs>
+								<w:tab w:pos="780" w:val="num"/>
+							</w:tabs>
+							<w:ind w:hanging="360" w:left="780"/>
+						</w:pPr>
+					</w:lvl>
+					<w:lvl w:ilvl="2" w:tplc="0409001B">
+						<w:start w:val="1"/>
+						<w:numFmt w:val="decimal"/>
+						<w:lvlText w:val="%3."/>
+						<w:lvlJc w:val="left"/>
+						<w:pPr>
+							<w:tabs>
+								<w:tab w:pos="2160" w:val="num"/>
+							</w:tabs>
+							<w:ind w:hanging="360" w:left="2160"/>
+						</w:pPr>
+					</w:lvl>
+					<w:lvl w:ilvl="3" w:tplc="0409000F">
+						<w:start w:val="1"/>
+						<w:numFmt w:val="decimal"/>
+						<w:lvlText w:val="%4."/>
+						<w:lvlJc w:val="left"/>
+						<w:pPr>
+							<w:tabs>
+								<w:tab w:pos="2880" w:val="num"/>
+							</w:tabs>
+							<w:ind w:hanging="360" w:left="2880"/>
+						</w:pPr>
+					</w:lvl>
+					<w:lvl w:ilvl="4" w:tplc="04090019">
+						<w:start w:val="1"/>
+						<w:numFmt w:val="decimal"/>
+						<w:lvlText w:val="%5."/>
+						<w:lvlJc w:val="left"/>
+						<w:pPr>
+							<w:tabs>
+								<w:tab w:pos="3600" w:val="num"/>
+							</w:tabs>
+							<w:ind w:hanging="360" w:left="3600"/>
+						</w:pPr>
+					</w:lvl>
+					<w:lvl w:ilvl="5" w:tplc="0409001B">
+						<w:start w:val="1"/>
+						<w:numFmt w:val="decimal"/>
+						<w:lvlText w:val="%6."/>
+						<w:lvlJc w:val="left"/>
+						<w:pPr>
+							<w:tabs>
+								<w:tab w:pos="4320" w:val="num"/>
+							</w:tabs>
+							<w:ind w:hanging="360" w:left="4320"/>
+						</w:pPr>
+					</w:lvl>
+					<w:lvl w:ilvl="6" w:tplc="0409000F">
+						<w:start w:val="1"/>
+						<w:numFmt w:val="decimal"/>
+						<w:lvlText w:val="%7."/>
+						<w:lvlJc w:val="left"/>
+						<w:pPr>
+							<w:tabs>
+								<w:tab w:pos="5040" w:val="num"/>
+							</w:tabs>
+							<w:ind w:hanging="360" w:left="5040"/>
+						</w:pPr>
+					</w:lvl>
+					<w:lvl w:ilvl="7" w:tplc="04090019">
+						<w:start w:val="1"/>
+						<w:numFmt w:val="decimal"/>
+						<w:lvlText w:val="%8."/>
+						<w:lvlJc w:val="left"/>
+						<w:pPr>
+							<w:tabs>
+								<w:tab w:pos="5760" w:val="num"/>
+							</w:tabs>
+							<w:ind w:hanging="360" w:left="5760"/>
+						</w:pPr>
+					</w:lvl>
+					<w:lvl w:ilvl="8" w:tplc="0409001B">
+						<w:start w:val="1"/>
+						<w:numFmt w:val="decimal"/>
+						<w:lvlText w:val="%9."/>
+						<w:lvlJc w:val="left"/>
+						<w:pPr>
+							<w:tabs>
+								<w:tab w:pos="6480" w:val="num"/>
+							</w:tabs>
+							<w:ind w:hanging="360" w:left="6480"/>
+						</w:pPr>
+					</w:lvl>
+				</w:abstractNum>
+				<w:abstractNum w:abstractNumId="2">
+					<w:nsid w:val="08DF0269"/>
+					<w:multiLevelType w:val="hybridMultilevel"/>
+					<w:tmpl w:val="009CA026"/>
+					<w:lvl w:ilvl="0" w:tplc="47C0FD24">
+						<w:start w:val="1"/>
+						<w:numFmt w:val="decimal"/>
+						<w:lvlText w:val="%1、"/>
+						<w:lvlJc w:val="left"/>
+						<w:pPr>
+							<w:tabs>
+								<w:tab w:pos="720" w:val="num"/>
+							</w:tabs>
+							<w:ind w:hanging="360" w:left="720"/>
+						</w:pPr>
+						<w:rPr>
+							<w:rFonts w:hint="eastAsia"/>
+						</w:rPr>
+					</w:lvl>
+					<w:lvl w:ilvl="1" w:tentative="1" w:tplc="04090019">
+						<w:start w:val="1"/>
+						<w:numFmt w:val="lowerLetter"/>
+						<w:lvlText w:val="%2)"/>
+						<w:lvlJc w:val="left"/>
+						<w:pPr>
+							<w:tabs>
+								<w:tab w:pos="1200" w:val="num"/>
+							</w:tabs>
+							<w:ind w:hanging="420" w:left="1200"/>
+						</w:pPr>
+					</w:lvl>
+					<w:lvl w:ilvl="2" w:tentative="1" w:tplc="0409001B">
+						<w:start w:val="1"/>
+						<w:numFmt w:val="lowerRoman"/>
+						<w:lvlText w:val="%3."/>
+						<w:lvlJc w:val="right"/>
+						<w:pPr>
+							<w:tabs>
+								<w:tab w:pos="1620" w:val="num"/>
+							</w:tabs>
+							<w:ind w:hanging="420" w:left="1620"/>
+						</w:pPr>
+					</w:lvl>
+					<w:lvl w:ilvl="3" w:tentative="1" w:tplc="0409000F">
+						<w:start w:val="1"/>
+						<w:numFmt w:val="decimal"/>
+						<w:lvlText w:val="%4."/>
+						<w:lvlJc w:val="left"/>
+						<w:pPr>
+							<w:tabs>
+								<w:tab w:pos="2040" w:val="num"/>
+							</w:tabs>
+							<w:ind w:hanging="420" w:left="2040"/>
+						</w:pPr>
+					</w:lvl>
+					<w:lvl w:ilvl="4" w:tentative="1" w:tplc="04090019">
+						<w:start w:val="1"/>
+						<w:numFmt w:val="lowerLetter"/>
+						<w:lvlText w:val="%5)"/>
+						<w:lvlJc w:val="left"/>
+						<w:pPr>
+							<w:tabs>
+								<w:tab w:pos="2460" w:val="num"/>
+							</w:tabs>
+							<w:ind w:hanging="420" w:left="2460"/>
+						</w:pPr>
+					</w:lvl>
+					<w:lvl w:ilvl="5" w:tentative="1" w:tplc="0409001B">
+						<w:start w:val="1"/>
+						<w:numFmt w:val="lowerRoman"/>
+						<w:lvlText w:val="%6."/>
+						<w:lvlJc w:val="right"/>
+						<w:pPr>
+							<w:tabs>
+								<w:tab w:pos="2880" w:val="num"/>
+							</w:tabs>
+							<w:ind w:hanging="420" w:left="2880"/>
+						</w:pPr>
+					</w:lvl>
+					<w:lvl w:ilvl="6" w:tentative="1" w:tplc="0409000F">
+						<w:start w:val="1"/>
+						<w:numFmt w:val="decimal"/>
+						<w:lvlText w:val="%7."/>
+						<w:lvlJc w:val="left"/>
+						<w:pPr>
+							<w:tabs>
+								<w:tab w:pos="3300" w:val="num"/>
+							</w:tabs>
+							<w:ind w:hanging="420" w:left="3300"/>
+						</w:pPr>
+					</w:lvl>
+					<w:lvl w:ilvl="7" w:tentative="1" w:tplc="04090019">
+						<w:start w:val="1"/>
+						<w:numFmt w:val="lowerLetter"/>
+						<w:lvlText w:val="%8)"/>
+						<w:lvlJc w:val="left"/>
+						<w:pPr>
+							<w:tabs>
+								<w:tab w:pos="3720" w:val="num"/>
+							</w:tabs>
+							<w:ind w:hanging="420" w:left="3720"/>
+						</w:pPr>
+					</w:lvl>
+					<w:lvl w:ilvl="8" w:tentative="1" w:tplc="0409001B">
+						<w:start w:val="1"/>
+						<w:numFmt w:val="lowerRoman"/>
+						<w:lvlText w:val="%9."/>
+						<w:lvlJc w:val="right"/>
+						<w:pPr>
+							<w:tabs>
+								<w:tab w:pos="4140" w:val="num"/>
+							</w:tabs>
+							<w:ind w:hanging="420" w:left="4140"/>
+						</w:pPr>
+					</w:lvl>
+				</w:abstractNum>
+				<w:abstractNum w:abstractNumId="3">
+					<w:nsid w:val="0958232F"/>
+					<w:multiLevelType w:val="hybridMultilevel"/>
+					<w:tmpl w:val="30E88CE0"/>
+					<w:lvl w:ilvl="0" w:tplc="5C989B96">
+						<w:start w:val="1"/>
+						<w:numFmt w:val="japaneseCounting"/>
+						<w:lvlText w:val="%1、"/>
+						<w:lvlJc w:val="left"/>
+						<w:pPr>
+							<w:ind w:hanging="720" w:left="720"/>
+						</w:pPr>
+						<w:rPr>
+							<w:rFonts w:hint="default"/>
+						</w:rPr>
+					</w:lvl>
+					<w:lvl w:ilvl="1" w:tentative="1" w:tplc="04090019">
+						<w:start w:val="1"/>
+						<w:numFmt w:val="lowerLetter"/>
+						<w:lvlText w:val="%2)"/>
+						<w:lvlJc w:val="left"/>
+						<w:pPr>
+							<w:ind w:hanging="420" w:left="840"/>
+						</w:pPr>
+					</w:lvl>
+					<w:lvl w:ilvl="2" w:tentative="1" w:tplc="0409001B">
+						<w:start w:val="1"/>
+						<w:numFmt w:val="lowerRoman"/>
+						<w:lvlText w:val="%3."/>
+						<w:lvlJc w:val="right"/>
+						<w:pPr>
+							<w:ind w:hanging="420" w:left="1260"/>
+						</w:pPr>
+					</w:lvl>
+					<w:lvl w:ilvl="3" w:tentative="1" w:tplc="0409000F">
+						<w:start w:val="1"/>
+						<w:numFmt w:val="decimal"/>
+						<w:lvlText w:val="%4."/>
+						<w:lvlJc w:val="left"/>
+						<w:pPr>
+							<w:ind w:hanging="420" w:left="1680"/>
+						</w:pPr>
+					</w:lvl>
+					<w:lvl w:ilvl="4" w:tentative="1" w:tplc="04090019">
+						<w:start w:val="1"/>
+						<w:numFmt w:val="lowerLetter"/>
+						<w:lvlText w:val="%5)"/>
+						<w:lvlJc w:val="left"/>
+						<w:pPr>
+							<w:ind w:hanging="420" w:left="2100"/>
+						</w:pPr>
+					</w:lvl>
+					<w:lvl w:ilvl="5" w:tentative="1" w:tplc="0409001B">
+						<w:start w:val="1"/>
+						<w:numFmt w:val="lowerRoman"/>
+						<w:lvlText w:val="%6."/>
+						<w:lvlJc w:val="right"/>
+						<w:pPr>
+							<w:ind w:hanging="420" w:left="2520"/>
+						</w:pPr>
+					</w:lvl>
+					<w:lvl w:ilvl="6" w:tentative="1" w:tplc="0409000F">
+						<w:start w:val="1"/>
+						<w:numFmt w:val="decimal"/>
+						<w:lvlText w:val="%7."/>
+						<w:lvlJc w:val="left"/>
+						<w:pPr>
+							<w:ind w:hanging="420" w:left="2940"/>
+						</w:pPr>
+					</w:lvl>
+					<w:lvl w:ilvl="7" w:tentative="1" w:tplc="04090019">
+						<w:start w:val="1"/>
+						<w:numFmt w:val="lowerLetter"/>
+						<w:lvlText w:val="%8)"/>
+						<w:lvlJc w:val="left"/>
+						<w:pPr>
+							<w:ind w:hanging="420" w:left="3360"/>
+						</w:pPr>
+					</w:lvl>
+					<w:lvl w:ilvl="8" w:tentative="1" w:tplc="0409001B">
+						<w:start w:val="1"/>
+						<w:numFmt w:val="lowerRoman"/>
+						<w:lvlText w:val="%9."/>
+						<w:lvlJc w:val="right"/>
+						<w:pPr>
+							<w:ind w:hanging="420" w:left="3780"/>
+						</w:pPr>
+					</w:lvl>
+				</w:abstractNum>
+				<w:abstractNum w:abstractNumId="4">
+					<w:nsid w:val="124F2661"/>
+					<w:multiLevelType w:val="hybridMultilevel"/>
+					<w:tmpl w:val="311EC340"/>
+					<w:lvl w:ilvl="0" w:tplc="7C9A8072">
+						<w:start w:val="1"/>
+						<w:numFmt w:val="decimal"/>
+						<w:lvlText w:val="%1、"/>
+						<w:lvlJc w:val="left"/>
+						<w:pPr>
+							<w:ind w:hanging="720" w:left="720"/>
+						</w:pPr>
+						<w:rPr>
+							<w:rFonts w:hint="default"/>
+							<w:color w:val="auto"/>
+						</w:rPr>
+					</w:lvl>
+					<w:lvl w:ilvl="1" w:tentative="1" w:tplc="04090019">
+						<w:start w:val="1"/>
+						<w:numFmt w:val="lowerLetter"/>
+						<w:lvlText w:val="%2)"/>
+						<w:lvlJc w:val="left"/>
+						<w:pPr>
+							<w:ind w:hanging="420" w:left="840"/>
+						</w:pPr>
+					</w:lvl>
+					<w:lvl w:ilvl="2" w:tentative="1" w:tplc="0409001B">
+						<w:start w:val="1"/>
+						<w:numFmt w:val="lowerRoman"/>
+						<w:lvlText w:val="%3."/>
+						<w:lvlJc w:val="right"/>
+						<w:pPr>
+							<w:ind w:hanging="420" w:left="1260"/>
+						</w:pPr>
+					</w:lvl>
+					<w:lvl w:ilvl="3" w:tentative="1" w:tplc="0409000F">
+						<w:start w:val="1"/>
+						<w:numFmt w:val="decimal"/>
+						<w:lvlText w:val="%4."/>
+						<w:lvlJc w:val="left"/>
+						<w:pPr>
+							<w:ind w:hanging="420" w:left="1680"/>
+						</w:pPr>
+					</w:lvl>
+					<w:lvl w:ilvl="4" w:tentative="1" w:tplc="04090019">
+						<w:start w:val="1"/>
+						<w:numFmt w:val="lowerLetter"/>
+						<w:lvlText w:val="%5)"/>
+						<w:lvlJc w:val="left"/>
+						<w:pPr>
+							<w:ind w:hanging="420" w:left="2100"/>
+						</w:pPr>
+					</w:lvl>
+					<w:lvl w:ilvl="5" w:tentative="1" w:tplc="0409001B">
+						<w:start w:val="1"/>
+						<w:numFmt w:val="lowerRoman"/>
+						<w:lvlText w:val="%6."/>
+						<w:lvlJc w:val="right"/>
+						<w:pPr>
+							<w:ind w:hanging="420" w:left="2520"/>
+						</w:pPr>
+					</w:lvl>
+					<w:lvl w:ilvl="6" w:tentative="1" w:tplc="0409000F">
+						<w:start w:val="1"/>
+						<w:numFmt w:val="decimal"/>
+						<w:lvlText w:val="%7."/>
+						<w:lvlJc w:val="left"/>
+						<w:pPr>
+							<w:ind w:hanging="420" w:left="2940"/>
+						</w:pPr>
+					</w:lvl>
+					<w:lvl w:ilvl="7" w:tentative="1" w:tplc="04090019">
+						<w:start w:val="1"/>
+						<w:numFmt w:val="lowerLetter"/>
+						<w:lvlText w:val="%8)"/>
+						<w:lvlJc w:val="left"/>
+						<w:pPr>
+							<w:ind w:hanging="420" w:left="3360"/>
+						</w:pPr>
+					</w:lvl>
+					<w:lvl w:ilvl="8" w:tentative="1" w:tplc="0409001B">
+						<w:start w:val="1"/>
+						<w:numFmt w:val="lowerRoman"/>
+						<w:lvlText w:val="%9."/>
+						<w:lvlJc w:val="right"/>
+						<w:pPr>
+							<w:ind w:hanging="420" w:left="3780"/>
+						</w:pPr>
+					</w:lvl>
+				</w:abstractNum>
+				<w:abstractNum w:abstractNumId="5">
+					<w:nsid w:val="136B1AD3"/>
+					<w:multiLevelType w:val="hybridMultilevel"/>
+					<w:tmpl w:val="BDF04116"/>
+					<w:lvl w:ilvl="0" w:tplc="CBA85F62">
+						<w:start w:val="1"/>
+						<w:numFmt w:val="decimal"/>
+						<w:lvlText w:val="%1、"/>
+						<w:lvlJc w:val="left"/>
+						<w:pPr>
+							<w:ind w:hanging="360" w:left="482"/>
+						</w:pPr>
+						<w:rPr>
+							<w:rFonts w:hint="default"/>
+						</w:rPr>
+					</w:lvl>
+					<w:lvl w:ilvl="1" w:tentative="1" w:tplc="04090019">
+						<w:start w:val="1"/>
+						<w:numFmt w:val="lowerLetter"/>
+						<w:lvlText w:val="%2)"/>
+						<w:lvlJc w:val="left"/>
+						<w:pPr>
+							<w:ind w:hanging="420" w:left="962"/>
+						</w:pPr>
+					</w:lvl>
+					<w:lvl w:ilvl="2" w:tentative="1" w:tplc="0409001B">
+						<w:start w:val="1"/>
+						<w:numFmt w:val="lowerRoman"/>
+						<w:lvlText w:val="%3."/>
+						<w:lvlJc w:val="right"/>
+						<w:pPr>
+							<w:ind w:hanging="420" w:left="1382"/>
+						</w:pPr>
+					</w:lvl>
+					<w:lvl w:ilvl="3" w:tentative="1" w:tplc="0409000F">
+						<w:start w:val="1"/>
+						<w:numFmt w:val="decimal"/>
+						<w:lvlText w:val="%4."/>
+						<w:lvlJc w:val="left"/>
+						<w:pPr>
+							<w:ind w:hanging="420" w:left="1802"/>
+						</w:pPr>
+					</w:lvl>
+					<w:lvl w:ilvl="4" w:tentative="1" w:tplc="04090019">
+						<w:start w:val="1"/>
+						<w:numFmt w:val="lowerLetter"/>
+						<w:lvlText w:val="%5)"/>
+						<w:lvlJc w:val="left"/>
+						<w:pPr>
+							<w:ind w:hanging="420" w:left="2222"/>
+						</w:pPr>
+					</w:lvl>
+					<w:lvl w:ilvl="5" w:tentative="1" w:tplc="0409001B">
+						<w:start w:val="1"/>
+						<w:numFmt w:val="lowerRoman"/>
+						<w:lvlText w:val="%6."/>
+						<w:lvlJc w:val="right"/>
+						<w:pPr>
+							<w:ind w:hanging="420" w:left="2642"/>
+						</w:pPr>
+					</w:lvl>
+					<w:lvl w:ilvl="6" w:tentative="1" w:tplc="0409000F">
+						<w:start w:val="1"/>
+						<w:numFmt w:val="decimal"/>
+						<w:lvlText w:val="%7."/>
+						<w:lvlJc w:val="left"/>
+						<w:pPr>
+							<w:ind w:hanging="420" w:left="3062"/>
+						</w:pPr>
+					</w:lvl>
+					<w:lvl w:ilvl="7" w:tentative="1" w:tplc="04090019">
+						<w:start w:val="1"/>
+						<w:numFmt w:val="lowerLetter"/>
+						<w:lvlText w:val="%8)"/>
+						<w:lvlJc w:val="left"/>
+						<w:pPr>
+							<w:ind w:hanging="420" w:left="3482"/>
+						</w:pPr>
+					</w:lvl>
+					<w:lvl w:ilvl="8" w:tentative="1" w:tplc="0409001B">
+						<w:start w:val="1"/>
+						<w:numFmt w:val="lowerRoman"/>
+						<w:lvlText w:val="%9."/>
+						<w:lvlJc w:val="right"/>
+						<w:pPr>
+							<w:ind w:hanging="420" w:left="3902"/>
+						</w:pPr>
+					</w:lvl>
+				</w:abstractNum>
+				<w:abstractNum w:abstractNumId="6">
+					<w:nsid w:val="14A814D2"/>
+					<w:multiLevelType w:val="hybridMultilevel"/>
+					<w:tmpl w:val="603AF3EE"/>
+					<w:lvl w:ilvl="0" w:tplc="C39CEFC0">
+						<w:start w:val="2"/>
+						<w:numFmt w:val="japaneseCounting"/>
+						<w:lvlText w:val="%1、"/>
+						<w:lvlJc w:val="left"/>
+						<w:pPr>
+							<w:ind w:hanging="420" w:left="1018"/>
+						</w:pPr>
+						<w:rPr>
+							<w:rFonts w:hint="default"/>
+						</w:rPr>
+					</w:lvl>
+					<w:lvl w:ilvl="1" w:tentative="1" w:tplc="04090019">
+						<w:start w:val="1"/>
+						<w:numFmt w:val="lowerLetter"/>
+						<w:lvlText w:val="%2)"/>
+						<w:lvlJc w:val="left"/>
+						<w:pPr>
+							<w:ind w:hanging="420" w:left="1438"/>
+						</w:pPr>
+					</w:lvl>
+					<w:lvl w:ilvl="2" w:tentative="1" w:tplc="0409001B">
+						<w:start w:val="1"/>
+						<w:numFmt w:val="lowerRoman"/>
+						<w:lvlText w:val="%3."/>
+						<w:lvlJc w:val="right"/>
+						<w:pPr>
+							<w:ind w:hanging="420" w:left="1858"/>
+						</w:pPr>
+					</w:lvl>
+					<w:lvl w:ilvl="3" w:tentative="1" w:tplc="0409000F">
+						<w:start w:val="1"/>
+						<w:numFmt w:val="decimal"/>
+						<w:lvlText w:val="%4."/>
+						<w:lvlJc w:val="left"/>
+						<w:pPr>
+							<w:ind w:hanging="420" w:left="2278"/>
+						</w:pPr>
+					</w:lvl>
+					<w:lvl w:ilvl="4" w:tentative="1" w:tplc="04090019">
+						<w:start w:val="1"/>
+						<w:numFmt w:val="lowerLetter"/>
+						<w:lvlText w:val="%5)"/>
+						<w:lvlJc w:val="left"/>
+						<w:pPr>
+							<w:ind w:hanging="420" w:left="2698"/>
+						</w:pPr>
+					</w:lvl>
+					<w:lvl w:ilvl="5" w:tentative="1" w:tplc="0409001B">
+						<w:start w:val="1"/>
+						<w:numFmt w:val="lowerRoman"/>
+						<w:lvlText w:val="%6."/>
+						<w:lvlJc w:val="right"/>
+						<w:pPr>
+							<w:ind w:hanging="420" w:left="3118"/>
+						</w:pPr>
+					</w:lvl>
+					<w:lvl w:ilvl="6" w:tentative="1" w:tplc="0409000F">
+						<w:start w:val="1"/>
+						<w:numFmt w:val="decimal"/>
+						<w:lvlText w:val="%7."/>
+						<w:lvlJc w:val="left"/>
+						<w:pPr>
+							<w:ind w:hanging="420" w:left="3538"/>
+						</w:pPr>
+					</w:lvl>
+					<w:lvl w:ilvl="7" w:tentative="1" w:tplc="04090019">
+						<w:start w:val="1"/>
+						<w:numFmt w:val="lowerLetter"/>
+						<w:lvlText w:val="%8)"/>
+						<w:lvlJc w:val="left"/>
+						<w:pPr>
+							<w:ind w:hanging="420" w:left="3958"/>
+						</w:pPr>
+					</w:lvl>
+					<w:lvl w:ilvl="8" w:tentative="1" w:tplc="0409001B">
+						<w:start w:val="1"/>
+						<w:numFmt w:val="lowerRoman"/>
+						<w:lvlText w:val="%9."/>
+						<w:lvlJc w:val="right"/>
+						<w:pPr>
+							<w:ind w:hanging="420" w:left="4378"/>
+						</w:pPr>
+					</w:lvl>
+				</w:abstractNum>
+				<w:abstractNum w:abstractNumId="7">
+					<w:nsid w:val="28417ACF"/>
+					<w:multiLevelType w:val="hybridMultilevel"/>
+					<w:tmpl w:val="C8BC8F82"/>
+					<w:lvl w:ilvl="0" w:tplc="34922146">
+						<w:start w:val="1"/>
+						<w:numFmt w:val="japaneseCounting"/>
+						<w:lvlText w:val="(%1)"/>
+						<w:lvlJc w:val="left"/>
+						<w:pPr>
+							<w:tabs>
+								<w:tab w:pos="720" w:val="num"/>
+							</w:tabs>
+							<w:ind w:hanging="720" w:left="720"/>
+						</w:pPr>
+					</w:lvl>
+					<w:lvl w:ilvl="1" w:tplc="04090019">
+						<w:start w:val="1"/>
+						<w:numFmt w:val="decimal"/>
+						<w:lvlText w:val="%2."/>
+						<w:lvlJc w:val="left"/>
+						<w:pPr>
+							<w:tabs>
+								<w:tab w:pos="1248" w:val="num"/>
+							</w:tabs>
+							<w:ind w:hanging="360" w:left="1248"/>
+						</w:pPr>
+					</w:lvl>
+					<w:lvl w:ilvl="2" w:tplc="0409001B">
+						<w:start w:val="1"/>
+						<w:numFmt w:val="decimal"/>
+						<w:lvlText w:val="%3."/>
+						<w:lvlJc w:val="left"/>
+						<w:pPr>
+							<w:tabs>
+								<w:tab w:pos="1968" w:val="num"/>
+							</w:tabs>
+							<w:ind w:hanging="360" w:left="1968"/>
+						</w:pPr>
+					</w:lvl>
+					<w:lvl w:ilvl="3" w:tplc="0409000F">
+						<w:start w:val="1"/>
+						<w:numFmt w:val="decimal"/>
+						<w:lvlText w:val="%4."/>
+						<w:lvlJc w:val="left"/>
+						<w:pPr>
+							<w:tabs>
+								<w:tab w:pos="2688" w:val="num"/>
+							</w:tabs>
+							<w:ind w:hanging="360" w:left="2688"/>
+						</w:pPr>
+					</w:lvl>
+					<w:lvl w:ilvl="4" w:tplc="04090019">
+						<w:start w:val="1"/>
+						<w:numFmt w:val="decimal"/>
+						<w:lvlText w:val="%5."/>
+						<w:lvlJc w:val="left"/>
+						<w:pPr>
+							<w:tabs>
+								<w:tab w:pos="3408" w:val="num"/>
+							</w:tabs>
+							<w:ind w:hanging="360" w:left="3408"/>
+						</w:pPr>
+					</w:lvl>
+					<w:lvl w:ilvl="5" w:tplc="0409001B">
+						<w:start w:val="1"/>
+						<w:numFmt w:val="decimal"/>
+						<w:lvlText w:val="%6."/>
+						<w:lvlJc w:val="left"/>
+						<w:pPr>
+							<w:tabs>
+								<w:tab w:pos="4128" w:val="num"/>
+							</w:tabs>
+							<w:ind w:hanging="360" w:left="4128"/>
+						</w:pPr>
+					</w:lvl>
+					<w:lvl w:ilvl="6" w:tplc="0409000F">
+						<w:start w:val="1"/>
+						<w:numFmt w:val="decimal"/>
+						<w:lvlText w:val="%7."/>
+						<w:lvlJc w:val="left"/>
+						<w:pPr>
+							<w:tabs>
+								<w:tab w:pos="4848" w:val="num"/>
+							</w:tabs>
+							<w:ind w:hanging="360" w:left="4848"/>
+						</w:pPr>
+					</w:lvl>
+					<w:lvl w:ilvl="7" w:tplc="04090019">
+						<w:start w:val="1"/>
+						<w:numFmt w:val="decimal"/>
+						<w:lvlText w:val="%8."/>
+						<w:lvlJc w:val="left"/>
+						<w:pPr>
+							<w:tabs>
+								<w:tab w:pos="5568" w:val="num"/>
+							</w:tabs>
+							<w:ind w:hanging="360" w:left="5568"/>
+						</w:pPr>
+					</w:lvl>
+					<w:lvl w:ilvl="8" w:tplc="0409001B">
+						<w:start w:val="1"/>
+						<w:numFmt w:val="decimal"/>
+						<w:lvlText w:val="%9."/>
+						<w:lvlJc w:val="left"/>
+						<w:pPr>
+							<w:tabs>
+								<w:tab w:pos="6288" w:val="num"/>
+							</w:tabs>
+							<w:ind w:hanging="360" w:left="6288"/>
+						</w:pPr>
+					</w:lvl>
+				</w:abstractNum>
+				<w:abstractNum w:abstractNumId="8">
+					<w:nsid w:val="3B7F32BF"/>
+					<w:multiLevelType w:val="hybridMultilevel"/>
+					<w:tmpl w:val="AF12CBBE"/>
+					<w:lvl w:ilvl="0" w:tplc="86363766">
+						<w:start w:val="2"/>
+						<w:numFmt w:val="japaneseCounting"/>
+						<w:lvlText w:val="%1、"/>
+						<w:lvlJc w:val="left"/>
+						<w:pPr>
+							<w:ind w:hanging="420" w:left="1018"/>
+						</w:pPr>
+						<w:rPr>
+							<w:rFonts w:hint="default"/>
+						</w:rPr>
+					</w:lvl>
+					<w:lvl w:ilvl="1" w:tentative="1" w:tplc="04090019">
+						<w:start w:val="1"/>
+						<w:numFmt w:val="lowerLetter"/>
+						<w:lvlText w:val="%2)"/>
+						<w:lvlJc w:val="left"/>
+						<w:pPr>
+							<w:ind w:hanging="420" w:left="1438"/>
+						</w:pPr>
+					</w:lvl>
+					<w:lvl w:ilvl="2" w:tentative="1" w:tplc="0409001B">
+						<w:start w:val="1"/>
+						<w:numFmt w:val="lowerRoman"/>
+						<w:lvlText w:val="%3."/>
+						<w:lvlJc w:val="right"/>
+						<w:pPr>
+							<w:ind w:hanging="420" w:left="1858"/>
+						</w:pPr>
+					</w:lvl>
+					<w:lvl w:ilvl="3" w:tentative="1" w:tplc="0409000F">
+						<w:start w:val="1"/>
+						<w:numFmt w:val="decimal"/>
+						<w:lvlText w:val="%4."/>
+						<w:lvlJc w:val="left"/>
+						<w:pPr>
+							<w:ind w:hanging="420" w:left="2278"/>
+						</w:pPr>
+					</w:lvl>
+					<w:lvl w:ilvl="4" w:tentative="1" w:tplc="04090019">
+						<w:start w:val="1"/>
+						<w:numFmt w:val="lowerLetter"/>
+						<w:lvlText w:val="%5)"/>
+						<w:lvlJc w:val="left"/>
+						<w:pPr>
+							<w:ind w:hanging="420" w:left="2698"/>
+						</w:pPr>
+					</w:lvl>
+					<w:lvl w:ilvl="5" w:tentative="1" w:tplc="0409001B">
+						<w:start w:val="1"/>
+						<w:numFmt w:val="lowerRoman"/>
+						<w:lvlText w:val="%6."/>
+						<w:lvlJc w:val="right"/>
+						<w:pPr>
+							<w:ind w:hanging="420" w:left="3118"/>
+						</w:pPr>
+					</w:lvl>
+					<w:lvl w:ilvl="6" w:tentative="1" w:tplc="0409000F">
+						<w:start w:val="1"/>
+						<w:numFmt w:val="decimal"/>
+						<w:lvlText w:val="%7."/>
+						<w:lvlJc w:val="left"/>
+						<w:pPr>
+							<w:ind w:hanging="420" w:left="3538"/>
+						</w:pPr>
+					</w:lvl>
+					<w:lvl w:ilvl="7" w:tentative="1" w:tplc="04090019">
+						<w:start w:val="1"/>
+						<w:numFmt w:val="lowerLetter"/>
+						<w:lvlText w:val="%8)"/>
+						<w:lvlJc w:val="left"/>
+						<w:pPr>
+							<w:ind w:hanging="420" w:left="3958"/>
+						</w:pPr>
+					</w:lvl>
+					<w:lvl w:ilvl="8" w:tentative="1" w:tplc="0409001B">
+						<w:start w:val="1"/>
+						<w:numFmt w:val="lowerRoman"/>
+						<w:lvlText w:val="%9."/>
+						<w:lvlJc w:val="right"/>
+						<w:pPr>
+							<w:ind w:hanging="420" w:left="4378"/>
+						</w:pPr>
+					</w:lvl>
+				</w:abstractNum>
+				<w:abstractNum w:abstractNumId="9">
+					<w:nsid w:val="3E4A52E5"/>
+					<w:multiLevelType w:val="hybridMultilevel"/>
+					<w:tmpl w:val="48684CE4"/>
+					<w:lvl w:ilvl="0" w:tplc="1BAE2AB8">
+						<w:start w:val="1"/>
+						<w:numFmt w:val="upperLetter"/>
+						<w:lvlText w:val="%1."/>
+						<w:lvlJc w:val="left"/>
+						<w:pPr>
+							<w:ind w:hanging="360" w:left="780"/>
+						</w:pPr>
+						<w:rPr>
+							<w:rFonts w:hint="default"/>
+						</w:rPr>
+					</w:lvl>
+					<w:lvl w:ilvl="1" w:tentative="1" w:tplc="04090019">
+						<w:start w:val="1"/>
+						<w:numFmt w:val="lowerLetter"/>
+						<w:lvlText w:val="%2)"/>
+						<w:lvlJc w:val="left"/>
+						<w:pPr>
+							<w:ind w:hanging="420" w:left="1260"/>
+						</w:pPr>
+					</w:lvl>
+					<w:lvl w:ilvl="2" w:tentative="1" w:tplc="0409001B">
+						<w:start w:val="1"/>
+						<w:numFmt w:val="lowerRoman"/>
+						<w:lvlText w:val="%3."/>
+						<w:lvlJc w:val="right"/>
+						<w:pPr>
+							<w:ind w:hanging="420" w:left="1680"/>
+						</w:pPr>
+					</w:lvl>
+					<w:lvl w:ilvl="3" w:tentative="1" w:tplc="0409000F">
+						<w:start w:val="1"/>
+						<w:numFmt w:val="decimal"/>
+						<w:lvlText w:val="%4."/>
+						<w:lvlJc w:val="left"/>
+						<w:pPr>
+							<w:ind w:hanging="420" w:left="2100"/>
+						</w:pPr>
+					</w:lvl>
+					<w:lvl w:ilvl="4" w:tentative="1" w:tplc="04090019">
+						<w:start w:val="1"/>
+						<w:numFmt w:val="lowerLetter"/>
+						<w:lvlText w:val="%5)"/>
+						<w:lvlJc w:val="left"/>
+						<w:pPr>
+							<w:ind w:hanging="420" w:left="2520"/>
+						</w:pPr>
+					</w:lvl>
+					<w:lvl w:ilvl="5" w:tentative="1" w:tplc="0409001B">
+						<w:start w:val="1"/>
+						<w:numFmt w:val="lowerRoman"/>
+						<w:lvlText w:val="%6."/>
+						<w:lvlJc w:val="right"/>
+						<w:pPr>
+							<w:ind w:hanging="420" w:left="2940"/>
+						</w:pPr>
+					</w:lvl>
+					<w:lvl w:ilvl="6" w:tentative="1" w:tplc="0409000F">
+						<w:start w:val="1"/>
+						<w:numFmt w:val="decimal"/>
+						<w:lvlText w:val="%7."/>
+						<w:lvlJc w:val="left"/>
+						<w:pPr>
+							<w:ind w:hanging="420" w:left="3360"/>
+						</w:pPr>
+					</w:lvl>
+					<w:lvl w:ilvl="7" w:tentative="1" w:tplc="04090019">
+						<w:start w:val="1"/>
+						<w:numFmt w:val="lowerLetter"/>
+						<w:lvlText w:val="%8)"/>
+						<w:lvlJc w:val="left"/>
+						<w:pPr>
+							<w:ind w:hanging="420" w:left="3780"/>
+						</w:pPr>
+					</w:lvl>
+					<w:lvl w:ilvl="8" w:tentative="1" w:tplc="0409001B">
+						<w:start w:val="1"/>
+						<w:numFmt w:val="lowerRoman"/>
+						<w:lvlText w:val="%9."/>
+						<w:lvlJc w:val="right"/>
+						<w:pPr>
+							<w:ind w:hanging="420" w:left="4200"/>
+						</w:pPr>
+					</w:lvl>
+				</w:abstractNum>
+				<w:abstractNum w:abstractNumId="10">
+					<w:nsid w:val="41ED52A7"/>
+					<w:multiLevelType w:val="hybridMultilevel"/>
+					<w:tmpl w:val="3F480736"/>
+					<w:lvl w:ilvl="0" w:tplc="F9F83B52">
+						<w:start w:val="3"/>
+						<w:numFmt w:val="japaneseCounting"/>
+						<w:lvlText w:val="%1、"/>
+						<w:lvlJc w:val="left"/>
+						<w:pPr>
+							<w:ind w:hanging="432" w:left="1486"/>
+						</w:pPr>
+						<w:rPr>
+							<w:rFonts w:hint="default"/>
+						</w:rPr>
+					</w:lvl>
+					<w:lvl w:ilvl="1" w:tentative="1" w:tplc="04090019">
+						<w:start w:val="1"/>
+						<w:numFmt w:val="lowerLetter"/>
+						<w:lvlText w:val="%2)"/>
+						<w:lvlJc w:val="left"/>
+						<w:pPr>
+							<w:ind w:hanging="420" w:left="1894"/>
+						</w:pPr>
+					</w:lvl>
+					<w:lvl w:ilvl="2" w:tentative="1" w:tplc="0409001B">
+						<w:start w:val="1"/>
+						<w:numFmt w:val="lowerRoman"/>
+						<w:lvlText w:val="%3."/>
+						<w:lvlJc w:val="right"/>
+						<w:pPr>
+							<w:ind w:hanging="420" w:left="2314"/>
+						</w:pPr>
+					</w:lvl>
+					<w:lvl w:ilvl="3" w:tentative="1" w:tplc="0409000F">
+						<w:start w:val="1"/>
+						<w:numFmt w:val="decimal"/>
+						<w:lvlText w:val="%4."/>
+						<w:lvlJc w:val="left"/>
+						<w:pPr>
+							<w:ind w:hanging="420" w:left="2734"/>
+						</w:pPr>
+					</w:lvl>
+					<w:lvl w:ilvl="4" w:tentative="1" w:tplc="04090019">
+						<w:start w:val="1"/>
+						<w:numFmt w:val="lowerLetter"/>
+						<w:lvlText w:val="%5)"/>
+						<w:lvlJc w:val="left"/>
+						<w:pPr>
+							<w:ind w:hanging="420" w:left="3154"/>
+						</w:pPr>
+					</w:lvl>
+					<w:lvl w:ilvl="5" w:tentative="1" w:tplc="0409001B">
+						<w:start w:val="1"/>
+						<w:numFmt w:val="lowerRoman"/>
+						<w:lvlText w:val="%6."/>
+						<w:lvlJc w:val="right"/>
+						<w:pPr>
+							<w:ind w:hanging="420" w:left="3574"/>
+						</w:pPr>
+					</w:lvl>
+					<w:lvl w:ilvl="6" w:tentative="1" w:tplc="0409000F">
+						<w:start w:val="1"/>
+						<w:numFmt w:val="decimal"/>
+						<w:lvlText w:val="%7."/>
+						<w:lvlJc w:val="left"/>
+						<w:pPr>
+							<w:ind w:hanging="420" w:left="3994"/>
+						</w:pPr>
+					</w:lvl>
+					<w:lvl w:ilvl="7" w:tentative="1" w:tplc="04090019">
+						<w:start w:val="1"/>
+						<w:numFmt w:val="lowerLetter"/>
+						<w:lvlText w:val="%8)"/>
+						<w:lvlJc w:val="left"/>
+						<w:pPr>
+							<w:ind w:hanging="420" w:left="4414"/>
+						</w:pPr>
+					</w:lvl>
+					<w:lvl w:ilvl="8" w:tentative="1" w:tplc="0409001B">
+						<w:start w:val="1"/>
+						<w:numFmt w:val="lowerRoman"/>
+						<w:lvlText w:val="%9."/>
+						<w:lvlJc w:val="right"/>
+						<w:pPr>
+							<w:ind w:hanging="420" w:left="4834"/>
+						</w:pPr>
+					</w:lvl>
+				</w:abstractNum>
+				<w:abstractNum w:abstractNumId="11">
+					<w:nsid w:val="47445126"/>
+					<w:multiLevelType w:val="hybridMultilevel"/>
+					<w:tmpl w:val="A0B2366C"/>
+					<w:lvl w:ilvl="0" w:tplc="5406C7EA">
+						<w:start w:val="1"/>
+						<w:numFmt w:val="japaneseCounting"/>
+						<w:lvlText w:val="%1、"/>
+						<w:lvlJc w:val="left"/>
+						<w:pPr>
+							<w:ind w:hanging="456" w:left="456"/>
+						</w:pPr>
+						<w:rPr>
+							<w:rFonts w:hint="default"/>
+							<w:lang w:val="en-US"/>
+						</w:rPr>
+					</w:lvl>
+					<w:lvl w:ilvl="1" w:tentative="1" w:tplc="04090019">
+						<w:start w:val="1"/>
+						<w:numFmt w:val="lowerLetter"/>
+						<w:lvlText w:val="%2)"/>
+						<w:lvlJc w:val="left"/>
+						<w:pPr>
+							<w:ind w:hanging="420" w:left="840"/>
+						</w:pPr>
+					</w:lvl>
+					<w:lvl w:ilvl="2" w:tentative="1" w:tplc="0409001B">
+						<w:start w:val="1"/>
+						<w:numFmt w:val="lowerRoman"/>
+						<w:lvlText w:val="%3."/>
+						<w:lvlJc w:val="right"/>
+						<w:pPr>
+							<w:ind w:hanging="420" w:left="1260"/>
+						</w:pPr>
+					</w:lvl>
+					<w:lvl w:ilvl="3" w:tentative="1" w:tplc="0409000F">
+						<w:start w:val="1"/>
+						<w:numFmt w:val="decimal"/>
+						<w:lvlText w:val="%4."/>
+						<w:lvlJc w:val="left"/>
+						<w:pPr>
+							<w:ind w:hanging="420" w:left="1680"/>
+						</w:pPr>
+					</w:lvl>
+					<w:lvl w:ilvl="4" w:tentative="1" w:tplc="04090019">
+						<w:start w:val="1"/>
+						<w:numFmt w:val="lowerLetter"/>
+						<w:lvlText w:val="%5)"/>
+						<w:lvlJc w:val="left"/>
+						<w:pPr>
+							<w:ind w:hanging="420" w:left="2100"/>
+						</w:pPr>
+					</w:lvl>
+					<w:lvl w:ilvl="5" w:tentative="1" w:tplc="0409001B">
+						<w:start w:val="1"/>
+						<w:numFmt w:val="lowerRoman"/>
+						<w:lvlText w:val="%6."/>
+						<w:lvlJc w:val="right"/>
+						<w:pPr>
+							<w:ind w:hanging="420" w:left="2520"/>
+						</w:pPr>
+					</w:lvl>
+					<w:lvl w:ilvl="6" w:tentative="1" w:tplc="0409000F">
+						<w:start w:val="1"/>
+						<w:numFmt w:val="decimal"/>
+						<w:lvlText w:val="%7."/>
+						<w:lvlJc w:val="left"/>
+						<w:pPr>
+							<w:ind w:hanging="420" w:left="2940"/>
+						</w:pPr>
+					</w:lvl>
+					<w:lvl w:ilvl="7" w:tentative="1" w:tplc="04090019">
+						<w:start w:val="1"/>
+						<w:numFmt w:val="lowerLetter"/>
+						<w:lvlText w:val="%8)"/>
+						<w:lvlJc w:val="left"/>
+						<w:pPr>
+							<w:ind w:hanging="420" w:left="3360"/>
+						</w:pPr>
+					</w:lvl>
+					<w:lvl w:ilvl="8" w:tentative="1" w:tplc="0409001B">
+						<w:start w:val="1"/>
+						<w:numFmt w:val="lowerRoman"/>
+						<w:lvlText w:val="%9."/>
+						<w:lvlJc w:val="right"/>
+						<w:pPr>
+							<w:ind w:hanging="420" w:left="3780"/>
+						</w:pPr>
+					</w:lvl>
+				</w:abstractNum>
+				<w:abstractNum w:abstractNumId="12">
+					<w:nsid w:val="4B4270F7"/>
+					<w:multiLevelType w:val="hybridMultilevel"/>
+					<w:tmpl w:val="24FAE628"/>
+					<w:lvl w:ilvl="0" w:tplc="8C0626B4">
+						<w:start w:val="1"/>
+						<w:numFmt w:val="japaneseCounting"/>
+						<w:lvlText w:val="%1、"/>
+						<w:lvlJc w:val="left"/>
+						<w:pPr>
+							<w:ind w:hanging="456" w:left="598"/>
+						</w:pPr>
+						<w:rPr>
+							<w:rFonts w:hint="default"/>
+						</w:rPr>
+					</w:lvl>
+					<w:lvl w:ilvl="1" w:tentative="1" w:tplc="04090019">
+						<w:start w:val="1"/>
+						<w:numFmt w:val="lowerLetter"/>
+						<w:lvlText w:val="%2)"/>
+						<w:lvlJc w:val="left"/>
+						<w:pPr>
+							<w:ind w:hanging="420" w:left="840"/>
+						</w:pPr>
+					</w:lvl>
+					<w:lvl w:ilvl="2" w:tentative="1" w:tplc="0409001B">
+						<w:start w:val="1"/>
+						<w:numFmt w:val="lowerRoman"/>
+						<w:lvlText w:val="%3."/>
+						<w:lvlJc w:val="right"/>
+						<w:pPr>
+							<w:ind w:hanging="420" w:left="1260"/>
+						</w:pPr>
+					</w:lvl>
+					<w:lvl w:ilvl="3" w:tentative="1" w:tplc="0409000F">
+						<w:start w:val="1"/>
+						<w:numFmt w:val="decimal"/>
+						<w:lvlText w:val="%4."/>
+						<w:lvlJc w:val="left"/>
+						<w:pPr>
+							<w:ind w:hanging="420" w:left="1680"/>
+						</w:pPr>
+					</w:lvl>
+					<w:lvl w:ilvl="4" w:tentative="1" w:tplc="04090019">
+						<w:start w:val="1"/>
+						<w:numFmt w:val="lowerLetter"/>
+						<w:lvlText w:val="%5)"/>
+						<w:lvlJc w:val="left"/>
+						<w:pPr>
+							<w:ind w:hanging="420" w:left="2100"/>
+						</w:pPr>
+					</w:lvl>
+					<w:lvl w:ilvl="5" w:tentative="1" w:tplc="0409001B">
+						<w:start w:val="1"/>
+						<w:numFmt w:val="lowerRoman"/>
+						<w:lvlText w:val="%6."/>
+						<w:lvlJc w:val="right"/>
+						<w:pPr>
+							<w:ind w:hanging="420" w:left="2520"/>
+						</w:pPr>
+					</w:lvl>
+					<w:lvl w:ilvl="6" w:tentative="1" w:tplc="0409000F">
+						<w:start w:val="1"/>
+						<w:numFmt w:val="decimal"/>
+						<w:lvlText w:val="%7."/>
+						<w:lvlJc w:val="left"/>
+						<w:pPr>
+							<w:ind w:hanging="420" w:left="2940"/>
+						</w:pPr>
+					</w:lvl>
+					<w:lvl w:ilvl="7" w:tentative="1" w:tplc="04090019">
+						<w:start w:val="1"/>
+						<w:numFmt w:val="lowerLetter"/>
+						<w:lvlText w:val="%8)"/>
+						<w:lvlJc w:val="left"/>
+						<w:pPr>
+							<w:ind w:hanging="420" w:left="3360"/>
+						</w:pPr>
+					</w:lvl>
+					<w:lvl w:ilvl="8" w:tentative="1" w:tplc="0409001B">
+						<w:start w:val="1"/>
+						<w:numFmt w:val="lowerRoman"/>
+						<w:lvlText w:val="%9."/>
+						<w:lvlJc w:val="right"/>
+						<w:pPr>
+							<w:ind w:hanging="420" w:left="3780"/>
+						</w:pPr>
+					</w:lvl>
+				</w:abstractNum>
+				<w:abstractNum w:abstractNumId="13">
+					<w:nsid w:val="4C1E62C7"/>
+					<w:multiLevelType w:val="hybridMultilevel"/>
+					<w:tmpl w:val="D17645AE"/>
+					<w:lvl w:ilvl="0" w:tplc="A2FE6240">
+						<w:start w:val="3"/>
+						<w:numFmt w:val="japaneseCounting"/>
+						<w:lvlText w:val="%1、"/>
+						<w:lvlJc w:val="left"/>
+						<w:pPr>
+							<w:ind w:hanging="456" w:left="1054"/>
+						</w:pPr>
+						<w:rPr>
+							<w:rFonts w:hint="default"/>
+						</w:rPr>
+					</w:lvl>
+					<w:lvl w:ilvl="1" w:tentative="1" w:tplc="04090019">
+						<w:start w:val="1"/>
+						<w:numFmt w:val="lowerLetter"/>
+						<w:lvlText w:val="%2)"/>
+						<w:lvlJc w:val="left"/>
+						<w:pPr>
+							<w:ind w:hanging="420" w:left="1438"/>
+						</w:pPr>
+					</w:lvl>
+					<w:lvl w:ilvl="2" w:tentative="1" w:tplc="0409001B">
+						<w:start w:val="1"/>
+						<w:numFmt w:val="lowerRoman"/>
+						<w:lvlText w:val="%3."/>
+						<w:lvlJc w:val="right"/>
+						<w:pPr>
+							<w:ind w:hanging="420" w:left="1858"/>
+						</w:pPr>
+					</w:lvl>
+					<w:lvl w:ilvl="3" w:tentative="1" w:tplc="0409000F">
+						<w:start w:val="1"/>
+						<w:numFmt w:val="decimal"/>
+						<w:lvlText w:val="%4."/>
+						<w:lvlJc w:val="left"/>
+						<w:pPr>
+							<w:ind w:hanging="420" w:left="2278"/>
+						</w:pPr>
+					</w:lvl>
+					<w:lvl w:ilvl="4" w:tentative="1" w:tplc="04090019">
+						<w:start w:val="1"/>
+						<w:numFmt w:val="lowerLetter"/>
+						<w:lvlText w:val="%5)"/>
+						<w:lvlJc w:val="left"/>
+						<w:pPr>
+							<w:ind w:hanging="420" w:left="2698"/>
+						</w:pPr>
+					</w:lvl>
+					<w:lvl w:ilvl="5" w:tentative="1" w:tplc="0409001B">
+						<w:start w:val="1"/>
+						<w:numFmt w:val="lowerRoman"/>
+						<w:lvlText w:val="%6."/>
+						<w:lvlJc w:val="right"/>
+						<w:pPr>
+							<w:ind w:hanging="420" w:left="3118"/>
+						</w:pPr>
+					</w:lvl>
+					<w:lvl w:ilvl="6" w:tentative="1" w:tplc="0409000F">
+						<w:start w:val="1"/>
+						<w:numFmt w:val="decimal"/>
+						<w:lvlText w:val="%7."/>
+						<w:lvlJc w:val="left"/>
+						<w:pPr>
+							<w:ind w:hanging="420" w:left="3538"/>
+						</w:pPr>
+					</w:lvl>
+					<w:lvl w:ilvl="7" w:tentative="1" w:tplc="04090019">
+						<w:start w:val="1"/>
+						<w:numFmt w:val="lowerLetter"/>
+						<w:lvlText w:val="%8)"/>
+						<w:lvlJc w:val="left"/>
+						<w:pPr>
+							<w:ind w:hanging="420" w:left="3958"/>
+						</w:pPr>
+					</w:lvl>
+					<w:lvl w:ilvl="8" w:tentative="1" w:tplc="0409001B">
+						<w:start w:val="1"/>
+						<w:numFmt w:val="lowerRoman"/>
+						<w:lvlText w:val="%9."/>
+						<w:lvlJc w:val="right"/>
+						<w:pPr>
+							<w:ind w:hanging="420" w:left="4378"/>
+						</w:pPr>
+					</w:lvl>
+				</w:abstractNum>
+				<w:abstractNum w:abstractNumId="14">
+					<w:nsid w:val="5D4023F1"/>
+					<w:multiLevelType w:val="hybridMultilevel"/>
+					<w:tmpl w:val="8BDE2A18"/>
+					<w:lvl w:ilvl="0" w:tplc="3006B55E">
+						<w:start w:val="1"/>
+						<w:numFmt w:val="japaneseCounting"/>
+						<w:lvlText w:val="%1、"/>
+						<w:lvlJc w:val="left"/>
+						<w:pPr>
+							<w:ind w:hanging="456" w:left="1054"/>
+						</w:pPr>
+						<w:rPr>
+							<w:rFonts w:hint="default"/>
+						</w:rPr>
+					</w:lvl>
+					<w:lvl w:ilvl="1" w:tentative="1" w:tplc="04090019">
+						<w:start w:val="1"/>
+						<w:numFmt w:val="lowerLetter"/>
+						<w:lvlText w:val="%2)"/>
+						<w:lvlJc w:val="left"/>
+						<w:pPr>
+							<w:ind w:hanging="420" w:left="1438"/>
+						</w:pPr>
+					</w:lvl>
+					<w:lvl w:ilvl="2" w:tentative="1" w:tplc="0409001B">
+						<w:start w:val="1"/>
+						<w:numFmt w:val="lowerRoman"/>
+						<w:lvlText w:val="%3."/>
+						<w:lvlJc w:val="right"/>
+						<w:pPr>
+							<w:ind w:hanging="420" w:left="1858"/>
+						</w:pPr>
+					</w:lvl>
+					<w:lvl w:ilvl="3" w:tentative="1" w:tplc="0409000F">
+						<w:start w:val="1"/>
+						<w:numFmt w:val="decimal"/>
+						<w:lvlText w:val="%4."/>
+						<w:lvlJc w:val="left"/>
+						<w:pPr>
+							<w:ind w:hanging="420" w:left="2278"/>
+						</w:pPr>
+					</w:lvl>
+					<w:lvl w:ilvl="4" w:tentative="1" w:tplc="04090019">
+						<w:start w:val="1"/>
+						<w:numFmt w:val="lowerLetter"/>
+						<w:lvlText w:val="%5)"/>
+						<w:lvlJc w:val="left"/>
+						<w:pPr>
+							<w:ind w:hanging="420" w:left="2698"/>
+						</w:pPr>
+					</w:lvl>
+					<w:lvl w:ilvl="5" w:tentative="1" w:tplc="0409001B">
+						<w:start w:val="1"/>
+						<w:numFmt w:val="lowerRoman"/>
+						<w:lvlText w:val="%6."/>
+						<w:lvlJc w:val="right"/>
+						<w:pPr>
+							<w:ind w:hanging="420" w:left="3118"/>
+						</w:pPr>
+					</w:lvl>
+					<w:lvl w:ilvl="6" w:tentative="1" w:tplc="0409000F">
+						<w:start w:val="1"/>
+						<w:numFmt w:val="decimal"/>
+						<w:lvlText w:val="%7."/>
+						<w:lvlJc w:val="left"/>
+						<w:pPr>
+							<w:ind w:hanging="420" w:left="3538"/>
+						</w:pPr>
+					</w:lvl>
+					<w:lvl w:ilvl="7" w:tentative="1" w:tplc="04090019">
+						<w:start w:val="1"/>
+						<w:numFmt w:val="lowerLetter"/>
+						<w:lvlText w:val="%8)"/>
+						<w:lvlJc w:val="left"/>
+						<w:pPr>
+							<w:ind w:hanging="420" w:left="3958"/>
+						</w:pPr>
+					</w:lvl>
+					<w:lvl w:ilvl="8" w:tentative="1" w:tplc="0409001B">
+						<w:start w:val="1"/>
+						<w:numFmt w:val="lowerRoman"/>
+						<w:lvlText w:val="%9."/>
+						<w:lvlJc w:val="right"/>
+						<w:pPr>
+							<w:ind w:hanging="420" w:left="4378"/>
+						</w:pPr>
+					</w:lvl>
+				</w:abstractNum>
+				<w:abstractNum w:abstractNumId="15">
+					<w:nsid w:val="7A3B7293"/>
+					<w:multiLevelType w:val="hybridMultilevel"/>
+					<w:tmpl w:val="A32E9C5C"/>
+					<w:lvl w:ilvl="0" w:tplc="4C8299D4">
+						<w:start w:val="1"/>
+						<w:numFmt w:val="japaneseCounting"/>
+						<w:lvlText w:val="(%1)"/>
+						<w:lvlJc w:val="left"/>
+						<w:pPr>
+							<w:tabs>
+								<w:tab w:pos="1620" w:val="num"/>
+							</w:tabs>
+							<w:ind w:hanging="720" w:left="1620"/>
+						</w:pPr>
+						<w:rPr>
+							<w:rFonts w:hint="eastAsia"/>
+						</w:rPr>
+					</w:lvl>
+					<w:lvl w:ilvl="1" w:tplc="F8405D5E">
+						<w:start w:val="1"/>
+						<w:numFmt w:val="decimal"/>
+						<w:lvlText w:val="(%2)"/>
+						<w:lvlJc w:val="left"/>
+						<w:pPr>
+							<w:tabs>
+								<w:tab w:pos="720" w:val="num"/>
+							</w:tabs>
+							<w:ind w:hanging="720" w:left="720"/>
+						</w:pPr>
+						<w:rPr>
+							<w:rFonts w:hint="eastAsia"/>
+						</w:rPr>
+					</w:lvl>
+					<w:lvl w:ilvl="2" w:tentative="1" w:tplc="0409001B">
+						<w:start w:val="1"/>
+						<w:numFmt w:val="lowerRoman"/>
+						<w:lvlText w:val="%3."/>
+						<w:lvlJc w:val="right"/>
+						<w:pPr>
+							<w:tabs>
+								<w:tab w:pos="1260" w:val="num"/>
+							</w:tabs>
+							<w:ind w:hanging="420" w:left="1260"/>
+						</w:pPr>
+					</w:lvl>
+					<w:lvl w:ilvl="3" w:tentative="1" w:tplc="0409000F">
+						<w:start w:val="1"/>
+						<w:numFmt w:val="decimal"/>
+						<w:lvlText w:val="%4."/>
+						<w:lvlJc w:val="left"/>
+						<w:pPr>
+							<w:tabs>
+								<w:tab w:pos="1680" w:val="num"/>
+							</w:tabs>
+							<w:ind w:hanging="420" w:left="1680"/>
+						</w:pPr>
+					</w:lvl>
+					<w:lvl w:ilvl="4" w:tentative="1" w:tplc="04090019">
+						<w:start w:val="1"/>
+						<w:numFmt w:val="lowerLetter"/>
+						<w:lvlText w:val="%5)"/>
+						<w:lvlJc w:val="left"/>
+						<w:pPr>
+							<w:tabs>
+								<w:tab w:pos="2100" w:val="num"/>
+							</w:tabs>
+							<w:ind w:hanging="420" w:left="2100"/>
+						</w:pPr>
+					</w:lvl>
+					<w:lvl w:ilvl="5" w:tentative="1" w:tplc="0409001B">
+						<w:start w:val="1"/>
+						<w:numFmt w:val="lowerRoman"/>
+						<w:lvlText w:val="%6."/>
+						<w:lvlJc w:val="right"/>
+						<w:pPr>
+							<w:tabs>
+								<w:tab w:pos="2520" w:val="num"/>
+							</w:tabs>
+							<w:ind w:hanging="420" w:left="2520"/>
+						</w:pPr>
+					</w:lvl>
+					<w:lvl w:ilvl="6" w:tentative="1" w:tplc="0409000F">
+						<w:start w:val="1"/>
+						<w:numFmt w:val="decimal"/>
+						<w:lvlText w:val="%7."/>
+						<w:lvlJc w:val="left"/>
+						<w:pPr>
+							<w:tabs>
+								<w:tab w:pos="2940" w:val="num"/>
+							</w:tabs>
+							<w:ind w:hanging="420" w:left="2940"/>
+						</w:pPr>
+					</w:lvl>
+					<w:lvl w:ilvl="7" w:tentative="1" w:tplc="04090019">
+						<w:start w:val="1"/>
+						<w:numFmt w:val="lowerLetter"/>
+						<w:lvlText w:val="%8)"/>
+						<w:lvlJc w:val="left"/>
+						<w:pPr>
+							<w:tabs>
+								<w:tab w:pos="3360" w:val="num"/>
+							</w:tabs>
+							<w:ind w:hanging="420" w:left="3360"/>
+						</w:pPr>
+					</w:lvl>
+					<w:lvl w:ilvl="8" w:tentative="1" w:tplc="0409001B">
+						<w:start w:val="1"/>
+						<w:numFmt w:val="lowerRoman"/>
+						<w:lvlText w:val="%9."/>
+						<w:lvlJc w:val="right"/>
+						<w:pPr>
+							<w:tabs>
+								<w:tab w:pos="3780" w:val="num"/>
+							</w:tabs>
+							<w:ind w:hanging="420" w:left="3780"/>
+						</w:pPr>
+					</w:lvl>
+				</w:abstractNum>
+				<w:abstractNum w:abstractNumId="16">
+					<w:nsid w:val="7AF01177"/>
+					<w:multiLevelType w:val="hybridMultilevel"/>
+					<w:tmpl w:val="995AA33A"/>
+					<w:lvl w:ilvl="0" w:tplc="B330B920">
+						<w:start w:val="2"/>
+						<w:numFmt w:val="japaneseCounting"/>
+						<w:lvlText w:val="%1、"/>
+						<w:lvlJc w:val="left"/>
+						<w:pPr>
+							<w:ind w:hanging="420" w:left="1438"/>
+						</w:pPr>
+						<w:rPr>
+							<w:rFonts w:hint="default"/>
+						</w:rPr>
+					</w:lvl>
+					<w:lvl w:ilvl="1" w:tentative="1" w:tplc="04090019">
+						<w:start w:val="1"/>
+						<w:numFmt w:val="lowerLetter"/>
+						<w:lvlText w:val="%2)"/>
+						<w:lvlJc w:val="left"/>
+						<w:pPr>
+							<w:ind w:hanging="420" w:left="1858"/>
+						</w:pPr>
+					</w:lvl>
+					<w:lvl w:ilvl="2" w:tentative="1" w:tplc="0409001B">
+						<w:start w:val="1"/>
+						<w:numFmt w:val="lowerRoman"/>
+						<w:lvlText w:val="%3."/>
+						<w:lvlJc w:val="right"/>
+						<w:pPr>
+							<w:ind w:hanging="420" w:left="2278"/>
+						</w:pPr>
+					</w:lvl>
+					<w:lvl w:ilvl="3" w:tentative="1" w:tplc="0409000F">
+						<w:start w:val="1"/>
+						<w:numFmt w:val="decimal"/>
+						<w:lvlText w:val="%4."/>
+						<w:lvlJc w:val="left"/>
+						<w:pPr>
+							<w:ind w:hanging="420" w:left="2698"/>
+						</w:pPr>
+					</w:lvl>
+					<w:lvl w:ilvl="4" w:tentative="1" w:tplc="04090019">
+						<w:start w:val="1"/>
+						<w:numFmt w:val="lowerLetter"/>
+						<w:lvlText w:val="%5)"/>
+						<w:lvlJc w:val="left"/>
+						<w:pPr>
+							<w:ind w:hanging="420" w:left="3118"/>
+						</w:pPr>
+					</w:lvl>
+					<w:lvl w:ilvl="5" w:tentative="1" w:tplc="0409001B">
+						<w:start w:val="1"/>
+						<w:numFmt w:val="lowerRoman"/>
+						<w:lvlText w:val="%6."/>
+						<w:lvlJc w:val="right"/>
+						<w:pPr>
+							<w:ind w:hanging="420" w:left="3538"/>
+						</w:pPr>
+					</w:lvl>
+					<w:lvl w:ilvl="6" w:tentative="1" w:tplc="0409000F">
+						<w:start w:val="1"/>
+						<w:numFmt w:val="decimal"/>
+						<w:lvlText w:val="%7."/>
+						<w:lvlJc w:val="left"/>
+						<w:pPr>
+							<w:ind w:hanging="420" w:left="3958"/>
+						</w:pPr>
+					</w:lvl>
+					<w:lvl w:ilvl="7" w:tentative="1" w:tplc="04090019">
+						<w:start w:val="1"/>
+						<w:numFmt w:val="lowerLetter"/>
+						<w:lvlText w:val="%8)"/>
+						<w:lvlJc w:val="left"/>
+						<w:pPr>
+							<w:ind w:hanging="420" w:left="4378"/>
+						</w:pPr>
+					</w:lvl>
+					<w:lvl w:ilvl="8" w:tentative="1" w:tplc="0409001B">
+						<w:start w:val="1"/>
+						<w:numFmt w:val="lowerRoman"/>
+						<w:lvlText w:val="%9."/>
+						<w:lvlJc w:val="right"/>
+						<w:pPr>
+							<w:ind w:hanging="420" w:left="4798"/>
+						</w:pPr>
+					</w:lvl>
+				</w:abstractNum>
+				<w:abstractNum w:abstractNumId="17">
+					<w:nsid w:val="7BA06C7E"/>
+					<w:multiLevelType w:val="hybridMultilevel"/>
+					<w:tmpl w:val="E6BEA64C"/>
+					<w:lvl w:ilvl="0" w:tplc="C3B2F75A">
+						<w:start w:val="1"/>
+						<w:numFmt w:val="japaneseCounting"/>
+						<w:lvlText w:val="%1、"/>
+						<w:lvlJc w:val="left"/>
+						<w:pPr>
+							<w:ind w:hanging="456" w:left="456"/>
+						</w:pPr>
+						<w:rPr>
+							<w:rFonts w:hint="default"/>
+						</w:rPr>
+					</w:lvl>
+					<w:lvl w:ilvl="1" w:tentative="1" w:tplc="04090019">
+						<w:start w:val="1"/>
+						<w:numFmt w:val="lowerLetter"/>
+						<w:lvlText w:val="%2)"/>
+						<w:lvlJc w:val="left"/>
+						<w:pPr>
+							<w:ind w:hanging="420" w:left="840"/>
+						</w:pPr>
+					</w:lvl>
+					<w:lvl w:ilvl="2" w:tentative="1" w:tplc="0409001B">
+						<w:start w:val="1"/>
+						<w:numFmt w:val="lowerRoman"/>
+						<w:lvlText w:val="%3."/>
+						<w:lvlJc w:val="right"/>
+						<w:pPr>
+							<w:ind w:hanging="420" w:left="1260"/>
+						</w:pPr>
+					</w:lvl>
+					<w:lvl w:ilvl="3" w:tentative="1" w:tplc="0409000F">
+						<w:start w:val="1"/>
+						<w:numFmt w:val="decimal"/>
+						<w:lvlText w:val="%4."/>
+						<w:lvlJc w:val="left"/>
+						<w:pPr>
+							<w:ind w:hanging="420" w:left="1680"/>
+						</w:pPr>
+					</w:lvl>
+					<w:lvl w:ilvl="4" w:tentative="1" w:tplc="04090019">
+						<w:start w:val="1"/>
+						<w:numFmt w:val="lowerLetter"/>
+						<w:lvlText w:val="%5)"/>
+						<w:lvlJc w:val="left"/>
+						<w:pPr>
+							<w:ind w:hanging="420" w:left="2100"/>
+						</w:pPr>
+					</w:lvl>
+					<w:lvl w:ilvl="5" w:tentative="1" w:tplc="0409001B">
+						<w:start w:val="1"/>
+						<w:numFmt w:val="lowerRoman"/>
+						<w:lvlText w:val="%6."/>
+						<w:lvlJc w:val="right"/>
+						<w:pPr>
+							<w:ind w:hanging="420" w:left="2520"/>
+						</w:pPr>
+					</w:lvl>
+					<w:lvl w:ilvl="6" w:tentative="1" w:tplc="0409000F">
+						<w:start w:val="1"/>
+						<w:numFmt w:val="decimal"/>
+						<w:lvlText w:val="%7."/>
+						<w:lvlJc w:val="left"/>
+						<w:pPr>
+							<w:ind w:hanging="420" w:left="2940"/>
+						</w:pPr>
+					</w:lvl>
+					<w:lvl w:ilvl="7" w:tentative="1" w:tplc="04090019">
+						<w:start w:val="1"/>
+						<w:numFmt w:val="lowerLetter"/>
+						<w:lvlText w:val="%8)"/>
+						<w:lvlJc w:val="left"/>
+						<w:pPr>
+							<w:ind w:hanging="420" w:left="3360"/>
+						</w:pPr>
+					</w:lvl>
+					<w:lvl w:ilvl="8" w:tentative="1" w:tplc="0409001B">
+						<w:start w:val="1"/>
+						<w:numFmt w:val="lowerRoman"/>
+						<w:lvlText w:val="%9."/>
+						<w:lvlJc w:val="right"/>
+						<w:pPr>
+							<w:ind w:hanging="420" w:left="3780"/>
+						</w:pPr>
+					</w:lvl>
+				</w:abstractNum>
+				<w:num w:numId="1">
+					<w:abstractNumId w:val="2"/>
+				</w:num>
+				<w:num w:numId="2">
+					<w:abstractNumId w:val="15"/>
+				</w:num>
+				<w:num w:numId="3">
+					<w:abstractNumId w:val="7"/>
+					<w:lvlOverride w:ilvl="0">
+						<w:startOverride w:val="1"/>
+					</w:lvlOverride>
+					<w:lvlOverride w:ilvl="1">
+						<w:startOverride w:val="1"/>
+					</w:lvlOverride>
+					<w:lvlOverride w:ilvl="2">
+						<w:startOverride w:val="1"/>
+					</w:lvlOverride>
+					<w:lvlOverride w:ilvl="3">
+						<w:startOverride w:val="1"/>
+					</w:lvlOverride>
+					<w:lvlOverride w:ilvl="4">
+						<w:startOverride w:val="1"/>
+					</w:lvlOverride>
+					<w:lvlOverride w:ilvl="5">
+						<w:startOverride w:val="1"/>
+					</w:lvlOverride>
+					<w:lvlOverride w:ilvl="6">
+						<w:startOverride w:val="1"/>
+					</w:lvlOverride>
+					<w:lvlOverride w:ilvl="7">
+						<w:startOverride w:val="1"/>
+					</w:lvlOverride>
+					<w:lvlOverride w:ilvl="8">
+						<w:startOverride w:val="1"/>
+					</w:lvlOverride>
+				</w:num>
+				<w:num w:numId="4">
+					<w:abstractNumId w:val="3"/>
+				</w:num>
+				<w:num w:numId="5">
+					<w:abstractNumId w:val="9"/>
+				</w:num>
+				<w:num w:numId="6">
+					<w:abstractNumId w:val="17"/>
+				</w:num>
+				<w:num w:numId="7">
+					<w:abstractNumId w:val="11"/>
+				</w:num>
+				<w:num w:numId="8">
+					<w:abstractNumId w:val="0"/>
+				</w:num>
+				<w:num w:numId="9">
+					<w:abstractNumId w:val="12"/>
+				</w:num>
+				<w:num w:numId="10">
+					<w:abstractNumId w:val="1"/>
+					<w:lvlOverride w:ilvl="0">
+						<w:startOverride w:val="1"/>
+					</w:lvlOverride>
+					<w:lvlOverride w:ilvl="1">
+						<w:startOverride w:val="1"/>
+					</w:lvlOverride>
+					<w:lvlOverride w:ilvl="2">
+						<w:startOverride w:val="1"/>
+					</w:lvlOverride>
+					<w:lvlOverride w:ilvl="3">
+						<w:startOverride w:val="1"/>
+					</w:lvlOverride>
+					<w:lvlOverride w:ilvl="4">
+						<w:startOverride w:val="1"/>
+					</w:lvlOverride>
+					<w:lvlOverride w:ilvl="5">
+						<w:startOverride w:val="1"/>
+					</w:lvlOverride>
+					<w:lvlOverride w:ilvl="6">
+						<w:startOverride w:val="1"/>
+					</w:lvlOverride>
+					<w:lvlOverride w:ilvl="7">
+						<w:startOverride w:val="1"/>
+					</w:lvlOverride>
+					<w:lvlOverride w:ilvl="8">
+						<w:startOverride w:val="1"/>
+					</w:lvlOverride>
+				</w:num>
+				<w:num w:numId="11">
+					<w:abstractNumId w:val="4"/>
+				</w:num>
+				<w:num w:numId="12">
+					<w:abstractNumId w:val="5"/>
+				</w:num>
+				<w:num w:numId="13">
+					<w:abstractNumId w:val="14"/>
+				</w:num>
+				<w:num w:numId="14">
+					<w:abstractNumId w:val="6"/>
+				</w:num>
+				<w:num w:numId="15">
+					<w:abstractNumId w:val="8"/>
+				</w:num>
+				<w:num w:numId="16">
+					<w:abstractNumId w:val="16"/>
+				</w:num>
+				<w:num w:numId="17">
+					<w:abstractNumId w:val="13"/>
+				</w:num>
+				<w:num w:numId="18">
+					<w:abstractNumId w:val="10"/>
+				</w:num>
+			</w:numbering>
+		</pkg:xmlData>
+	</pkg:part>
+	<pkg:part pkg:contentType="application/vnd.openxmlformats-package.relationships+xml" pkg:name="/customXml/_rels/item1.xml.rels" pkg:padding="256">
+		<pkg:xmlData>
+			<Relationships xmlns="http://schemas.openxmlformats.org/package/2006/relationships">
+				<Relationship Id="rId1" Target="itemProps1.xml" Type="http://schemas.openxmlformats.org/officeDocument/2006/relationships/customXmlProps"/>
+			</Relationships>
+		</pkg:xmlData>
+	</pkg:part>
+	<pkg:part pkg:contentType="application/vnd.openxmlformats-officedocument.customXmlProperties+xml" pkg:name="/customXml/itemProps1.xml" pkg:padding="32">
+		<pkg:xmlData pkg:originalXmlStandalone="no">
+			<ds:datastoreItem ds:itemID="{C601F546-F657-40EF-BBA2-F86F623C1AAA}" xmlns:ds="http://schemas.openxmlformats.org/officeDocument/2006/customXml">
+				<ds:schemaRefs>
+					<ds:schemaRef ds:uri="http://schemas.openxmlformats.org/officeDocument/2006/bibliography"/>
+				</ds:schemaRefs>
+			</ds:datastoreItem>
+		</pkg:xmlData>
+	</pkg:part>
+	<pkg:part pkg:contentType="application/vnd.openxmlformats-officedocument.wordprocessingml.fontTable+xml" pkg:name="/word/fontTable.xml">
+		<pkg:xmlData>
+			<w:fonts mc:Ignorable="w14" xmlns:mc="http://schemas.openxmlformats.org/markup-compatibility/2006" xmlns:r="http://schemas.openxmlformats.org/officeDocument/2006/relationships" xmlns:w="http://schemas.openxmlformats.org/wordprocessingml/2006/main" xmlns:w14="http://schemas.microsoft.com/office/word/2010/wordml">
+				<w:font w:name="Times New Roman">
+					<w:panose1 w:val="02020603050405020304"/>
+					<w:charset w:val="00"/>
+					<w:family w:val="roman"/>
+					<w:pitch w:val="variable"/>
+					<w:sig w:csb0="000001FF" w:csb1="00000000" w:usb0="E0002EFF" w:usb1="C000785B" w:usb2="00000009" w:usb3="00000000"/>
+				</w:font>
+				<w:font w:name="宋体">
+					<w:altName w:val="SimSun"/>
+					<w:panose1 w:val="02010600030101010101"/>
+					<w:charset w:val="86"/>
+					<w:family w:val="auto"/>
+					<w:pitch w:val="variable"/>
+					<w:sig w:csb0="00040001" w:csb1="00000000" w:usb0="00000003" w:usb1="288F0000" w:usb2="00000016" w:usb3="00000000"/>
+				</w:font>
+				<w:font w:name="Cambria">
+					<w:panose1 w:val="02040503050406030204"/>
+					<w:charset w:val="00"/>
+					<w:family w:val="roman"/>
+					<w:pitch w:val="variable"/>
+					<w:sig w:csb0="0000019F" w:csb1="00000000" w:usb0="E00002FF" w:usb1="400004FF" w:usb2="00000000" w:usb3="00000000"/>
+				</w:font>
+				<w:font w:name="Calibri">
+					<w:panose1 w:val="020F0502020204030204"/>
+					<w:charset w:val="00"/>
+					<w:family w:val="swiss"/>
+					<w:pitch w:val="variable"/>
+					<w:sig w:csb0="000001FF" w:csb1="00000000" w:usb0="E0002AFF" w:usb1="C000247B" w:usb2="00000009" w:usb3="00000000"/>
+				</w:font>
+				<w:font w:name="黑体">
+					<w:altName w:val="SimHei"/>
+					<w:panose1 w:val="02010609060101010101"/>
+					<w:charset w:val="86"/>
+					<w:family w:val="modern"/>
+					<w:pitch w:val="fixed"/>
+					<w:sig w:csb0="00040001" w:csb1="00000000" w:usb0="800002BF" w:usb1="38CF7CFA" w:usb2="00000016" w:usb3="00000000"/>
+				</w:font>
+			</w:fonts>
+		</pkg:xmlData>
+	</pkg:part>
+	<pkg:part pkg:contentType="application/vnd.openxmlformats-package.core-properties+xml" pkg:name="/docProps/core.xml" pkg:padding="256">
+		<pkg:xmlData>
+			<cp:coreProperties xmlns:cp="http://schemas.openxmlformats.org/package/2006/metadata/core-properties" xmlns:dc="http://purl.org/dc/elements/1.1/" xmlns:dcmitype="http://purl.org/dc/dcmitype/" xmlns:dcterms="http://purl.org/dc/terms/" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance">
+				<dc:title>陕西师范大学网络教育考卷</dc:title>
+				<dc:creator>ThinkPad</dc:creator>
+				<cp:lastModifiedBy>chenken</cp:lastModifiedBy>
+				<cp:revision>2</cp:revision>
+				<cp:lastPrinted>2015-05-19T08:52:00Z</cp:lastPrinted>
+				<dcterms:created xsi:type="dcterms:W3CDTF">2017-07-07T02:54:00Z</dcterms:created>
+				<dcterms:modified xsi:type="dcterms:W3CDTF">2017-07-07T02:54:00Z</dcterms:modified>
+			</cp:coreProperties>
+		</pkg:xmlData>
+	</pkg:part>
+	<pkg:part pkg:contentType="application/xml" pkg:name="/customXml/item1.xml" pkg:padding="32">
+		<pkg:xmlData>
+			<b:Sources SelectedStyle="\APA.XSL" StyleName="APA Fifth Edition" xmlns="http://schemas.openxmlformats.org/officeDocument/2006/bibliography" xmlns:b="http://schemas.openxmlformats.org/officeDocument/2006/bibliography"/>
+		</pkg:xmlData>
+	</pkg:part>
+	<pkg:part pkg:contentType="application/vnd.openxmlformats-officedocument.wordprocessingml.webSettings+xml" pkg:name="/word/webSettings.xml">
+		<pkg:xmlData>
+			<w:webSettings mc:Ignorable="w14" xmlns:mc="http://schemas.openxmlformats.org/markup-compatibility/2006" xmlns:r="http://schemas.openxmlformats.org/officeDocument/2006/relationships" xmlns:w="http://schemas.openxmlformats.org/wordprocessingml/2006/main" xmlns:w14="http://schemas.microsoft.com/office/word/2010/wordml">
+				<w:divs>
+					<w:div w:id="455612022">
+						<w:bodyDiv w:val="1"/>
+						<w:marLeft w:val="0"/>
+						<w:marRight w:val="0"/>
+						<w:marTop w:val="0"/>
+						<w:marBottom w:val="0"/>
+						<w:divBdr>
+							<w:top w:color="auto" w:space="0" w:sz="0" w:val="none"/>
+							<w:left w:color="auto" w:space="0" w:sz="0" w:val="none"/>
+							<w:bottom w:color="auto" w:space="0" w:sz="0" w:val="none"/>
+							<w:right w:color="auto" w:space="0" w:sz="0" w:val="none"/>
+						</w:divBdr>
+						<w:divsChild>
+							<w:div w:id="844171662">
+								<w:marLeft w:val="0"/>
+								<w:marRight w:val="0"/>
+								<w:marTop w:val="0"/>
+								<w:marBottom w:val="0"/>
+								<w:divBdr>
+									<w:top w:color="auto" w:space="0" w:sz="0" w:val="none"/>
+									<w:left w:color="auto" w:space="0" w:sz="0" w:val="none"/>
+									<w:bottom w:color="auto" w:space="0" w:sz="0" w:val="none"/>
+									<w:right w:color="auto" w:space="0" w:sz="0" w:val="none"/>
+								</w:divBdr>
+							</w:div>
+						</w:divsChild>
+					</w:div>
+				</w:divs>
+				<w:optimizeForBrowser/>
+				<w:targetScreenSz w:val="800x600"/>
+			</w:webSettings>
+		</pkg:xmlData>
+	</pkg:part>
+	<pkg:part pkg:contentType="application/vnd.openxmlformats-officedocument.extended-properties+xml" pkg:name="/docProps/app.xml" pkg:padding="256">
+		<pkg:xmlData>
+			<Properties xmlns="http://schemas.openxmlformats.org/officeDocument/2006/extended-properties" xmlns:vt="http://schemas.openxmlformats.org/officeDocument/2006/docPropsVTypes">
+				<Template>Normal.dotm</Template>
+				<TotalTime>0</TotalTime>
+				<Pages>1</Pages>
+				<Words>80</Words>
+				<Characters>460</Characters>
+				<Application>Microsoft Office Word</Application>
+				<DocSecurity>0</DocSecurity>
+				<Lines>3</Lines>
+				<Paragraphs>1</Paragraphs>
+				<ScaleCrop>false</ScaleCrop>
+				<Company>Microsoft</Company>
+				<LinksUpToDate>false</LinksUpToDate>
+				<CharactersWithSpaces>539</CharactersWithSpaces>
+				<SharedDoc>false</SharedDoc>
+				<HyperlinksChanged>false</HyperlinksChanged>
+				<AppVersion>14.0000</AppVersion>
+			</Properties>
+		</pkg:xmlData>
+	</pkg:part>
+</pkg:package>

Diff do ficheiro suprimidas por serem muito extensas
+ 3952 - 0
cqb-comm-utils/src/main/resources/tjdx_answer_template.ftl


+ 5009 - 0
cqb-comm-utils/src/main/resources/tjdx_paper_template.ftl

@@ -0,0 +1,5009 @@
+<?xml version="1.0" encoding="UTF-8" standalone="yes"?>
+<?mso-application progid="Word.Document"?>
+<pkg:package xmlns:pkg="http://schemas.microsoft.com/office/2006/xmlPackage">
+	<pkg:part pkg:contentType="application/vnd.openxmlformats-package.relationships+xml" pkg:name="/_rels/.rels" pkg:padding="512">
+		<pkg:xmlData>
+			<Relationships xmlns="http://schemas.openxmlformats.org/package/2006/relationships">
+				<Relationship Id="rId3" Target="docProps/app.xml" Type="http://schemas.openxmlformats.org/officeDocument/2006/relationships/extended-properties"/>
+				<Relationship Id="rId2" Target="docProps/core.xml" Type="http://schemas.openxmlformats.org/package/2006/relationships/metadata/core-properties"/>
+				<Relationship Id="rId1" Target="word/document.xml" Type="http://schemas.openxmlformats.org/officeDocument/2006/relationships/officeDocument"/>
+			</Relationships>
+		</pkg:xmlData>
+	</pkg:part>
+	<pkg:part pkg:contentType="application/vnd.openxmlformats-package.relationships+xml" pkg:name="/word/_rels/document.xml.rels" pkg:padding="256">
+		<pkg:xmlData>
+			<Relationships xmlns="http://schemas.openxmlformats.org/package/2006/relationships">
+				<Relationship Id="rId8" Target="footer1.xml" Type="http://schemas.openxmlformats.org/officeDocument/2006/relationships/footer"/>
+				<Relationship Id="rId3" Target="styles.xml" Type="http://schemas.openxmlformats.org/officeDocument/2006/relationships/styles"/>
+				<Relationship Id="rId7" Target="endnotes.xml" Type="http://schemas.openxmlformats.org/officeDocument/2006/relationships/endnotes"/>
+				<Relationship Id="rId2" Target="numbering.xml" Type="http://schemas.openxmlformats.org/officeDocument/2006/relationships/numbering"/>
+				<Relationship Id="rId1" Target="../customXml/item1.xml" Type="http://schemas.openxmlformats.org/officeDocument/2006/relationships/customXml"/>
+				<Relationship Id="rId6" Target="footnotes.xml" Type="http://schemas.openxmlformats.org/officeDocument/2006/relationships/footnotes"/>
+				<Relationship Id="rId11" Target="theme/theme1.xml" Type="http://schemas.openxmlformats.org/officeDocument/2006/relationships/theme"/>
+				<Relationship Id="rId5" Target="webSettings.xml" Type="http://schemas.openxmlformats.org/officeDocument/2006/relationships/webSettings"/>
+				<Relationship Id="rId10" Target="fontTable.xml" Type="http://schemas.openxmlformats.org/officeDocument/2006/relationships/fontTable"/>
+				<Relationship Id="rId4" Target="settings.xml" Type="http://schemas.openxmlformats.org/officeDocument/2006/relationships/settings"/>
+				<Relationship Id="rId9" Target="footer2.xml" Type="http://schemas.openxmlformats.org/officeDocument/2006/relationships/footer"/>
+			</Relationships>
+		</pkg:xmlData>
+	</pkg:part>
+	<pkg:part pkg:contentType="application/vnd.openxmlformats-officedocument.wordprocessingml.document.main+xml" pkg:name="/word/document.xml">
+		<pkg:xmlData>
+			<w:document mc:Ignorable="w14 wp14" xmlns:m="http://schemas.openxmlformats.org/officeDocument/2006/math" xmlns:mc="http://schemas.openxmlformats.org/markup-compatibility/2006" xmlns:o="urn:schemas-microsoft-com:office:office" xmlns:r="http://schemas.openxmlformats.org/officeDocument/2006/relationships" xmlns:v="urn:schemas-microsoft-com:vml" xmlns:w="http://schemas.openxmlformats.org/wordprocessingml/2006/main" xmlns:w10="urn:schemas-microsoft-com:office:word" xmlns:w14="http://schemas.microsoft.com/office/word/2010/wordml" xmlns:wne="http://schemas.microsoft.com/office/word/2006/wordml" xmlns:wp="http://schemas.openxmlformats.org/drawingml/2006/wordprocessingDrawing" xmlns:wp14="http://schemas.microsoft.com/office/word/2010/wordprocessingDrawing" xmlns:wpc="http://schemas.microsoft.com/office/word/2010/wordprocessingCanvas" xmlns:wpg="http://schemas.microsoft.com/office/word/2010/wordprocessingGroup" xmlns:wpi="http://schemas.microsoft.com/office/word/2010/wordprocessingInk" xmlns:wps="http://schemas.microsoft.com/office/word/2010/wordprocessingShape">
+				<w:body>
+					<w:p w:rsidP="00C0008F" w:rsidR="00C0008F" w:rsidRDefault="00C0008F" w:rsidRPr="00D948E2">
+						<w:pPr>
+							<w:rPr>
+								<w:rFonts w:ascii="宋体" w:hAnsi="宋体"/>
+								<w:b/>
+								<w:bCs/>
+								<w:color w:val="FF0000"/>
+								<w:sz w:val="28"/>
+								<w:szCs w:val="28"/>
+							</w:rPr>
+						</w:pPr>
+						<w:bookmarkStart w:id="0" w:name="_GoBack"/>
+						<w:bookmarkEnd w:id="0"/>
+					</w:p>
+					<w:p w:rsidP="001A2234" w:rsidR="001A2234" w:rsidRDefault="005E06FB" w:rsidRPr="001A2234">
+						<w:pPr>
+							<w:ind w:left="-567" w:leftChars="-270"/>
+							<w:jc w:val="center"/>
+							<w:rPr>
+								<w:rFonts w:eastAsia="黑体" w:hint="eastAsia"/>
+								<w:b/>
+								<w:bCs/>
+								<w:noProof/>
+								<w:sz w:val="44"/>
+								<w:szCs w:val="44"/>
+							</w:rPr>
+						</w:pPr>
+						<w:r w:rsidRPr="001A2234">
+							<w:rPr>
+								<w:rFonts w:eastAsia="黑体"/>
+								<w:b/>
+								<w:bCs/>
+								<w:noProof/>
+								<w:sz w:val="44"/>
+								<w:szCs w:val="44"/>
+							</w:rPr>
+							<w:pict>
+								<v:shapetype coordsize="21600,21600" id="_x0000_t202" o:spt="202" path="m,l,21600r21600,l21600,xe">
+									<v:stroke joinstyle="miter"/>
+									<v:path gradientshapeok="t" o:connecttype="rect"/>
+								</v:shapetype>
+								<v:shape id="_x0000_s1254" stroked="f" style="position:absolute;left:0;text-align:left;margin-left:-63pt;margin-top:-39pt;width:81pt;height:803.4pt;z-index:1" type="#_x0000_t202">
+									<v:textbox style="layout-flow:vertical;mso-layout-flow-alt:bottom-to-top;mso-next-textbox:#_x0000_s1254">
+										<w:txbxContent>
+											<w:p w:rsidP="005E06FB" w:rsidR="005E06FB" w:rsidRDefault="005E06FB">
+												<w:pPr>
+													<w:spacing w:line="360" w:lineRule="auto"/>
+													<w:jc w:val="center"/>
+													<w:rPr>
+														<w:rFonts w:hint="eastAsia"/>
+														<w:sz w:val="24"/>
+													</w:rPr>
+												</w:pPr>
+												<w:r>
+													<w:rPr>
+														<w:rFonts w:hint="eastAsia"/>
+														<w:sz w:val="24"/>
+													</w:rPr>
+													<w:t>姓名</w:t>
+												</w:r>
+												<w:r>
+													<w:rPr>
+														<w:rFonts w:hint="eastAsia"/>
+														<w:sz w:val="24"/>
+													</w:rPr>
+													<w:t xml:space="preserve">__________________ </w:t>
+												</w:r>
+												<w:r>
+													<w:rPr>
+														<w:rFonts w:hint="eastAsia"/>
+														<w:sz w:val="24"/>
+													</w:rPr>
+													<w:t>专业名称</w:t>
+												</w:r>
+												<w:r>
+													<w:rPr>
+														<w:rFonts w:hint="eastAsia"/>
+														<w:sz w:val="24"/>
+													</w:rPr>
+													<w:t>__________________</w:t>
+												</w:r>
+												<w:r>
+													<w:rPr>
+														<w:rFonts w:hint="eastAsia"/>
+														<w:sz w:val="24"/>
+													</w:rPr>
+													<w:t xml:space="preserve">  班号</w:t>
+												</w:r>
+												<w:r>
+													<w:rPr>
+														<w:rFonts w:hint="eastAsia"/>
+														<w:sz w:val="24"/>
+													</w:rPr>
+													<w:t>________________</w:t>
+												</w:r>
+												<w:r>
+													<w:rPr>
+														<w:rFonts w:hint="eastAsia"/>
+														<w:sz w:val="24"/>
+													</w:rPr>
+													<w:t>学号</w:t>
+												</w:r>
+												<w:r>
+													<w:rPr>
+														<w:rFonts w:hint="eastAsia"/>
+														<w:sz w:val="24"/>
+													</w:rPr>
+													<w:t>__________________</w:t>
+												</w:r>
+												<w:r>
+													<w:rPr>
+														<w:rFonts w:hint="eastAsia"/>
+														<w:sz w:val="24"/>
+													</w:rPr>
+													<w:t>学习中心</w:t>
+												</w:r>
+												<w:r>
+													<w:rPr>
+														<w:rFonts w:hint="eastAsia"/>
+														<w:sz w:val="24"/>
+													</w:rPr>
+													<w:t>_________________</w:t>
+												</w:r>
+											</w:p>
+											<w:p w:rsidP="005E06FB" w:rsidR="005E06FB" w:rsidRDefault="005E06FB">
+												<w:pPr>
+													<w:ind w:hanging="720" w:hangingChars="300" w:left="720"/>
+													<w:jc w:val="center"/>
+												</w:pPr>
+												<w:r>
+													<w:rPr>
+														<w:sz w:val="24"/>
+													</w:rPr>
+													<w:t>……………………</w:t>
+												</w:r>
+												<w:r>
+													<w:rPr>
+														<w:rFonts w:hint="eastAsia"/>
+														<w:sz w:val="24"/>
+													</w:rPr>
+													<w:t xml:space="preserve"/>
+												</w:r>
+												<w:r>
+													<w:rPr>
+														<w:sz w:val="24"/>
+													</w:rPr>
+													<w:t>……</w:t>
+												</w:r>
+												<w:r>
+													<w:rPr>
+														<w:rFonts w:hint="eastAsia"/>
+														<w:sz w:val="24"/>
+													</w:rPr>
+													<w:t xml:space="preserve"/>
+												</w:r>
+												<w:r>
+													<w:rPr>
+														<w:sz w:val="24"/>
+													</w:rPr>
+													<w:t>…</w:t>
+												</w:r>
+												<w:r>
+													<w:rPr>
+														<w:rFonts w:hint="eastAsia"/>
+														<w:sz w:val="24"/>
+													</w:rPr>
+													<w:t xml:space="preserve"/>
+												</w:r>
+												<w:r>
+													<w:rPr>
+														<w:sz w:val="24"/>
+													</w:rPr>
+													<w:t>…</w:t>
+												</w:r>
+												<w:r>
+													<w:rPr>
+														<w:rFonts w:hint="eastAsia"/>
+														<w:sz w:val="24"/>
+													</w:rPr>
+													<w:t xml:space="preserve"/>
+												</w:r>
+												<w:r>
+													<w:rPr>
+														<w:sz w:val="24"/>
+													</w:rPr>
+													<w:t>…</w:t>
+												</w:r>
+												<w:r>
+													<w:rPr>
+														<w:rFonts w:hint="eastAsia"/>
+														<w:sz w:val="24"/>
+													</w:rPr>
+													<w:t xml:space="preserve"/>
+												</w:r>
+												<w:r>
+													<w:rPr>
+														<w:sz w:val="24"/>
+													</w:rPr>
+													<w:t>…</w:t>
+												</w:r>
+												<w:r>
+													<w:rPr>
+														<w:rFonts w:hint="eastAsia"/>
+														<w:sz w:val="24"/>
+													</w:rPr>
+													<w:t xml:space="preserve"/>
+												</w:r>
+												<w:r>
+													<w:rPr>
+														<w:sz w:val="24"/>
+													</w:rPr>
+													<w:t>…</w:t>
+												</w:r>
+												<w:r>
+													<w:rPr>
+														<w:rFonts w:hint="eastAsia"/>
+														<w:sz w:val="24"/>
+													</w:rPr>
+													<w:t>密</w:t>
+												</w:r>
+												<w:r>
+													<w:rPr>
+														<w:sz w:val="24"/>
+													</w:rPr>
+													<w:t>…………………</w:t>
+												</w:r>
+												<w:r>
+													<w:rPr>
+														<w:rFonts w:hint="eastAsia"/>
+														<w:sz w:val="24"/>
+													</w:rPr>
+													<w:t xml:space="preserve"/>
+												</w:r>
+												<w:r>
+													<w:rPr>
+														<w:sz w:val="24"/>
+													</w:rPr>
+													<w:t>……</w:t>
+												</w:r>
+												<w:r>
+													<w:rPr>
+														<w:rFonts w:hint="eastAsia"/>
+														<w:sz w:val="24"/>
+													</w:rPr>
+													<w:t xml:space="preserve"/>
+												</w:r>
+												<w:r>
+													<w:rPr>
+														<w:sz w:val="24"/>
+													</w:rPr>
+													<w:t>…</w:t>
+												</w:r>
+												<w:r>
+													<w:rPr>
+														<w:rFonts w:hint="eastAsia"/>
+														<w:sz w:val="24"/>
+													</w:rPr>
+													<w:t xml:space="preserve"/>
+												</w:r>
+												<w:r>
+													<w:rPr>
+														<w:sz w:val="24"/>
+													</w:rPr>
+													<w:t>…</w:t>
+												</w:r>
+												<w:r>
+													<w:rPr>
+														<w:rFonts w:hint="eastAsia"/>
+														<w:sz w:val="24"/>
+													</w:rPr>
+													<w:t xml:space="preserve"/>
+												</w:r>
+												<w:r>
+													<w:rPr>
+														<w:sz w:val="24"/>
+													</w:rPr>
+													<w:t>…</w:t>
+												</w:r>
+												<w:r>
+													<w:rPr>
+														<w:rFonts w:hint="eastAsia"/>
+														<w:sz w:val="24"/>
+													</w:rPr>
+													<w:t xml:space="preserve"/>
+												</w:r>
+												<w:r>
+													<w:rPr>
+														<w:sz w:val="24"/>
+													</w:rPr>
+													<w:t>…</w:t>
+												</w:r>
+												<w:r>
+													<w:rPr>
+														<w:rFonts w:hint="eastAsia"/>
+														<w:sz w:val="24"/>
+													</w:rPr>
+													<w:t xml:space="preserve"/>
+												</w:r>
+												<w:r>
+													<w:rPr>
+														<w:sz w:val="24"/>
+													</w:rPr>
+													<w:t>……</w:t>
+												</w:r>
+												<w:r>
+													<w:rPr>
+														<w:rFonts w:hint="eastAsia"/>
+														<w:sz w:val="24"/>
+													</w:rPr>
+													<w:t>封</w:t>
+												</w:r>
+												<w:r>
+													<w:rPr>
+														<w:sz w:val="24"/>
+													</w:rPr>
+													<w:t>………………</w:t>
+												</w:r>
+												<w:r>
+													<w:rPr>
+														<w:rFonts w:hint="eastAsia"/>
+														<w:sz w:val="24"/>
+													</w:rPr>
+													<w:t xml:space="preserve"/>
+												</w:r>
+												<w:r>
+													<w:rPr>
+														<w:sz w:val="24"/>
+													</w:rPr>
+													<w:t>……</w:t>
+												</w:r>
+												<w:r>
+													<w:rPr>
+														<w:rFonts w:hint="eastAsia"/>
+														<w:sz w:val="24"/>
+													</w:rPr>
+													<w:t xml:space="preserve"/>
+												</w:r>
+												<w:r>
+													<w:rPr>
+														<w:sz w:val="24"/>
+													</w:rPr>
+													<w:t>…</w:t>
+												</w:r>
+												<w:r>
+													<w:rPr>
+														<w:rFonts w:hint="eastAsia"/>
+														<w:sz w:val="24"/>
+													</w:rPr>
+													<w:t xml:space="preserve"/>
+												</w:r>
+												<w:r>
+													<w:rPr>
+														<w:sz w:val="24"/>
+													</w:rPr>
+													<w:t>…</w:t>
+												</w:r>
+												<w:r>
+													<w:rPr>
+														<w:rFonts w:hint="eastAsia"/>
+														<w:sz w:val="24"/>
+													</w:rPr>
+													<w:t xml:space="preserve"/>
+												</w:r>
+												<w:r>
+													<w:rPr>
+														<w:sz w:val="24"/>
+													</w:rPr>
+													<w:t>…</w:t>
+												</w:r>
+												<w:r>
+													<w:rPr>
+														<w:rFonts w:hint="eastAsia"/>
+														<w:sz w:val="24"/>
+													</w:rPr>
+													<w:t>线</w:t>
+												</w:r>
+												<w:r>
+													<w:rPr>
+														<w:sz w:val="24"/>
+													</w:rPr>
+													<w:t>…</w:t>
+												</w:r>
+												<w:r>
+													<w:rPr>
+														<w:rFonts w:hint="eastAsia"/>
+														<w:sz w:val="24"/>
+													</w:rPr>
+													<w:t xml:space="preserve"/>
+												</w:r>
+												<w:r>
+													<w:rPr>
+														<w:sz w:val="24"/>
+													</w:rPr>
+													<w:t>…</w:t>
+												</w:r>
+												<w:r>
+													<w:rPr>
+														<w:rFonts w:hint="eastAsia"/>
+														<w:sz w:val="24"/>
+													</w:rPr>
+													<w:t xml:space="preserve"/>
+												</w:r>
+												<w:r>
+													<w:rPr>
+														<w:sz w:val="24"/>
+													</w:rPr>
+													<w:t>…</w:t>
+												</w:r>
+												<w:r>
+													<w:rPr>
+														<w:rFonts w:hint="eastAsia"/>
+														<w:sz w:val="24"/>
+													</w:rPr>
+													<w:t xml:space="preserve"/>
+												</w:r>
+												<w:r>
+													<w:rPr>
+														<w:sz w:val="24"/>
+													</w:rPr>
+													<w:t>……</w:t>
+												</w:r>
+												<w:r>
+													<w:rPr>
+														<w:rFonts w:hint="eastAsia"/>
+														<w:sz w:val="24"/>
+													</w:rPr>
+													<w:t xml:space="preserve"/>
+												</w:r>
+												<w:r>
+													<w:rPr>
+														<w:sz w:val="24"/>
+													</w:rPr>
+													<w:t>…</w:t>
+												</w:r>
+												<w:r>
+													<w:rPr>
+														<w:rFonts w:hint="eastAsia"/>
+														<w:sz w:val="24"/>
+													</w:rPr>
+													<w:t xml:space="preserve"/>
+												</w:r>
+												<w:r>
+													<w:rPr>
+														<w:sz w:val="24"/>
+													</w:rPr>
+													<w:t>…</w:t>
+												</w:r>
+												<w:r>
+													<w:rPr>
+														<w:rFonts w:hint="eastAsia"/>
+														<w:sz w:val="24"/>
+													</w:rPr>
+													<w:t xml:space="preserve"/>
+												</w:r>
+												<w:r>
+													<w:rPr>
+														<w:sz w:val="24"/>
+													</w:rPr>
+													<w:t>……………………</w:t>
+												</w:r>
+											</w:p>
+										</w:txbxContent>
+									</v:textbox>
+									<w10:wrap type="square"/>
+								</v:shape>
+							</w:pict>
+						</w:r>
+						<w:r w:rsidR="001A2234" w:rsidRPr="001A2234">
+							<w:rPr>
+								<w:rFonts w:eastAsia="黑体" w:hint="eastAsia"/>
+								<w:b/>
+								<w:bCs/>
+								<w:noProof/>
+								<w:sz w:val="44"/>
+								<w:szCs w:val="44"/>
+							</w:rPr>
+							<w:t>天津大学(网络教育)</w:t>
+						</w:r>
+					</w:p>
+					<w:p w:rsidP="001A2234" w:rsidR="00D948E2" w:rsidRDefault="001A2234" w:rsidRPr="001A2234">
+						<w:pPr>
+							<w:ind w:left="-567" w:leftChars="-270"/>
+							<w:jc w:val="center"/>
+							<w:rPr>
+								<w:rFonts w:eastAsia="黑体" w:hint="eastAsia"/>
+								<w:b/>
+								<w:bCs/>
+								<w:sz w:val="36"/>
+								<w:szCs w:val="36"/>
+							</w:rPr>
+						</w:pPr>
+						<w:r w:rsidRPr="001A2234">
+							<w:rPr>
+								<w:rFonts w:eastAsia="黑体" w:hint="eastAsia"/>
+								<w:b/>
+								<w:bCs/>
+								<w:noProof/>
+								<w:sz w:val="36"/>
+								<w:szCs w:val="36"/>
+							</w:rPr>
+							<w:t>课程考试</w:t>
+						</w:r>
+					</w:p>
+					<w:p w:rsidP="005E06FB" w:rsidR="001A2234" w:rsidRDefault="001A2234">
+						<w:pPr>
+							<w:spacing w:line="480" w:lineRule="auto"/>
+							<w:rPr>
+								<w:rFonts w:hint="eastAsia"/>
+								<w:b/>
+								<w:sz w:val="24"/>
+							</w:rPr>
+						</w:pPr>
+					</w:p>
+					<w:tbl>
+						<w:tblPr>
+							<w:tblW w:type="auto" w:w="0"/>
+							<w:tblLook w:firstColumn="1" w:firstRow="1" w:lastColumn="0" w:lastRow="0" w:noHBand="0" w:noVBand="1" w:val="04A0"/>
+						</w:tblPr>
+						<w:tblGrid>
+							<w:gridCol w:w="5495"/>
+							<w:gridCol w:w="3969"/>
+						</w:tblGrid>
+						<w:tr w:rsidR="001A2234" w:rsidRPr="003907C3" w:rsidTr="003907C3">
+							<w:tc>
+								<w:tcPr>
+									<w:tcW w:type="dxa" w:w="5495"/>
+								</w:tcPr>
+								<w:p w:rsidP="003907C3" w:rsidR="001A2234" w:rsidRDefault="001A2234" w:rsidRPr="003907C3">
+									<w:pPr>
+										<w:spacing w:line="480" w:lineRule="auto"/>
+										<w:rPr>
+											<w:rFonts w:hint="eastAsia"/>
+											<w:b/>
+											<w:sz w:val="24"/>
+										</w:rPr>
+									</w:pPr>
+									<w:r w:rsidRPr="003907C3">
+										<w:rPr>
+											<w:rFonts w:hint="eastAsia"/>
+											<w:b/>
+											<w:sz w:val="24"/>
+										</w:rPr>
+										<w:t>考试时间:</w:t>
+									</w:r>
+									<w:r w:rsidRPr="003907C3">
+										<w:rPr>
+											<w:rFonts w:hint="eastAsia"/>
+											<w:sz w:val="24"/>
+											<w:u w:val="single"/>
+										</w:rPr>
+										<w:t xml:space="preserve"/>
+									</w:r>
+									<w:r w:rsidRPr="003907C3">
+										<w:rPr>
+											<w:rFonts w:hint="eastAsia"/>
+											<w:b/>
+											<w:sz w:val="24"/>
+											<w:u w:val="single"/>
+										</w:rPr>
+										<w:t>90</w:t>
+									</w:r>
+									<w:r w:rsidRPr="003907C3">
+										<w:rPr>
+											<w:rFonts w:hint="eastAsia"/>
+											<w:b/>
+											<w:sz w:val="24"/>
+											<w:u w:val="single"/>
+										</w:rPr>
+										<w:t>分钟</w:t>
+									</w:r>
+									<w:r w:rsidRPr="003907C3">
+										<w:rPr>
+											<w:rFonts w:hint="eastAsia"/>
+											<w:sz w:val="24"/>
+											<w:u w:val="single"/>
+										</w:rPr>
+										<w:t xml:space="preserve"/>
+									</w:r>
+								</w:p>
+							</w:tc>
+							<w:tc>
+								<w:tcPr>
+									<w:tcW w:type="dxa" w:w="3969"/>
+								</w:tcPr>
+								<w:p w:rsidP="003907C3" w:rsidR="001A2234" w:rsidRDefault="001A2234" w:rsidRPr="003907C3">
+									<w:pPr>
+										<w:spacing w:line="480" w:lineRule="auto"/>
+										<w:rPr>
+											<w:rFonts w:hint="eastAsia"/>
+											<w:b/>
+											<w:sz w:val="24"/>
+										</w:rPr>
+									</w:pPr>
+									<w:r w:rsidRPr="003907C3">
+										<w:rPr>
+											<w:rFonts w:hint="eastAsia"/>
+											<w:b/>
+											<w:sz w:val="24"/>
+										</w:rPr>
+										<w:t>课程层次:</w:t>
+									</w:r>
+									<w:r w:rsidRPr="003907C3">
+										<w:rPr>
+											<w:rFonts w:hint="eastAsia"/>
+											<w:b/>
+											<w:sz w:val="24"/>
+											<w:u w:val="single"/>
+										</w:rPr>
+										<w:t xml:space="preserve"/>
+									</w:r>
+									<w:r w:rsidRPr="003907C3">
+										<w:rPr>
+											<w:rFonts w:ascii="宋体" w:hint="eastAsia"/>
+											<w:b/>
+											<w:color w:val="FF0000"/>
+											<w:sz w:val="24"/>
+											<w:u w:val="single"/>
+										</w:rPr>
+										<w:t>${paper.courseLevel}</w:t>
+									</w:r>
+									<w:r w:rsidRPr="003907C3">
+										<w:rPr>
+											<w:rFonts w:ascii="宋体" w:hint="eastAsia"/>
+											<w:b/>
+											<w:color w:val="000000"/>
+											<w:sz w:val="24"/>
+											<w:u w:val="single"/>
+										</w:rPr>
+										<w:t xml:space="preserve"/>
+									</w:r>
+									<w:r w:rsidRPr="003907C3">
+										<w:rPr>
+											<w:rFonts w:hint="eastAsia"/>
+											<w:b/>
+											<w:sz w:val="24"/>
+											<w:u w:val="single"/>
+										</w:rPr>
+										<w:t xml:space="preserve"/>
+									</w:r>
+								</w:p>
+							</w:tc>
+						</w:tr>
+						<w:tr w:rsidR="001A2234" w:rsidRPr="003907C3" w:rsidTr="003907C3">
+							<w:tc>
+								<w:tcPr>
+									<w:tcW w:type="dxa" w:w="5495"/>
+								</w:tcPr>
+								<w:p w:rsidP="003907C3" w:rsidR="001A2234" w:rsidRDefault="001A2234" w:rsidRPr="003907C3">
+									<w:pPr>
+										<w:spacing w:line="480" w:lineRule="auto"/>
+										<w:rPr>
+											<w:rFonts w:hint="eastAsia"/>
+											<w:b/>
+											<w:sz w:val="24"/>
+										</w:rPr>
+									</w:pPr>
+									<w:r w:rsidRPr="003907C3">
+										<w:rPr>
+											<w:rFonts w:hint="eastAsia"/>
+											<w:b/>
+											<w:sz w:val="24"/>
+										</w:rPr>
+										<w:t>课程名称:</w:t>
+									</w:r>
+									<w:r w:rsidRPr="003907C3">
+										<w:rPr>
+											<w:rFonts w:hint="eastAsia"/>
+											<w:b/>
+											<w:sz w:val="24"/>
+											<w:u w:val="single"/>
+										</w:rPr>
+										<w:t xml:space="preserve"/>
+									</w:r>
+									<w:r w:rsidRPr="003907C3">
+										<w:rPr>
+											<w:rFonts w:hint="eastAsia"/>
+											<w:b/>
+											<w:color w:val="FF0000"/>
+											<w:sz w:val="24"/>
+											<w:u w:val="single"/>
+										</w:rPr>
+										<w:t>${paper.courseName}</w:t>
+									</w:r>
+									<w:r w:rsidRPr="003907C3">
+										<w:rPr>
+											<w:rFonts w:ascii="宋体" w:hint="eastAsia"/>
+											<w:b/>
+											<w:color w:val="FF0000"/>
+											<w:sz w:val="24"/>
+											<w:u w:val="single"/>
+										</w:rPr>
+										<w:t xml:space="preserve"/>
+									</w:r>
+									<w:r w:rsidRPr="003907C3">
+										<w:rPr>
+											<w:rFonts w:ascii="宋体" w:hint="eastAsia"/>
+											<w:b/>
+											<w:color w:val="000000"/>
+											<w:sz w:val="24"/>
+											<w:u w:val="single"/>
+										</w:rPr>
+										<w:t xml:space="preserve"/>
+									</w:r>
+								</w:p>
+							</w:tc>
+							<w:tc>
+								<w:tcPr>
+									<w:tcW w:type="dxa" w:w="3969"/>
+								</w:tcPr>
+								<w:p w:rsidP="003907C3" w:rsidR="001A2234" w:rsidRDefault="001A2234" w:rsidRPr="003907C3">
+									<w:pPr>
+										<w:spacing w:line="480" w:lineRule="auto"/>
+										<w:rPr>
+											<w:rFonts w:hint="eastAsia"/>
+											<w:b/>
+											<w:sz w:val="24"/>
+										</w:rPr>
+									</w:pPr>
+									<w:r w:rsidRPr="003907C3">
+										<w:rPr>
+											<w:rFonts w:ascii="宋体" w:hint="eastAsia"/>
+											<w:b/>
+											<w:color w:val="000000"/>
+											<w:sz w:val="24"/>
+										</w:rPr>
+										<w:t>课程代码:</w:t>
+									</w:r>
+									<w:r w:rsidRPr="003907C3">
+										<w:rPr>
+											<w:rFonts w:ascii="宋体" w:hint="eastAsia"/>
+											<w:b/>
+											<w:color w:val="000000"/>
+											<w:sz w:val="24"/>
+											<w:u w:val="single"/>
+										</w:rPr>
+										<w:t xml:space="preserve"/>
+									</w:r>
+									<w:r w:rsidRPr="003907C3">
+										<w:rPr>
+											<w:rFonts w:ascii="宋体" w:hint="eastAsia"/>
+											<w:b/>
+											<w:color w:val="FF0000"/>
+											<w:sz w:val="24"/>
+											<w:u w:val="single"/>
+										</w:rPr>
+										<w:t>${paper.courseNo}</w:t>
+									</w:r>
+									<w:r w:rsidRPr="003907C3">
+										<w:rPr>
+											<w:rFonts w:ascii="宋体" w:hint="eastAsia"/>
+											<w:b/>
+											<w:color w:val="000000"/>
+											<w:sz w:val="24"/>
+											<w:u w:val="single"/>
+										</w:rPr>
+										<w:t xml:space="preserve"/>
+									</w:r>
+								</w:p>
+							</w:tc>
+						</w:tr>
+					</w:tbl>
+					<w:p w:rsidP="00E05F09" w:rsidR="00A600F0" w:rsidRDefault="00E05F09" w:rsidRPr="00A669E4">
+						<w:pPr>
+							<w:spacing w:line="480" w:lineRule="auto"/>
+							<w:rPr>
+								<w:rFonts w:ascii="宋体" w:hAnsi="宋体" w:hint="eastAsia"/>
+								<w:b/>
+								<w:bCs/>
+								<w:szCs w:val="21"/>
+							</w:rPr>
+						</w:pPr>
+						<w:r w:rsidRPr="00A669E4">
+							<w:rPr>
+								<w:rFonts w:ascii="宋体" w:hAnsi="宋体" w:hint="eastAsia"/>
+								<w:b/>
+								<w:bCs/>
+								<w:szCs w:val="21"/>
+							</w:rPr>
+							<w:t>本试卷分为两部分</w:t>
+						</w:r>
+						<w:r w:rsidR="00A600F0" w:rsidRPr="00A669E4">
+							<w:rPr>
+								<w:rFonts w:ascii="宋体" w:hAnsi="宋体" w:hint="eastAsia"/>
+								<w:b/>
+								<w:bCs/>
+								<w:szCs w:val="21"/>
+							</w:rPr>
+							<w:t>:</w:t>
+						</w:r>
+					</w:p>
+					<w:p w:rsidP="00E05F09" w:rsidR="005E06FB" w:rsidRDefault="005E06FB" w:rsidRPr="00A669E4">
+						<w:pPr>
+							<w:spacing w:line="480" w:lineRule="auto"/>
+							<w:rPr>
+								<w:rFonts w:ascii="黑体" w:eastAsia="黑体" w:hAnsi="宋体" w:hint="eastAsia"/>
+								<w:b/>
+								<w:bCs/>
+								<w:szCs w:val="21"/>
+							</w:rPr>
+						</w:pPr>
+						<w:r w:rsidRPr="00A669E4">
+							<w:rPr>
+								<w:rFonts w:ascii="宋体" w:hAnsi="宋体" w:hint="eastAsia"/>
+								<w:b/>
+								<w:szCs w:val="21"/>
+							</w:rPr>
+							<w:t>第一部分为客观题</w:t>
+						</w:r>
+						<w:r w:rsidR="00A600F0" w:rsidRPr="00A669E4">
+							<w:rPr>
+								<w:rFonts w:ascii="宋体" w:hAnsi="宋体" w:hint="eastAsia"/>
+								<w:b/>
+								<w:szCs w:val="21"/>
+							</w:rPr>
+							<w:t xml:space="preserve"/>
+						</w:r>
+						<w:r w:rsidRPr="00A669E4">
+							<w:rPr>
+								<w:rFonts w:ascii="宋体" w:hAnsi="宋体" w:hint="eastAsia"/>
+								<w:b/>
+								<w:szCs w:val="21"/>
+							</w:rPr>
+							<w:t>必须按试题顺序在“答题卡”上按要求填涂,答在试卷上的答案无效。</w:t>
+						</w:r>
+					</w:p>
+					<w:p w:rsidP="005E06FB" w:rsidR="005E06FB" w:rsidRDefault="005E06FB" w:rsidRPr="00A669E4">
+						<w:pPr>
+							<w:spacing w:line="480" w:lineRule="auto"/>
+							<w:rPr>
+								<w:rFonts w:ascii="黑体" w:eastAsia="黑体" w:hAnsi="宋体" w:hint="eastAsia"/>
+								<w:b/>
+								<w:bCs/>
+								<w:szCs w:val="21"/>
+							</w:rPr>
+						</w:pPr>
+						<w:r w:rsidRPr="00A669E4">
+							<w:rPr>
+								<w:rFonts w:ascii="宋体" w:hAnsi="宋体" w:hint="eastAsia"/>
+								<w:b/>
+								<w:szCs w:val="21"/>
+							</w:rPr>
+							<w:t>第二部分为主观题</w:t>
+						</w:r>
+						<w:r w:rsidR="00A600F0" w:rsidRPr="00A669E4">
+							<w:rPr>
+								<w:rFonts w:ascii="宋体" w:hAnsi="宋体" w:hint="eastAsia"/>
+								<w:b/>
+								<w:szCs w:val="21"/>
+							</w:rPr>
+							<w:t xml:space="preserve"/>
+						</w:r>
+						<w:r w:rsidRPr="00A669E4">
+							<w:rPr>
+								<w:rFonts w:ascii="宋体" w:hAnsi="宋体" w:hint="eastAsia"/>
+								<w:b/>
+								<w:szCs w:val="21"/>
+							</w:rPr>
+							<w:t>必须按试题顺序在“答题卡”上按要求作答,答在试卷上的答案无效。</w:t>
+						</w:r>
+					</w:p>
+					<w:p w:rsidP="000D249A" w:rsidR="00F3740E" w:rsidRDefault="00F3740E" w:rsidRPr="006E2D68">
+						<w:pPr>
+							<w:spacing w:line="400" w:lineRule="exact"/>
+							<w:ind w:firstLine="632" w:firstLineChars="300"/>
+							<w:rPr>
+								<w:rFonts w:ascii="宋体" w:hAnsi="宋体" w:hint="eastAsia"/>
+								<w:b/>
+								<w:szCs w:val="21"/>
+							</w:rPr>
+						</w:pPr>
+						<w:r w:rsidRPr="006E2D68">
+							<w:rPr>
+								<w:rFonts w:ascii="宋体" w:hAnsi="宋体" w:hint="eastAsia"/>
+								<w:b/>
+								<w:szCs w:val="21"/>
+							</w:rPr>
+							<w:t xml:space="preserve"/>
+						</w:r>
+						<w:r w:rsidR="004110E9" w:rsidRPr="006E2D68">
+							<w:rPr>
+								<w:rFonts w:ascii="宋体" w:hAnsi="宋体" w:hint="eastAsia"/>
+								<w:b/>
+								<w:szCs w:val="21"/>
+							</w:rPr>
+							<w:t xml:space="preserve"/>
+						</w:r>
+					</w:p>
+					<#if paper.objectiveScore != 0>
+					<w:p w:rsidP="004072CF" w:rsidR="00BC611E" w:rsidRDefault="00F3740E" w:rsidRPr="004072CF">
+						<w:pPr>
+							<w:spacing w:line="400" w:lineRule="exact"/>
+							<w:ind w:firstLine="2249" w:firstLineChars="800"/>
+							<w:rPr>
+								<w:rFonts w:ascii="宋体" w:hAnsi="宋体" w:hint="eastAsia"/>
+								<w:b/>
+								<w:sz w:val="28"/>
+								<w:szCs w:val="28"/>
+							</w:rPr>
+						</w:pPr>
+						<w:r w:rsidRPr="004072CF">
+							<w:rPr>
+								<w:rFonts w:ascii="宋体" w:hAnsi="宋体" w:hint="eastAsia"/>
+								<w:b/>
+								<w:sz w:val="28"/>
+								<w:szCs w:val="28"/>
+							</w:rPr>
+							<w:t>第一部分    客观题(</w:t>
+						</w:r>
+						<w:r w:rsidR="0007594E" w:rsidRPr="004072CF">
+							<w:rPr>
+								<w:rFonts w:ascii="宋体" w:hAnsi="宋体" w:hint="eastAsia"/>
+								<w:b/>
+								<w:sz w:val="28"/>
+								<w:szCs w:val="28"/>
+							</w:rPr>
+							<w:t>总分</w:t>
+						</w:r>
+						<w:r w:rsidR="001A590C">
+							<w:rPr>
+								<w:rFonts w:ascii="宋体" w:hAnsi="宋体" w:hint="eastAsia"/>
+								<w:b/>
+								<w:color w:val="FF0000"/>
+								<w:sz w:val="28"/>
+								<w:szCs w:val="28"/>
+							</w:rPr>
+							<w:t xml:space="preserve"/>
+						</w:r>
+						<w:r w:rsidR="004D3783">
+							<w:rPr>
+								<w:rFonts w:ascii="宋体" w:hAnsi="宋体" w:hint="eastAsia"/>
+								<w:b/>
+								<w:color w:val="FF0000"/>
+								<w:sz w:val="28"/>
+								<w:szCs w:val="28"/>
+							</w:rPr>
+							<w:t xml:space="preserve">${paper.objectiveScore} </w:t>
+						</w:r>
+						<w:r w:rsidRPr="004072CF">
+							<w:rPr>
+								<w:rFonts w:ascii="宋体" w:hAnsi="宋体" w:hint="eastAsia"/>
+								<w:b/>
+								<w:sz w:val="28"/>
+								<w:szCs w:val="28"/>
+							</w:rPr>
+							<w:t>分)</w:t>
+						</w:r>
+					</w:p>
+					</#if>
+					<w:p w:rsidP="00755E9E" w:rsidR="00017BD2" w:rsidRDefault="00017BD2" w:rsidRPr="006E2D68">
+						<w:pPr>
+							<w:spacing w:line="400" w:lineRule="exact"/>
+							<w:rPr>
+								<w:rFonts w:ascii="宋体" w:hAnsi="宋体" w:hint="eastAsia"/>
+								<w:b/>
+								<w:szCs w:val="21"/>
+							</w:rPr>
+						</w:pPr>
+					</w:p>
+					
+					<!--循环客观题-->
+				    <#if paper.objectiveDetails?exists>
+                    <#list paper.objectiveDetails as paperDetail>
+					<w:p w:rsidP="004D3783" w:rsidR="00687CD1" w:rsidRDefault="004D3783" w:rsidRPr="006E2D68">
+						<w:r>
+							<w:rPr>
+								<w:rFonts w:ascii="宋体" w:hAnsi="宋体" w:hint="eastAsia"/>
+								<w:b/>
+								<w:szCs w:val="21"/>
+							</w:rPr>
+							<w:t>${paperDetail.cnNum}</w:t>
+						</w:r>
+						 <w:r>
+							<w:rPr>
+								<w:rFonts w:ascii="宋体" w:hAnsi="宋体" w:hint="eastAsia"/>
+								<w:b/>
+								<w:szCs w:val="21"/>
+							</w:rPr>
+							<w:t>、</w:t>
+						</w:r>
+			            <w:r>
+							<w:rPr>
+								<w:rFonts w:ascii="宋体" w:hAnsi="宋体" w:hint="eastAsia"/>
+								<w:b/>
+								<w:szCs w:val="21"/>
+							</w:rPr>
+							<w:t>${paperDetail.name}</w:t>
+						</w:r>
+						<w:r>
+							<w:rPr>
+								<w:rFonts w:ascii="宋体" w:hAnsi="宋体" w:hint="eastAsia"/>
+								<w:b/>
+								<w:szCs w:val="21"/>
+							</w:rPr>
+							<w:t>${paperDetail.title}</w:t>
+						</w:r>
+					</w:p>
+				 <!--循环小题-->
+				    <#if paperDetail.paperDetailUnits?exists>
+                    <#list paperDetail.paperDetailUnits as paperDetailUnit>
+                        ${paperDetailUnit.question.quesBodyWord}
+                    <#if paperDetailUnit.question.subQuestions?exists>
+                    <#list paperDetailUnit.question.subQuestions as subQuestion>
+
+                        ${subQuestion.quesBodyWord}
+
+                        <#if subQuestion.quesOptions?exists>
+                        <#list subQuestion.quesOptions as subQuesOption>
+                            ${subQuesOption.optionBodyWord}
+                        </#list>
+                        </#if>
+                    </#list>
+                    </#if>
+
+                    <#if paperDetailUnit.question.quesOptions?exists>
+                    <#list paperDetailUnit.question.quesOptions as quesOption>
+                        ${quesOption.optionBodyWord}
+                     </#list>
+                    </#if>
+					<w:p w:rsidP="00852887" w:rsidR="00852887" w:rsidRDefault="00852887">
+						<w:pPr>
+							<w:spacing w:line="400" w:lineRule="exact"/>
+							<w:rPr>
+								<w:rFonts w:ascii="宋体" w:hAnsi="宋体"/>
+								<w:b/>
+								<w:sz w:val="28"/>
+								<w:szCs w:val="28"/>
+							</w:rPr>
+						</w:pPr>
+					</w:p>
+					</#list>
+                    </#if>
+                    </#list>
+                    </#if>
+					
+					
+					<#if paper.subjectiveScore != 0>
+					<w:p w:rsidP="001A590C" w:rsidR="001A590C" w:rsidRDefault="001A590C">
+						<w:pPr>
+							<w:spacing w:line="400" w:lineRule="exact"/>
+							<w:ind w:firstLine="2249" w:firstLineChars="800"/>
+							<w:rPr>
+								<w:rFonts w:ascii="宋体" w:hAnsi="宋体"/>
+								<w:b/>
+								<w:sz w:val="28"/>
+								<w:szCs w:val="28"/>
+							</w:rPr>
+						</w:pPr>
+						<w:r w:rsidRPr="004072CF">
+							<w:rPr>
+								<w:rFonts w:ascii="宋体" w:hAnsi="宋体" w:hint="eastAsia"/>
+								<w:b/>
+								<w:sz w:val="28"/>
+								<w:szCs w:val="28"/>
+							</w:rPr>
+							<w:t>第</w:t>
+						</w:r>
+						<w:r>
+							<w:rPr>
+								<w:rFonts w:ascii="宋体" w:hAnsi="宋体" w:hint="eastAsia"/>
+								<w:b/>
+								<w:sz w:val="28"/>
+								<w:szCs w:val="28"/>
+							</w:rPr>
+							<w:t>二</w:t>
+						</w:r>
+						<w:r w:rsidRPr="004072CF">
+							<w:rPr>
+								<w:rFonts w:ascii="宋体" w:hAnsi="宋体" w:hint="eastAsia"/>
+								<w:b/>
+								<w:sz w:val="28"/>
+								<w:szCs w:val="28"/>
+							</w:rPr>
+							<w:t xml:space="preserve">部分    </w:t>
+						</w:r>
+						<w:r>
+							<w:rPr>
+								<w:rFonts w:ascii="宋体" w:hAnsi="宋体" w:hint="eastAsia"/>
+								<w:b/>
+								<w:sz w:val="28"/>
+								<w:szCs w:val="28"/>
+							</w:rPr>
+							<w:t>主</w:t>
+						</w:r>
+						<w:r w:rsidRPr="004072CF">
+							<w:rPr>
+								<w:rFonts w:ascii="宋体" w:hAnsi="宋体" w:hint="eastAsia"/>
+								<w:b/>
+								<w:sz w:val="28"/>
+								<w:szCs w:val="28"/>
+							</w:rPr>
+							<w:t>观题(总分</w:t>
+						</w:r>
+						<w:r w:rsidR="004D3783">
+							<w:rPr>
+								<w:rFonts w:ascii="宋体" w:hAnsi="宋体" w:hint="eastAsia"/>
+								<w:b/>
+								<w:sz w:val="28"/>
+								<w:szCs w:val="28"/>
+							</w:rPr>
+							<w:t xml:space="preserve">${paper.subjectiveScore} </w:t>
+						</w:r>
+						<w:r w:rsidRPr="004072CF">
+							<w:rPr>
+								<w:rFonts w:ascii="宋体" w:hAnsi="宋体" w:hint="eastAsia"/>
+								<w:b/>
+								<w:sz w:val="28"/>
+								<w:szCs w:val="28"/>
+							</w:rPr>
+							<w:t>分)</w:t>
+						</w:r>
+					</w:p>
+					 </#if>
+					<w:p w:rsidP="003D4B52" w:rsidR="003D4B52" w:rsidRDefault="003D4B52">
+						<w:pPr>
+							<w:spacing w:line="420" w:lineRule="atLeast"/>
+							<w:rPr>
+								<w:rFonts w:ascii="宋体" w:hAnsi="宋体"/>
+								<w:b/>
+								<w:szCs w:val="21"/>
+							</w:rPr>
+						</w:pPr>
+						<w:r w:rsidRPr="006E2D68">
+							<w:rPr>
+								<w:rFonts w:ascii="宋体" w:hAnsi="宋体" w:hint="eastAsia"/>
+								<w:b/>
+								<w:szCs w:val="21"/>
+							</w:rPr>
+							<w:t></w:t>
+						</w:r>
+					</w:p>
+					
+					<!--循环主观题-->
+					<#if paper.subjectiveDetails?exists>
+                    <#list paper.subjectiveDetails as paperDetail>
+					<w:p w:rsidP="004D3783" w:rsidR="00687CD1" w:rsidRDefault="004D3783" w:rsidRPr="006E2D68">
+						<w:r>
+							<w:rPr>
+								<w:rFonts w:ascii="宋体" w:hAnsi="宋体" w:hint="eastAsia"/>
+								<w:b/>
+								<w:szCs w:val="21"/>
+							</w:rPr>
+							<w:t>${paperDetail.cnNum}</w:t>
+						</w:r>
+						 <w:r>
+							<w:rPr>
+								<w:rFonts w:ascii="宋体" w:hAnsi="宋体" w:hint="eastAsia"/>
+								<w:b/>
+								<w:szCs w:val="21"/>
+							</w:rPr>
+							<w:t>、</w:t>
+						</w:r>
+			            <w:r>
+							<w:rPr>
+								<w:rFonts w:ascii="宋体" w:hAnsi="宋体" w:hint="eastAsia"/>
+								<w:b/>
+								<w:szCs w:val="21"/>
+							</w:rPr>
+							<w:t>${paperDetail.name}</w:t>
+						</w:r>
+						<w:r>
+							<w:rPr>
+								<w:rFonts w:ascii="宋体" w:hAnsi="宋体" w:hint="eastAsia"/>
+								<w:b/>
+								<w:szCs w:val="21"/>
+							</w:rPr>
+							<w:t>${paperDetail.title}</w:t>
+						</w:r>
+					</w:p>
+					<!--循环小题-->
+                    <#if paperDetail.paperDetailUnits?exists>
+                    <#list paperDetail.paperDetailUnits as paperDetailUnit>
+
+                        ${paperDetailUnit.question.quesBodyWord}
+
+                    <#if paperDetailUnit.question.subQuestions?exists>
+                    <#list paperDetailUnit.question.subQuestions as subQuestion>
+
+                        ${subQuestion.quesBodyWord}
+
+                        <#if subQuestion.quesOptions?exists>
+                        <#list subQuestion.quesOptions as subQuesOption>
+                            ${subQuesOption.optionBodyWord}
+                        </#list>
+                        </#if>
+                    </#list>
+                    </#if>
+
+                    <#if paperDetailUnit.question.quesOptions?exists>
+                    <#list paperDetailUnit.question.quesOptions as quesOption>
+                        ${quesOption.optionBodyWord}
+                     </#list>
+                    </#if>
+					<w:p w:rsidP="003D4B52" w:rsidR="00852887" w:rsidRDefault="00852887">
+						<w:pPr>
+							<w:spacing w:line="420" w:lineRule="atLeast"/>
+							<w:rPr>
+								<w:rFonts w:ascii="宋体" w:hAnsi="宋体"/>
+								<w:b/>
+								<w:szCs w:val="21"/>
+							</w:rPr>
+						</w:pPr>
+					</w:p>
+					</#list>
+                    </#if>
+                    </#list>
+                    </#if>
+                    
+					<w:p w:rsidP="00361123" w:rsidR="002075AC" w:rsidRDefault="002075AC">
+						<w:pPr>
+							<w:spacing w:line="400" w:lineRule="exact"/>
+							<w:rPr>
+								<w:rFonts w:ascii="宋体" w:hAnsi="宋体" w:hint="eastAsia"/>
+								<w:szCs w:val="21"/>
+							</w:rPr>
+						</w:pPr>
+					</w:p>
+					<w:p w:rsidP="00361123" w:rsidR="002075AC" w:rsidRDefault="002075AC">
+						<w:pPr>
+							<w:spacing w:line="400" w:lineRule="exact"/>
+							<w:rPr>
+								<w:rFonts w:ascii="宋体" w:hAnsi="宋体" w:hint="eastAsia"/>
+								<w:szCs w:val="21"/>
+							</w:rPr>
+						</w:pPr>
+					</w:p>
+					<w:p w:rsidP="00361123" w:rsidR="002075AC" w:rsidRDefault="002075AC">
+						<w:pPr>
+							<w:spacing w:line="400" w:lineRule="exact"/>
+							<w:rPr>
+								<w:rFonts w:ascii="宋体" w:hAnsi="宋体" w:hint="eastAsia"/>
+								<w:szCs w:val="21"/>
+							</w:rPr>
+						</w:pPr>
+					</w:p>
+					<w:p w:rsidP="00361123" w:rsidR="002075AC" w:rsidRDefault="002075AC">
+						<w:pPr>
+							<w:spacing w:line="400" w:lineRule="exact"/>
+							<w:rPr>
+								<w:rFonts w:ascii="宋体" w:hAnsi="宋体" w:hint="eastAsia"/>
+								<w:szCs w:val="21"/>
+							</w:rPr>
+						</w:pPr>
+					</w:p>
+					<w:p w:rsidP="00361123" w:rsidR="002075AC" w:rsidRDefault="002075AC">
+						<w:pPr>
+							<w:spacing w:line="400" w:lineRule="exact"/>
+							<w:rPr>
+								<w:rFonts w:ascii="宋体" w:hAnsi="宋体" w:hint="eastAsia"/>
+								<w:szCs w:val="21"/>
+							</w:rPr>
+						</w:pPr>
+					</w:p>
+					<w:p w:rsidP="00361123" w:rsidR="002075AC" w:rsidRDefault="002075AC">
+						<w:pPr>
+							<w:spacing w:line="400" w:lineRule="exact"/>
+							<w:rPr>
+								<w:rFonts w:ascii="宋体" w:hAnsi="宋体" w:hint="eastAsia"/>
+								<w:szCs w:val="21"/>
+							</w:rPr>
+						</w:pPr>
+					</w:p>
+					<w:p w:rsidP="00361123" w:rsidR="002075AC" w:rsidRDefault="002075AC">
+						<w:pPr>
+							<w:spacing w:line="400" w:lineRule="exact"/>
+							<w:rPr>
+								<w:rFonts w:ascii="宋体" w:hAnsi="宋体" w:hint="eastAsia"/>
+								<w:szCs w:val="21"/>
+							</w:rPr>
+						</w:pPr>
+					</w:p>
+					<w:p w:rsidP="00361123" w:rsidR="002075AC" w:rsidRDefault="002075AC">
+						<w:pPr>
+							<w:spacing w:line="400" w:lineRule="exact"/>
+							<w:rPr>
+								<w:rFonts w:ascii="宋体" w:hAnsi="宋体" w:hint="eastAsia"/>
+								<w:szCs w:val="21"/>
+							</w:rPr>
+						</w:pPr>
+					</w:p>
+					<w:p w:rsidP="00361123" w:rsidR="002075AC" w:rsidRDefault="002075AC">
+						<w:pPr>
+							<w:spacing w:line="400" w:lineRule="exact"/>
+							<w:rPr>
+								<w:rFonts w:ascii="宋体" w:hAnsi="宋体" w:hint="eastAsia"/>
+								<w:szCs w:val="21"/>
+							</w:rPr>
+						</w:pPr>
+					</w:p>
+					<w:p w:rsidP="00361123" w:rsidR="002075AC" w:rsidRDefault="002075AC">
+						<w:pPr>
+							<w:spacing w:line="400" w:lineRule="exact"/>
+							<w:rPr>
+								<w:rFonts w:ascii="宋体" w:hAnsi="宋体" w:hint="eastAsia"/>
+								<w:szCs w:val="21"/>
+							</w:rPr>
+						</w:pPr>
+					</w:p>
+					<w:p w:rsidP="00361123" w:rsidR="002075AC" w:rsidRDefault="002075AC">
+						<w:pPr>
+							<w:spacing w:line="400" w:lineRule="exact"/>
+							<w:rPr>
+								<w:rFonts w:ascii="宋体" w:hAnsi="宋体" w:hint="eastAsia"/>
+								<w:szCs w:val="21"/>
+							</w:rPr>
+						</w:pPr>
+					</w:p>
+					<w:p w:rsidP="00361123" w:rsidR="002075AC" w:rsidRDefault="002075AC">
+						<w:pPr>
+							<w:spacing w:line="400" w:lineRule="exact"/>
+							<w:rPr>
+								<w:rFonts w:ascii="宋体" w:hAnsi="宋体" w:hint="eastAsia"/>
+								<w:szCs w:val="21"/>
+							</w:rPr>
+						</w:pPr>
+					</w:p>
+					<w:p w:rsidP="00361123" w:rsidR="002075AC" w:rsidRDefault="002075AC">
+						<w:pPr>
+							<w:spacing w:line="400" w:lineRule="exact"/>
+							<w:rPr>
+								<w:rFonts w:ascii="宋体" w:hAnsi="宋体" w:hint="eastAsia"/>
+								<w:szCs w:val="21"/>
+							</w:rPr>
+						</w:pPr>
+					</w:p>
+					<w:p w:rsidP="00361123" w:rsidR="002075AC" w:rsidRDefault="002075AC">
+						<w:pPr>
+							<w:spacing w:line="400" w:lineRule="exact"/>
+							<w:rPr>
+								<w:rFonts w:ascii="宋体" w:hAnsi="宋体" w:hint="eastAsia"/>
+								<w:szCs w:val="21"/>
+							</w:rPr>
+						</w:pPr>
+					</w:p>
+					<w:p w:rsidP="00361123" w:rsidR="002075AC" w:rsidRDefault="002075AC">
+						<w:pPr>
+							<w:spacing w:line="400" w:lineRule="exact"/>
+							<w:rPr>
+								<w:rFonts w:ascii="宋体" w:hAnsi="宋体" w:hint="eastAsia"/>
+								<w:szCs w:val="21"/>
+							</w:rPr>
+						</w:pPr>
+					</w:p>
+					<w:p w:rsidP="00361123" w:rsidR="002075AC" w:rsidRDefault="002075AC">
+						<w:pPr>
+							<w:spacing w:line="400" w:lineRule="exact"/>
+							<w:rPr>
+								<w:rFonts w:ascii="宋体" w:hAnsi="宋体" w:hint="eastAsia"/>
+								<w:szCs w:val="21"/>
+							</w:rPr>
+						</w:pPr>
+					</w:p>
+					<w:p w:rsidP="00361123" w:rsidR="002075AC" w:rsidRDefault="002075AC">
+						<w:pPr>
+							<w:spacing w:line="400" w:lineRule="exact"/>
+							<w:rPr>
+								<w:rFonts w:ascii="宋体" w:hAnsi="宋体" w:hint="eastAsia"/>
+								<w:szCs w:val="21"/>
+							</w:rPr>
+						</w:pPr>
+					</w:p>
+					<w:p w:rsidP="00361123" w:rsidR="002075AC" w:rsidRDefault="002075AC">
+						<w:pPr>
+							<w:spacing w:line="400" w:lineRule="exact"/>
+							<w:rPr>
+								<w:rFonts w:ascii="宋体" w:hAnsi="宋体" w:hint="eastAsia"/>
+								<w:szCs w:val="21"/>
+							</w:rPr>
+						</w:pPr>
+					</w:p>
+					<w:p w:rsidP="00361123" w:rsidR="002075AC" w:rsidRDefault="002075AC">
+						<w:pPr>
+							<w:spacing w:line="400" w:lineRule="exact"/>
+							<w:rPr>
+								<w:rFonts w:ascii="宋体" w:hAnsi="宋体" w:hint="eastAsia"/>
+								<w:szCs w:val="21"/>
+							</w:rPr>
+						</w:pPr>
+					</w:p>
+					<w:p w:rsidP="00361123" w:rsidR="002075AC" w:rsidRDefault="002075AC">
+						<w:pPr>
+							<w:spacing w:line="400" w:lineRule="exact"/>
+							<w:rPr>
+								<w:rFonts w:ascii="宋体" w:hAnsi="宋体" w:hint="eastAsia"/>
+								<w:szCs w:val="21"/>
+							</w:rPr>
+						</w:pPr>
+					</w:p>
+					<w:p w:rsidP="00361123" w:rsidR="002075AC" w:rsidRDefault="002075AC">
+						<w:pPr>
+							<w:spacing w:line="400" w:lineRule="exact"/>
+							<w:rPr>
+								<w:rFonts w:ascii="宋体" w:hAnsi="宋体" w:hint="eastAsia"/>
+								<w:szCs w:val="21"/>
+							</w:rPr>
+						</w:pPr>
+					</w:p>
+					<w:p w:rsidP="00361123" w:rsidR="002075AC" w:rsidRDefault="002075AC">
+						<w:pPr>
+							<w:spacing w:line="400" w:lineRule="exact"/>
+							<w:rPr>
+								<w:rFonts w:ascii="宋体" w:hAnsi="宋体" w:hint="eastAsia"/>
+								<w:szCs w:val="21"/>
+							</w:rPr>
+						</w:pPr>
+					</w:p>
+					<w:p w:rsidP="00361123" w:rsidR="002075AC" w:rsidRDefault="002075AC">
+						<w:pPr>
+							<w:spacing w:line="400" w:lineRule="exact"/>
+							<w:rPr>
+								<w:rFonts w:ascii="宋体" w:hAnsi="宋体" w:hint="eastAsia"/>
+								<w:szCs w:val="21"/>
+							</w:rPr>
+						</w:pPr>
+					</w:p>
+					<w:p w:rsidP="00361123" w:rsidR="002075AC" w:rsidRDefault="002075AC">
+						<w:pPr>
+							<w:spacing w:line="400" w:lineRule="exact"/>
+							<w:rPr>
+								<w:rFonts w:ascii="宋体" w:hAnsi="宋体" w:hint="eastAsia"/>
+								<w:szCs w:val="21"/>
+							</w:rPr>
+						</w:pPr>
+					</w:p>
+					<w:p w:rsidP="00361123" w:rsidR="002075AC" w:rsidRDefault="002075AC">
+						<w:pPr>
+							<w:spacing w:line="400" w:lineRule="exact"/>
+							<w:rPr>
+								<w:rFonts w:ascii="宋体" w:hAnsi="宋体" w:hint="eastAsia"/>
+								<w:szCs w:val="21"/>
+							</w:rPr>
+						</w:pPr>
+					</w:p>
+					<w:p w:rsidP="00361123" w:rsidR="002075AC" w:rsidRDefault="002075AC">
+						<w:pPr>
+							<w:spacing w:line="400" w:lineRule="exact"/>
+							<w:rPr>
+								<w:rFonts w:ascii="宋体" w:hAnsi="宋体" w:hint="eastAsia"/>
+								<w:szCs w:val="21"/>
+							</w:rPr>
+						</w:pPr>
+					</w:p>
+					<w:p w:rsidP="00361123" w:rsidR="002075AC" w:rsidRDefault="002075AC">
+						<w:pPr>
+							<w:spacing w:line="400" w:lineRule="exact"/>
+							<w:rPr>
+								<w:rFonts w:ascii="宋体" w:hAnsi="宋体" w:hint="eastAsia"/>
+								<w:szCs w:val="21"/>
+							</w:rPr>
+						</w:pPr>
+					</w:p>
+					<w:p w:rsidP="00361123" w:rsidR="002075AC" w:rsidRDefault="002075AC">
+						<w:pPr>
+							<w:spacing w:line="400" w:lineRule="exact"/>
+							<w:rPr>
+								<w:rFonts w:ascii="宋体" w:hAnsi="宋体" w:hint="eastAsia"/>
+								<w:szCs w:val="21"/>
+							</w:rPr>
+						</w:pPr>
+					</w:p>
+					<w:p w:rsidP="00361123" w:rsidR="002075AC" w:rsidRDefault="002075AC">
+						<w:pPr>
+							<w:spacing w:line="400" w:lineRule="exact"/>
+							<w:rPr>
+								<w:rFonts w:ascii="宋体" w:hAnsi="宋体" w:hint="eastAsia"/>
+								<w:szCs w:val="21"/>
+							</w:rPr>
+						</w:pPr>
+					</w:p>
+					<w:p w:rsidP="00361123" w:rsidR="002075AC" w:rsidRDefault="002075AC">
+						<w:pPr>
+							<w:spacing w:line="400" w:lineRule="exact"/>
+							<w:rPr>
+								<w:rFonts w:ascii="宋体" w:hAnsi="宋体" w:hint="eastAsia"/>
+								<w:szCs w:val="21"/>
+							</w:rPr>
+						</w:pPr>
+					</w:p>
+					<w:p w:rsidP="00361123" w:rsidR="002075AC" w:rsidRDefault="002075AC">
+						<w:pPr>
+							<w:spacing w:line="400" w:lineRule="exact"/>
+							<w:rPr>
+								<w:rFonts w:ascii="宋体" w:hAnsi="宋体" w:hint="eastAsia"/>
+								<w:szCs w:val="21"/>
+							</w:rPr>
+						</w:pPr>
+					</w:p>
+					<w:p w:rsidP="00361123" w:rsidR="002075AC" w:rsidRDefault="002075AC">
+						<w:pPr>
+							<w:spacing w:line="400" w:lineRule="exact"/>
+							<w:rPr>
+								<w:rFonts w:ascii="宋体" w:hAnsi="宋体" w:hint="eastAsia"/>
+								<w:szCs w:val="21"/>
+							</w:rPr>
+						</w:pPr>
+					</w:p>
+					<w:p w:rsidP="00361123" w:rsidR="002075AC" w:rsidRDefault="002075AC" w:rsidRPr="003D4B52">
+						<w:pPr>
+							<w:spacing w:line="400" w:lineRule="exact"/>
+							<w:rPr>
+								<w:rFonts w:ascii="宋体" w:hAnsi="宋体" w:hint="eastAsia"/>
+								<w:szCs w:val="21"/>
+							</w:rPr>
+						</w:pPr>
+					</w:p>
+					<w:sectPr w:rsidR="002075AC" w:rsidRPr="003D4B52" w:rsidSect="00D948E2">
+						<w:footerReference r:id="rId8" w:type="even"/>
+						<w:footerReference r:id="rId9" w:type="default"/>
+						<w:pgSz w:code="8" w:h="16840" w:orient="landscape" w:w="23814"/>
+						<w:pgMar w:bottom="851" w:footer="992" w:gutter="0" w:header="851" w:left="1418" w:right="1418" w:top="568"/>
+						<w:cols w:num="2" w:space="1134"/>
+						<w:docGrid w:linePitch="312" w:type="lines"/>
+					</w:sectPr>
+				</w:body>
+			</w:document>
+		</pkg:xmlData>
+	</pkg:part>
+	<pkg:part pkg:contentType="application/vnd.openxmlformats-officedocument.wordprocessingml.footer+xml" pkg:name="/word/footer1.xml">
+		<pkg:xmlData>
+			<w:ftr mc:Ignorable="w14 wp14" xmlns:m="http://schemas.openxmlformats.org/officeDocument/2006/math" xmlns:mc="http://schemas.openxmlformats.org/markup-compatibility/2006" xmlns:o="urn:schemas-microsoft-com:office:office" xmlns:r="http://schemas.openxmlformats.org/officeDocument/2006/relationships" xmlns:v="urn:schemas-microsoft-com:vml" xmlns:w="http://schemas.openxmlformats.org/wordprocessingml/2006/main" xmlns:w10="urn:schemas-microsoft-com:office:word" xmlns:w14="http://schemas.microsoft.com/office/word/2010/wordml" xmlns:wne="http://schemas.microsoft.com/office/word/2006/wordml" xmlns:wp="http://schemas.openxmlformats.org/drawingml/2006/wordprocessingDrawing" xmlns:wp14="http://schemas.microsoft.com/office/word/2010/wordprocessingDrawing" xmlns:wpc="http://schemas.microsoft.com/office/word/2010/wordprocessingCanvas" xmlns:wpg="http://schemas.microsoft.com/office/word/2010/wordprocessingGroup" xmlns:wpi="http://schemas.microsoft.com/office/word/2010/wordprocessingInk" xmlns:wps="http://schemas.microsoft.com/office/word/2010/wordprocessingShape">
+				<w:p w:rsidP="00494A57" w:rsidR="002A4355" w:rsidRDefault="005C7401">
+					<w:pPr>
+						<w:pStyle w:val="a3"/>
+						<w:ind w:right="360"/>
+					</w:pPr>
+					<w:r>
+						<w:rPr>
+							<w:rFonts w:hint="eastAsia"/>
+						</w:rPr>
+						<w:tab/>
+					</w:r>
+					<w:r>
+						<w:rPr>
+							<w:rFonts w:hint="eastAsia"/>
+						</w:rPr>
+						<w:t>第</w:t>
+					</w:r>
+					<w:r>
+						<w:rPr>
+							<w:rFonts w:hint="eastAsia"/>
+						</w:rPr>
+						<w:t>3</w:t>
+					</w:r>
+					<w:r>
+						<w:rPr>
+							<w:rFonts w:hint="eastAsia"/>
+						</w:rPr>
+						<w:t>页</w:t>
+					</w:r>
+					<w:r>
+						<w:rPr>
+							<w:rFonts w:hint="eastAsia"/>
+						</w:rPr>
+						<w:t xml:space="preserve"/>
+					</w:r>
+					<w:r>
+						<w:rPr>
+							<w:rFonts w:hint="eastAsia"/>
+						</w:rPr>
+						<w:t>共</w:t>
+					</w:r>
+					<w:r>
+						<w:rPr>
+							<w:rFonts w:hint="eastAsia"/>
+						</w:rPr>
+						<w:t>4</w:t>
+					</w:r>
+					<w:r>
+						<w:rPr>
+							<w:rFonts w:hint="eastAsia"/>
+						</w:rPr>
+						<w:t>页</w:t>
+					</w:r>
+					<w:r>
+						<w:rPr>
+							<w:rFonts w:hint="eastAsia"/>
+						</w:rPr>
+						<w:tab/>
+					</w:r>
+					<w:r>
+						<w:rPr>
+							<w:rFonts w:hint="eastAsia"/>
+						</w:rPr>
+						<w:tab/>
+					</w:r>
+					<w:r>
+						<w:rPr>
+							<w:rFonts w:hint="eastAsia"/>
+						</w:rPr>
+						<w:tab/>
+					</w:r>
+					<w:r>
+						<w:rPr>
+							<w:rFonts w:hint="eastAsia"/>
+						</w:rPr>
+						<w:tab/>
+					</w:r>
+					<w:r>
+						<w:rPr>
+							<w:rFonts w:hint="eastAsia"/>
+						</w:rPr>
+						<w:tab/>
+					</w:r>
+					<w:r>
+						<w:rPr>
+							<w:rFonts w:hint="eastAsia"/>
+						</w:rPr>
+						<w:tab/>
+					</w:r>
+					<w:r>
+						<w:rPr>
+							<w:rFonts w:hint="eastAsia"/>
+						</w:rPr>
+						<w:tab/>
+					</w:r>
+					<w:r>
+						<w:rPr>
+							<w:rFonts w:hint="eastAsia"/>
+						</w:rPr>
+						<w:tab/>
+					</w:r>
+					<w:r>
+						<w:rPr>
+							<w:rFonts w:hint="eastAsia"/>
+						</w:rPr>
+						<w:tab/>
+					</w:r>
+					<w:r>
+						<w:rPr>
+							<w:rFonts w:hint="eastAsia"/>
+						</w:rPr>
+						<w:tab/>
+					</w:r>
+					<w:r>
+						<w:rPr>
+							<w:rFonts w:hint="eastAsia"/>
+						</w:rPr>
+						<w:tab/>
+					</w:r>
+					<w:r>
+						<w:rPr>
+							<w:rFonts w:hint="eastAsia"/>
+						</w:rPr>
+						<w:tab/>
+					</w:r>
+					<w:r>
+						<w:rPr>
+							<w:rFonts w:hint="eastAsia"/>
+						</w:rPr>
+						<w:tab/>
+					</w:r>
+					<w:r>
+						<w:rPr>
+							<w:rFonts w:hint="eastAsia"/>
+						</w:rPr>
+						<w:tab/>
+					</w:r>
+					<w:r>
+						<w:rPr>
+							<w:rFonts w:hint="eastAsia"/>
+						</w:rPr>
+						<w:tab/>
+					</w:r>
+					<w:r>
+						<w:rPr>
+							<w:rFonts w:hint="eastAsia"/>
+						</w:rPr>
+						<w:tab/>
+					</w:r>
+					<w:r>
+						<w:rPr>
+							<w:rFonts w:hint="eastAsia"/>
+						</w:rPr>
+						<w:tab/>
+					</w:r>
+					<w:r>
+						<w:rPr>
+							<w:rFonts w:hint="eastAsia"/>
+						</w:rPr>
+						<w:tab/>
+					</w:r>
+					<w:r>
+						<w:rPr>
+							<w:rFonts w:hint="eastAsia"/>
+						</w:rPr>
+						<w:tab/>
+					</w:r>
+					<w:r>
+						<w:rPr>
+							<w:rFonts w:hint="eastAsia"/>
+						</w:rPr>
+						<w:t>第</w:t>
+					</w:r>
+					<w:r>
+						<w:rPr>
+							<w:rFonts w:hint="eastAsia"/>
+						</w:rPr>
+						<w:t>4</w:t>
+					</w:r>
+					<w:r>
+						<w:rPr>
+							<w:rFonts w:hint="eastAsia"/>
+						</w:rPr>
+						<w:t>页</w:t>
+					</w:r>
+					<w:r>
+						<w:rPr>
+							<w:rFonts w:hint="eastAsia"/>
+						</w:rPr>
+						<w:t xml:space="preserve"/>
+					</w:r>
+					<w:r>
+						<w:rPr>
+							<w:rFonts w:hint="eastAsia"/>
+						</w:rPr>
+						<w:t>共</w:t>
+					</w:r>
+					<w:r>
+						<w:rPr>
+							<w:rFonts w:hint="eastAsia"/>
+						</w:rPr>
+						<w:t>4</w:t>
+					</w:r>
+					<w:r>
+						<w:rPr>
+							<w:rFonts w:hint="eastAsia"/>
+						</w:rPr>
+						<w:t>页</w:t>
+					</w:r>
+				</w:p>
+			</w:ftr>
+		</pkg:xmlData>
+	</pkg:part>
+	<pkg:part pkg:contentType="application/vnd.openxmlformats-officedocument.wordprocessingml.endnotes+xml" pkg:name="/word/endnotes.xml">
+		<pkg:xmlData>
+			<w:endnotes mc:Ignorable="w14 wp14" xmlns:m="http://schemas.openxmlformats.org/officeDocument/2006/math" xmlns:mc="http://schemas.openxmlformats.org/markup-compatibility/2006" xmlns:o="urn:schemas-microsoft-com:office:office" xmlns:r="http://schemas.openxmlformats.org/officeDocument/2006/relationships" xmlns:v="urn:schemas-microsoft-com:vml" xmlns:w="http://schemas.openxmlformats.org/wordprocessingml/2006/main" xmlns:w10="urn:schemas-microsoft-com:office:word" xmlns:w14="http://schemas.microsoft.com/office/word/2010/wordml" xmlns:wne="http://schemas.microsoft.com/office/word/2006/wordml" xmlns:wp="http://schemas.openxmlformats.org/drawingml/2006/wordprocessingDrawing" xmlns:wp14="http://schemas.microsoft.com/office/word/2010/wordprocessingDrawing" xmlns:wpc="http://schemas.microsoft.com/office/word/2010/wordprocessingCanvas" xmlns:wpg="http://schemas.microsoft.com/office/word/2010/wordprocessingGroup" xmlns:wpi="http://schemas.microsoft.com/office/word/2010/wordprocessingInk" xmlns:wps="http://schemas.microsoft.com/office/word/2010/wordprocessingShape">
+				<w:endnote w:id="-1" w:type="separator">
+					<w:p w:rsidR="0051225E" w:rsidRDefault="0051225E">
+						<w:r>
+							<w:separator/>
+						</w:r>
+					</w:p>
+				</w:endnote>
+				<w:endnote w:id="0" w:type="continuationSeparator">
+					<w:p w:rsidR="0051225E" w:rsidRDefault="0051225E">
+						<w:r>
+							<w:continuationSeparator/>
+						</w:r>
+					</w:p>
+				</w:endnote>
+			</w:endnotes>
+		</pkg:xmlData>
+	</pkg:part>
+	<pkg:part pkg:contentType="application/vnd.openxmlformats-officedocument.wordprocessingml.footer+xml" pkg:name="/word/footer2.xml">
+		<pkg:xmlData>
+			<w:ftr mc:Ignorable="w14 wp14" xmlns:m="http://schemas.openxmlformats.org/officeDocument/2006/math" xmlns:mc="http://schemas.openxmlformats.org/markup-compatibility/2006" xmlns:o="urn:schemas-microsoft-com:office:office" xmlns:r="http://schemas.openxmlformats.org/officeDocument/2006/relationships" xmlns:v="urn:schemas-microsoft-com:vml" xmlns:w="http://schemas.openxmlformats.org/wordprocessingml/2006/main" xmlns:w10="urn:schemas-microsoft-com:office:word" xmlns:w14="http://schemas.microsoft.com/office/word/2010/wordml" xmlns:wne="http://schemas.microsoft.com/office/word/2006/wordml" xmlns:wp="http://schemas.openxmlformats.org/drawingml/2006/wordprocessingDrawing" xmlns:wp14="http://schemas.microsoft.com/office/word/2010/wordprocessingDrawing" xmlns:wpc="http://schemas.microsoft.com/office/word/2010/wordprocessingCanvas" xmlns:wpg="http://schemas.microsoft.com/office/word/2010/wordprocessingGroup" xmlns:wpi="http://schemas.microsoft.com/office/word/2010/wordprocessingInk" xmlns:wps="http://schemas.microsoft.com/office/word/2010/wordprocessingShape">
+				<w:p w:rsidP="00D87C35" w:rsidR="002A4355" w:rsidRDefault="00130ED7">
+					<w:pPr>
+						<w:pStyle w:val="a3"/>
+						<w:rPr>
+							<w:rFonts w:hint="eastAsia"/>
+						</w:rPr>
+					</w:pPr>
+					<w:r>
+						<w:rPr>
+							<w:rFonts w:hint="eastAsia"/>
+						</w:rPr>
+						<w:tab/>
+					</w:r>
+					<w:r>
+						<w:rPr>
+							<w:rFonts w:hint="eastAsia"/>
+						</w:rPr>
+						<w:t>第</w:t>
+					</w:r>
+					<w:r>
+						<w:rPr>
+							<w:rFonts w:hint="eastAsia"/>
+						</w:rPr>
+						<w:t>1</w:t>
+					</w:r>
+					<w:r>
+						<w:rPr>
+							<w:rFonts w:hint="eastAsia"/>
+						</w:rPr>
+						<w:t>页</w:t>
+					</w:r>
+					<w:r>
+						<w:rPr>
+							<w:rFonts w:hint="eastAsia"/>
+						</w:rPr>
+						<w:t xml:space="preserve"/>
+					</w:r>
+					<w:r>
+						<w:rPr>
+							<w:rFonts w:hint="eastAsia"/>
+						</w:rPr>
+						<w:t>共</w:t>
+					</w:r>
+					<w:r>
+						<w:rPr>
+							<w:rFonts w:hint="eastAsia"/>
+						</w:rPr>
+						<w:t>4</w:t>
+					</w:r>
+					<w:r>
+						<w:rPr>
+							<w:rFonts w:hint="eastAsia"/>
+						</w:rPr>
+						<w:t>页</w:t>
+					</w:r>
+					<w:r>
+						<w:rPr>
+							<w:rFonts w:hint="eastAsia"/>
+						</w:rPr>
+						<w:tab/>
+					</w:r>
+					<w:r>
+						<w:rPr>
+							<w:rFonts w:hint="eastAsia"/>
+						</w:rPr>
+						<w:tab/>
+					</w:r>
+					<w:r>
+						<w:rPr>
+							<w:rFonts w:hint="eastAsia"/>
+						</w:rPr>
+						<w:tab/>
+					</w:r>
+					<w:r>
+						<w:rPr>
+							<w:rFonts w:hint="eastAsia"/>
+						</w:rPr>
+						<w:tab/>
+					</w:r>
+					<w:r>
+						<w:rPr>
+							<w:rFonts w:hint="eastAsia"/>
+						</w:rPr>
+						<w:tab/>
+					</w:r>
+					<w:r>
+						<w:rPr>
+							<w:rFonts w:hint="eastAsia"/>
+						</w:rPr>
+						<w:tab/>
+					</w:r>
+					<w:r>
+						<w:rPr>
+							<w:rFonts w:hint="eastAsia"/>
+						</w:rPr>
+						<w:tab/>
+					</w:r>
+					<w:r>
+						<w:rPr>
+							<w:rFonts w:hint="eastAsia"/>
+						</w:rPr>
+						<w:tab/>
+					</w:r>
+					<w:r>
+						<w:rPr>
+							<w:rFonts w:hint="eastAsia"/>
+						</w:rPr>
+						<w:tab/>
+					</w:r>
+					<w:r>
+						<w:rPr>
+							<w:rFonts w:hint="eastAsia"/>
+						</w:rPr>
+						<w:tab/>
+					</w:r>
+					<w:r>
+						<w:rPr>
+							<w:rFonts w:hint="eastAsia"/>
+						</w:rPr>
+						<w:tab/>
+					</w:r>
+					<w:r>
+						<w:rPr>
+							<w:rFonts w:hint="eastAsia"/>
+						</w:rPr>
+						<w:tab/>
+					</w:r>
+					<w:r>
+						<w:rPr>
+							<w:rFonts w:hint="eastAsia"/>
+						</w:rPr>
+						<w:tab/>
+					</w:r>
+					<w:r>
+						<w:rPr>
+							<w:rFonts w:hint="eastAsia"/>
+						</w:rPr>
+						<w:tab/>
+					</w:r>
+					<w:r>
+						<w:rPr>
+							<w:rFonts w:hint="eastAsia"/>
+						</w:rPr>
+						<w:tab/>
+					</w:r>
+					<w:r>
+						<w:rPr>
+							<w:rFonts w:hint="eastAsia"/>
+						</w:rPr>
+						<w:tab/>
+					</w:r>
+					<w:r>
+						<w:rPr>
+							<w:rFonts w:hint="eastAsia"/>
+						</w:rPr>
+						<w:tab/>
+					</w:r>
+					<w:r>
+						<w:rPr>
+							<w:rFonts w:hint="eastAsia"/>
+						</w:rPr>
+						<w:tab/>
+					</w:r>
+					<w:r>
+						<w:rPr>
+							<w:rFonts w:hint="eastAsia"/>
+						</w:rPr>
+						<w:tab/>
+					</w:r>
+					<w:r>
+						<w:rPr>
+							<w:rFonts w:hint="eastAsia"/>
+						</w:rPr>
+						<w:t>第</w:t>
+					</w:r>
+					<w:r>
+						<w:rPr>
+							<w:rFonts w:hint="eastAsia"/>
+						</w:rPr>
+						<w:t>2</w:t>
+					</w:r>
+					<w:r>
+						<w:rPr>
+							<w:rFonts w:hint="eastAsia"/>
+						</w:rPr>
+						<w:t>页</w:t>
+					</w:r>
+					<w:r>
+						<w:rPr>
+							<w:rFonts w:hint="eastAsia"/>
+						</w:rPr>
+						<w:t xml:space="preserve"/>
+					</w:r>
+					<w:r>
+						<w:rPr>
+							<w:rFonts w:hint="eastAsia"/>
+						</w:rPr>
+						<w:t>共</w:t>
+					</w:r>
+					<w:r>
+						<w:rPr>
+							<w:rFonts w:hint="eastAsia"/>
+						</w:rPr>
+						<w:t>4</w:t>
+					</w:r>
+					<w:r>
+						<w:rPr>
+							<w:rFonts w:hint="eastAsia"/>
+						</w:rPr>
+						<w:t>页</w:t>
+					</w:r>
+				</w:p>
+			</w:ftr>
+		</pkg:xmlData>
+	</pkg:part>
+	<pkg:part pkg:contentType="application/vnd.openxmlformats-officedocument.wordprocessingml.footnotes+xml" pkg:name="/word/footnotes.xml">
+		<pkg:xmlData>
+			<w:footnotes mc:Ignorable="w14 wp14" xmlns:m="http://schemas.openxmlformats.org/officeDocument/2006/math" xmlns:mc="http://schemas.openxmlformats.org/markup-compatibility/2006" xmlns:o="urn:schemas-microsoft-com:office:office" xmlns:r="http://schemas.openxmlformats.org/officeDocument/2006/relationships" xmlns:v="urn:schemas-microsoft-com:vml" xmlns:w="http://schemas.openxmlformats.org/wordprocessingml/2006/main" xmlns:w10="urn:schemas-microsoft-com:office:word" xmlns:w14="http://schemas.microsoft.com/office/word/2010/wordml" xmlns:wne="http://schemas.microsoft.com/office/word/2006/wordml" xmlns:wp="http://schemas.openxmlformats.org/drawingml/2006/wordprocessingDrawing" xmlns:wp14="http://schemas.microsoft.com/office/word/2010/wordprocessingDrawing" xmlns:wpc="http://schemas.microsoft.com/office/word/2010/wordprocessingCanvas" xmlns:wpg="http://schemas.microsoft.com/office/word/2010/wordprocessingGroup" xmlns:wpi="http://schemas.microsoft.com/office/word/2010/wordprocessingInk" xmlns:wps="http://schemas.microsoft.com/office/word/2010/wordprocessingShape">
+				<w:footnote w:id="-1" w:type="separator">
+					<w:p w:rsidR="0051225E" w:rsidRDefault="0051225E">
+						<w:r>
+							<w:separator/>
+						</w:r>
+					</w:p>
+				</w:footnote>
+				<w:footnote w:id="0" w:type="continuationSeparator">
+					<w:p w:rsidR="0051225E" w:rsidRDefault="0051225E">
+						<w:r>
+							<w:continuationSeparator/>
+						</w:r>
+					</w:p>
+				</w:footnote>
+			</w:footnotes>
+		</pkg:xmlData>
+	</pkg:part>
+	<pkg:part pkg:contentType="application/vnd.openxmlformats-officedocument.theme+xml" pkg:name="/word/theme/theme1.xml">
+		<pkg:xmlData>
+			<a:theme name="Office 主题​​" xmlns:a="http://schemas.openxmlformats.org/drawingml/2006/main">
+				<a:themeElements>
+					<a:clrScheme name="Office">
+						<a:dk1>
+							<a:sysClr lastClr="000000" val="windowText"/>
+						</a:dk1>
+						<a:lt1>
+							<a:sysClr lastClr="FFFFFF" val="window"/>
+						</a:lt1>
+						<a:dk2>
+							<a:srgbClr val="1F497D"/>
+						</a:dk2>
+						<a:lt2>
+							<a:srgbClr val="EEECE1"/>
+						</a:lt2>
+						<a:accent1>
+							<a:srgbClr val="4F81BD"/>
+						</a:accent1>
+						<a:accent2>
+							<a:srgbClr val="C0504D"/>
+						</a:accent2>
+						<a:accent3>
+							<a:srgbClr val="9BBB59"/>
+						</a:accent3>
+						<a:accent4>
+							<a:srgbClr val="8064A2"/>
+						</a:accent4>
+						<a:accent5>
+							<a:srgbClr val="4BACC6"/>
+						</a:accent5>
+						<a:accent6>
+							<a:srgbClr val="F79646"/>
+						</a:accent6>
+						<a:hlink>
+							<a:srgbClr val="0000FF"/>
+						</a:hlink>
+						<a:folHlink>
+							<a:srgbClr val="800080"/>
+						</a:folHlink>
+					</a:clrScheme>
+					<a:fontScheme name="Office">
+						<a:majorFont>
+							<a:latin typeface="Cambria"/>
+							<a:ea typeface=""/>
+							<a:cs typeface=""/>
+							<a:font script="Jpan" typeface="MS ゴシック"/>
+							<a:font script="Hang" typeface="맑은 고딕"/>
+							<a:font script="Hans" typeface="宋体"/>
+							<a:font script="Hant" typeface="新細明體"/>
+							<a:font script="Arab" typeface="Times New Roman"/>
+							<a:font script="Hebr" typeface="Times New Roman"/>
+							<a:font script="Thai" typeface="Angsana New"/>
+							<a:font script="Ethi" typeface="Nyala"/>
+							<a:font script="Beng" typeface="Vrinda"/>
+							<a:font script="Gujr" typeface="Shruti"/>
+							<a:font script="Khmr" typeface="MoolBoran"/>
+							<a:font script="Knda" typeface="Tunga"/>
+							<a:font script="Guru" typeface="Raavi"/>
+							<a:font script="Cans" typeface="Euphemia"/>
+							<a:font script="Cher" typeface="Plantagenet Cherokee"/>
+							<a:font script="Yiii" typeface="Microsoft Yi Baiti"/>
+							<a:font script="Tibt" typeface="Microsoft Himalaya"/>
+							<a:font script="Thaa" typeface="MV Boli"/>
+							<a:font script="Deva" typeface="Mangal"/>
+							<a:font script="Telu" typeface="Gautami"/>
+							<a:font script="Taml" typeface="Latha"/>
+							<a:font script="Syrc" typeface="Estrangelo Edessa"/>
+							<a:font script="Orya" typeface="Kalinga"/>
+							<a:font script="Mlym" typeface="Kartika"/>
+							<a:font script="Laoo" typeface="DokChampa"/>
+							<a:font script="Sinh" typeface="Iskoola Pota"/>
+							<a:font script="Mong" typeface="Mongolian Baiti"/>
+							<a:font script="Viet" typeface="Times New Roman"/>
+							<a:font script="Uigh" typeface="Microsoft Uighur"/>
+							<a:font script="Geor" typeface="Sylfaen"/>
+						</a:majorFont>
+						<a:minorFont>
+							<a:latin typeface="Calibri"/>
+							<a:ea typeface=""/>
+							<a:cs typeface=""/>
+							<a:font script="Jpan" typeface="MS 明朝"/>
+							<a:font script="Hang" typeface="맑은 고딕"/>
+							<a:font script="Hans" typeface="宋体"/>
+							<a:font script="Hant" typeface="新細明體"/>
+							<a:font script="Arab" typeface="Arial"/>
+							<a:font script="Hebr" typeface="Arial"/>
+							<a:font script="Thai" typeface="Cordia New"/>
+							<a:font script="Ethi" typeface="Nyala"/>
+							<a:font script="Beng" typeface="Vrinda"/>
+							<a:font script="Gujr" typeface="Shruti"/>
+							<a:font script="Khmr" typeface="DaunPenh"/>
+							<a:font script="Knda" typeface="Tunga"/>
+							<a:font script="Guru" typeface="Raavi"/>
+							<a:font script="Cans" typeface="Euphemia"/>
+							<a:font script="Cher" typeface="Plantagenet Cherokee"/>
+							<a:font script="Yiii" typeface="Microsoft Yi Baiti"/>
+							<a:font script="Tibt" typeface="Microsoft Himalaya"/>
+							<a:font script="Thaa" typeface="MV Boli"/>
+							<a:font script="Deva" typeface="Mangal"/>
+							<a:font script="Telu" typeface="Gautami"/>
+							<a:font script="Taml" typeface="Latha"/>
+							<a:font script="Syrc" typeface="Estrangelo Edessa"/>
+							<a:font script="Orya" typeface="Kalinga"/>
+							<a:font script="Mlym" typeface="Kartika"/>
+							<a:font script="Laoo" typeface="DokChampa"/>
+							<a:font script="Sinh" typeface="Iskoola Pota"/>
+							<a:font script="Mong" typeface="Mongolian Baiti"/>
+							<a:font script="Viet" typeface="Arial"/>
+							<a:font script="Uigh" typeface="Microsoft Uighur"/>
+							<a:font script="Geor" typeface="Sylfaen"/>
+						</a:minorFont>
+					</a:fontScheme>
+					<a:fmtScheme name="Office">
+						<a:fillStyleLst>
+							<a:solidFill>
+								<a:schemeClr val="phClr"/>
+							</a:solidFill>
+							<a:gradFill rotWithShape="1">
+								<a:gsLst>
+									<a:gs pos="0">
+										<a:schemeClr val="phClr">
+											<a:tint val="50000"/>
+											<a:satMod val="300000"/>
+										</a:schemeClr>
+									</a:gs>
+									<a:gs pos="35000">
+										<a:schemeClr val="phClr">
+											<a:tint val="37000"/>
+											<a:satMod val="300000"/>
+										</a:schemeClr>
+									</a:gs>
+									<a:gs pos="100000">
+										<a:schemeClr val="phClr">
+											<a:tint val="15000"/>
+											<a:satMod val="350000"/>
+										</a:schemeClr>
+									</a:gs>
+								</a:gsLst>
+								<a:lin ang="16200000" scaled="1"/>
+							</a:gradFill>
+							<a:gradFill rotWithShape="1">
+								<a:gsLst>
+									<a:gs pos="0">
+										<a:schemeClr val="phClr">
+											<a:shade val="51000"/>
+											<a:satMod val="130000"/>
+										</a:schemeClr>
+									</a:gs>
+									<a:gs pos="80000">
+										<a:schemeClr val="phClr">
+											<a:shade val="93000"/>
+											<a:satMod val="130000"/>
+										</a:schemeClr>
+									</a:gs>
+									<a:gs pos="100000">
+										<a:schemeClr val="phClr">
+											<a:shade val="94000"/>
+											<a:satMod val="135000"/>
+										</a:schemeClr>
+									</a:gs>
+								</a:gsLst>
+								<a:lin ang="16200000" scaled="0"/>
+							</a:gradFill>
+						</a:fillStyleLst>
+						<a:lnStyleLst>
+							<a:ln algn="ctr" cap="flat" cmpd="sng" w="9525">
+								<a:solidFill>
+									<a:schemeClr val="phClr">
+										<a:shade val="95000"/>
+										<a:satMod val="105000"/>
+									</a:schemeClr>
+								</a:solidFill>
+								<a:prstDash val="solid"/>
+							</a:ln>
+							<a:ln algn="ctr" cap="flat" cmpd="sng" w="25400">
+								<a:solidFill>
+									<a:schemeClr val="phClr"/>
+								</a:solidFill>
+								<a:prstDash val="solid"/>
+							</a:ln>
+							<a:ln algn="ctr" cap="flat" cmpd="sng" w="38100">
+								<a:solidFill>
+									<a:schemeClr val="phClr"/>
+								</a:solidFill>
+								<a:prstDash val="solid"/>
+							</a:ln>
+						</a:lnStyleLst>
+						<a:effectStyleLst>
+							<a:effectStyle>
+								<a:effectLst>
+									<a:outerShdw blurRad="40000" dir="5400000" dist="20000" rotWithShape="0">
+										<a:srgbClr val="000000">
+											<a:alpha val="38000"/>
+										</a:srgbClr>
+									</a:outerShdw>
+								</a:effectLst>
+							</a:effectStyle>
+							<a:effectStyle>
+								<a:effectLst>
+									<a:outerShdw blurRad="40000" dir="5400000" dist="23000" rotWithShape="0">
+										<a:srgbClr val="000000">
+											<a:alpha val="35000"/>
+										</a:srgbClr>
+									</a:outerShdw>
+								</a:effectLst>
+							</a:effectStyle>
+							<a:effectStyle>
+								<a:effectLst>
+									<a:outerShdw blurRad="40000" dir="5400000" dist="23000" rotWithShape="0">
+										<a:srgbClr val="000000">
+											<a:alpha val="35000"/>
+										</a:srgbClr>
+									</a:outerShdw>
+								</a:effectLst>
+								<a:scene3d>
+									<a:camera prst="orthographicFront">
+										<a:rot lat="0" lon="0" rev="0"/>
+									</a:camera>
+									<a:lightRig dir="t" rig="threePt">
+										<a:rot lat="0" lon="0" rev="1200000"/>
+									</a:lightRig>
+								</a:scene3d>
+								<a:sp3d>
+									<a:bevelT h="25400" w="63500"/>
+								</a:sp3d>
+							</a:effectStyle>
+						</a:effectStyleLst>
+						<a:bgFillStyleLst>
+							<a:solidFill>
+								<a:schemeClr val="phClr"/>
+							</a:solidFill>
+							<a:gradFill rotWithShape="1">
+								<a:gsLst>
+									<a:gs pos="0">
+										<a:schemeClr val="phClr">
+											<a:tint val="40000"/>
+											<a:satMod val="350000"/>
+										</a:schemeClr>
+									</a:gs>
+									<a:gs pos="40000">
+										<a:schemeClr val="phClr">
+											<a:tint val="45000"/>
+											<a:shade val="99000"/>
+											<a:satMod val="350000"/>
+										</a:schemeClr>
+									</a:gs>
+									<a:gs pos="100000">
+										<a:schemeClr val="phClr">
+											<a:shade val="20000"/>
+											<a:satMod val="255000"/>
+										</a:schemeClr>
+									</a:gs>
+								</a:gsLst>
+								<a:path path="circle">
+									<a:fillToRect b="180000" l="50000" r="50000" t="-80000"/>
+								</a:path>
+							</a:gradFill>
+							<a:gradFill rotWithShape="1">
+								<a:gsLst>
+									<a:gs pos="0">
+										<a:schemeClr val="phClr">
+											<a:tint val="80000"/>
+											<a:satMod val="300000"/>
+										</a:schemeClr>
+									</a:gs>
+									<a:gs pos="100000">
+										<a:schemeClr val="phClr">
+											<a:shade val="30000"/>
+											<a:satMod val="200000"/>
+										</a:schemeClr>
+									</a:gs>
+								</a:gsLst>
+								<a:path path="circle">
+									<a:fillToRect b="50000" l="50000" r="50000" t="50000"/>
+								</a:path>
+							</a:gradFill>
+						</a:bgFillStyleLst>
+					</a:fmtScheme>
+				</a:themeElements>
+				<a:objectDefaults/>
+				<a:extraClrSchemeLst/>
+			</a:theme>
+		</pkg:xmlData>
+	</pkg:part>
+	<pkg:part pkg:contentType="application/vnd.openxmlformats-officedocument.wordprocessingml.settings+xml" pkg:name="/word/settings.xml">
+		<pkg:xmlData>
+			<w:settings mc:Ignorable="w14" xmlns:m="http://schemas.openxmlformats.org/officeDocument/2006/math" xmlns:mc="http://schemas.openxmlformats.org/markup-compatibility/2006" xmlns:o="urn:schemas-microsoft-com:office:office" xmlns:r="http://schemas.openxmlformats.org/officeDocument/2006/relationships" xmlns:sl="http://schemas.openxmlformats.org/schemaLibrary/2006/main" xmlns:v="urn:schemas-microsoft-com:vml" xmlns:w="http://schemas.openxmlformats.org/wordprocessingml/2006/main" xmlns:w10="urn:schemas-microsoft-com:office:word" xmlns:w14="http://schemas.microsoft.com/office/word/2010/wordml">
+				<w:zoom w:percent="100"/>
+				<w:bordersDoNotSurroundHeader/>
+				<w:bordersDoNotSurroundFooter/>
+				<w:stylePaneFormatFilter w:allStyles="1" w:alternateStyleNames="0" w:clearFormatting="1" w:customStyles="0" w:directFormattingOnNumbering="1" w:directFormattingOnParagraphs="1" w:directFormattingOnRuns="1" w:directFormattingOnTables="1" w:headingStyles="0" w:latentStyles="0" w:numberingStyles="0" w:stylesInUse="0" w:tableStyles="0" w:top3HeadingStyles="1" w:val="3F01" w:visibleStyles="0"/>
+				<w:doNotTrackMoves/>
+				<w:defaultTabStop w:val="420"/>
+				<w:evenAndOddHeaders/>
+				<w:drawingGridHorizontalSpacing w:val="105"/>
+				<w:drawingGridVerticalSpacing w:val="156"/>
+				<w:displayHorizontalDrawingGridEvery w:val="0"/>
+				<w:displayVerticalDrawingGridEvery w:val="2"/>
+				<w:characterSpacingControl w:val="compressPunctuation"/>
+				<w:hdrShapeDefaults>
+					<o:shapedefaults spidmax="2049" v:ext="edit"/>
+				</w:hdrShapeDefaults>
+				<w:footnotePr>
+					<w:footnote w:id="-1"/>
+					<w:footnote w:id="0"/>
+				</w:footnotePr>
+				<w:endnotePr>
+					<w:endnote w:id="-1"/>
+					<w:endnote w:id="0"/>
+				</w:endnotePr>
+				<w:compat>
+					<w:spaceForUL/>
+					<w:balanceSingleByteDoubleByteWidth/>
+					<w:doNotLeaveBackslashAlone/>
+					<w:ulTrailSpace/>
+					<w:doNotExpandShiftReturn/>
+					<w:adjustLineHeightInTable/>
+					<w:useFELayout/>
+					<w:useNormalStyleForList/>
+					<w:doNotUseIndentAsNumberingTabStop/>
+					<w:useAltKinsokuLineBreakRules/>
+					<w:allowSpaceOfSameStyleInTable/>
+					<w:doNotSuppressIndentation/>
+					<w:doNotAutofitConstrainedTables/>
+					<w:autofitToFirstFixedWidthCell/>
+					<w:displayHangulFixedWidth/>
+					<w:splitPgBreakAndParaMark/>
+					<w:doNotVertAlignCellWithSp/>
+					<w:doNotBreakConstrainedForcedTable/>
+					<w:doNotVertAlignInTxbx/>
+					<w:useAnsiKerningPairs/>
+					<w:cachedColBalance/>
+					<w:compatSetting w:name="compatibilityMode" w:uri="http://schemas.microsoft.com/office/word" w:val="11"/>
+				</w:compat>
+				<w:rsids>
+					<w:rsidRoot w:val="00704D29"/>
+					<w:rsid w:val="00013B5B"/>
+					<w:rsid w:val="00017BD2"/>
+					<w:rsid w:val="00024353"/>
+					<w:rsid w:val="00032AB6"/>
+					<w:rsid w:val="000335E0"/>
+					<w:rsid w:val="00037026"/>
+					<w:rsid w:val="00041207"/>
+					<w:rsid w:val="00045F7D"/>
+					<w:rsid w:val="000634FF"/>
+					<w:rsid w:val="000675A8"/>
+					<w:rsid w:val="00072663"/>
+					<w:rsid w:val="0007594E"/>
+					<w:rsid w:val="0008659D"/>
+					<w:rsid w:val="00091494"/>
+					<w:rsid w:val="000A26C9"/>
+					<w:rsid w:val="000A4291"/>
+					<w:rsid w:val="000D249A"/>
+					<w:rsid w:val="000D7EE1"/>
+					<w:rsid w:val="0010199E"/>
+					<w:rsid w:val="0012364B"/>
+					<w:rsid w:val="00130ED7"/>
+					<w:rsid w:val="001400FE"/>
+					<w:rsid w:val="001409D1"/>
+					<w:rsid w:val="0015368E"/>
+					<w:rsid w:val="001577A3"/>
+					<w:rsid w:val="00163265"/>
+					<w:rsid w:val="00171408"/>
+					<w:rsid w:val="001973CF"/>
+					<w:rsid w:val="001A2234"/>
+					<w:rsid w:val="001A590C"/>
+					<w:rsid w:val="001A6F9A"/>
+					<w:rsid w:val="001C6D03"/>
+					<w:rsid w:val="001D2BFB"/>
+					<w:rsid w:val="001F1FD6"/>
+					<w:rsid w:val="001F2AE4"/>
+					<w:rsid w:val="002075AC"/>
+					<w:rsid w:val="00210DBC"/>
+					<w:rsid w:val="00223926"/>
+					<w:rsid w:val="00240F49"/>
+					<w:rsid w:val="00256922"/>
+					<w:rsid w:val="00275877"/>
+					<w:rsid w:val="00280430"/>
+					<w:rsid w:val="0028270C"/>
+					<w:rsid w:val="002A4355"/>
+					<w:rsid w:val="002A490A"/>
+					<w:rsid w:val="002B0EFC"/>
+					<w:rsid w:val="002C492A"/>
+					<w:rsid w:val="002E11A7"/>
+					<w:rsid w:val="002F1D39"/>
+					<w:rsid w:val="00300FB4"/>
+					<w:rsid w:val="003165E8"/>
+					<w:rsid w:val="003271AC"/>
+					<w:rsid w:val="00330D81"/>
+					<w:rsid w:val="003452C5"/>
+					<w:rsid w:val="00361123"/>
+					<w:rsid w:val="00366B8D"/>
+					<w:rsid w:val="00366D83"/>
+					<w:rsid w:val="00387887"/>
+					<w:rsid w:val="003907C3"/>
+					<w:rsid w:val="003D4B52"/>
+					<w:rsid w:val="003F2697"/>
+					<w:rsid w:val="00406040"/>
+					<w:rsid w:val="004072CF"/>
+					<w:rsid w:val="004110E9"/>
+					<w:rsid w:val="00440B4B"/>
+					<w:rsid w:val="00442167"/>
+					<w:rsid w:val="0046265F"/>
+					<w:rsid w:val="004775A3"/>
+					<w:rsid w:val="004908DE"/>
+					<w:rsid w:val="00494A57"/>
+					<w:rsid w:val="004B0E53"/>
+					<w:rsid w:val="004B2EDE"/>
+					<w:rsid w:val="004B4FE3"/>
+					<w:rsid w:val="004B56A1"/>
+					<w:rsid w:val="004D3783"/>
+					<w:rsid w:val="004D582C"/>
+					<w:rsid w:val="004F12B4"/>
+					<w:rsid w:val="00505A8F"/>
+					<w:rsid w:val="0051225E"/>
+					<w:rsid w:val="0051564D"/>
+					<w:rsid w:val="00595E9A"/>
+					<w:rsid w:val="005A1C06"/>
+					<w:rsid w:val="005A4541"/>
+					<w:rsid w:val="005B0CA3"/>
+					<w:rsid w:val="005C2812"/>
+					<w:rsid w:val="005C3104"/>
+					<w:rsid w:val="005C4F99"/>
+					<w:rsid w:val="005C6D37"/>
+					<w:rsid w:val="005C7401"/>
+					<w:rsid w:val="005D4AB5"/>
+					<w:rsid w:val="005E06FB"/>
+					<w:rsid w:val="00604C4E"/>
+					<w:rsid w:val="0063790A"/>
+					<w:rsid w:val="00650B9D"/>
+					<w:rsid w:val="0066580D"/>
+					<w:rsid w:val="0067001D"/>
+					<w:rsid w:val="00672D0B"/>
+					<w:rsid w:val="00673A66"/>
+					<w:rsid w:val="00681FC6"/>
+					<w:rsid w:val="00686BEF"/>
+					<w:rsid w:val="00687CD1"/>
+					<w:rsid w:val="00691209"/>
+					<w:rsid w:val="006976BF"/>
+					<w:rsid w:val="00697C8B"/>
+					<w:rsid w:val="006A4731"/>
+					<w:rsid w:val="006C3AF0"/>
+					<w:rsid w:val="006D7134"/>
+					<w:rsid w:val="006E2D68"/>
+					<w:rsid w:val="006E31F6"/>
+					<w:rsid w:val="006E50E5"/>
+					<w:rsid w:val="00704D29"/>
+					<w:rsid w:val="00755E9E"/>
+					<w:rsid w:val="007620DA"/>
+					<w:rsid w:val="0077243B"/>
+					<w:rsid w:val="00790892"/>
+					<w:rsid w:val="00796618"/>
+					<w:rsid w:val="007A117C"/>
+					<w:rsid w:val="007C462F"/>
+					<w:rsid w:val="007D418E"/>
+					<w:rsid w:val="007F0875"/>
+					<w:rsid w:val="007F49E4"/>
+					<w:rsid w:val="00800F02"/>
+					<w:rsid w:val="00824944"/>
+					<w:rsid w:val="00846AEA"/>
+					<w:rsid w:val="00847F37"/>
+					<w:rsid w:val="00852887"/>
+					<w:rsid w:val="008A675A"/>
+					<w:rsid w:val="008B3D93"/>
+					<w:rsid w:val="008E6EC4"/>
+					<w:rsid w:val="008F220F"/>
+					<w:rsid w:val="0090557A"/>
+					<w:rsid w:val="0090721C"/>
+					<w:rsid w:val="009166C9"/>
+					<w:rsid w:val="00923DA0"/>
+					<w:rsid w:val="009260B5"/>
+					<w:rsid w:val="00930061"/>
+					<w:rsid w:val="00942CDF"/>
+					<w:rsid w:val="00950E61"/>
+					<w:rsid w:val="00955048"/>
+					<w:rsid w:val="009554A8"/>
+					<w:rsid w:val="00955E36"/>
+					<w:rsid w:val="00961BB1"/>
+					<w:rsid w:val="00980DC7"/>
+					<w:rsid w:val="009914D1"/>
+					<w:rsid w:val="009F69C1"/>
+					<w:rsid w:val="00A16045"/>
+					<w:rsid w:val="00A31223"/>
+					<w:rsid w:val="00A41C3A"/>
+					<w:rsid w:val="00A600F0"/>
+					<w:rsid w:val="00A64D36"/>
+					<w:rsid w:val="00A669E4"/>
+					<w:rsid w:val="00A91E20"/>
+					<w:rsid w:val="00AA16BB"/>
+					<w:rsid w:val="00AC3DDB"/>
+					<w:rsid w:val="00AD1A65"/>
+					<w:rsid w:val="00AE0411"/>
+					<w:rsid w:val="00AF6276"/>
+					<w:rsid w:val="00AF70CE"/>
+					<w:rsid w:val="00B02463"/>
+					<w:rsid w:val="00B56D1E"/>
+					<w:rsid w:val="00B570FB"/>
+					<w:rsid w:val="00B578C1"/>
+					<w:rsid w:val="00B6458D"/>
+					<w:rsid w:val="00B91B1A"/>
+					<w:rsid w:val="00BB7424"/>
+					<w:rsid w:val="00BC611E"/>
+					<w:rsid w:val="00BE5DDC"/>
+					<w:rsid w:val="00C0008F"/>
+					<w:rsid w:val="00C051F1"/>
+					<w:rsid w:val="00C15C76"/>
+					<w:rsid w:val="00C52CFB"/>
+					<w:rsid w:val="00C93D1E"/>
+					<w:rsid w:val="00CA64A5"/>
+					<w:rsid w:val="00CB1F89"/>
+					<w:rsid w:val="00CB7C72"/>
+					<w:rsid w:val="00CE3A65"/>
+					<w:rsid w:val="00CF6269"/>
+					<w:rsid w:val="00D02820"/>
+					<w:rsid w:val="00D07140"/>
+					<w:rsid w:val="00D17D54"/>
+					<w:rsid w:val="00D43792"/>
+					<w:rsid w:val="00D50577"/>
+					<w:rsid w:val="00D55C78"/>
+					<w:rsid w:val="00D85659"/>
+					<w:rsid w:val="00D87C35"/>
+					<w:rsid w:val="00D948E2"/>
+					<w:rsid w:val="00DA04B6"/>
+					<w:rsid w:val="00DA558B"/>
+					<w:rsid w:val="00DD230C"/>
+					<w:rsid w:val="00DD6E04"/>
+					<w:rsid w:val="00DE376D"/>
+					<w:rsid w:val="00DF64E3"/>
+					<w:rsid w:val="00E05F09"/>
+					<w:rsid w:val="00E17E78"/>
+					<w:rsid w:val="00E30F8F"/>
+					<w:rsid w:val="00E56C79"/>
+					<w:rsid w:val="00E72F4D"/>
+					<w:rsid w:val="00EA2F18"/>
+					<w:rsid w:val="00EB1E10"/>
+					<w:rsid w:val="00EB3511"/>
+					<w:rsid w:val="00EB5A61"/>
+					<w:rsid w:val="00EB6BE7"/>
+					<w:rsid w:val="00EC68F5"/>
+					<w:rsid w:val="00EE1A58"/>
+					<w:rsid w:val="00EE27E1"/>
+					<w:rsid w:val="00EF4E54"/>
+					<w:rsid w:val="00F029FF"/>
+					<w:rsid w:val="00F17F9A"/>
+					<w:rsid w:val="00F30893"/>
+					<w:rsid w:val="00F3740E"/>
+					<w:rsid w:val="00F40516"/>
+					<w:rsid w:val="00F675E5"/>
+					<w:rsid w:val="00F825CF"/>
+					<w:rsid w:val="00FE08EA"/>
+					<w:rsid w:val="00FE5490"/>
+					<w:rsid w:val="00FF14B8"/>
+				</w:rsids>
+				<m:mathPr>
+					<m:mathFont m:val="Cambria Math"/>
+					<m:brkBin m:val="before"/>
+					<m:brkBinSub m:val="--"/>
+					<m:smallFrac m:val="0"/>
+					<m:dispDef/>
+					<m:lMargin m:val="0"/>
+					<m:rMargin m:val="0"/>
+					<m:defJc m:val="centerGroup"/>
+					<m:wrapIndent m:val="1440"/>
+					<m:intLim m:val="subSup"/>
+					<m:naryLim m:val="undOvr"/>
+				</m:mathPr>
+				<w:themeFontLang w:eastAsia="zh-CN" w:val="en-US"/>
+				<w:clrSchemeMapping w:accent1="accent1" w:accent2="accent2" w:accent3="accent3" w:accent4="accent4" w:accent5="accent5" w:accent6="accent6" w:bg1="light1" w:bg2="light2" w:followedHyperlink="followedHyperlink" w:hyperlink="hyperlink" w:t1="dark1" w:t2="dark2"/>
+				<w:doNotIncludeSubdocsInStats/>
+				<w:shapeDefaults>
+					<o:shapedefaults spidmax="2049" v:ext="edit"/>
+					<o:shapelayout v:ext="edit">
+						<o:idmap data="1" v:ext="edit"/>
+					</o:shapelayout>
+				</w:shapeDefaults>
+				<w:decimalSymbol w:val="."/>
+				<w:listSeparator w:val=","/>
+			</w:settings>
+		</pkg:xmlData>
+	</pkg:part>
+	<pkg:part pkg:contentType="application/vnd.openxmlformats-officedocument.wordprocessingml.styles+xml" pkg:name="/word/styles.xml">
+		<pkg:xmlData>
+			<w:styles mc:Ignorable="w14" xmlns:mc="http://schemas.openxmlformats.org/markup-compatibility/2006" xmlns:r="http://schemas.openxmlformats.org/officeDocument/2006/relationships" xmlns:w="http://schemas.openxmlformats.org/wordprocessingml/2006/main" xmlns:w14="http://schemas.microsoft.com/office/word/2010/wordml">
+				<w:docDefaults>
+					<w:rPrDefault>
+						<w:rPr>
+							<w:rFonts w:ascii="Times New Roman" w:cs="Times New Roman" w:eastAsia="宋体" w:hAnsi="Times New Roman"/>
+							<w:lang w:bidi="ar-SA" w:eastAsia="zh-CN" w:val="en-US"/>
+						</w:rPr>
+					</w:rPrDefault>
+					<w:pPrDefault/>
+				</w:docDefaults>
+				<w:latentStyles w:count="267" w:defLockedState="0" w:defQFormat="0" w:defSemiHidden="0" w:defUIPriority="0" w:defUnhideWhenUsed="0">
+					<w:lsdException w:name="Normal" w:qFormat="1"/>
+					<w:lsdException w:name="heading 1" w:qFormat="1"/>
+					<w:lsdException w:name="heading 2" w:qFormat="1" w:semiHidden="1" w:unhideWhenUsed="1"/>
+					<w:lsdException w:name="heading 3" w:qFormat="1" w:semiHidden="1" w:unhideWhenUsed="1"/>
+					<w:lsdException w:name="heading 4" w:qFormat="1" w:semiHidden="1" w:unhideWhenUsed="1"/>
+					<w:lsdException w:name="heading 5" w:qFormat="1" w:semiHidden="1" w:unhideWhenUsed="1"/>
+					<w:lsdException w:name="heading 6" w:qFormat="1" w:semiHidden="1" w:unhideWhenUsed="1"/>
+					<w:lsdException w:name="heading 7" w:qFormat="1" w:semiHidden="1" w:unhideWhenUsed="1"/>
+					<w:lsdException w:name="heading 8" w:qFormat="1" w:semiHidden="1" w:unhideWhenUsed="1"/>
+					<w:lsdException w:name="heading 9" w:qFormat="1" w:semiHidden="1" w:unhideWhenUsed="1"/>
+					<w:lsdException w:name="header" w:uiPriority="99"/>
+					<w:lsdException w:name="footer" w:uiPriority="99"/>
+					<w:lsdException w:name="caption" w:qFormat="1" w:semiHidden="1" w:unhideWhenUsed="1"/>
+					<w:lsdException w:name="Title" w:qFormat="1"/>
+					<w:lsdException w:name="Subtitle" w:qFormat="1"/>
+					<w:lsdException w:name="Strong" w:qFormat="1"/>
+					<w:lsdException w:name="Emphasis" w:qFormat="1"/>
+					<w:lsdException w:name="Placeholder Text" w:semiHidden="1" w:uiPriority="99"/>
+					<w:lsdException w:name="No Spacing" w:qFormat="1" w:uiPriority="1"/>
+					<w:lsdException w:name="Light Shading" w:uiPriority="60"/>
+					<w:lsdException w:name="Light List" w:uiPriority="61"/>
+					<w:lsdException w:name="Light Grid" w:uiPriority="62"/>
+					<w:lsdException w:name="Medium Shading 1" w:uiPriority="63"/>
+					<w:lsdException w:name="Medium Shading 2" w:uiPriority="64"/>
+					<w:lsdException w:name="Medium List 1" w:uiPriority="65"/>
+					<w:lsdException w:name="Medium List 2" w:uiPriority="66"/>
+					<w:lsdException w:name="Medium Grid 1" w:uiPriority="67"/>
+					<w:lsdException w:name="Medium Grid 2" w:uiPriority="68"/>
+					<w:lsdException w:name="Medium Grid 3" w:uiPriority="69"/>
+					<w:lsdException w:name="Dark List" w:uiPriority="70"/>
+					<w:lsdException w:name="Colorful Shading" w:uiPriority="71"/>
+					<w:lsdException w:name="Colorful List" w:uiPriority="72"/>
+					<w:lsdException w:name="Colorful Grid" w:uiPriority="73"/>
+					<w:lsdException w:name="Light Shading Accent 1" w:uiPriority="60"/>
+					<w:lsdException w:name="Light List Accent 1" w:uiPriority="61"/>
+					<w:lsdException w:name="Light Grid Accent 1" w:uiPriority="62"/>
+					<w:lsdException w:name="Medium Shading 1 Accent 1" w:uiPriority="63"/>
+					<w:lsdException w:name="Medium Shading 2 Accent 1" w:uiPriority="64"/>
+					<w:lsdException w:name="Medium List 1 Accent 1" w:uiPriority="65"/>
+					<w:lsdException w:name="Revision" w:semiHidden="1" w:uiPriority="99"/>
+					<w:lsdException w:name="List Paragraph" w:qFormat="1" w:uiPriority="34"/>
+					<w:lsdException w:name="Quote" w:qFormat="1" w:uiPriority="29"/>
+					<w:lsdException w:name="Intense Quote" w:qFormat="1" w:uiPriority="30"/>
+					<w:lsdException w:name="Medium List 2 Accent 1" w:uiPriority="66"/>
+					<w:lsdException w:name="Medium Grid 1 Accent 1" w:uiPriority="67"/>
+					<w:lsdException w:name="Medium Grid 2 Accent 1" w:uiPriority="68"/>
+					<w:lsdException w:name="Medium Grid 3 Accent 1" w:uiPriority="69"/>
+					<w:lsdException w:name="Dark List Accent 1" w:uiPriority="70"/>
+					<w:lsdException w:name="Colorful Shading Accent 1" w:uiPriority="71"/>
+					<w:lsdException w:name="Colorful List Accent 1" w:uiPriority="72"/>
+					<w:lsdException w:name="Colorful Grid Accent 1" w:uiPriority="73"/>
+					<w:lsdException w:name="Light Shading Accent 2" w:uiPriority="60"/>
+					<w:lsdException w:name="Light List Accent 2" w:uiPriority="61"/>
+					<w:lsdException w:name="Light Grid Accent 2" w:uiPriority="62"/>
+					<w:lsdException w:name="Medium Shading 1 Accent 2" w:uiPriority="63"/>
+					<w:lsdException w:name="Medium Shading 2 Accent 2" w:uiPriority="64"/>
+					<w:lsdException w:name="Medium List 1 Accent 2" w:uiPriority="65"/>
+					<w:lsdException w:name="Medium List 2 Accent 2" w:uiPriority="66"/>
+					<w:lsdException w:name="Medium Grid 1 Accent 2" w:uiPriority="67"/>
+					<w:lsdException w:name="Medium Grid 2 Accent 2" w:uiPriority="68"/>
+					<w:lsdException w:name="Medium Grid 3 Accent 2" w:uiPriority="69"/>
+					<w:lsdException w:name="Dark List Accent 2" w:uiPriority="70"/>
+					<w:lsdException w:name="Colorful Shading Accent 2" w:uiPriority="71"/>
+					<w:lsdException w:name="Colorful List Accent 2" w:uiPriority="72"/>
+					<w:lsdException w:name="Colorful Grid Accent 2" w:uiPriority="73"/>
+					<w:lsdException w:name="Light Shading Accent 3" w:uiPriority="60"/>
+					<w:lsdException w:name="Light List Accent 3" w:uiPriority="61"/>
+					<w:lsdException w:name="Light Grid Accent 3" w:uiPriority="62"/>
+					<w:lsdException w:name="Medium Shading 1 Accent 3" w:uiPriority="63"/>
+					<w:lsdException w:name="Medium Shading 2 Accent 3" w:uiPriority="64"/>
+					<w:lsdException w:name="Medium List 1 Accent 3" w:uiPriority="65"/>
+					<w:lsdException w:name="Medium List 2 Accent 3" w:uiPriority="66"/>
+					<w:lsdException w:name="Medium Grid 1 Accent 3" w:uiPriority="67"/>
+					<w:lsdException w:name="Medium Grid 2 Accent 3" w:uiPriority="68"/>
+					<w:lsdException w:name="Medium Grid 3 Accent 3" w:uiPriority="69"/>
+					<w:lsdException w:name="Dark List Accent 3" w:uiPriority="70"/>
+					<w:lsdException w:name="Colorful Shading Accent 3" w:uiPriority="71"/>
+					<w:lsdException w:name="Colorful List Accent 3" w:uiPriority="72"/>
+					<w:lsdException w:name="Colorful Grid Accent 3" w:uiPriority="73"/>
+					<w:lsdException w:name="Light Shading Accent 4" w:uiPriority="60"/>
+					<w:lsdException w:name="Light List Accent 4" w:uiPriority="61"/>
+					<w:lsdException w:name="Light Grid Accent 4" w:uiPriority="62"/>
+					<w:lsdException w:name="Medium Shading 1 Accent 4" w:uiPriority="63"/>
+					<w:lsdException w:name="Medium Shading 2 Accent 4" w:uiPriority="64"/>
+					<w:lsdException w:name="Medium List 1 Accent 4" w:uiPriority="65"/>
+					<w:lsdException w:name="Medium List 2 Accent 4" w:uiPriority="66"/>
+					<w:lsdException w:name="Medium Grid 1 Accent 4" w:uiPriority="67"/>
+					<w:lsdException w:name="Medium Grid 2 Accent 4" w:uiPriority="68"/>
+					<w:lsdException w:name="Medium Grid 3 Accent 4" w:uiPriority="69"/>
+					<w:lsdException w:name="Dark List Accent 4" w:uiPriority="70"/>
+					<w:lsdException w:name="Colorful Shading Accent 4" w:uiPriority="71"/>
+					<w:lsdException w:name="Colorful List Accent 4" w:uiPriority="72"/>
+					<w:lsdException w:name="Colorful Grid Accent 4" w:uiPriority="73"/>
+					<w:lsdException w:name="Light Shading Accent 5" w:uiPriority="60"/>
+					<w:lsdException w:name="Light List Accent 5" w:uiPriority="61"/>
+					<w:lsdException w:name="Light Grid Accent 5" w:uiPriority="62"/>
+					<w:lsdException w:name="Medium Shading 1 Accent 5" w:uiPriority="63"/>
+					<w:lsdException w:name="Medium Shading 2 Accent 5" w:uiPriority="64"/>
+					<w:lsdException w:name="Medium List 1 Accent 5" w:uiPriority="65"/>
+					<w:lsdException w:name="Medium List 2 Accent 5" w:uiPriority="66"/>
+					<w:lsdException w:name="Medium Grid 1 Accent 5" w:uiPriority="67"/>
+					<w:lsdException w:name="Medium Grid 2 Accent 5" w:uiPriority="68"/>
+					<w:lsdException w:name="Medium Grid 3 Accent 5" w:uiPriority="69"/>
+					<w:lsdException w:name="Dark List Accent 5" w:uiPriority="70"/>
+					<w:lsdException w:name="Colorful Shading Accent 5" w:uiPriority="71"/>
+					<w:lsdException w:name="Colorful List Accent 5" w:uiPriority="72"/>
+					<w:lsdException w:name="Colorful Grid Accent 5" w:uiPriority="73"/>
+					<w:lsdException w:name="Light Shading Accent 6" w:uiPriority="60"/>
+					<w:lsdException w:name="Light List Accent 6" w:uiPriority="61"/>
+					<w:lsdException w:name="Light Grid Accent 6" w:uiPriority="62"/>
+					<w:lsdException w:name="Medium Shading 1 Accent 6" w:uiPriority="63"/>
+					<w:lsdException w:name="Medium Shading 2 Accent 6" w:uiPriority="64"/>
+					<w:lsdException w:name="Medium List 1 Accent 6" w:uiPriority="65"/>
+					<w:lsdException w:name="Medium List 2 Accent 6" w:uiPriority="66"/>
+					<w:lsdException w:name="Medium Grid 1 Accent 6" w:uiPriority="67"/>
+					<w:lsdException w:name="Medium Grid 2 Accent 6" w:uiPriority="68"/>
+					<w:lsdException w:name="Medium Grid 3 Accent 6" w:uiPriority="69"/>
+					<w:lsdException w:name="Dark List Accent 6" w:uiPriority="70"/>
+					<w:lsdException w:name="Colorful Shading Accent 6" w:uiPriority="71"/>
+					<w:lsdException w:name="Colorful List Accent 6" w:uiPriority="72"/>
+					<w:lsdException w:name="Colorful Grid Accent 6" w:uiPriority="73"/>
+					<w:lsdException w:name="Subtle Emphasis" w:qFormat="1" w:uiPriority="19"/>
+					<w:lsdException w:name="Intense Emphasis" w:qFormat="1" w:uiPriority="21"/>
+					<w:lsdException w:name="Subtle Reference" w:qFormat="1" w:uiPriority="31"/>
+					<w:lsdException w:name="Intense Reference" w:qFormat="1" w:uiPriority="32"/>
+					<w:lsdException w:name="Book Title" w:qFormat="1" w:uiPriority="33"/>
+					<w:lsdException w:name="Bibliography" w:semiHidden="1" w:uiPriority="37" w:unhideWhenUsed="1"/>
+					<w:lsdException w:name="TOC Heading" w:qFormat="1" w:semiHidden="1" w:uiPriority="39" w:unhideWhenUsed="1"/>
+				</w:latentStyles>
+				<w:style w:default="1" w:styleId="a" w:type="paragraph">
+					<w:name w:val="Normal"/>
+					<w:qFormat/>
+					<w:rsid w:val="00704D29"/>
+					<w:pPr>
+						<w:widowControl w:val="0"/>
+						<w:jc w:val="both"/>
+					</w:pPr>
+					<w:rPr>
+						<w:kern w:val="2"/>
+						<w:sz w:val="21"/>
+						<w:szCs w:val="24"/>
+					</w:rPr>
+				</w:style>
+				<w:style w:styleId="1" w:type="paragraph">
+					<w:name w:val="heading 1"/>
+					<w:basedOn w:val="a"/>
+					<w:next w:val="a"/>
+					<w:link w:val="1Char"/>
+					<w:qFormat/>
+					<w:rsid w:val="00B02463"/>
+					<w:pPr>
+						<w:keepNext/>
+						<w:widowControl/>
+						<w:ind w:firstLine="435"/>
+						<w:jc w:val="left"/>
+						<w:outlineLvl w:val="0"/>
+					</w:pPr>
+					<w:rPr>
+						<w:rFonts w:ascii="宋体" w:hAnsi="宋体"/>
+						<w:kern w:val="0"/>
+						<w:sz w:val="28"/>
+					</w:rPr>
+				</w:style>
+				<w:style w:styleId="2" w:type="paragraph">
+					<w:name w:val="heading 2"/>
+					<w:basedOn w:val="a"/>
+					<w:next w:val="a"/>
+					<w:link w:val="2Char"/>
+					<w:semiHidden/>
+					<w:unhideWhenUsed/>
+					<w:qFormat/>
+					<w:rsid w:val="00B02463"/>
+					<w:pPr>
+						<w:keepNext/>
+						<w:keepLines/>
+						<w:spacing w:after="260" w:before="260" w:line="416" w:lineRule="auto"/>
+						<w:outlineLvl w:val="1"/>
+					</w:pPr>
+					<w:rPr>
+						<w:rFonts w:ascii="Cambria" w:hAnsi="Cambria"/>
+						<w:b/>
+						<w:bCs/>
+						<w:sz w:val="32"/>
+						<w:szCs w:val="32"/>
+					</w:rPr>
+				</w:style>
+				<w:style w:default="1" w:styleId="a0" w:type="character">
+					<w:name w:val="Default Paragraph Font"/>
+					<w:semiHidden/>
+				</w:style>
+				<w:style w:default="1" w:styleId="a1" w:type="table">
+					<w:name w:val="Normal Table"/>
+					<w:semiHidden/>
+					<w:tblPr>
+						<w:tblInd w:type="dxa" w:w="0"/>
+						<w:tblCellMar>
+							<w:top w:type="dxa" w:w="0"/>
+							<w:left w:type="dxa" w:w="108"/>
+							<w:bottom w:type="dxa" w:w="0"/>
+							<w:right w:type="dxa" w:w="108"/>
+						</w:tblCellMar>
+					</w:tblPr>
+				</w:style>
+				<w:style w:default="1" w:styleId="a2" w:type="numbering">
+					<w:name w:val="No List"/>
+					<w:semiHidden/>
+				</w:style>
+				<w:style w:styleId="a3" w:type="paragraph">
+					<w:name w:val="footer"/>
+					<w:basedOn w:val="a"/>
+					<w:link w:val="Char"/>
+					<w:uiPriority w:val="99"/>
+					<w:rsid w:val="00704D29"/>
+					<w:pPr>
+						<w:tabs>
+							<w:tab w:pos="4153" w:val="center"/>
+							<w:tab w:pos="8306" w:val="right"/>
+						</w:tabs>
+						<w:snapToGrid w:val="0"/>
+						<w:jc w:val="left"/>
+					</w:pPr>
+					<w:rPr>
+						<w:sz w:val="18"/>
+						<w:szCs w:val="18"/>
+					</w:rPr>
+				</w:style>
+				<w:style w:styleId="a4" w:type="character">
+					<w:name w:val="page number"/>
+					<w:basedOn w:val="a0"/>
+					<w:rsid w:val="00704D29"/>
+				</w:style>
+				<w:style w:styleId="a5" w:type="paragraph">
+					<w:name w:val="header"/>
+					<w:basedOn w:val="a"/>
+					<w:link w:val="Char0"/>
+					<w:uiPriority w:val="99"/>
+					<w:rsid w:val="00595E9A"/>
+					<w:pPr>
+						<w:pBdr>
+							<w:bottom w:color="auto" w:space="1" w:sz="6" w:val="single"/>
+						</w:pBdr>
+						<w:tabs>
+							<w:tab w:pos="4153" w:val="center"/>
+							<w:tab w:pos="8306" w:val="right"/>
+						</w:tabs>
+						<w:snapToGrid w:val="0"/>
+						<w:jc w:val="center"/>
+					</w:pPr>
+					<w:rPr>
+						<w:sz w:val="18"/>
+						<w:szCs w:val="18"/>
+						<w:lang w:eastAsia="x-none" w:val="x-none"/>
+					</w:rPr>
+				</w:style>
+				<w:style w:customStyle="1" w:styleId="Char0" w:type="character">
+					<w:name w:val="页眉 Char"/>
+					<w:link w:val="a5"/>
+					<w:uiPriority w:val="99"/>
+					<w:rsid w:val="00595E9A"/>
+					<w:rPr>
+						<w:kern w:val="2"/>
+						<w:sz w:val="18"/>
+						<w:szCs w:val="18"/>
+					</w:rPr>
+				</w:style>
+				<w:style w:customStyle="1" w:styleId="1Char" w:type="character">
+					<w:name w:val="标题 1 Char"/>
+					<w:link w:val="1"/>
+					<w:rsid w:val="00B02463"/>
+					<w:rPr>
+						<w:rFonts w:ascii="宋体" w:hAnsi="宋体"/>
+						<w:sz w:val="28"/>
+						<w:szCs w:val="24"/>
+					</w:rPr>
+				</w:style>
+				<w:style w:customStyle="1" w:styleId="2Char" w:type="character">
+					<w:name w:val="标题 2 Char"/>
+					<w:link w:val="2"/>
+					<w:semiHidden/>
+					<w:rsid w:val="00B02463"/>
+					<w:rPr>
+						<w:rFonts w:ascii="Cambria" w:cs="Times New Roman" w:eastAsia="宋体" w:hAnsi="Cambria"/>
+						<w:b/>
+						<w:bCs/>
+						<w:kern w:val="2"/>
+						<w:sz w:val="32"/>
+						<w:szCs w:val="32"/>
+					</w:rPr>
+				</w:style>
+				<w:style w:customStyle="1" w:styleId="MTDisplayEquation" w:type="paragraph">
+					<w:name w:val="MTDisplayEquation"/>
+					<w:basedOn w:val="a"/>
+					<w:next w:val="a"/>
+					<w:rsid w:val="00B02463"/>
+					<w:pPr>
+						<w:widowControl/>
+						<w:tabs>
+							<w:tab w:pos="4540" w:val="center"/>
+							<w:tab w:pos="9080" w:val="right"/>
+						</w:tabs>
+						<w:jc w:val="left"/>
+					</w:pPr>
+					<w:rPr>
+						<w:rFonts w:ascii="宋体" w:hAnsi="宋体"/>
+						<w:kern w:val="0"/>
+						<w:sz w:val="28"/>
+					</w:rPr>
+				</w:style>
+				<w:style w:customStyle="1" w:styleId="Char" w:type="character">
+					<w:name w:val="页脚 Char"/>
+					<w:link w:val="a3"/>
+					<w:uiPriority w:val="99"/>
+					<w:rsid w:val="00B570FB"/>
+					<w:rPr>
+						<w:kern w:val="2"/>
+						<w:sz w:val="18"/>
+						<w:szCs w:val="18"/>
+					</w:rPr>
+				</w:style>
+				<w:style w:styleId="a6" w:type="paragraph">
+					<w:name w:val="Balloon Text"/>
+					<w:basedOn w:val="a"/>
+					<w:link w:val="Char1"/>
+					<w:rsid w:val="00B570FB"/>
+					<w:rPr>
+						<w:sz w:val="18"/>
+						<w:szCs w:val="18"/>
+					</w:rPr>
+				</w:style>
+				<w:style w:customStyle="1" w:styleId="Char1" w:type="character">
+					<w:name w:val="批注框文本 Char"/>
+					<w:link w:val="a6"/>
+					<w:rsid w:val="00B570FB"/>
+					<w:rPr>
+						<w:kern w:val="2"/>
+						<w:sz w:val="18"/>
+						<w:szCs w:val="18"/>
+					</w:rPr>
+				</w:style>
+				<w:style w:styleId="a7" w:type="paragraph">
+					<w:name w:val="No Spacing"/>
+					<w:link w:val="Char2"/>
+					<w:uiPriority w:val="1"/>
+					<w:qFormat/>
+					<w:rsid w:val="00B570FB"/>
+					<w:rPr>
+						<w:rFonts w:ascii="Calibri" w:hAnsi="Calibri"/>
+						<w:sz w:val="22"/>
+						<w:szCs w:val="22"/>
+					</w:rPr>
+				</w:style>
+				<w:style w:customStyle="1" w:styleId="Char2" w:type="character">
+					<w:name w:val="无间隔 Char"/>
+					<w:link w:val="a7"/>
+					<w:uiPriority w:val="1"/>
+					<w:rsid w:val="00B570FB"/>
+					<w:rPr>
+						<w:rFonts w:ascii="Calibri" w:hAnsi="Calibri"/>
+						<w:sz w:val="22"/>
+						<w:szCs w:val="22"/>
+						<w:lang w:bidi="ar-SA" w:eastAsia="zh-CN" w:val="en-US"/>
+					</w:rPr>
+				</w:style>
+				<w:style w:styleId="a8" w:type="paragraph">
+					<w:name w:val="List Paragraph"/>
+					<w:basedOn w:val="a"/>
+					<w:uiPriority w:val="34"/>
+					<w:qFormat/>
+					<w:rsid w:val="001A590C"/>
+					<w:pPr>
+						<w:ind w:firstLine="420" w:firstLineChars="200"/>
+					</w:pPr>
+				</w:style>
+				<w:style w:styleId="20" w:type="paragraph">
+					<w:name w:val="List 2"/>
+					<w:basedOn w:val="a"/>
+					<w:rsid w:val="00DE376D"/>
+					<w:pPr>
+						<w:ind w:hanging="200" w:left="100"/>
+					</w:pPr>
+					<w:rPr>
+						<w:szCs w:val="20"/>
+					</w:rPr>
+				</w:style>
+				<w:style w:styleId="a9" w:type="paragraph">
+					<w:name w:val="Document Map"/>
+					<w:basedOn w:val="a"/>
+					<w:link w:val="Char3"/>
+					<w:rsid w:val="001A2234"/>
+					<w:rPr>
+						<w:rFonts w:ascii="宋体"/>
+						<w:sz w:val="18"/>
+						<w:szCs w:val="18"/>
+					</w:rPr>
+				</w:style>
+				<w:style w:customStyle="1" w:styleId="Char3" w:type="character">
+					<w:name w:val="文档结构图 Char"/>
+					<w:link w:val="a9"/>
+					<w:rsid w:val="001A2234"/>
+					<w:rPr>
+						<w:rFonts w:ascii="宋体"/>
+						<w:kern w:val="2"/>
+						<w:sz w:val="18"/>
+						<w:szCs w:val="18"/>
+					</w:rPr>
+				</w:style>
+				<w:style w:styleId="aa" w:type="table">
+					<w:name w:val="Table Grid"/>
+					<w:basedOn w:val="a1"/>
+					<w:rsid w:val="001A2234"/>
+					<w:tblPr>
+						<w:tblInd w:type="dxa" w:w="0"/>
+						<w:tblBorders>
+							<w:top w:color="000000" w:space="0" w:sz="4" w:val="single"/>
+							<w:left w:color="000000" w:space="0" w:sz="4" w:val="single"/>
+							<w:bottom w:color="000000" w:space="0" w:sz="4" w:val="single"/>
+							<w:right w:color="000000" w:space="0" w:sz="4" w:val="single"/>
+							<w:insideH w:color="000000" w:space="0" w:sz="4" w:val="single"/>
+							<w:insideV w:color="000000" w:space="0" w:sz="4" w:val="single"/>
+						</w:tblBorders>
+						<w:tblCellMar>
+							<w:top w:type="dxa" w:w="0"/>
+							<w:left w:type="dxa" w:w="108"/>
+							<w:bottom w:type="dxa" w:w="0"/>
+							<w:right w:type="dxa" w:w="108"/>
+						</w:tblCellMar>
+					</w:tblPr>
+				</w:style>
+			</w:styles>
+		</pkg:xmlData>
+	</pkg:part>
+	<pkg:part pkg:contentType="application/vnd.openxmlformats-officedocument.wordprocessingml.numbering+xml" pkg:name="/word/numbering.xml">
+		<pkg:xmlData>
+			<w:numbering mc:Ignorable="w14 wp14" xmlns:m="http://schemas.openxmlformats.org/officeDocument/2006/math" xmlns:mc="http://schemas.openxmlformats.org/markup-compatibility/2006" xmlns:o="urn:schemas-microsoft-com:office:office" xmlns:r="http://schemas.openxmlformats.org/officeDocument/2006/relationships" xmlns:v="urn:schemas-microsoft-com:vml" xmlns:w="http://schemas.openxmlformats.org/wordprocessingml/2006/main" xmlns:w10="urn:schemas-microsoft-com:office:word" xmlns:w14="http://schemas.microsoft.com/office/word/2010/wordml" xmlns:wne="http://schemas.microsoft.com/office/word/2006/wordml" xmlns:wp="http://schemas.openxmlformats.org/drawingml/2006/wordprocessingDrawing" xmlns:wp14="http://schemas.microsoft.com/office/word/2010/wordprocessingDrawing" xmlns:wpc="http://schemas.microsoft.com/office/word/2010/wordprocessingCanvas" xmlns:wpg="http://schemas.microsoft.com/office/word/2010/wordprocessingGroup" xmlns:wpi="http://schemas.microsoft.com/office/word/2010/wordprocessingInk" xmlns:wps="http://schemas.microsoft.com/office/word/2010/wordprocessingShape">
+				<w:abstractNum w:abstractNumId="0">
+					<w:nsid w:val="01F00F88"/>
+					<w:multiLevelType w:val="hybridMultilevel"/>
+					<w:tmpl w:val="24FAE628"/>
+					<w:lvl w:ilvl="0" w:tplc="8C0626B4">
+						<w:start w:val="1"/>
+						<w:numFmt w:val="japaneseCounting"/>
+						<w:lvlText w:val="%1、"/>
+						<w:lvlJc w:val="left"/>
+						<w:pPr>
+							<w:ind w:hanging="456" w:left="598"/>
+						</w:pPr>
+						<w:rPr>
+							<w:rFonts w:hint="default"/>
+						</w:rPr>
+					</w:lvl>
+					<w:lvl w:ilvl="1" w:tentative="1" w:tplc="04090019">
+						<w:start w:val="1"/>
+						<w:numFmt w:val="lowerLetter"/>
+						<w:lvlText w:val="%2)"/>
+						<w:lvlJc w:val="left"/>
+						<w:pPr>
+							<w:ind w:hanging="420" w:left="840"/>
+						</w:pPr>
+					</w:lvl>
+					<w:lvl w:ilvl="2" w:tentative="1" w:tplc="0409001B">
+						<w:start w:val="1"/>
+						<w:numFmt w:val="lowerRoman"/>
+						<w:lvlText w:val="%3."/>
+						<w:lvlJc w:val="right"/>
+						<w:pPr>
+							<w:ind w:hanging="420" w:left="1260"/>
+						</w:pPr>
+					</w:lvl>
+					<w:lvl w:ilvl="3" w:tentative="1" w:tplc="0409000F">
+						<w:start w:val="1"/>
+						<w:numFmt w:val="decimal"/>
+						<w:lvlText w:val="%4."/>
+						<w:lvlJc w:val="left"/>
+						<w:pPr>
+							<w:ind w:hanging="420" w:left="1680"/>
+						</w:pPr>
+					</w:lvl>
+					<w:lvl w:ilvl="4" w:tentative="1" w:tplc="04090019">
+						<w:start w:val="1"/>
+						<w:numFmt w:val="lowerLetter"/>
+						<w:lvlText w:val="%5)"/>
+						<w:lvlJc w:val="left"/>
+						<w:pPr>
+							<w:ind w:hanging="420" w:left="2100"/>
+						</w:pPr>
+					</w:lvl>
+					<w:lvl w:ilvl="5" w:tentative="1" w:tplc="0409001B">
+						<w:start w:val="1"/>
+						<w:numFmt w:val="lowerRoman"/>
+						<w:lvlText w:val="%6."/>
+						<w:lvlJc w:val="right"/>
+						<w:pPr>
+							<w:ind w:hanging="420" w:left="2520"/>
+						</w:pPr>
+					</w:lvl>
+					<w:lvl w:ilvl="6" w:tentative="1" w:tplc="0409000F">
+						<w:start w:val="1"/>
+						<w:numFmt w:val="decimal"/>
+						<w:lvlText w:val="%7."/>
+						<w:lvlJc w:val="left"/>
+						<w:pPr>
+							<w:ind w:hanging="420" w:left="2940"/>
+						</w:pPr>
+					</w:lvl>
+					<w:lvl w:ilvl="7" w:tentative="1" w:tplc="04090019">
+						<w:start w:val="1"/>
+						<w:numFmt w:val="lowerLetter"/>
+						<w:lvlText w:val="%8)"/>
+						<w:lvlJc w:val="left"/>
+						<w:pPr>
+							<w:ind w:hanging="420" w:left="3360"/>
+						</w:pPr>
+					</w:lvl>
+					<w:lvl w:ilvl="8" w:tentative="1" w:tplc="0409001B">
+						<w:start w:val="1"/>
+						<w:numFmt w:val="lowerRoman"/>
+						<w:lvlText w:val="%9."/>
+						<w:lvlJc w:val="right"/>
+						<w:pPr>
+							<w:ind w:hanging="420" w:left="3780"/>
+						</w:pPr>
+					</w:lvl>
+				</w:abstractNum>
+				<w:abstractNum w:abstractNumId="1">
+					<w:nsid w:val="020A5E2D"/>
+					<w:multiLevelType w:val="hybridMultilevel"/>
+					<w:tmpl w:val="066CBE6A"/>
+					<w:lvl w:ilvl="0" w:tplc="2DAA272E">
+						<w:start w:val="1"/>
+						<w:numFmt w:val="japaneseCounting"/>
+						<w:lvlText w:val="%1、"/>
+						<w:lvlJc w:val="left"/>
+						<w:pPr>
+							<w:tabs>
+								<w:tab w:pos="420" w:val="num"/>
+							</w:tabs>
+							<w:ind w:hanging="420" w:left="420"/>
+						</w:pPr>
+					</w:lvl>
+					<w:lvl w:ilvl="1" w:tplc="82741D52">
+						<w:start w:val="1"/>
+						<w:numFmt w:val="decimal"/>
+						<w:lvlText w:val="%2、"/>
+						<w:lvlJc w:val="left"/>
+						<w:pPr>
+							<w:tabs>
+								<w:tab w:pos="780" w:val="num"/>
+							</w:tabs>
+							<w:ind w:hanging="360" w:left="780"/>
+						</w:pPr>
+					</w:lvl>
+					<w:lvl w:ilvl="2" w:tplc="0409001B">
+						<w:start w:val="1"/>
+						<w:numFmt w:val="decimal"/>
+						<w:lvlText w:val="%3."/>
+						<w:lvlJc w:val="left"/>
+						<w:pPr>
+							<w:tabs>
+								<w:tab w:pos="2160" w:val="num"/>
+							</w:tabs>
+							<w:ind w:hanging="360" w:left="2160"/>
+						</w:pPr>
+					</w:lvl>
+					<w:lvl w:ilvl="3" w:tplc="0409000F">
+						<w:start w:val="1"/>
+						<w:numFmt w:val="decimal"/>
+						<w:lvlText w:val="%4."/>
+						<w:lvlJc w:val="left"/>
+						<w:pPr>
+							<w:tabs>
+								<w:tab w:pos="2880" w:val="num"/>
+							</w:tabs>
+							<w:ind w:hanging="360" w:left="2880"/>
+						</w:pPr>
+					</w:lvl>
+					<w:lvl w:ilvl="4" w:tplc="04090019">
+						<w:start w:val="1"/>
+						<w:numFmt w:val="decimal"/>
+						<w:lvlText w:val="%5."/>
+						<w:lvlJc w:val="left"/>
+						<w:pPr>
+							<w:tabs>
+								<w:tab w:pos="3600" w:val="num"/>
+							</w:tabs>
+							<w:ind w:hanging="360" w:left="3600"/>
+						</w:pPr>
+					</w:lvl>
+					<w:lvl w:ilvl="5" w:tplc="0409001B">
+						<w:start w:val="1"/>
+						<w:numFmt w:val="decimal"/>
+						<w:lvlText w:val="%6."/>
+						<w:lvlJc w:val="left"/>
+						<w:pPr>
+							<w:tabs>
+								<w:tab w:pos="4320" w:val="num"/>
+							</w:tabs>
+							<w:ind w:hanging="360" w:left="4320"/>
+						</w:pPr>
+					</w:lvl>
+					<w:lvl w:ilvl="6" w:tplc="0409000F">
+						<w:start w:val="1"/>
+						<w:numFmt w:val="decimal"/>
+						<w:lvlText w:val="%7."/>
+						<w:lvlJc w:val="left"/>
+						<w:pPr>
+							<w:tabs>
+								<w:tab w:pos="5040" w:val="num"/>
+							</w:tabs>
+							<w:ind w:hanging="360" w:left="5040"/>
+						</w:pPr>
+					</w:lvl>
+					<w:lvl w:ilvl="7" w:tplc="04090019">
+						<w:start w:val="1"/>
+						<w:numFmt w:val="decimal"/>
+						<w:lvlText w:val="%8."/>
+						<w:lvlJc w:val="left"/>
+						<w:pPr>
+							<w:tabs>
+								<w:tab w:pos="5760" w:val="num"/>
+							</w:tabs>
+							<w:ind w:hanging="360" w:left="5760"/>
+						</w:pPr>
+					</w:lvl>
+					<w:lvl w:ilvl="8" w:tplc="0409001B">
+						<w:start w:val="1"/>
+						<w:numFmt w:val="decimal"/>
+						<w:lvlText w:val="%9."/>
+						<w:lvlJc w:val="left"/>
+						<w:pPr>
+							<w:tabs>
+								<w:tab w:pos="6480" w:val="num"/>
+							</w:tabs>
+							<w:ind w:hanging="360" w:left="6480"/>
+						</w:pPr>
+					</w:lvl>
+				</w:abstractNum>
+				<w:abstractNum w:abstractNumId="2">
+					<w:nsid w:val="08DF0269"/>
+					<w:multiLevelType w:val="hybridMultilevel"/>
+					<w:tmpl w:val="009CA026"/>
+					<w:lvl w:ilvl="0" w:tplc="47C0FD24">
+						<w:start w:val="1"/>
+						<w:numFmt w:val="decimal"/>
+						<w:lvlText w:val="%1、"/>
+						<w:lvlJc w:val="left"/>
+						<w:pPr>
+							<w:tabs>
+								<w:tab w:pos="720" w:val="num"/>
+							</w:tabs>
+							<w:ind w:hanging="360" w:left="720"/>
+						</w:pPr>
+						<w:rPr>
+							<w:rFonts w:hint="eastAsia"/>
+						</w:rPr>
+					</w:lvl>
+					<w:lvl w:ilvl="1" w:tentative="1" w:tplc="04090019">
+						<w:start w:val="1"/>
+						<w:numFmt w:val="lowerLetter"/>
+						<w:lvlText w:val="%2)"/>
+						<w:lvlJc w:val="left"/>
+						<w:pPr>
+							<w:tabs>
+								<w:tab w:pos="1200" w:val="num"/>
+							</w:tabs>
+							<w:ind w:hanging="420" w:left="1200"/>
+						</w:pPr>
+					</w:lvl>
+					<w:lvl w:ilvl="2" w:tentative="1" w:tplc="0409001B">
+						<w:start w:val="1"/>
+						<w:numFmt w:val="lowerRoman"/>
+						<w:lvlText w:val="%3."/>
+						<w:lvlJc w:val="right"/>
+						<w:pPr>
+							<w:tabs>
+								<w:tab w:pos="1620" w:val="num"/>
+							</w:tabs>
+							<w:ind w:hanging="420" w:left="1620"/>
+						</w:pPr>
+					</w:lvl>
+					<w:lvl w:ilvl="3" w:tentative="1" w:tplc="0409000F">
+						<w:start w:val="1"/>
+						<w:numFmt w:val="decimal"/>
+						<w:lvlText w:val="%4."/>
+						<w:lvlJc w:val="left"/>
+						<w:pPr>
+							<w:tabs>
+								<w:tab w:pos="2040" w:val="num"/>
+							</w:tabs>
+							<w:ind w:hanging="420" w:left="2040"/>
+						</w:pPr>
+					</w:lvl>
+					<w:lvl w:ilvl="4" w:tentative="1" w:tplc="04090019">
+						<w:start w:val="1"/>
+						<w:numFmt w:val="lowerLetter"/>
+						<w:lvlText w:val="%5)"/>
+						<w:lvlJc w:val="left"/>
+						<w:pPr>
+							<w:tabs>
+								<w:tab w:pos="2460" w:val="num"/>
+							</w:tabs>
+							<w:ind w:hanging="420" w:left="2460"/>
+						</w:pPr>
+					</w:lvl>
+					<w:lvl w:ilvl="5" w:tentative="1" w:tplc="0409001B">
+						<w:start w:val="1"/>
+						<w:numFmt w:val="lowerRoman"/>
+						<w:lvlText w:val="%6."/>
+						<w:lvlJc w:val="right"/>
+						<w:pPr>
+							<w:tabs>
+								<w:tab w:pos="2880" w:val="num"/>
+							</w:tabs>
+							<w:ind w:hanging="420" w:left="2880"/>
+						</w:pPr>
+					</w:lvl>
+					<w:lvl w:ilvl="6" w:tentative="1" w:tplc="0409000F">
+						<w:start w:val="1"/>
+						<w:numFmt w:val="decimal"/>
+						<w:lvlText w:val="%7."/>
+						<w:lvlJc w:val="left"/>
+						<w:pPr>
+							<w:tabs>
+								<w:tab w:pos="3300" w:val="num"/>
+							</w:tabs>
+							<w:ind w:hanging="420" w:left="3300"/>
+						</w:pPr>
+					</w:lvl>
+					<w:lvl w:ilvl="7" w:tentative="1" w:tplc="04090019">
+						<w:start w:val="1"/>
+						<w:numFmt w:val="lowerLetter"/>
+						<w:lvlText w:val="%8)"/>
+						<w:lvlJc w:val="left"/>
+						<w:pPr>
+							<w:tabs>
+								<w:tab w:pos="3720" w:val="num"/>
+							</w:tabs>
+							<w:ind w:hanging="420" w:left="3720"/>
+						</w:pPr>
+					</w:lvl>
+					<w:lvl w:ilvl="8" w:tentative="1" w:tplc="0409001B">
+						<w:start w:val="1"/>
+						<w:numFmt w:val="lowerRoman"/>
+						<w:lvlText w:val="%9."/>
+						<w:lvlJc w:val="right"/>
+						<w:pPr>
+							<w:tabs>
+								<w:tab w:pos="4140" w:val="num"/>
+							</w:tabs>
+							<w:ind w:hanging="420" w:left="4140"/>
+						</w:pPr>
+					</w:lvl>
+				</w:abstractNum>
+				<w:abstractNum w:abstractNumId="3">
+					<w:nsid w:val="0958232F"/>
+					<w:multiLevelType w:val="hybridMultilevel"/>
+					<w:tmpl w:val="30E88CE0"/>
+					<w:lvl w:ilvl="0" w:tplc="5C989B96">
+						<w:start w:val="1"/>
+						<w:numFmt w:val="japaneseCounting"/>
+						<w:lvlText w:val="%1、"/>
+						<w:lvlJc w:val="left"/>
+						<w:pPr>
+							<w:ind w:hanging="720" w:left="720"/>
+						</w:pPr>
+						<w:rPr>
+							<w:rFonts w:hint="default"/>
+						</w:rPr>
+					</w:lvl>
+					<w:lvl w:ilvl="1" w:tentative="1" w:tplc="04090019">
+						<w:start w:val="1"/>
+						<w:numFmt w:val="lowerLetter"/>
+						<w:lvlText w:val="%2)"/>
+						<w:lvlJc w:val="left"/>
+						<w:pPr>
+							<w:ind w:hanging="420" w:left="840"/>
+						</w:pPr>
+					</w:lvl>
+					<w:lvl w:ilvl="2" w:tentative="1" w:tplc="0409001B">
+						<w:start w:val="1"/>
+						<w:numFmt w:val="lowerRoman"/>
+						<w:lvlText w:val="%3."/>
+						<w:lvlJc w:val="right"/>
+						<w:pPr>
+							<w:ind w:hanging="420" w:left="1260"/>
+						</w:pPr>
+					</w:lvl>
+					<w:lvl w:ilvl="3" w:tentative="1" w:tplc="0409000F">
+						<w:start w:val="1"/>
+						<w:numFmt w:val="decimal"/>
+						<w:lvlText w:val="%4."/>
+						<w:lvlJc w:val="left"/>
+						<w:pPr>
+							<w:ind w:hanging="420" w:left="1680"/>
+						</w:pPr>
+					</w:lvl>
+					<w:lvl w:ilvl="4" w:tentative="1" w:tplc="04090019">
+						<w:start w:val="1"/>
+						<w:numFmt w:val="lowerLetter"/>
+						<w:lvlText w:val="%5)"/>
+						<w:lvlJc w:val="left"/>
+						<w:pPr>
+							<w:ind w:hanging="420" w:left="2100"/>
+						</w:pPr>
+					</w:lvl>
+					<w:lvl w:ilvl="5" w:tentative="1" w:tplc="0409001B">
+						<w:start w:val="1"/>
+						<w:numFmt w:val="lowerRoman"/>
+						<w:lvlText w:val="%6."/>
+						<w:lvlJc w:val="right"/>
+						<w:pPr>
+							<w:ind w:hanging="420" w:left="2520"/>
+						</w:pPr>
+					</w:lvl>
+					<w:lvl w:ilvl="6" w:tentative="1" w:tplc="0409000F">
+						<w:start w:val="1"/>
+						<w:numFmt w:val="decimal"/>
+						<w:lvlText w:val="%7."/>
+						<w:lvlJc w:val="left"/>
+						<w:pPr>
+							<w:ind w:hanging="420" w:left="2940"/>
+						</w:pPr>
+					</w:lvl>
+					<w:lvl w:ilvl="7" w:tentative="1" w:tplc="04090019">
+						<w:start w:val="1"/>
+						<w:numFmt w:val="lowerLetter"/>
+						<w:lvlText w:val="%8)"/>
+						<w:lvlJc w:val="left"/>
+						<w:pPr>
+							<w:ind w:hanging="420" w:left="3360"/>
+						</w:pPr>
+					</w:lvl>
+					<w:lvl w:ilvl="8" w:tentative="1" w:tplc="0409001B">
+						<w:start w:val="1"/>
+						<w:numFmt w:val="lowerRoman"/>
+						<w:lvlText w:val="%9."/>
+						<w:lvlJc w:val="right"/>
+						<w:pPr>
+							<w:ind w:hanging="420" w:left="3780"/>
+						</w:pPr>
+					</w:lvl>
+				</w:abstractNum>
+				<w:abstractNum w:abstractNumId="4">
+					<w:nsid w:val="124F2661"/>
+					<w:multiLevelType w:val="hybridMultilevel"/>
+					<w:tmpl w:val="311EC340"/>
+					<w:lvl w:ilvl="0" w:tplc="7C9A8072">
+						<w:start w:val="1"/>
+						<w:numFmt w:val="decimal"/>
+						<w:lvlText w:val="%1、"/>
+						<w:lvlJc w:val="left"/>
+						<w:pPr>
+							<w:ind w:hanging="720" w:left="720"/>
+						</w:pPr>
+						<w:rPr>
+							<w:rFonts w:hint="default"/>
+							<w:color w:val="auto"/>
+						</w:rPr>
+					</w:lvl>
+					<w:lvl w:ilvl="1" w:tentative="1" w:tplc="04090019">
+						<w:start w:val="1"/>
+						<w:numFmt w:val="lowerLetter"/>
+						<w:lvlText w:val="%2)"/>
+						<w:lvlJc w:val="left"/>
+						<w:pPr>
+							<w:ind w:hanging="420" w:left="840"/>
+						</w:pPr>
+					</w:lvl>
+					<w:lvl w:ilvl="2" w:tentative="1" w:tplc="0409001B">
+						<w:start w:val="1"/>
+						<w:numFmt w:val="lowerRoman"/>
+						<w:lvlText w:val="%3."/>
+						<w:lvlJc w:val="right"/>
+						<w:pPr>
+							<w:ind w:hanging="420" w:left="1260"/>
+						</w:pPr>
+					</w:lvl>
+					<w:lvl w:ilvl="3" w:tentative="1" w:tplc="0409000F">
+						<w:start w:val="1"/>
+						<w:numFmt w:val="decimal"/>
+						<w:lvlText w:val="%4."/>
+						<w:lvlJc w:val="left"/>
+						<w:pPr>
+							<w:ind w:hanging="420" w:left="1680"/>
+						</w:pPr>
+					</w:lvl>
+					<w:lvl w:ilvl="4" w:tentative="1" w:tplc="04090019">
+						<w:start w:val="1"/>
+						<w:numFmt w:val="lowerLetter"/>
+						<w:lvlText w:val="%5)"/>
+						<w:lvlJc w:val="left"/>
+						<w:pPr>
+							<w:ind w:hanging="420" w:left="2100"/>
+						</w:pPr>
+					</w:lvl>
+					<w:lvl w:ilvl="5" w:tentative="1" w:tplc="0409001B">
+						<w:start w:val="1"/>
+						<w:numFmt w:val="lowerRoman"/>
+						<w:lvlText w:val="%6."/>
+						<w:lvlJc w:val="right"/>
+						<w:pPr>
+							<w:ind w:hanging="420" w:left="2520"/>
+						</w:pPr>
+					</w:lvl>
+					<w:lvl w:ilvl="6" w:tentative="1" w:tplc="0409000F">
+						<w:start w:val="1"/>
+						<w:numFmt w:val="decimal"/>
+						<w:lvlText w:val="%7."/>
+						<w:lvlJc w:val="left"/>
+						<w:pPr>
+							<w:ind w:hanging="420" w:left="2940"/>
+						</w:pPr>
+					</w:lvl>
+					<w:lvl w:ilvl="7" w:tentative="1" w:tplc="04090019">
+						<w:start w:val="1"/>
+						<w:numFmt w:val="lowerLetter"/>
+						<w:lvlText w:val="%8)"/>
+						<w:lvlJc w:val="left"/>
+						<w:pPr>
+							<w:ind w:hanging="420" w:left="3360"/>
+						</w:pPr>
+					</w:lvl>
+					<w:lvl w:ilvl="8" w:tentative="1" w:tplc="0409001B">
+						<w:start w:val="1"/>
+						<w:numFmt w:val="lowerRoman"/>
+						<w:lvlText w:val="%9."/>
+						<w:lvlJc w:val="right"/>
+						<w:pPr>
+							<w:ind w:hanging="420" w:left="3780"/>
+						</w:pPr>
+					</w:lvl>
+				</w:abstractNum>
+				<w:abstractNum w:abstractNumId="5">
+					<w:nsid w:val="136B1AD3"/>
+					<w:multiLevelType w:val="hybridMultilevel"/>
+					<w:tmpl w:val="BDF04116"/>
+					<w:lvl w:ilvl="0" w:tplc="CBA85F62">
+						<w:start w:val="1"/>
+						<w:numFmt w:val="decimal"/>
+						<w:lvlText w:val="%1、"/>
+						<w:lvlJc w:val="left"/>
+						<w:pPr>
+							<w:ind w:hanging="360" w:left="482"/>
+						</w:pPr>
+						<w:rPr>
+							<w:rFonts w:hint="default"/>
+						</w:rPr>
+					</w:lvl>
+					<w:lvl w:ilvl="1" w:tentative="1" w:tplc="04090019">
+						<w:start w:val="1"/>
+						<w:numFmt w:val="lowerLetter"/>
+						<w:lvlText w:val="%2)"/>
+						<w:lvlJc w:val="left"/>
+						<w:pPr>
+							<w:ind w:hanging="420" w:left="962"/>
+						</w:pPr>
+					</w:lvl>
+					<w:lvl w:ilvl="2" w:tentative="1" w:tplc="0409001B">
+						<w:start w:val="1"/>
+						<w:numFmt w:val="lowerRoman"/>
+						<w:lvlText w:val="%3."/>
+						<w:lvlJc w:val="right"/>
+						<w:pPr>
+							<w:ind w:hanging="420" w:left="1382"/>
+						</w:pPr>
+					</w:lvl>
+					<w:lvl w:ilvl="3" w:tentative="1" w:tplc="0409000F">
+						<w:start w:val="1"/>
+						<w:numFmt w:val="decimal"/>
+						<w:lvlText w:val="%4."/>
+						<w:lvlJc w:val="left"/>
+						<w:pPr>
+							<w:ind w:hanging="420" w:left="1802"/>
+						</w:pPr>
+					</w:lvl>
+					<w:lvl w:ilvl="4" w:tentative="1" w:tplc="04090019">
+						<w:start w:val="1"/>
+						<w:numFmt w:val="lowerLetter"/>
+						<w:lvlText w:val="%5)"/>
+						<w:lvlJc w:val="left"/>
+						<w:pPr>
+							<w:ind w:hanging="420" w:left="2222"/>
+						</w:pPr>
+					</w:lvl>
+					<w:lvl w:ilvl="5" w:tentative="1" w:tplc="0409001B">
+						<w:start w:val="1"/>
+						<w:numFmt w:val="lowerRoman"/>
+						<w:lvlText w:val="%6."/>
+						<w:lvlJc w:val="right"/>
+						<w:pPr>
+							<w:ind w:hanging="420" w:left="2642"/>
+						</w:pPr>
+					</w:lvl>
+					<w:lvl w:ilvl="6" w:tentative="1" w:tplc="0409000F">
+						<w:start w:val="1"/>
+						<w:numFmt w:val="decimal"/>
+						<w:lvlText w:val="%7."/>
+						<w:lvlJc w:val="left"/>
+						<w:pPr>
+							<w:ind w:hanging="420" w:left="3062"/>
+						</w:pPr>
+					</w:lvl>
+					<w:lvl w:ilvl="7" w:tentative="1" w:tplc="04090019">
+						<w:start w:val="1"/>
+						<w:numFmt w:val="lowerLetter"/>
+						<w:lvlText w:val="%8)"/>
+						<w:lvlJc w:val="left"/>
+						<w:pPr>
+							<w:ind w:hanging="420" w:left="3482"/>
+						</w:pPr>
+					</w:lvl>
+					<w:lvl w:ilvl="8" w:tentative="1" w:tplc="0409001B">
+						<w:start w:val="1"/>
+						<w:numFmt w:val="lowerRoman"/>
+						<w:lvlText w:val="%9."/>
+						<w:lvlJc w:val="right"/>
+						<w:pPr>
+							<w:ind w:hanging="420" w:left="3902"/>
+						</w:pPr>
+					</w:lvl>
+				</w:abstractNum>
+				<w:abstractNum w:abstractNumId="6">
+					<w:nsid w:val="14A814D2"/>
+					<w:multiLevelType w:val="hybridMultilevel"/>
+					<w:tmpl w:val="603AF3EE"/>
+					<w:lvl w:ilvl="0" w:tplc="C39CEFC0">
+						<w:start w:val="2"/>
+						<w:numFmt w:val="japaneseCounting"/>
+						<w:lvlText w:val="%1、"/>
+						<w:lvlJc w:val="left"/>
+						<w:pPr>
+							<w:ind w:hanging="420" w:left="1018"/>
+						</w:pPr>
+						<w:rPr>
+							<w:rFonts w:hint="default"/>
+						</w:rPr>
+					</w:lvl>
+					<w:lvl w:ilvl="1" w:tentative="1" w:tplc="04090019">
+						<w:start w:val="1"/>
+						<w:numFmt w:val="lowerLetter"/>
+						<w:lvlText w:val="%2)"/>
+						<w:lvlJc w:val="left"/>
+						<w:pPr>
+							<w:ind w:hanging="420" w:left="1438"/>
+						</w:pPr>
+					</w:lvl>
+					<w:lvl w:ilvl="2" w:tentative="1" w:tplc="0409001B">
+						<w:start w:val="1"/>
+						<w:numFmt w:val="lowerRoman"/>
+						<w:lvlText w:val="%3."/>
+						<w:lvlJc w:val="right"/>
+						<w:pPr>
+							<w:ind w:hanging="420" w:left="1858"/>
+						</w:pPr>
+					</w:lvl>
+					<w:lvl w:ilvl="3" w:tentative="1" w:tplc="0409000F">
+						<w:start w:val="1"/>
+						<w:numFmt w:val="decimal"/>
+						<w:lvlText w:val="%4."/>
+						<w:lvlJc w:val="left"/>
+						<w:pPr>
+							<w:ind w:hanging="420" w:left="2278"/>
+						</w:pPr>
+					</w:lvl>
+					<w:lvl w:ilvl="4" w:tentative="1" w:tplc="04090019">
+						<w:start w:val="1"/>
+						<w:numFmt w:val="lowerLetter"/>
+						<w:lvlText w:val="%5)"/>
+						<w:lvlJc w:val="left"/>
+						<w:pPr>
+							<w:ind w:hanging="420" w:left="2698"/>
+						</w:pPr>
+					</w:lvl>
+					<w:lvl w:ilvl="5" w:tentative="1" w:tplc="0409001B">
+						<w:start w:val="1"/>
+						<w:numFmt w:val="lowerRoman"/>
+						<w:lvlText w:val="%6."/>
+						<w:lvlJc w:val="right"/>
+						<w:pPr>
+							<w:ind w:hanging="420" w:left="3118"/>
+						</w:pPr>
+					</w:lvl>
+					<w:lvl w:ilvl="6" w:tentative="1" w:tplc="0409000F">
+						<w:start w:val="1"/>
+						<w:numFmt w:val="decimal"/>
+						<w:lvlText w:val="%7."/>
+						<w:lvlJc w:val="left"/>
+						<w:pPr>
+							<w:ind w:hanging="420" w:left="3538"/>
+						</w:pPr>
+					</w:lvl>
+					<w:lvl w:ilvl="7" w:tentative="1" w:tplc="04090019">
+						<w:start w:val="1"/>
+						<w:numFmt w:val="lowerLetter"/>
+						<w:lvlText w:val="%8)"/>
+						<w:lvlJc w:val="left"/>
+						<w:pPr>
+							<w:ind w:hanging="420" w:left="3958"/>
+						</w:pPr>
+					</w:lvl>
+					<w:lvl w:ilvl="8" w:tentative="1" w:tplc="0409001B">
+						<w:start w:val="1"/>
+						<w:numFmt w:val="lowerRoman"/>
+						<w:lvlText w:val="%9."/>
+						<w:lvlJc w:val="right"/>
+						<w:pPr>
+							<w:ind w:hanging="420" w:left="4378"/>
+						</w:pPr>
+					</w:lvl>
+				</w:abstractNum>
+				<w:abstractNum w:abstractNumId="7">
+					<w:nsid w:val="28417ACF"/>
+					<w:multiLevelType w:val="hybridMultilevel"/>
+					<w:tmpl w:val="C8BC8F82"/>
+					<w:lvl w:ilvl="0" w:tplc="34922146">
+						<w:start w:val="1"/>
+						<w:numFmt w:val="japaneseCounting"/>
+						<w:lvlText w:val="(%1)"/>
+						<w:lvlJc w:val="left"/>
+						<w:pPr>
+							<w:tabs>
+								<w:tab w:pos="720" w:val="num"/>
+							</w:tabs>
+							<w:ind w:hanging="720" w:left="720"/>
+						</w:pPr>
+					</w:lvl>
+					<w:lvl w:ilvl="1" w:tplc="04090019">
+						<w:start w:val="1"/>
+						<w:numFmt w:val="decimal"/>
+						<w:lvlText w:val="%2."/>
+						<w:lvlJc w:val="left"/>
+						<w:pPr>
+							<w:tabs>
+								<w:tab w:pos="1248" w:val="num"/>
+							</w:tabs>
+							<w:ind w:hanging="360" w:left="1248"/>
+						</w:pPr>
+					</w:lvl>
+					<w:lvl w:ilvl="2" w:tplc="0409001B">
+						<w:start w:val="1"/>
+						<w:numFmt w:val="decimal"/>
+						<w:lvlText w:val="%3."/>
+						<w:lvlJc w:val="left"/>
+						<w:pPr>
+							<w:tabs>
+								<w:tab w:pos="1968" w:val="num"/>
+							</w:tabs>
+							<w:ind w:hanging="360" w:left="1968"/>
+						</w:pPr>
+					</w:lvl>
+					<w:lvl w:ilvl="3" w:tplc="0409000F">
+						<w:start w:val="1"/>
+						<w:numFmt w:val="decimal"/>
+						<w:lvlText w:val="%4."/>
+						<w:lvlJc w:val="left"/>
+						<w:pPr>
+							<w:tabs>
+								<w:tab w:pos="2688" w:val="num"/>
+							</w:tabs>
+							<w:ind w:hanging="360" w:left="2688"/>
+						</w:pPr>
+					</w:lvl>
+					<w:lvl w:ilvl="4" w:tplc="04090019">
+						<w:start w:val="1"/>
+						<w:numFmt w:val="decimal"/>
+						<w:lvlText w:val="%5."/>
+						<w:lvlJc w:val="left"/>
+						<w:pPr>
+							<w:tabs>
+								<w:tab w:pos="3408" w:val="num"/>
+							</w:tabs>
+							<w:ind w:hanging="360" w:left="3408"/>
+						</w:pPr>
+					</w:lvl>
+					<w:lvl w:ilvl="5" w:tplc="0409001B">
+						<w:start w:val="1"/>
+						<w:numFmt w:val="decimal"/>
+						<w:lvlText w:val="%6."/>
+						<w:lvlJc w:val="left"/>
+						<w:pPr>
+							<w:tabs>
+								<w:tab w:pos="4128" w:val="num"/>
+							</w:tabs>
+							<w:ind w:hanging="360" w:left="4128"/>
+						</w:pPr>
+					</w:lvl>
+					<w:lvl w:ilvl="6" w:tplc="0409000F">
+						<w:start w:val="1"/>
+						<w:numFmt w:val="decimal"/>
+						<w:lvlText w:val="%7."/>
+						<w:lvlJc w:val="left"/>
+						<w:pPr>
+							<w:tabs>
+								<w:tab w:pos="4848" w:val="num"/>
+							</w:tabs>
+							<w:ind w:hanging="360" w:left="4848"/>
+						</w:pPr>
+					</w:lvl>
+					<w:lvl w:ilvl="7" w:tplc="04090019">
+						<w:start w:val="1"/>
+						<w:numFmt w:val="decimal"/>
+						<w:lvlText w:val="%8."/>
+						<w:lvlJc w:val="left"/>
+						<w:pPr>
+							<w:tabs>
+								<w:tab w:pos="5568" w:val="num"/>
+							</w:tabs>
+							<w:ind w:hanging="360" w:left="5568"/>
+						</w:pPr>
+					</w:lvl>
+					<w:lvl w:ilvl="8" w:tplc="0409001B">
+						<w:start w:val="1"/>
+						<w:numFmt w:val="decimal"/>
+						<w:lvlText w:val="%9."/>
+						<w:lvlJc w:val="left"/>
+						<w:pPr>
+							<w:tabs>
+								<w:tab w:pos="6288" w:val="num"/>
+							</w:tabs>
+							<w:ind w:hanging="360" w:left="6288"/>
+						</w:pPr>
+					</w:lvl>
+				</w:abstractNum>
+				<w:abstractNum w:abstractNumId="8">
+					<w:nsid w:val="3B7F32BF"/>
+					<w:multiLevelType w:val="hybridMultilevel"/>
+					<w:tmpl w:val="AF12CBBE"/>
+					<w:lvl w:ilvl="0" w:tplc="86363766">
+						<w:start w:val="2"/>
+						<w:numFmt w:val="japaneseCounting"/>
+						<w:lvlText w:val="%1、"/>
+						<w:lvlJc w:val="left"/>
+						<w:pPr>
+							<w:ind w:hanging="420" w:left="1018"/>
+						</w:pPr>
+						<w:rPr>
+							<w:rFonts w:hint="default"/>
+						</w:rPr>
+					</w:lvl>
+					<w:lvl w:ilvl="1" w:tentative="1" w:tplc="04090019">
+						<w:start w:val="1"/>
+						<w:numFmt w:val="lowerLetter"/>
+						<w:lvlText w:val="%2)"/>
+						<w:lvlJc w:val="left"/>
+						<w:pPr>
+							<w:ind w:hanging="420" w:left="1438"/>
+						</w:pPr>
+					</w:lvl>
+					<w:lvl w:ilvl="2" w:tentative="1" w:tplc="0409001B">
+						<w:start w:val="1"/>
+						<w:numFmt w:val="lowerRoman"/>
+						<w:lvlText w:val="%3."/>
+						<w:lvlJc w:val="right"/>
+						<w:pPr>
+							<w:ind w:hanging="420" w:left="1858"/>
+						</w:pPr>
+					</w:lvl>
+					<w:lvl w:ilvl="3" w:tentative="1" w:tplc="0409000F">
+						<w:start w:val="1"/>
+						<w:numFmt w:val="decimal"/>
+						<w:lvlText w:val="%4."/>
+						<w:lvlJc w:val="left"/>
+						<w:pPr>
+							<w:ind w:hanging="420" w:left="2278"/>
+						</w:pPr>
+					</w:lvl>
+					<w:lvl w:ilvl="4" w:tentative="1" w:tplc="04090019">
+						<w:start w:val="1"/>
+						<w:numFmt w:val="lowerLetter"/>
+						<w:lvlText w:val="%5)"/>
+						<w:lvlJc w:val="left"/>
+						<w:pPr>
+							<w:ind w:hanging="420" w:left="2698"/>
+						</w:pPr>
+					</w:lvl>
+					<w:lvl w:ilvl="5" w:tentative="1" w:tplc="0409001B">
+						<w:start w:val="1"/>
+						<w:numFmt w:val="lowerRoman"/>
+						<w:lvlText w:val="%6."/>
+						<w:lvlJc w:val="right"/>
+						<w:pPr>
+							<w:ind w:hanging="420" w:left="3118"/>
+						</w:pPr>
+					</w:lvl>
+					<w:lvl w:ilvl="6" w:tentative="1" w:tplc="0409000F">
+						<w:start w:val="1"/>
+						<w:numFmt w:val="decimal"/>
+						<w:lvlText w:val="%7."/>
+						<w:lvlJc w:val="left"/>
+						<w:pPr>
+							<w:ind w:hanging="420" w:left="3538"/>
+						</w:pPr>
+					</w:lvl>
+					<w:lvl w:ilvl="7" w:tentative="1" w:tplc="04090019">
+						<w:start w:val="1"/>
+						<w:numFmt w:val="lowerLetter"/>
+						<w:lvlText w:val="%8)"/>
+						<w:lvlJc w:val="left"/>
+						<w:pPr>
+							<w:ind w:hanging="420" w:left="3958"/>
+						</w:pPr>
+					</w:lvl>
+					<w:lvl w:ilvl="8" w:tentative="1" w:tplc="0409001B">
+						<w:start w:val="1"/>
+						<w:numFmt w:val="lowerRoman"/>
+						<w:lvlText w:val="%9."/>
+						<w:lvlJc w:val="right"/>
+						<w:pPr>
+							<w:ind w:hanging="420" w:left="4378"/>
+						</w:pPr>
+					</w:lvl>
+				</w:abstractNum>
+				<w:abstractNum w:abstractNumId="9">
+					<w:nsid w:val="3E4A52E5"/>
+					<w:multiLevelType w:val="hybridMultilevel"/>
+					<w:tmpl w:val="48684CE4"/>
+					<w:lvl w:ilvl="0" w:tplc="1BAE2AB8">
+						<w:start w:val="1"/>
+						<w:numFmt w:val="upperLetter"/>
+						<w:lvlText w:val="%1."/>
+						<w:lvlJc w:val="left"/>
+						<w:pPr>
+							<w:ind w:hanging="360" w:left="780"/>
+						</w:pPr>
+						<w:rPr>
+							<w:rFonts w:hint="default"/>
+						</w:rPr>
+					</w:lvl>
+					<w:lvl w:ilvl="1" w:tentative="1" w:tplc="04090019">
+						<w:start w:val="1"/>
+						<w:numFmt w:val="lowerLetter"/>
+						<w:lvlText w:val="%2)"/>
+						<w:lvlJc w:val="left"/>
+						<w:pPr>
+							<w:ind w:hanging="420" w:left="1260"/>
+						</w:pPr>
+					</w:lvl>
+					<w:lvl w:ilvl="2" w:tentative="1" w:tplc="0409001B">
+						<w:start w:val="1"/>
+						<w:numFmt w:val="lowerRoman"/>
+						<w:lvlText w:val="%3."/>
+						<w:lvlJc w:val="right"/>
+						<w:pPr>
+							<w:ind w:hanging="420" w:left="1680"/>
+						</w:pPr>
+					</w:lvl>
+					<w:lvl w:ilvl="3" w:tentative="1" w:tplc="0409000F">
+						<w:start w:val="1"/>
+						<w:numFmt w:val="decimal"/>
+						<w:lvlText w:val="%4."/>
+						<w:lvlJc w:val="left"/>
+						<w:pPr>
+							<w:ind w:hanging="420" w:left="2100"/>
+						</w:pPr>
+					</w:lvl>
+					<w:lvl w:ilvl="4" w:tentative="1" w:tplc="04090019">
+						<w:start w:val="1"/>
+						<w:numFmt w:val="lowerLetter"/>
+						<w:lvlText w:val="%5)"/>
+						<w:lvlJc w:val="left"/>
+						<w:pPr>
+							<w:ind w:hanging="420" w:left="2520"/>
+						</w:pPr>
+					</w:lvl>
+					<w:lvl w:ilvl="5" w:tentative="1" w:tplc="0409001B">
+						<w:start w:val="1"/>
+						<w:numFmt w:val="lowerRoman"/>
+						<w:lvlText w:val="%6."/>
+						<w:lvlJc w:val="right"/>
+						<w:pPr>
+							<w:ind w:hanging="420" w:left="2940"/>
+						</w:pPr>
+					</w:lvl>
+					<w:lvl w:ilvl="6" w:tentative="1" w:tplc="0409000F">
+						<w:start w:val="1"/>
+						<w:numFmt w:val="decimal"/>
+						<w:lvlText w:val="%7."/>
+						<w:lvlJc w:val="left"/>
+						<w:pPr>
+							<w:ind w:hanging="420" w:left="3360"/>
+						</w:pPr>
+					</w:lvl>
+					<w:lvl w:ilvl="7" w:tentative="1" w:tplc="04090019">
+						<w:start w:val="1"/>
+						<w:numFmt w:val="lowerLetter"/>
+						<w:lvlText w:val="%8)"/>
+						<w:lvlJc w:val="left"/>
+						<w:pPr>
+							<w:ind w:hanging="420" w:left="3780"/>
+						</w:pPr>
+					</w:lvl>
+					<w:lvl w:ilvl="8" w:tentative="1" w:tplc="0409001B">
+						<w:start w:val="1"/>
+						<w:numFmt w:val="lowerRoman"/>
+						<w:lvlText w:val="%9."/>
+						<w:lvlJc w:val="right"/>
+						<w:pPr>
+							<w:ind w:hanging="420" w:left="4200"/>
+						</w:pPr>
+					</w:lvl>
+				</w:abstractNum>
+				<w:abstractNum w:abstractNumId="10">
+					<w:nsid w:val="41ED52A7"/>
+					<w:multiLevelType w:val="hybridMultilevel"/>
+					<w:tmpl w:val="3F480736"/>
+					<w:lvl w:ilvl="0" w:tplc="F9F83B52">
+						<w:start w:val="3"/>
+						<w:numFmt w:val="japaneseCounting"/>
+						<w:lvlText w:val="%1、"/>
+						<w:lvlJc w:val="left"/>
+						<w:pPr>
+							<w:ind w:hanging="432" w:left="1486"/>
+						</w:pPr>
+						<w:rPr>
+							<w:rFonts w:hint="default"/>
+						</w:rPr>
+					</w:lvl>
+					<w:lvl w:ilvl="1" w:tentative="1" w:tplc="04090019">
+						<w:start w:val="1"/>
+						<w:numFmt w:val="lowerLetter"/>
+						<w:lvlText w:val="%2)"/>
+						<w:lvlJc w:val="left"/>
+						<w:pPr>
+							<w:ind w:hanging="420" w:left="1894"/>
+						</w:pPr>
+					</w:lvl>
+					<w:lvl w:ilvl="2" w:tentative="1" w:tplc="0409001B">
+						<w:start w:val="1"/>
+						<w:numFmt w:val="lowerRoman"/>
+						<w:lvlText w:val="%3."/>
+						<w:lvlJc w:val="right"/>
+						<w:pPr>
+							<w:ind w:hanging="420" w:left="2314"/>
+						</w:pPr>
+					</w:lvl>
+					<w:lvl w:ilvl="3" w:tentative="1" w:tplc="0409000F">
+						<w:start w:val="1"/>
+						<w:numFmt w:val="decimal"/>
+						<w:lvlText w:val="%4."/>
+						<w:lvlJc w:val="left"/>
+						<w:pPr>
+							<w:ind w:hanging="420" w:left="2734"/>
+						</w:pPr>
+					</w:lvl>
+					<w:lvl w:ilvl="4" w:tentative="1" w:tplc="04090019">
+						<w:start w:val="1"/>
+						<w:numFmt w:val="lowerLetter"/>
+						<w:lvlText w:val="%5)"/>
+						<w:lvlJc w:val="left"/>
+						<w:pPr>
+							<w:ind w:hanging="420" w:left="3154"/>
+						</w:pPr>
+					</w:lvl>
+					<w:lvl w:ilvl="5" w:tentative="1" w:tplc="0409001B">
+						<w:start w:val="1"/>
+						<w:numFmt w:val="lowerRoman"/>
+						<w:lvlText w:val="%6."/>
+						<w:lvlJc w:val="right"/>
+						<w:pPr>
+							<w:ind w:hanging="420" w:left="3574"/>
+						</w:pPr>
+					</w:lvl>
+					<w:lvl w:ilvl="6" w:tentative="1" w:tplc="0409000F">
+						<w:start w:val="1"/>
+						<w:numFmt w:val="decimal"/>
+						<w:lvlText w:val="%7."/>
+						<w:lvlJc w:val="left"/>
+						<w:pPr>
+							<w:ind w:hanging="420" w:left="3994"/>
+						</w:pPr>
+					</w:lvl>
+					<w:lvl w:ilvl="7" w:tentative="1" w:tplc="04090019">
+						<w:start w:val="1"/>
+						<w:numFmt w:val="lowerLetter"/>
+						<w:lvlText w:val="%8)"/>
+						<w:lvlJc w:val="left"/>
+						<w:pPr>
+							<w:ind w:hanging="420" w:left="4414"/>
+						</w:pPr>
+					</w:lvl>
+					<w:lvl w:ilvl="8" w:tentative="1" w:tplc="0409001B">
+						<w:start w:val="1"/>
+						<w:numFmt w:val="lowerRoman"/>
+						<w:lvlText w:val="%9."/>
+						<w:lvlJc w:val="right"/>
+						<w:pPr>
+							<w:ind w:hanging="420" w:left="4834"/>
+						</w:pPr>
+					</w:lvl>
+				</w:abstractNum>
+				<w:abstractNum w:abstractNumId="11">
+					<w:nsid w:val="47445126"/>
+					<w:multiLevelType w:val="hybridMultilevel"/>
+					<w:tmpl w:val="A0B2366C"/>
+					<w:lvl w:ilvl="0" w:tplc="5406C7EA">
+						<w:start w:val="1"/>
+						<w:numFmt w:val="japaneseCounting"/>
+						<w:lvlText w:val="%1、"/>
+						<w:lvlJc w:val="left"/>
+						<w:pPr>
+							<w:ind w:hanging="456" w:left="456"/>
+						</w:pPr>
+						<w:rPr>
+							<w:rFonts w:hint="default"/>
+							<w:lang w:val="en-US"/>
+						</w:rPr>
+					</w:lvl>
+					<w:lvl w:ilvl="1" w:tentative="1" w:tplc="04090019">
+						<w:start w:val="1"/>
+						<w:numFmt w:val="lowerLetter"/>
+						<w:lvlText w:val="%2)"/>
+						<w:lvlJc w:val="left"/>
+						<w:pPr>
+							<w:ind w:hanging="420" w:left="840"/>
+						</w:pPr>
+					</w:lvl>
+					<w:lvl w:ilvl="2" w:tentative="1" w:tplc="0409001B">
+						<w:start w:val="1"/>
+						<w:numFmt w:val="lowerRoman"/>
+						<w:lvlText w:val="%3."/>
+						<w:lvlJc w:val="right"/>
+						<w:pPr>
+							<w:ind w:hanging="420" w:left="1260"/>
+						</w:pPr>
+					</w:lvl>
+					<w:lvl w:ilvl="3" w:tentative="1" w:tplc="0409000F">
+						<w:start w:val="1"/>
+						<w:numFmt w:val="decimal"/>
+						<w:lvlText w:val="%4."/>
+						<w:lvlJc w:val="left"/>
+						<w:pPr>
+							<w:ind w:hanging="420" w:left="1680"/>
+						</w:pPr>
+					</w:lvl>
+					<w:lvl w:ilvl="4" w:tentative="1" w:tplc="04090019">
+						<w:start w:val="1"/>
+						<w:numFmt w:val="lowerLetter"/>
+						<w:lvlText w:val="%5)"/>
+						<w:lvlJc w:val="left"/>
+						<w:pPr>
+							<w:ind w:hanging="420" w:left="2100"/>
+						</w:pPr>
+					</w:lvl>
+					<w:lvl w:ilvl="5" w:tentative="1" w:tplc="0409001B">
+						<w:start w:val="1"/>
+						<w:numFmt w:val="lowerRoman"/>
+						<w:lvlText w:val="%6."/>
+						<w:lvlJc w:val="right"/>
+						<w:pPr>
+							<w:ind w:hanging="420" w:left="2520"/>
+						</w:pPr>
+					</w:lvl>
+					<w:lvl w:ilvl="6" w:tentative="1" w:tplc="0409000F">
+						<w:start w:val="1"/>
+						<w:numFmt w:val="decimal"/>
+						<w:lvlText w:val="%7."/>
+						<w:lvlJc w:val="left"/>
+						<w:pPr>
+							<w:ind w:hanging="420" w:left="2940"/>
+						</w:pPr>
+					</w:lvl>
+					<w:lvl w:ilvl="7" w:tentative="1" w:tplc="04090019">
+						<w:start w:val="1"/>
+						<w:numFmt w:val="lowerLetter"/>
+						<w:lvlText w:val="%8)"/>
+						<w:lvlJc w:val="left"/>
+						<w:pPr>
+							<w:ind w:hanging="420" w:left="3360"/>
+						</w:pPr>
+					</w:lvl>
+					<w:lvl w:ilvl="8" w:tentative="1" w:tplc="0409001B">
+						<w:start w:val="1"/>
+						<w:numFmt w:val="lowerRoman"/>
+						<w:lvlText w:val="%9."/>
+						<w:lvlJc w:val="right"/>
+						<w:pPr>
+							<w:ind w:hanging="420" w:left="3780"/>
+						</w:pPr>
+					</w:lvl>
+				</w:abstractNum>
+				<w:abstractNum w:abstractNumId="12">
+					<w:nsid w:val="4B4270F7"/>
+					<w:multiLevelType w:val="hybridMultilevel"/>
+					<w:tmpl w:val="24FAE628"/>
+					<w:lvl w:ilvl="0" w:tplc="8C0626B4">
+						<w:start w:val="1"/>
+						<w:numFmt w:val="japaneseCounting"/>
+						<w:lvlText w:val="%1、"/>
+						<w:lvlJc w:val="left"/>
+						<w:pPr>
+							<w:ind w:hanging="456" w:left="598"/>
+						</w:pPr>
+						<w:rPr>
+							<w:rFonts w:hint="default"/>
+						</w:rPr>
+					</w:lvl>
+					<w:lvl w:ilvl="1" w:tentative="1" w:tplc="04090019">
+						<w:start w:val="1"/>
+						<w:numFmt w:val="lowerLetter"/>
+						<w:lvlText w:val="%2)"/>
+						<w:lvlJc w:val="left"/>
+						<w:pPr>
+							<w:ind w:hanging="420" w:left="840"/>
+						</w:pPr>
+					</w:lvl>
+					<w:lvl w:ilvl="2" w:tentative="1" w:tplc="0409001B">
+						<w:start w:val="1"/>
+						<w:numFmt w:val="lowerRoman"/>
+						<w:lvlText w:val="%3."/>
+						<w:lvlJc w:val="right"/>
+						<w:pPr>
+							<w:ind w:hanging="420" w:left="1260"/>
+						</w:pPr>
+					</w:lvl>
+					<w:lvl w:ilvl="3" w:tentative="1" w:tplc="0409000F">
+						<w:start w:val="1"/>
+						<w:numFmt w:val="decimal"/>
+						<w:lvlText w:val="%4."/>
+						<w:lvlJc w:val="left"/>
+						<w:pPr>
+							<w:ind w:hanging="420" w:left="1680"/>
+						</w:pPr>
+					</w:lvl>
+					<w:lvl w:ilvl="4" w:tentative="1" w:tplc="04090019">
+						<w:start w:val="1"/>
+						<w:numFmt w:val="lowerLetter"/>
+						<w:lvlText w:val="%5)"/>
+						<w:lvlJc w:val="left"/>
+						<w:pPr>
+							<w:ind w:hanging="420" w:left="2100"/>
+						</w:pPr>
+					</w:lvl>
+					<w:lvl w:ilvl="5" w:tentative="1" w:tplc="0409001B">
+						<w:start w:val="1"/>
+						<w:numFmt w:val="lowerRoman"/>
+						<w:lvlText w:val="%6."/>
+						<w:lvlJc w:val="right"/>
+						<w:pPr>
+							<w:ind w:hanging="420" w:left="2520"/>
+						</w:pPr>
+					</w:lvl>
+					<w:lvl w:ilvl="6" w:tentative="1" w:tplc="0409000F">
+						<w:start w:val="1"/>
+						<w:numFmt w:val="decimal"/>
+						<w:lvlText w:val="%7."/>
+						<w:lvlJc w:val="left"/>
+						<w:pPr>
+							<w:ind w:hanging="420" w:left="2940"/>
+						</w:pPr>
+					</w:lvl>
+					<w:lvl w:ilvl="7" w:tentative="1" w:tplc="04090019">
+						<w:start w:val="1"/>
+						<w:numFmt w:val="lowerLetter"/>
+						<w:lvlText w:val="%8)"/>
+						<w:lvlJc w:val="left"/>
+						<w:pPr>
+							<w:ind w:hanging="420" w:left="3360"/>
+						</w:pPr>
+					</w:lvl>
+					<w:lvl w:ilvl="8" w:tentative="1" w:tplc="0409001B">
+						<w:start w:val="1"/>
+						<w:numFmt w:val="lowerRoman"/>
+						<w:lvlText w:val="%9."/>
+						<w:lvlJc w:val="right"/>
+						<w:pPr>
+							<w:ind w:hanging="420" w:left="3780"/>
+						</w:pPr>
+					</w:lvl>
+				</w:abstractNum>
+				<w:abstractNum w:abstractNumId="13">
+					<w:nsid w:val="4C1E62C7"/>
+					<w:multiLevelType w:val="hybridMultilevel"/>
+					<w:tmpl w:val="D17645AE"/>
+					<w:lvl w:ilvl="0" w:tplc="A2FE6240">
+						<w:start w:val="3"/>
+						<w:numFmt w:val="japaneseCounting"/>
+						<w:lvlText w:val="%1、"/>
+						<w:lvlJc w:val="left"/>
+						<w:pPr>
+							<w:ind w:hanging="456" w:left="1054"/>
+						</w:pPr>
+						<w:rPr>
+							<w:rFonts w:hint="default"/>
+						</w:rPr>
+					</w:lvl>
+					<w:lvl w:ilvl="1" w:tentative="1" w:tplc="04090019">
+						<w:start w:val="1"/>
+						<w:numFmt w:val="lowerLetter"/>
+						<w:lvlText w:val="%2)"/>
+						<w:lvlJc w:val="left"/>
+						<w:pPr>
+							<w:ind w:hanging="420" w:left="1438"/>
+						</w:pPr>
+					</w:lvl>
+					<w:lvl w:ilvl="2" w:tentative="1" w:tplc="0409001B">
+						<w:start w:val="1"/>
+						<w:numFmt w:val="lowerRoman"/>
+						<w:lvlText w:val="%3."/>
+						<w:lvlJc w:val="right"/>
+						<w:pPr>
+							<w:ind w:hanging="420" w:left="1858"/>
+						</w:pPr>
+					</w:lvl>
+					<w:lvl w:ilvl="3" w:tentative="1" w:tplc="0409000F">
+						<w:start w:val="1"/>
+						<w:numFmt w:val="decimal"/>
+						<w:lvlText w:val="%4."/>
+						<w:lvlJc w:val="left"/>
+						<w:pPr>
+							<w:ind w:hanging="420" w:left="2278"/>
+						</w:pPr>
+					</w:lvl>
+					<w:lvl w:ilvl="4" w:tentative="1" w:tplc="04090019">
+						<w:start w:val="1"/>
+						<w:numFmt w:val="lowerLetter"/>
+						<w:lvlText w:val="%5)"/>
+						<w:lvlJc w:val="left"/>
+						<w:pPr>
+							<w:ind w:hanging="420" w:left="2698"/>
+						</w:pPr>
+					</w:lvl>
+					<w:lvl w:ilvl="5" w:tentative="1" w:tplc="0409001B">
+						<w:start w:val="1"/>
+						<w:numFmt w:val="lowerRoman"/>
+						<w:lvlText w:val="%6."/>
+						<w:lvlJc w:val="right"/>
+						<w:pPr>
+							<w:ind w:hanging="420" w:left="3118"/>
+						</w:pPr>
+					</w:lvl>
+					<w:lvl w:ilvl="6" w:tentative="1" w:tplc="0409000F">
+						<w:start w:val="1"/>
+						<w:numFmt w:val="decimal"/>
+						<w:lvlText w:val="%7."/>
+						<w:lvlJc w:val="left"/>
+						<w:pPr>
+							<w:ind w:hanging="420" w:left="3538"/>
+						</w:pPr>
+					</w:lvl>
+					<w:lvl w:ilvl="7" w:tentative="1" w:tplc="04090019">
+						<w:start w:val="1"/>
+						<w:numFmt w:val="lowerLetter"/>
+						<w:lvlText w:val="%8)"/>
+						<w:lvlJc w:val="left"/>
+						<w:pPr>
+							<w:ind w:hanging="420" w:left="3958"/>
+						</w:pPr>
+					</w:lvl>
+					<w:lvl w:ilvl="8" w:tentative="1" w:tplc="0409001B">
+						<w:start w:val="1"/>
+						<w:numFmt w:val="lowerRoman"/>
+						<w:lvlText w:val="%9."/>
+						<w:lvlJc w:val="right"/>
+						<w:pPr>
+							<w:ind w:hanging="420" w:left="4378"/>
+						</w:pPr>
+					</w:lvl>
+				</w:abstractNum>
+				<w:abstractNum w:abstractNumId="14">
+					<w:nsid w:val="5D4023F1"/>
+					<w:multiLevelType w:val="hybridMultilevel"/>
+					<w:tmpl w:val="8BDE2A18"/>
+					<w:lvl w:ilvl="0" w:tplc="3006B55E">
+						<w:start w:val="1"/>
+						<w:numFmt w:val="japaneseCounting"/>
+						<w:lvlText w:val="%1、"/>
+						<w:lvlJc w:val="left"/>
+						<w:pPr>
+							<w:ind w:hanging="456" w:left="1054"/>
+						</w:pPr>
+						<w:rPr>
+							<w:rFonts w:hint="default"/>
+						</w:rPr>
+					</w:lvl>
+					<w:lvl w:ilvl="1" w:tentative="1" w:tplc="04090019">
+						<w:start w:val="1"/>
+						<w:numFmt w:val="lowerLetter"/>
+						<w:lvlText w:val="%2)"/>
+						<w:lvlJc w:val="left"/>
+						<w:pPr>
+							<w:ind w:hanging="420" w:left="1438"/>
+						</w:pPr>
+					</w:lvl>
+					<w:lvl w:ilvl="2" w:tentative="1" w:tplc="0409001B">
+						<w:start w:val="1"/>
+						<w:numFmt w:val="lowerRoman"/>
+						<w:lvlText w:val="%3."/>
+						<w:lvlJc w:val="right"/>
+						<w:pPr>
+							<w:ind w:hanging="420" w:left="1858"/>
+						</w:pPr>
+					</w:lvl>
+					<w:lvl w:ilvl="3" w:tentative="1" w:tplc="0409000F">
+						<w:start w:val="1"/>
+						<w:numFmt w:val="decimal"/>
+						<w:lvlText w:val="%4."/>
+						<w:lvlJc w:val="left"/>
+						<w:pPr>
+							<w:ind w:hanging="420" w:left="2278"/>
+						</w:pPr>
+					</w:lvl>
+					<w:lvl w:ilvl="4" w:tentative="1" w:tplc="04090019">
+						<w:start w:val="1"/>
+						<w:numFmt w:val="lowerLetter"/>
+						<w:lvlText w:val="%5)"/>
+						<w:lvlJc w:val="left"/>
+						<w:pPr>
+							<w:ind w:hanging="420" w:left="2698"/>
+						</w:pPr>
+					</w:lvl>
+					<w:lvl w:ilvl="5" w:tentative="1" w:tplc="0409001B">
+						<w:start w:val="1"/>
+						<w:numFmt w:val="lowerRoman"/>
+						<w:lvlText w:val="%6."/>
+						<w:lvlJc w:val="right"/>
+						<w:pPr>
+							<w:ind w:hanging="420" w:left="3118"/>
+						</w:pPr>
+					</w:lvl>
+					<w:lvl w:ilvl="6" w:tentative="1" w:tplc="0409000F">
+						<w:start w:val="1"/>
+						<w:numFmt w:val="decimal"/>
+						<w:lvlText w:val="%7."/>
+						<w:lvlJc w:val="left"/>
+						<w:pPr>
+							<w:ind w:hanging="420" w:left="3538"/>
+						</w:pPr>
+					</w:lvl>
+					<w:lvl w:ilvl="7" w:tentative="1" w:tplc="04090019">
+						<w:start w:val="1"/>
+						<w:numFmt w:val="lowerLetter"/>
+						<w:lvlText w:val="%8)"/>
+						<w:lvlJc w:val="left"/>
+						<w:pPr>
+							<w:ind w:hanging="420" w:left="3958"/>
+						</w:pPr>
+					</w:lvl>
+					<w:lvl w:ilvl="8" w:tentative="1" w:tplc="0409001B">
+						<w:start w:val="1"/>
+						<w:numFmt w:val="lowerRoman"/>
+						<w:lvlText w:val="%9."/>
+						<w:lvlJc w:val="right"/>
+						<w:pPr>
+							<w:ind w:hanging="420" w:left="4378"/>
+						</w:pPr>
+					</w:lvl>
+				</w:abstractNum>
+				<w:abstractNum w:abstractNumId="15">
+					<w:nsid w:val="7A3B7293"/>
+					<w:multiLevelType w:val="hybridMultilevel"/>
+					<w:tmpl w:val="A32E9C5C"/>
+					<w:lvl w:ilvl="0" w:tplc="4C8299D4">
+						<w:start w:val="1"/>
+						<w:numFmt w:val="japaneseCounting"/>
+						<w:lvlText w:val="(%1)"/>
+						<w:lvlJc w:val="left"/>
+						<w:pPr>
+							<w:tabs>
+								<w:tab w:pos="1620" w:val="num"/>
+							</w:tabs>
+							<w:ind w:hanging="720" w:left="1620"/>
+						</w:pPr>
+						<w:rPr>
+							<w:rFonts w:hint="eastAsia"/>
+						</w:rPr>
+					</w:lvl>
+					<w:lvl w:ilvl="1" w:tplc="F8405D5E">
+						<w:start w:val="1"/>
+						<w:numFmt w:val="decimal"/>
+						<w:lvlText w:val="(%2)"/>
+						<w:lvlJc w:val="left"/>
+						<w:pPr>
+							<w:tabs>
+								<w:tab w:pos="720" w:val="num"/>
+							</w:tabs>
+							<w:ind w:hanging="720" w:left="720"/>
+						</w:pPr>
+						<w:rPr>
+							<w:rFonts w:hint="eastAsia"/>
+						</w:rPr>
+					</w:lvl>
+					<w:lvl w:ilvl="2" w:tentative="1" w:tplc="0409001B">
+						<w:start w:val="1"/>
+						<w:numFmt w:val="lowerRoman"/>
+						<w:lvlText w:val="%3."/>
+						<w:lvlJc w:val="right"/>
+						<w:pPr>
+							<w:tabs>
+								<w:tab w:pos="1260" w:val="num"/>
+							</w:tabs>
+							<w:ind w:hanging="420" w:left="1260"/>
+						</w:pPr>
+					</w:lvl>
+					<w:lvl w:ilvl="3" w:tentative="1" w:tplc="0409000F">
+						<w:start w:val="1"/>
+						<w:numFmt w:val="decimal"/>
+						<w:lvlText w:val="%4."/>
+						<w:lvlJc w:val="left"/>
+						<w:pPr>
+							<w:tabs>
+								<w:tab w:pos="1680" w:val="num"/>
+							</w:tabs>
+							<w:ind w:hanging="420" w:left="1680"/>
+						</w:pPr>
+					</w:lvl>
+					<w:lvl w:ilvl="4" w:tentative="1" w:tplc="04090019">
+						<w:start w:val="1"/>
+						<w:numFmt w:val="lowerLetter"/>
+						<w:lvlText w:val="%5)"/>
+						<w:lvlJc w:val="left"/>
+						<w:pPr>
+							<w:tabs>
+								<w:tab w:pos="2100" w:val="num"/>
+							</w:tabs>
+							<w:ind w:hanging="420" w:left="2100"/>
+						</w:pPr>
+					</w:lvl>
+					<w:lvl w:ilvl="5" w:tentative="1" w:tplc="0409001B">
+						<w:start w:val="1"/>
+						<w:numFmt w:val="lowerRoman"/>
+						<w:lvlText w:val="%6."/>
+						<w:lvlJc w:val="right"/>
+						<w:pPr>
+							<w:tabs>
+								<w:tab w:pos="2520" w:val="num"/>
+							</w:tabs>
+							<w:ind w:hanging="420" w:left="2520"/>
+						</w:pPr>
+					</w:lvl>
+					<w:lvl w:ilvl="6" w:tentative="1" w:tplc="0409000F">
+						<w:start w:val="1"/>
+						<w:numFmt w:val="decimal"/>
+						<w:lvlText w:val="%7."/>
+						<w:lvlJc w:val="left"/>
+						<w:pPr>
+							<w:tabs>
+								<w:tab w:pos="2940" w:val="num"/>
+							</w:tabs>
+							<w:ind w:hanging="420" w:left="2940"/>
+						</w:pPr>
+					</w:lvl>
+					<w:lvl w:ilvl="7" w:tentative="1" w:tplc="04090019">
+						<w:start w:val="1"/>
+						<w:numFmt w:val="lowerLetter"/>
+						<w:lvlText w:val="%8)"/>
+						<w:lvlJc w:val="left"/>
+						<w:pPr>
+							<w:tabs>
+								<w:tab w:pos="3360" w:val="num"/>
+							</w:tabs>
+							<w:ind w:hanging="420" w:left="3360"/>
+						</w:pPr>
+					</w:lvl>
+					<w:lvl w:ilvl="8" w:tentative="1" w:tplc="0409001B">
+						<w:start w:val="1"/>
+						<w:numFmt w:val="lowerRoman"/>
+						<w:lvlText w:val="%9."/>
+						<w:lvlJc w:val="right"/>
+						<w:pPr>
+							<w:tabs>
+								<w:tab w:pos="3780" w:val="num"/>
+							</w:tabs>
+							<w:ind w:hanging="420" w:left="3780"/>
+						</w:pPr>
+					</w:lvl>
+				</w:abstractNum>
+				<w:abstractNum w:abstractNumId="16">
+					<w:nsid w:val="7AF01177"/>
+					<w:multiLevelType w:val="hybridMultilevel"/>
+					<w:tmpl w:val="995AA33A"/>
+					<w:lvl w:ilvl="0" w:tplc="B330B920">
+						<w:start w:val="2"/>
+						<w:numFmt w:val="japaneseCounting"/>
+						<w:lvlText w:val="%1、"/>
+						<w:lvlJc w:val="left"/>
+						<w:pPr>
+							<w:ind w:hanging="420" w:left="1438"/>
+						</w:pPr>
+						<w:rPr>
+							<w:rFonts w:hint="default"/>
+						</w:rPr>
+					</w:lvl>
+					<w:lvl w:ilvl="1" w:tentative="1" w:tplc="04090019">
+						<w:start w:val="1"/>
+						<w:numFmt w:val="lowerLetter"/>
+						<w:lvlText w:val="%2)"/>
+						<w:lvlJc w:val="left"/>
+						<w:pPr>
+							<w:ind w:hanging="420" w:left="1858"/>
+						</w:pPr>
+					</w:lvl>
+					<w:lvl w:ilvl="2" w:tentative="1" w:tplc="0409001B">
+						<w:start w:val="1"/>
+						<w:numFmt w:val="lowerRoman"/>
+						<w:lvlText w:val="%3."/>
+						<w:lvlJc w:val="right"/>
+						<w:pPr>
+							<w:ind w:hanging="420" w:left="2278"/>
+						</w:pPr>
+					</w:lvl>
+					<w:lvl w:ilvl="3" w:tentative="1" w:tplc="0409000F">
+						<w:start w:val="1"/>
+						<w:numFmt w:val="decimal"/>
+						<w:lvlText w:val="%4."/>
+						<w:lvlJc w:val="left"/>
+						<w:pPr>
+							<w:ind w:hanging="420" w:left="2698"/>
+						</w:pPr>
+					</w:lvl>
+					<w:lvl w:ilvl="4" w:tentative="1" w:tplc="04090019">
+						<w:start w:val="1"/>
+						<w:numFmt w:val="lowerLetter"/>
+						<w:lvlText w:val="%5)"/>
+						<w:lvlJc w:val="left"/>
+						<w:pPr>
+							<w:ind w:hanging="420" w:left="3118"/>
+						</w:pPr>
+					</w:lvl>
+					<w:lvl w:ilvl="5" w:tentative="1" w:tplc="0409001B">
+						<w:start w:val="1"/>
+						<w:numFmt w:val="lowerRoman"/>
+						<w:lvlText w:val="%6."/>
+						<w:lvlJc w:val="right"/>
+						<w:pPr>
+							<w:ind w:hanging="420" w:left="3538"/>
+						</w:pPr>
+					</w:lvl>
+					<w:lvl w:ilvl="6" w:tentative="1" w:tplc="0409000F">
+						<w:start w:val="1"/>
+						<w:numFmt w:val="decimal"/>
+						<w:lvlText w:val="%7."/>
+						<w:lvlJc w:val="left"/>
+						<w:pPr>
+							<w:ind w:hanging="420" w:left="3958"/>
+						</w:pPr>
+					</w:lvl>
+					<w:lvl w:ilvl="7" w:tentative="1" w:tplc="04090019">
+						<w:start w:val="1"/>
+						<w:numFmt w:val="lowerLetter"/>
+						<w:lvlText w:val="%8)"/>
+						<w:lvlJc w:val="left"/>
+						<w:pPr>
+							<w:ind w:hanging="420" w:left="4378"/>
+						</w:pPr>
+					</w:lvl>
+					<w:lvl w:ilvl="8" w:tentative="1" w:tplc="0409001B">
+						<w:start w:val="1"/>
+						<w:numFmt w:val="lowerRoman"/>
+						<w:lvlText w:val="%9."/>
+						<w:lvlJc w:val="right"/>
+						<w:pPr>
+							<w:ind w:hanging="420" w:left="4798"/>
+						</w:pPr>
+					</w:lvl>
+				</w:abstractNum>
+				<w:abstractNum w:abstractNumId="17">
+					<w:nsid w:val="7BA06C7E"/>
+					<w:multiLevelType w:val="hybridMultilevel"/>
+					<w:tmpl w:val="E6BEA64C"/>
+					<w:lvl w:ilvl="0" w:tplc="C3B2F75A">
+						<w:start w:val="1"/>
+						<w:numFmt w:val="japaneseCounting"/>
+						<w:lvlText w:val="%1、"/>
+						<w:lvlJc w:val="left"/>
+						<w:pPr>
+							<w:ind w:hanging="456" w:left="456"/>
+						</w:pPr>
+						<w:rPr>
+							<w:rFonts w:hint="default"/>
+						</w:rPr>
+					</w:lvl>
+					<w:lvl w:ilvl="1" w:tentative="1" w:tplc="04090019">
+						<w:start w:val="1"/>
+						<w:numFmt w:val="lowerLetter"/>
+						<w:lvlText w:val="%2)"/>
+						<w:lvlJc w:val="left"/>
+						<w:pPr>
+							<w:ind w:hanging="420" w:left="840"/>
+						</w:pPr>
+					</w:lvl>
+					<w:lvl w:ilvl="2" w:tentative="1" w:tplc="0409001B">
+						<w:start w:val="1"/>
+						<w:numFmt w:val="lowerRoman"/>
+						<w:lvlText w:val="%3."/>
+						<w:lvlJc w:val="right"/>
+						<w:pPr>
+							<w:ind w:hanging="420" w:left="1260"/>
+						</w:pPr>
+					</w:lvl>
+					<w:lvl w:ilvl="3" w:tentative="1" w:tplc="0409000F">
+						<w:start w:val="1"/>
+						<w:numFmt w:val="decimal"/>
+						<w:lvlText w:val="%4."/>
+						<w:lvlJc w:val="left"/>
+						<w:pPr>
+							<w:ind w:hanging="420" w:left="1680"/>
+						</w:pPr>
+					</w:lvl>
+					<w:lvl w:ilvl="4" w:tentative="1" w:tplc="04090019">
+						<w:start w:val="1"/>
+						<w:numFmt w:val="lowerLetter"/>
+						<w:lvlText w:val="%5)"/>
+						<w:lvlJc w:val="left"/>
+						<w:pPr>
+							<w:ind w:hanging="420" w:left="2100"/>
+						</w:pPr>
+					</w:lvl>
+					<w:lvl w:ilvl="5" w:tentative="1" w:tplc="0409001B">
+						<w:start w:val="1"/>
+						<w:numFmt w:val="lowerRoman"/>
+						<w:lvlText w:val="%6."/>
+						<w:lvlJc w:val="right"/>
+						<w:pPr>
+							<w:ind w:hanging="420" w:left="2520"/>
+						</w:pPr>
+					</w:lvl>
+					<w:lvl w:ilvl="6" w:tentative="1" w:tplc="0409000F">
+						<w:start w:val="1"/>
+						<w:numFmt w:val="decimal"/>
+						<w:lvlText w:val="%7."/>
+						<w:lvlJc w:val="left"/>
+						<w:pPr>
+							<w:ind w:hanging="420" w:left="2940"/>
+						</w:pPr>
+					</w:lvl>
+					<w:lvl w:ilvl="7" w:tentative="1" w:tplc="04090019">
+						<w:start w:val="1"/>
+						<w:numFmt w:val="lowerLetter"/>
+						<w:lvlText w:val="%8)"/>
+						<w:lvlJc w:val="left"/>
+						<w:pPr>
+							<w:ind w:hanging="420" w:left="3360"/>
+						</w:pPr>
+					</w:lvl>
+					<w:lvl w:ilvl="8" w:tentative="1" w:tplc="0409001B">
+						<w:start w:val="1"/>
+						<w:numFmt w:val="lowerRoman"/>
+						<w:lvlText w:val="%9."/>
+						<w:lvlJc w:val="right"/>
+						<w:pPr>
+							<w:ind w:hanging="420" w:left="3780"/>
+						</w:pPr>
+					</w:lvl>
+				</w:abstractNum>
+				<w:num w:numId="1">
+					<w:abstractNumId w:val="2"/>
+				</w:num>
+				<w:num w:numId="2">
+					<w:abstractNumId w:val="15"/>
+				</w:num>
+				<w:num w:numId="3">
+					<w:abstractNumId w:val="7"/>
+					<w:lvlOverride w:ilvl="0">
+						<w:startOverride w:val="1"/>
+					</w:lvlOverride>
+					<w:lvlOverride w:ilvl="1">
+						<w:startOverride w:val="1"/>
+					</w:lvlOverride>
+					<w:lvlOverride w:ilvl="2">
+						<w:startOverride w:val="1"/>
+					</w:lvlOverride>
+					<w:lvlOverride w:ilvl="3">
+						<w:startOverride w:val="1"/>
+					</w:lvlOverride>
+					<w:lvlOverride w:ilvl="4">
+						<w:startOverride w:val="1"/>
+					</w:lvlOverride>
+					<w:lvlOverride w:ilvl="5">
+						<w:startOverride w:val="1"/>
+					</w:lvlOverride>
+					<w:lvlOverride w:ilvl="6">
+						<w:startOverride w:val="1"/>
+					</w:lvlOverride>
+					<w:lvlOverride w:ilvl="7">
+						<w:startOverride w:val="1"/>
+					</w:lvlOverride>
+					<w:lvlOverride w:ilvl="8">
+						<w:startOverride w:val="1"/>
+					</w:lvlOverride>
+				</w:num>
+				<w:num w:numId="4">
+					<w:abstractNumId w:val="3"/>
+				</w:num>
+				<w:num w:numId="5">
+					<w:abstractNumId w:val="9"/>
+				</w:num>
+				<w:num w:numId="6">
+					<w:abstractNumId w:val="17"/>
+				</w:num>
+				<w:num w:numId="7">
+					<w:abstractNumId w:val="11"/>
+				</w:num>
+				<w:num w:numId="8">
+					<w:abstractNumId w:val="0"/>
+				</w:num>
+				<w:num w:numId="9">
+					<w:abstractNumId w:val="12"/>
+				</w:num>
+				<w:num w:numId="10">
+					<w:abstractNumId w:val="1"/>
+					<w:lvlOverride w:ilvl="0">
+						<w:startOverride w:val="1"/>
+					</w:lvlOverride>
+					<w:lvlOverride w:ilvl="1">
+						<w:startOverride w:val="1"/>
+					</w:lvlOverride>
+					<w:lvlOverride w:ilvl="2">
+						<w:startOverride w:val="1"/>
+					</w:lvlOverride>
+					<w:lvlOverride w:ilvl="3">
+						<w:startOverride w:val="1"/>
+					</w:lvlOverride>
+					<w:lvlOverride w:ilvl="4">
+						<w:startOverride w:val="1"/>
+					</w:lvlOverride>
+					<w:lvlOverride w:ilvl="5">
+						<w:startOverride w:val="1"/>
+					</w:lvlOverride>
+					<w:lvlOverride w:ilvl="6">
+						<w:startOverride w:val="1"/>
+					</w:lvlOverride>
+					<w:lvlOverride w:ilvl="7">
+						<w:startOverride w:val="1"/>
+					</w:lvlOverride>
+					<w:lvlOverride w:ilvl="8">
+						<w:startOverride w:val="1"/>
+					</w:lvlOverride>
+				</w:num>
+				<w:num w:numId="11">
+					<w:abstractNumId w:val="4"/>
+				</w:num>
+				<w:num w:numId="12">
+					<w:abstractNumId w:val="5"/>
+				</w:num>
+				<w:num w:numId="13">
+					<w:abstractNumId w:val="14"/>
+				</w:num>
+				<w:num w:numId="14">
+					<w:abstractNumId w:val="6"/>
+				</w:num>
+				<w:num w:numId="15">
+					<w:abstractNumId w:val="8"/>
+				</w:num>
+				<w:num w:numId="16">
+					<w:abstractNumId w:val="16"/>
+				</w:num>
+				<w:num w:numId="17">
+					<w:abstractNumId w:val="13"/>
+				</w:num>
+				<w:num w:numId="18">
+					<w:abstractNumId w:val="10"/>
+				</w:num>
+			</w:numbering>
+		</pkg:xmlData>
+	</pkg:part>
+	<pkg:part pkg:contentType="application/vnd.openxmlformats-package.relationships+xml" pkg:name="/customXml/_rels/item1.xml.rels" pkg:padding="256">
+		<pkg:xmlData>
+			<Relationships xmlns="http://schemas.openxmlformats.org/package/2006/relationships">
+				<Relationship Id="rId1" Target="itemProps1.xml" Type="http://schemas.openxmlformats.org/officeDocument/2006/relationships/customXmlProps"/>
+			</Relationships>
+		</pkg:xmlData>
+	</pkg:part>
+	<pkg:part pkg:contentType="application/vnd.openxmlformats-officedocument.customXmlProperties+xml" pkg:name="/customXml/itemProps1.xml" pkg:padding="32">
+		<pkg:xmlData pkg:originalXmlStandalone="no">
+			<ds:datastoreItem ds:itemID="{C601F546-F657-40EF-BBA2-F86F623C1AAA}" xmlns:ds="http://schemas.openxmlformats.org/officeDocument/2006/customXml">
+				<ds:schemaRefs>
+					<ds:schemaRef ds:uri="http://schemas.openxmlformats.org/officeDocument/2006/bibliography"/>
+				</ds:schemaRefs>
+			</ds:datastoreItem>
+		</pkg:xmlData>
+	</pkg:part>
+	<pkg:part pkg:contentType="application/vnd.openxmlformats-officedocument.wordprocessingml.fontTable+xml" pkg:name="/word/fontTable.xml">
+		<pkg:xmlData>
+			<w:fonts mc:Ignorable="w14" xmlns:mc="http://schemas.openxmlformats.org/markup-compatibility/2006" xmlns:r="http://schemas.openxmlformats.org/officeDocument/2006/relationships" xmlns:w="http://schemas.openxmlformats.org/wordprocessingml/2006/main" xmlns:w14="http://schemas.microsoft.com/office/word/2010/wordml">
+				<w:font w:name="Times New Roman">
+					<w:panose1 w:val="02020603050405020304"/>
+					<w:charset w:val="00"/>
+					<w:family w:val="roman"/>
+					<w:pitch w:val="variable"/>
+					<w:sig w:csb0="000001FF" w:csb1="00000000" w:usb0="E0002EFF" w:usb1="C000785B" w:usb2="00000009" w:usb3="00000000"/>
+				</w:font>
+				<w:font w:name="宋体">
+					<w:altName w:val="SimSun"/>
+					<w:panose1 w:val="02010600030101010101"/>
+					<w:charset w:val="86"/>
+					<w:family w:val="auto"/>
+					<w:pitch w:val="variable"/>
+					<w:sig w:csb0="00040001" w:csb1="00000000" w:usb0="00000003" w:usb1="288F0000" w:usb2="00000016" w:usb3="00000000"/>
+				</w:font>
+				<w:font w:name="Cambria">
+					<w:panose1 w:val="02040503050406030204"/>
+					<w:charset w:val="00"/>
+					<w:family w:val="roman"/>
+					<w:pitch w:val="variable"/>
+					<w:sig w:csb0="0000019F" w:csb1="00000000" w:usb0="E00002FF" w:usb1="400004FF" w:usb2="00000000" w:usb3="00000000"/>
+				</w:font>
+				<w:font w:name="Calibri">
+					<w:panose1 w:val="020F0502020204030204"/>
+					<w:charset w:val="00"/>
+					<w:family w:val="swiss"/>
+					<w:pitch w:val="variable"/>
+					<w:sig w:csb0="000001FF" w:csb1="00000000" w:usb0="E0002AFF" w:usb1="C000247B" w:usb2="00000009" w:usb3="00000000"/>
+				</w:font>
+				<w:font w:name="黑体">
+					<w:altName w:val="SimHei"/>
+					<w:panose1 w:val="02010609060101010101"/>
+					<w:charset w:val="86"/>
+					<w:family w:val="modern"/>
+					<w:pitch w:val="fixed"/>
+					<w:sig w:csb0="00040001" w:csb1="00000000" w:usb0="800002BF" w:usb1="38CF7CFA" w:usb2="00000016" w:usb3="00000000"/>
+				</w:font>
+			</w:fonts>
+		</pkg:xmlData>
+	</pkg:part>
+	<pkg:part pkg:contentType="application/vnd.openxmlformats-package.core-properties+xml" pkg:name="/docProps/core.xml" pkg:padding="256">
+		<pkg:xmlData>
+			<cp:coreProperties xmlns:cp="http://schemas.openxmlformats.org/package/2006/metadata/core-properties" xmlns:dc="http://purl.org/dc/elements/1.1/" xmlns:dcmitype="http://purl.org/dc/dcmitype/" xmlns:dcterms="http://purl.org/dc/terms/" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance">
+				<dc:title>陕西师范大学网络教育考卷</dc:title>
+				<dc:creator>ThinkPad</dc:creator>
+				<cp:lastModifiedBy>chenken</cp:lastModifiedBy>
+				<cp:revision>2</cp:revision>
+				<cp:lastPrinted>2015-05-19T08:52:00Z</cp:lastPrinted>
+				<dcterms:created xsi:type="dcterms:W3CDTF">2017-07-07T02:54:00Z</dcterms:created>
+				<dcterms:modified xsi:type="dcterms:W3CDTF">2017-07-07T02:54:00Z</dcterms:modified>
+			</cp:coreProperties>
+		</pkg:xmlData>
+	</pkg:part>
+	<pkg:part pkg:contentType="application/xml" pkg:name="/customXml/item1.xml" pkg:padding="32">
+		<pkg:xmlData>
+			<b:Sources SelectedStyle="\APA.XSL" StyleName="APA Fifth Edition" xmlns="http://schemas.openxmlformats.org/officeDocument/2006/bibliography" xmlns:b="http://schemas.openxmlformats.org/officeDocument/2006/bibliography"/>
+		</pkg:xmlData>
+	</pkg:part>
+	<pkg:part pkg:contentType="application/vnd.openxmlformats-officedocument.wordprocessingml.webSettings+xml" pkg:name="/word/webSettings.xml">
+		<pkg:xmlData>
+			<w:webSettings mc:Ignorable="w14" xmlns:mc="http://schemas.openxmlformats.org/markup-compatibility/2006" xmlns:r="http://schemas.openxmlformats.org/officeDocument/2006/relationships" xmlns:w="http://schemas.openxmlformats.org/wordprocessingml/2006/main" xmlns:w14="http://schemas.microsoft.com/office/word/2010/wordml">
+				<w:divs>
+					<w:div w:id="455612022">
+						<w:bodyDiv w:val="1"/>
+						<w:marLeft w:val="0"/>
+						<w:marRight w:val="0"/>
+						<w:marTop w:val="0"/>
+						<w:marBottom w:val="0"/>
+						<w:divBdr>
+							<w:top w:color="auto" w:space="0" w:sz="0" w:val="none"/>
+							<w:left w:color="auto" w:space="0" w:sz="0" w:val="none"/>
+							<w:bottom w:color="auto" w:space="0" w:sz="0" w:val="none"/>
+							<w:right w:color="auto" w:space="0" w:sz="0" w:val="none"/>
+						</w:divBdr>
+						<w:divsChild>
+							<w:div w:id="844171662">
+								<w:marLeft w:val="0"/>
+								<w:marRight w:val="0"/>
+								<w:marTop w:val="0"/>
+								<w:marBottom w:val="0"/>
+								<w:divBdr>
+									<w:top w:color="auto" w:space="0" w:sz="0" w:val="none"/>
+									<w:left w:color="auto" w:space="0" w:sz="0" w:val="none"/>
+									<w:bottom w:color="auto" w:space="0" w:sz="0" w:val="none"/>
+									<w:right w:color="auto" w:space="0" w:sz="0" w:val="none"/>
+								</w:divBdr>
+							</w:div>
+						</w:divsChild>
+					</w:div>
+				</w:divs>
+				<w:optimizeForBrowser/>
+				<w:targetScreenSz w:val="800x600"/>
+			</w:webSettings>
+		</pkg:xmlData>
+	</pkg:part>
+	<pkg:part pkg:contentType="application/vnd.openxmlformats-officedocument.extended-properties+xml" pkg:name="/docProps/app.xml" pkg:padding="256">
+		<pkg:xmlData>
+			<Properties xmlns="http://schemas.openxmlformats.org/officeDocument/2006/extended-properties" xmlns:vt="http://schemas.openxmlformats.org/officeDocument/2006/docPropsVTypes">
+				<Template>Normal.dotm</Template>
+				<TotalTime>0</TotalTime>
+				<Pages>1</Pages>
+				<Words>80</Words>
+				<Characters>460</Characters>
+				<Application>Microsoft Office Word</Application>
+				<DocSecurity>0</DocSecurity>
+				<Lines>3</Lines>
+				<Paragraphs>1</Paragraphs>
+				<ScaleCrop>false</ScaleCrop>
+				<Company>Microsoft</Company>
+				<LinksUpToDate>false</LinksUpToDate>
+				<CharactersWithSpaces>539</CharactersWithSpaces>
+				<SharedDoc>false</SharedDoc>
+				<HyperlinksChanged>false</HyperlinksChanged>
+				<AppVersion>14.0000</AppVersion>
+			</Properties>
+		</pkg:xmlData>
+	</pkg:part>
+</pkg:package>

+ 40 - 0
cqb-paper/src/main/java/com/qmth/cqb/paper/dto/ExportPaperInfoModel.java

@@ -0,0 +1,40 @@
+package com.qmth.cqb.paper.dto;
+
+import java.io.Serializable;
+import java.util.List;
+
+/**
+ * @author  	chenken
+ * @date    	2017年7月15日 下午1:52:52
+ * @company 	QMTH
+ * @description ExportPaperInfoModel.java
+ */
+public class ExportPaperInfoModel implements Serializable{
+	
+	/**
+	 * 
+	 */
+	private static final long serialVersionUID = -8364161638270123652L;
+
+	private String examId;
+	
+	private List<String> exportContentList;
+
+	public String getExamId() {
+		return examId;
+	}
+
+	public void setExamId(String examId) {
+		this.examId = examId;
+	}
+
+	public List<String> getExportContentList() {
+		return exportContentList;
+	}
+
+	public void setExportContentList(List<String> exportContentList) {
+		this.exportContentList = exportContentList;
+	}
+	
+}
+

+ 54 - 14
cqb-paper/src/main/java/com/qmth/cqb/paper/model/ExamFile.java

@@ -24,6 +24,14 @@ public class ExamFile implements Serializable{
 	@Id
 	private String id;
 	
+	/**
+	 * 机构ID
+	 */
+	private String orgId;
+	/**
+	 * 机构名称
+	 */
+	private String orgName;
 	/**
 	 * 考试ID
 	 */
@@ -44,27 +52,51 @@ public class ExamFile implements Serializable{
 	 * 课程名称
 	 */
 	private String courseName;
+	/**
+	 * 文件名称
+	 */
+	private String fileName;
 	/**
 	 * 文件类型
 	 * 		试卷
 	 * 		答案
 	 * 		试卷结构
 	 * 		音频文件
+	 * 		加密数据包
 	 */
 	private ExamFileType examFileType;
 	/**
 	 * 文件存储路径
 	 */
 	private String filePath;
-	
+	/**
+	 * 创建人
+	 */
 	private String createUser;
-
+	/**
+	 * 创建时间
+	 */
     private Date createTime;
     
-    private String updateUser;
-
-    private Date updateTime;
-
+    public ExamFile(){}
+    
+    public ExamFile(ExtractConfig extractConfig,String orgName,String fileName,String filePath,ExamFileType examFileType){
+    	this.orgId = extractConfig.getOrgId();
+    	this.orgName = orgName;
+    	this.examId = extractConfig.getExamId()+"";
+    	this.examName = extractConfig.getExamName();
+    	this.examType = ExamType.strToEnum(extractConfig.getExamType());
+    	this.courseId = extractConfig.getCourseCode();
+    	this.courseName = extractConfig.getCourseName();
+    	this.fileName = fileName;
+    	this.filePath = filePath;
+    	this.examFileType = examFileType;
+    }
+    
+    public ExamFile(String examId){
+    	this.examId = examId;
+    }
+    
 	public String getId() {
 		return id;
 	}
@@ -73,6 +105,14 @@ public class ExamFile implements Serializable{
 		this.id = id;
 	}
 
+	public String getOrgName() {
+		return orgName;
+	}
+
+	public void setOrgName(String orgName) {
+		this.orgName = orgName;
+	}
+
 	public String getExamId() {
 		return examId;
 	}
@@ -145,20 +185,20 @@ public class ExamFile implements Serializable{
 		this.createTime = createTime;
 	}
 
-	public String getUpdateUser() {
-		return updateUser;
+	public String getFileName() {
+		return fileName;
 	}
 
-	public void setUpdateUser(String updateUser) {
-		this.updateUser = updateUser;
+	public void setFileName(String fileName) {
+		this.fileName = fileName;
 	}
 
-	public Date getUpdateTime() {
-		return updateTime;
+	public String getOrgId() {
+		return orgId;
 	}
 
-	public void setUpdateTime(Date updateTime) {
-		this.updateTime = updateTime;
+	public void setOrgId(String orgId) {
+		this.orgId = orgId;
 	}
     
 }

+ 13 - 1
cqb-paper/src/main/java/com/qmth/cqb/paper/service/ExamFileService.java

@@ -1,5 +1,9 @@
 package com.qmth.cqb.paper.service;
 
+import java.util.List;
+
+import cn.com.qmth.examcloud.common.uac.entity.AccessUser;
+
 import com.qmth.cqb.paper.model.ExamFile;
 
 /**
@@ -13,6 +17,14 @@ public interface ExamFileService {
 	 * 保存考试文件
 	 * @param examFile
 	 */
-	public void saveExamFile(ExamFile examFile);
+	public void saveExamFiles(List<ExamFile> examFileList,AccessUser accessUser);
+	
+	
+	/**
+	 * 根据条件查询ExamFile集合
+	 * @param examFile
+	 * @return
+	 */
+	public List<ExamFile> findExamFileListByExamFile(ExamFile examFile);
 }
 

+ 14 - 1
cqb-paper/src/main/java/com/qmth/cqb/paper/service/ExtractConfigService.java

@@ -3,6 +3,11 @@ package com.qmth.cqb.paper.service;
 import java.util.List;
 import java.util.Map;
 
+import javax.servlet.http.HttpServletResponse;
+
+import cn.com.qmth.examcloud.common.uac.entity.AccessUser;
+
+import com.qmth.cqb.paper.dto.ExportPaperInfoModel;
 import com.qmth.cqb.paper.model.ExtractConfig;
 import com.qmth.cqb.paper.model.Paper;
 
@@ -29,8 +34,11 @@ public interface ExtractConfigService {
 	public ExtractConfig findConfigById(String id);
 	/**
 	 * 保存调卷规则
+	 * @param extractConfig
+	 * @param orgName		机构名称
+	 * @throws Exception
 	 */
-	public void saveExtractConfig(ExtractConfig extractConfig);
+	public void saveExtractConfig(ExtractConfig extractConfig,String orgName,AccessUser accessUser) throws Exception;
 	/**
 	 * 按照设定调卷规则生成一套试卷
 	 * 1.根据extractConfigId取出调卷规则
@@ -74,4 +82,9 @@ public interface ExtractConfigService {
 	 * @return
 	 */
 	public boolean checkIsAllQbjectiveQuestion(String paperId);
+	/**
+	 * 导出考试下的试卷信息
+	 * @param exportModel
+	 */
+	public void exportExamPaperInfo(ExportPaperInfoModel exportModel,HttpServletResponse response);
 }

+ 8 - 1
cqb-paper/src/main/java/com/qmth/cqb/paper/service/export/DzkdExportPaperService.java

@@ -11,10 +11,12 @@ import org.springframework.stereotype.Service;
 
 import cn.com.qmth.examcloud.common.dto.core.enums.CourseLevel;
 import cn.com.qmth.examcloud.common.dto.question.enums.QuesStructType;
+import cn.com.qmth.examcloud.common.uac.entity.AccessUser;
 
 import com.qmth.cqb.paper.dto.PaperDetailExp;
 import com.qmth.cqb.paper.dto.PaperDetailUnitExp;
 import com.qmth.cqb.paper.dto.PaperExp;
+import com.qmth.cqb.paper.model.ExtractConfig;
 import com.qmth.cqb.paper.model.Paper;
 import com.qmth.cqb.paper.model.PaperDetail;
 import com.qmth.cqb.paper.model.PaperDetailUnit;
@@ -26,7 +28,6 @@ import com.qmth.cqb.utils.word.DocxProcessUtil;
 
 @Service("dzkdExportPaperService")
 public class DzkdExportPaperService extends ExportPaperAbstractService{
-	
     /**
      * 下载试卷
      * @param id
@@ -132,4 +133,10 @@ public class DzkdExportPaperService extends ExportPaperAbstractService{
 		return returnMap;
 	}
 
+	@Override
+	public void uploadFile(String orgName,ExtractConfig extractConfig,String paperId,AccessUser accessUser) throws Exception {
+		// TODO Auto-generated method stub
+		
+	}
+
 }

+ 79 - 5
cqb-paper/src/main/java/com/qmth/cqb/paper/service/export/ExportPaperAbstractService.java

@@ -1,5 +1,6 @@
 package com.qmth.cqb.paper.service.export;
 
+import java.io.File;
 import java.math.BigDecimal;
 import java.util.ArrayList;
 import java.util.HashMap;
@@ -12,6 +13,11 @@ import java.util.stream.Collectors;
 import javax.servlet.http.HttpServletResponse;
 import javax.xml.bind.JAXBElement;
 
+
+
+
+import main.java.com.UpYun;
+
 import org.apache.commons.lang3.StringUtils;
 import org.docx4j.XmlUtils;
 import org.docx4j.jaxb.Context;
@@ -20,12 +26,12 @@ import org.docx4j.wml.Body;
 import org.docx4j.wml.P;
 import org.docx4j.wml.R;
 import org.docx4j.wml.Text;
-import org.slf4j.Logger;
-import org.slf4j.LoggerFactory;
 import org.springframework.beans.factory.annotation.Autowired;
+import org.springframework.beans.factory.annotation.Value;
 
 import cn.com.qmth.examcloud.common.dto.core.enums.CourseLevel;
 import cn.com.qmth.examcloud.common.dto.question.enums.QuesStructType;
+import cn.com.qmth.examcloud.common.uac.entity.AccessUser;
 
 import com.qmth.cqb.paper.dao.PaperDetailRepo;
 import com.qmth.cqb.paper.dao.PaperDetailUnitRepo;
@@ -33,25 +39,34 @@ import com.qmth.cqb.paper.dao.PaperRepo;
 import com.qmth.cqb.paper.dto.PaperDetailExp;
 import com.qmth.cqb.paper.dto.PaperDetailUnitExp;
 import com.qmth.cqb.paper.dto.PaperExp;
+import com.qmth.cqb.paper.model.ExamFile;
+import com.qmth.cqb.paper.model.ExtractConfig;
 import com.qmth.cqb.paper.model.Paper;
 import com.qmth.cqb.paper.model.PaperDetail;
 import com.qmth.cqb.paper.model.PaperDetailUnit;
+import com.qmth.cqb.paper.service.ExamFileService;
 import com.qmth.cqb.paper.service.PaperService;
 import com.qmth.cqb.question.dao.QuesRepo;
 import com.qmth.cqb.question.model.QuesOption;
 import com.qmth.cqb.question.model.Question;
 import com.qmth.cqb.utils.BeanCopierUtil;
 import com.qmth.cqb.utils.CommonUtils;
+import com.qmth.cqb.utils.enums.ExamFileType;
 import com.qmth.cqb.utils.exception.PaperException;
 import com.qmth.cqb.utils.word.DocxProcessUtil;
 
 import freemarker.template.Configuration;
 import freemarker.template.Template;
 
+/**
+ * 
+ * @author  	chenken
+ * @date    	2017年7月15日 下午4:00:24
+ * @company 	QMTH
+ * @description 上传下载文件父类
+ */
 public abstract class ExportPaperAbstractService {
 	
-	private static final Logger logger = LoggerFactory.getLogger(ExportPaperAbstractService.class);
-
 	@Autowired
 	PaperRepo paperRepo;
 
@@ -63,11 +78,18 @@ public abstract class ExportPaperAbstractService {
 
 	@Autowired
 	PaperDetailUnitRepo paperDetailUnitRepo;
+	
+	@Autowired
+	ExamFileService examFileService;
 
 	@Autowired
 	QuesRepo quesRepo;
 
 	private static final String FILL_BLANK_QUESTION_FLAG = "###";
+	
+	public static final String TEMP_FILE_EXP = "docxExport/";
+	
+	public static final String DOCX_SUFFIX = ".docx";
 
 	public static Configuration CONFIGURATION;
 
@@ -79,9 +101,37 @@ public abstract class ExportPaperAbstractService {
 	//电子科大模板
 	protected static Template DZKD_TEMPLATE_PAPER;
 	protected static Template DZKD_TEMPLATE_ANSWER;
+	
+	//华中科技大学模板
+	protected static Template HZKJ_TEMPLATE_PAPER;
+	protected static Template HZKJ_TEMPLATE_ANSWER;
+	
+	//山东大学
+	protected static Template SDDX_TEMPLATE_PAPER;
+	protected static Template SDDX_TEMPLATE_ANSWER;
+	
+	//天津大学
+	protected static Template TJDX_TEMPLATE_PAPER;
+	protected static Template TJDX_TEMPLATE_ANSWER;
+	
 	//石油大学模板
 	//protected static Template SYDX_TEMPLATE_NORMAL;
 
+	@Value("${upyun.bucketName}")
+	protected String bucketName;
+	
+	@Value("${upyun.userName}")
+	protected String userName;
+	
+	@Value("${upyun.password}")
+	protected String password;
+	
+	@Value("${upyun.uploadUrl}")
+	protected String uploadUrl;
+	
+	@Value("${upyun.downloadUrl}")
+	protected String downloadUrl;
+	
 	static {
 		try {
 			CONFIGURATION = new Configuration(Configuration.VERSION_2_3_25);
@@ -96,6 +146,15 @@ public abstract class ExportPaperAbstractService {
 			DZKD_TEMPLATE_PAPER = CONFIGURATION.getTemplate("dzkd_paper_template.ftl", ENCODING);
 			DZKD_TEMPLATE_ANSWER = CONFIGURATION.getTemplate("dzkd_answer_template.ftl", ENCODING);
 			
+			HZKJ_TEMPLATE_PAPER = CONFIGURATION.getTemplate("hzkj_paper_template.ftl", ENCODING);
+			HZKJ_TEMPLATE_ANSWER = CONFIGURATION.getTemplate("hzkj_answer_template.ftl", ENCODING);
+			
+			SDDX_TEMPLATE_PAPER = CONFIGURATION.getTemplate("sddx_paper_template.ftl", ENCODING);
+			SDDX_TEMPLATE_ANSWER = CONFIGURATION.getTemplate("sddx_answer_template.ftl", ENCODING);
+			
+			TJDX_TEMPLATE_PAPER = CONFIGURATION.getTemplate("tjdx_paper_template.ftl", ENCODING);
+			TJDX_TEMPLATE_ANSWER = CONFIGURATION.getTemplate("tjdx_answer_template.ftl", ENCODING);
+			
 			//SYDX_TEMPLATE_NORMAL = CONFIGURATION.getTemplate("paper_template.ftl", ENCODING);
 		} catch (Exception e) {
 			e.printStackTrace();
@@ -110,6 +169,16 @@ public abstract class ExportPaperAbstractService {
 	 */
 	public abstract void downloadPaper(String paperId, HttpServletResponse response)throws Exception;
 	
+	/**
+	 * 上传试卷相关文件
+     * 文件路径为:UPLOADURL/机构名称/考试名称/文件类型/文件名称
+	 * @param orgName
+	 * @param examName
+	 * @param paperId
+	 * @throws Exception
+	 */
+    public abstract void uploadFile(String orgName,ExtractConfig extractConfig,String paperId,AccessUser accessUser) throws Exception;
+	
 	/**
 	 * 初始化导出试卷DTO
 	 * 
@@ -127,7 +196,7 @@ public abstract class ExportPaperAbstractService {
 		}
 		// 创建paperDto
 		PaperExp paperExp = BeanCopierUtil.copyProperties(paper, PaperExp.class);
-		paperExp.setCourseLevel(paper.getLevel()==null?CourseLevel.ALL.name():paper.getLevel().name());
+		paperExp.setCourseLevel(paper.getLevel()==null?CourseLevel.ALL.getName():paper.getLevel().getName());
 		List<PaperDetailExp> objectiveDetails = new ArrayList<PaperDetailExp>();// 客观题
 		List<PaperDetailExp> subjectiveDetails = new ArrayList<PaperDetailExp>();// 主观题
 		double objectiveScore = 0;
@@ -478,4 +547,9 @@ public abstract class ExportPaperAbstractService {
         }
         return pWordMl.toString();
     }
+    
+    protected String getRandomFileName(ExamFileType examFileType,String suffix){
+    	return examFileType.name()+"_"+CommonUtils.getCurNum()+suffix;
+    }
+    
 }

+ 84 - 0
cqb-paper/src/main/java/com/qmth/cqb/paper/service/export/HzkjExportPaperService.java

@@ -0,0 +1,84 @@
+package com.qmth.cqb.paper.service.export;
+
+import java.io.File;
+import java.util.ArrayList;
+import java.util.List;
+import java.util.Map;
+
+import javax.servlet.http.HttpServletResponse;
+
+import main.java.com.UpYun;
+
+import org.springframework.stereotype.Service;
+
+import cn.com.qmth.examcloud.common.uac.entity.AccessUser;
+
+import com.qmth.cqb.paper.model.ExamFile;
+import com.qmth.cqb.paper.model.ExtractConfig;
+import com.qmth.cqb.utils.CommonUtils;
+import com.qmth.cqb.utils.enums.ExamFileType;
+import com.qmth.cqb.utils.word.DocxProcessUtil;
+
+/**
+ * @author  	chenken
+ * @date    	2017年7月7日 上午11:29:49
+ * @company 	QMTH
+ * @description 华中科技大学导出service
+ */
+@Service("hzkjExportPaperService")
+public class HzkjExportPaperService extends ExportPaperAbstractService {
+    
+	public static final String TEMP_FILE_EXP = "docxExport/";
+	public static final String DOCX_SUFFIX = ".docx";
+	
+    @Override
+    public void downloadPaper(String paperId, HttpServletResponse response) throws Exception {
+        Map<String,Object> dataMap = initExportPaper(paperId);
+        List<String> fileList = new ArrayList<String>();
+        if (dataMap.get("fileName") != null) {
+            String paperfileName = (String) dataMap.get("fileName");
+            String answerFileName = paperfileName+"__答案";
+            DocxProcessUtil.exportPaper(dataMap, paperfileName,HZKJ_TEMPLATE_PAPER);
+            DocxProcessUtil.exportAnswer(dataMap,answerFileName,HZKJ_TEMPLATE_ANSWER);
+            DocxProcessUtil.processImage(paperfileName,getPkgList(paperId));
+            DocxProcessUtil.processImage(answerFileName,getPkgList(paperId));
+            fileList.add(paperfileName);
+            fileList.add(answerFileName);
+            DocxProcessUtil.processDownload(fileList, response);
+        }
+    }
+
+    @Override
+    public void uploadFile(String orgName,ExtractConfig extractConfig,String paperId,AccessUser accessUser) throws Exception{
+    	Map<String,Object> dataMap = initExportPaper(paperId);
+        if (dataMap.get("fileName") != null) {
+        	String paperfileName = (String) dataMap.get("fileName")+CommonUtils.getCurNum();
+            String answerFileName = paperfileName+"__答案"+CommonUtils.getCurNum();
+            DocxProcessUtil.exportPaper(dataMap, paperfileName,HZKJ_TEMPLATE_PAPER);
+            DocxProcessUtil.exportAnswer(dataMap,answerFileName,HZKJ_TEMPLATE_ANSWER);
+            DocxProcessUtil.processImage(paperfileName,getPkgList(paperId));
+            DocxProcessUtil.processImage(answerFileName,getPkgList(paperId));
+            //得到本地文件和文件路径
+            File paperFile  = new File(TEMP_FILE_EXP+paperfileName+DOCX_SUFFIX);
+            File answerFile  = new File(TEMP_FILE_EXP+answerFileName+DOCX_SUFFIX);
+            String paperFilePath = uploadUrl+paperfileName+DOCX_SUFFIX;
+            String answerFilePath = uploadUrl+answerFileName+DOCX_SUFFIX;
+        	//上传至又拍云
+            UpYun upyun = new UpYun(bucketName,userName,password);
+			upyun.writeFile(paperFilePath, paperFile,true);
+			upyun.writeFile(answerFilePath, answerFile,true);
+			//保存上传文件记录
+			List<ExamFile> examFileList = new ArrayList<ExamFile>();
+			//试卷
+			examFileList.add(new ExamFile(extractConfig,orgName,paperfileName+DOCX_SUFFIX,downloadUrl+paperFilePath,ExamFileType.PAPER));
+			//答案
+			examFileList.add(new ExamFile(extractConfig,orgName,answerFileName+DOCX_SUFFIX,downloadUrl+answerFilePath,ExamFileType.ANSWER));
+			examFileService.saveExamFiles(examFileList,accessUser);
+			//删除本地文件
+			paperFile.delete();
+			answerFile.delete();
+        }
+    }
+    
+}
+

+ 84 - 0
cqb-paper/src/main/java/com/qmth/cqb/paper/service/export/SddxExportPaperService.java

@@ -0,0 +1,84 @@
+package com.qmth.cqb.paper.service.export;
+
+import java.io.File;
+import java.util.ArrayList;
+import java.util.List;
+import java.util.Map;
+
+import javax.servlet.http.HttpServletResponse;
+
+import main.java.com.UpYun;
+
+import org.springframework.stereotype.Service;
+
+import cn.com.qmth.examcloud.common.uac.entity.AccessUser;
+
+import com.qmth.cqb.paper.model.ExamFile;
+import com.qmth.cqb.paper.model.ExtractConfig;
+import com.qmth.cqb.utils.CommonUtils;
+import com.qmth.cqb.utils.enums.ExamFileType;
+import com.qmth.cqb.utils.word.DocxProcessUtil;
+
+/**
+ * @author  	chenken
+ * @date    	2017年7月7日 上午11:29:49
+ * @company 	QMTH
+ * @description 山东大学导出service
+ */
+@Service("sddxExportPaperService")
+public class SddxExportPaperService extends ExportPaperAbstractService {
+    
+	public static final String TEMP_FILE_EXP = "docxExport/";
+	public static final String DOCX_SUFFIX = ".docx";
+	
+    @Override
+    public void downloadPaper(String paperId, HttpServletResponse response) throws Exception {
+        Map<String,Object> dataMap = initExportPaper(paperId);
+        List<String> fileList = new ArrayList<String>();
+        if (dataMap.get("fileName") != null) {
+            String paperfileName = (String) dataMap.get("fileName");
+            String answerFileName = paperfileName+"__答案";
+            DocxProcessUtil.exportPaper(dataMap, paperfileName,SDDX_TEMPLATE_PAPER);
+            DocxProcessUtil.exportAnswer(dataMap,answerFileName,SDDX_TEMPLATE_ANSWER);
+            DocxProcessUtil.processImage(paperfileName,getPkgList(paperId));
+            DocxProcessUtil.processImage(answerFileName,getPkgList(paperId));
+            fileList.add(paperfileName);
+            fileList.add(answerFileName);
+            DocxProcessUtil.processDownload(fileList, response);
+        }
+    }
+
+    @Override
+    public void uploadFile(String orgName,ExtractConfig extractConfig,String paperId,AccessUser accessUser) throws Exception{
+    	Map<String,Object> dataMap = initExportPaper(paperId);
+        if (dataMap.get("fileName") != null) {
+        	String paperfileName = (String) dataMap.get("fileName")+CommonUtils.getCurNum();
+            String answerFileName = paperfileName+"__答案"+CommonUtils.getCurNum();
+            DocxProcessUtil.exportPaper(dataMap, paperfileName,SDDX_TEMPLATE_PAPER);
+            DocxProcessUtil.exportAnswer(dataMap,answerFileName,SDDX_TEMPLATE_ANSWER);
+            DocxProcessUtil.processImage(paperfileName,getPkgList(paperId));
+            DocxProcessUtil.processImage(answerFileName,getPkgList(paperId));
+            //得到本地文件和文件路径
+            File paperFile  = new File(TEMP_FILE_EXP+paperfileName+DOCX_SUFFIX);
+            File answerFile  = new File(TEMP_FILE_EXP+answerFileName+DOCX_SUFFIX);
+            String paperFilePath = uploadUrl+paperfileName+DOCX_SUFFIX;
+            String answerFilePath = uploadUrl+answerFileName+DOCX_SUFFIX;
+        	//上传至又拍云
+            UpYun upyun = new UpYun(bucketName,userName,password);
+			upyun.writeFile(paperFilePath, paperFile,true);
+			upyun.writeFile(answerFilePath, answerFile,true);
+			//保存上传文件记录
+			List<ExamFile> examFileList = new ArrayList<ExamFile>();
+			//试卷
+			examFileList.add(new ExamFile(extractConfig,orgName,paperfileName+DOCX_SUFFIX,downloadUrl+paperFilePath,ExamFileType.PAPER));
+			//答案
+			examFileList.add(new ExamFile(extractConfig,orgName,answerFileName+DOCX_SUFFIX,downloadUrl+answerFilePath,ExamFileType.ANSWER));
+			examFileService.saveExamFiles(examFileList,accessUser);
+			//删除本地文件
+			paperFile.delete();
+			answerFile.delete();
+        }
+    }
+    
+}
+

+ 44 - 1
cqb-paper/src/main/java/com/qmth/cqb/paper/service/export/SxsfExportPaperService.java

@@ -1,11 +1,22 @@
 package com.qmth.cqb.paper.service.export;
 
+import java.io.File;
 import java.util.ArrayList;
 import java.util.List;
 import java.util.Map;
 
 import javax.servlet.http.HttpServletResponse;
+
+import main.java.com.UpYun;
+
 import org.springframework.stereotype.Service;
+
+import cn.com.qmth.examcloud.common.uac.entity.AccessUser;
+
+import com.qmth.cqb.paper.model.ExamFile;
+import com.qmth.cqb.paper.model.ExtractConfig;
+import com.qmth.cqb.utils.CommonUtils;
+import com.qmth.cqb.utils.enums.ExamFileType;
 import com.qmth.cqb.utils.word.DocxProcessUtil;
 
 /**
@@ -16,7 +27,7 @@ import com.qmth.cqb.utils.word.DocxProcessUtil;
  */
 @Service("sxsfExportPaperService")
 public class SxsfExportPaperService extends ExportPaperAbstractService {
-    
+	
     @Override
     public void downloadPaper(String paperId, HttpServletResponse response) throws Exception {
         Map<String,Object> dataMap = initExportPaper(paperId);
@@ -34,5 +45,37 @@ public class SxsfExportPaperService extends ExportPaperAbstractService {
         }
     }
 
+    @Override
+    public void uploadFile(String orgName,ExtractConfig extractConfig,String paperId,AccessUser accessUser) throws Exception{
+    	Map<String,Object> dataMap = initExportPaper(paperId);
+        if (dataMap.get("fileName") != null) {
+            String paperfileName = (String) dataMap.get("fileName")+"_"+CommonUtils.getCurNum();
+            String answerFileName = paperfileName+"_答案";
+            DocxProcessUtil.exportPaper(dataMap, paperfileName,SXSF_TEMPLATE_PAPER);
+            DocxProcessUtil.exportAnswer(dataMap,answerFileName,SXSF_TEMPLATE_ANSWER);
+            DocxProcessUtil.processImage(paperfileName,getPkgList(paperId));
+            DocxProcessUtil.processImage(answerFileName,getPkgList(paperId));
+            //得到本地文件和文件路径
+            File paperFile  = new File(TEMP_FILE_EXP+paperfileName+DOCX_SUFFIX);
+            File answerFile  = new File(TEMP_FILE_EXP+answerFileName+DOCX_SUFFIX);
+            String paperFilePath = uploadUrl+paperfileName+DOCX_SUFFIX;
+            String answerFilePath = uploadUrl+answerFileName+DOCX_SUFFIX;
+        	//上传至又拍云
+            UpYun upyun = new UpYun(bucketName,userName,password);
+			upyun.writeFile(paperFilePath, paperFile,true);
+			upyun.writeFile(answerFilePath, answerFile,true);
+			//保存上传文件记录
+			List<ExamFile> examFileList = new ArrayList<ExamFile>();
+			//试卷
+			examFileList.add(new ExamFile(extractConfig,orgName,paperfileName+DOCX_SUFFIX,paperFilePath,ExamFileType.PAPER));
+			//答案
+			examFileList.add(new ExamFile(extractConfig,orgName,answerFileName+DOCX_SUFFIX,answerFilePath,ExamFileType.ANSWER));
+			examFileService.saveExamFiles(examFileList,accessUser);
+			//删除本地文件
+			paperFile.delete();
+			answerFile.delete();
+        }
+    }
+    
 }
 

+ 84 - 0
cqb-paper/src/main/java/com/qmth/cqb/paper/service/export/TjdxExportPaperService.java

@@ -0,0 +1,84 @@
+package com.qmth.cqb.paper.service.export;
+
+import java.io.File;
+import java.util.ArrayList;
+import java.util.List;
+import java.util.Map;
+
+import javax.servlet.http.HttpServletResponse;
+
+import main.java.com.UpYun;
+
+import org.springframework.stereotype.Service;
+
+import cn.com.qmth.examcloud.common.uac.entity.AccessUser;
+
+import com.qmth.cqb.paper.model.ExamFile;
+import com.qmth.cqb.paper.model.ExtractConfig;
+import com.qmth.cqb.utils.CommonUtils;
+import com.qmth.cqb.utils.enums.ExamFileType;
+import com.qmth.cqb.utils.word.DocxProcessUtil;
+
+/**
+ * @author  	chenken
+ * @date    	2017年7月7日 上午11:29:49
+ * @company 	QMTH
+ * @description 天津大学导出service
+ */
+@Service("tjdxExportPaperService")
+public class TjdxExportPaperService extends ExportPaperAbstractService {
+    
+	public static final String TEMP_FILE_EXP = "docxExport/";
+	public static final String DOCX_SUFFIX = ".docx";
+	
+    @Override
+    public void downloadPaper(String paperId, HttpServletResponse response) throws Exception {
+        Map<String,Object> dataMap = initExportPaper(paperId);
+        List<String> fileList = new ArrayList<String>();
+        if (dataMap.get("fileName") != null) {
+            String paperfileName = (String) dataMap.get("fileName");
+            String answerFileName = paperfileName+"__答案";
+            DocxProcessUtil.exportPaper(dataMap, paperfileName,TJDX_TEMPLATE_PAPER);
+            DocxProcessUtil.exportAnswer(dataMap,answerFileName,TJDX_TEMPLATE_ANSWER);
+            DocxProcessUtil.processImage(paperfileName,getPkgList(paperId));
+            DocxProcessUtil.processImage(answerFileName,getPkgList(paperId));
+            fileList.add(paperfileName);
+            fileList.add(answerFileName);
+            DocxProcessUtil.processDownload(fileList, response);
+        }
+    }
+
+    @Override
+    public void uploadFile(String orgName,ExtractConfig extractConfig,String paperId,AccessUser accessUser) throws Exception{
+    	Map<String,Object> dataMap = initExportPaper(paperId);
+        if (dataMap.get("fileName") != null) {
+        	String paperfileName = (String) dataMap.get("fileName")+CommonUtils.getCurNum();
+            String answerFileName = paperfileName+"__答案"+CommonUtils.getCurNum();
+            DocxProcessUtil.exportPaper(dataMap, paperfileName,TJDX_TEMPLATE_PAPER);
+            DocxProcessUtil.exportAnswer(dataMap,answerFileName,TJDX_TEMPLATE_ANSWER);
+            DocxProcessUtil.processImage(paperfileName,getPkgList(paperId));
+            DocxProcessUtil.processImage(answerFileName,getPkgList(paperId));
+            //得到本地文件和文件路径
+            File paperFile  = new File(TEMP_FILE_EXP+paperfileName+DOCX_SUFFIX);
+            File answerFile  = new File(TEMP_FILE_EXP+answerFileName+DOCX_SUFFIX);
+            String paperFilePath = uploadUrl+paperfileName+DOCX_SUFFIX;
+            String answerFilePath = uploadUrl+answerFileName+DOCX_SUFFIX;
+        	//上传至又拍云
+            UpYun upyun = new UpYun(bucketName,userName,password);
+			upyun.writeFile(paperFilePath, paperFile,true);
+			upyun.writeFile(answerFilePath, answerFile,true);
+			//保存上传文件记录
+			List<ExamFile> examFileList = new ArrayList<ExamFile>();
+			//试卷
+			examFileList.add(new ExamFile(extractConfig,orgName,paperfileName+DOCX_SUFFIX,downloadUrl+paperFilePath,ExamFileType.PAPER));
+			//答案
+			examFileList.add(new ExamFile(extractConfig,orgName,answerFileName+DOCX_SUFFIX,downloadUrl+answerFilePath,ExamFileType.ANSWER));
+			examFileService.saveExamFiles(examFileList,accessUser);
+			//删除本地文件
+			paperFile.delete();
+			answerFile.delete();
+        }
+    }
+    
+}
+

+ 42 - 6
cqb-paper/src/main/java/com/qmth/cqb/paper/service/impl/ExamFileServiceImpl.java

@@ -1,6 +1,16 @@
 package com.qmth.cqb.paper.service.impl;
 
+import java.util.Date;
+import java.util.List;
+
+import main.java.com.UpYun;
+
 import org.springframework.beans.factory.annotation.Autowired;
+import org.springframework.beans.factory.annotation.Value;
+import org.springframework.data.domain.Example;
+import org.springframework.stereotype.Service;
+
+import cn.com.qmth.examcloud.common.uac.entity.AccessUser;
 
 import com.qmth.cqb.paper.dao.ExamFileRepo;
 import com.qmth.cqb.paper.model.ExamFile;
@@ -12,20 +22,46 @@ import com.qmth.cqb.paper.service.ExamFileService;
  * @company 	QMTH
  * @description ExamFileServiceImpl.java
  */
+@Service("examFileService")
 public class ExamFileServiceImpl implements ExamFileService{
 
 	@Autowired
 	private ExamFileRepo examFileRepo;
 	
+	@Value("${upyun.bucketName}")
+	protected String bucketName;
+	
+	@Value("${upyun.userName}")
+	protected String userName;
+	
+	@Value("${upyun.password}")
+	protected String password;
+	
 	@Override
-	public void saveExamFile(ExamFile examFile) {
-		String filePath = uploadFile();
-		examFile.setFilePath(filePath);
-		examFileRepo.save(examFile);
+	public void saveExamFiles(List<ExamFile> examFileList,AccessUser accessUser){
+		for(ExamFile examFile:examFileList){
+			ExamFile oldExamFile = new ExamFile();
+			oldExamFile.setExamId(examFile.getExamId());
+			oldExamFile.setExamType(examFile.getExamType());
+			oldExamFile.setCourseId(examFile.getCourseId());
+			oldExamFile.setExamFileType(examFile.getExamFileType());
+			oldExamFile = examFileRepo.findOne(Example.of(oldExamFile));
+			if(oldExamFile!=null){
+				//删除又拍云上的文件
+				UpYun upyun = new UpYun(bucketName,userName,password);
+				upyun.deleteFile(oldExamFile.getFilePath());
+				//删除数据库记录
+				examFileRepo.delete(oldExamFile);
+			}
+			examFile.setCreateTime(new Date());
+			examFile.setCreateUser(accessUser.getName());
+			examFileRepo.save(examFile);
+		}
 	}
 
-	private String uploadFile() {
-		return null;
+	@Override
+	public List<ExamFile> findExamFileListByExamFile(ExamFile examFile) {
+		return examFileRepo.findAll(Example.of(examFile));
 	}
 
 }

+ 85 - 2
cqb-paper/src/main/java/com/qmth/cqb/paper/service/impl/ExtractConfigServiceImpl.java

@@ -1,5 +1,6 @@
 package com.qmth.cqb.paper.service.impl;
 
+import java.io.File;
 import java.util.ArrayList;
 import java.util.Collections;
 import java.util.HashMap;
@@ -9,11 +10,15 @@ import java.util.Map;
 import java.util.Random;
 import java.util.Set;
 
+import javax.servlet.http.HttpServletResponse;
+
+import org.apache.commons.io.FileUtils;
 import org.apache.commons.lang3.StringUtils;
 import org.nlpcn.commons.lang.util.StringUtil;
 import org.slf4j.Logger;
 import org.slf4j.LoggerFactory;
 import org.springframework.beans.factory.annotation.Autowired;
+import org.springframework.beans.factory.annotation.Value;
 import org.springframework.data.domain.Example;
 import org.springframework.data.mongodb.core.MongoTemplate;
 import org.springframework.data.mongodb.core.query.Criteria;
@@ -28,24 +33,33 @@ import cn.com.qmth.examcloud.common.dto.question.QuesOptionDto;
 import cn.com.qmth.examcloud.common.dto.question.QuestionDto;
 import cn.com.qmth.examcloud.common.dto.question.SubQuestionDto;
 import cn.com.qmth.examcloud.common.dto.question.enums.QuesStructType;
+import cn.com.qmth.examcloud.common.uac.entity.AccessUser;
 
+import com.qmth.cqb.paper.dao.ExportServiceManageRepo;
 import com.qmth.cqb.paper.dao.ExtractConfigRepo;
 import com.qmth.cqb.paper.dao.PaperDetailRepo;
 import com.qmth.cqb.paper.dao.PaperDetailUnitRepo;
 import com.qmth.cqb.paper.dao.PaperRepo;
+import com.qmth.cqb.paper.dto.ExportPaperInfoModel;
+import com.qmth.cqb.paper.model.ExamFile;
 import com.qmth.cqb.paper.model.ExamPaper;
+import com.qmth.cqb.paper.model.ExportServiceManage;
 import com.qmth.cqb.paper.model.ExtractConfig;
 import com.qmth.cqb.paper.model.Paper;
 import com.qmth.cqb.paper.model.PaperDetail;
 import com.qmth.cqb.paper.model.PaperDetailUnit;
+import com.qmth.cqb.paper.service.ExamFileService;
 import com.qmth.cqb.paper.service.ExtractConfigService;
 import com.qmth.cqb.paper.service.PaperDetailUnitService;
 import com.qmth.cqb.paper.service.PaperService;
+import com.qmth.cqb.paper.service.export.ExportPaperAbstractService;
 import com.qmth.cqb.question.dao.QuesRepo;
 import com.qmth.cqb.question.model.QuesOption;
 import com.qmth.cqb.question.model.Question;
 import com.qmth.cqb.utils.BeanCopierUtil;
 import com.qmth.cqb.utils.CommonUtils;
+import com.qmth.cqb.utils.FileDisposeUtil;
+import com.qmth.cqb.utils.SpringContextUtils;
 import com.qmth.cqb.utils.enums.PaperType;
 
 /**
@@ -84,6 +98,30 @@ public class ExtractConfigServiceImpl implements ExtractConfigService {
     @Autowired
     private MongoTemplate mongoTemplate;
     
+    @Autowired
+    private ExportServiceManageRepo exportServiceManageRepo;
+    
+    @Autowired
+    private ExamFileService examFileService;
+    
+    @Value("${upyun.bucketName}")
+	private String bucketName;
+	
+	@Value("${upyun.userName}")
+	private String userName;
+	
+	@Value("${upyun.password}")
+	private String password;
+	
+	@Value("${upyun.downloadUrl}")
+	protected String downloadUrl;
+	
+	@Value("${upyun.downloadDirectory}")
+	private String downloadDirectory;
+	
+	@Value("${upyun.zipDirectory}")
+	private String zipDirectory;
+    
 	@Override
 	public ExtractConfig findConfig(ExtractConfig condition) {
 		if(condition.getExamId()==null){
@@ -97,7 +135,7 @@ public class ExtractConfigServiceImpl implements ExtractConfigService {
 	}
 
 	@Override
-	public void saveExtractConfig(ExtractConfig extractConfig) {
+	public void saveExtractConfig(ExtractConfig extractConfig,String orgName,AccessUser accessUser) throws Exception {
 		if(extractConfig.getScrambling_the_question_order()==null){
 			extractConfig.setScrambling_the_question_order((short) 0);
 		}
@@ -110,9 +148,17 @@ public class ExtractConfigServiceImpl implements ExtractConfigService {
 			Paper paper = examPaper.getPaper();
 			paper = paperRepo.findOne(paper.getId());
 			examPaper.setPaper(paper);
-			//examPaperService.saveExamPaper(examPaper);//保存
 		}
 		extractConfigRepo.save(extractConfig);
+		//将试卷生成Word后上传至又拍云
+		String paperId = examPapers.get(0).getPaper().getId();
+		uploadPaperFile(extractConfig,paperId,orgName,accessUser);
+	}
+
+	private void uploadPaperFile(ExtractConfig extractConfig,String paperId,String orgName,AccessUser accessUser) throws Exception {
+		ExportServiceManage esm = exportServiceManageRepo.findByOrgName("陕西师范大学");
+    	ExportPaperAbstractService exportPaperAbstractService = (ExportPaperAbstractService) SpringContextUtils.getBeanById(esm.getExportServiceName());
+    	exportPaperAbstractService.uploadFile(orgName,extractConfig,paperId,accessUser);
 	}
 
 	@Override
@@ -590,5 +636,42 @@ public class ExtractConfigServiceImpl implements ExtractConfigService {
         quesOptions = null;
         return newQuesOptions;
     }
+
+	@Override
+	public void exportExamPaperInfo(ExportPaperInfoModel exportModel,HttpServletResponse response) {
+		String examId = exportModel.getExamId();
+		List<ExamFile> examFiles = examFileService.findExamFileListByExamFile(new ExamFile(examId));
+		if(examFiles.size()>0){
+			//创建试卷和压缩文件 文件夹
+			createDirectory(downloadDirectory);
+			createDirectory(zipDirectory);
+			//下载文件到服务器
+			for(ExamFile examFile:examFiles){
+				String fileName = examFile.getExamFileType().getName()+"_"+examFile.getFileName();
+				FileDisposeUtil.saveUrlAs(downloadUrl+examFile.getFilePath(),downloadDirectory+"\\"+fileName);
+			}
+			
+			//创建压缩文件名称
+			String zipFileName = examFiles.get(0).getExamName()+"_"+
+								 examFiles.get(0).getExamType().name()+"_"+
+										CommonUtils.getCurNum();
+			//将文件夹压缩成zip文件
+			FileDisposeUtil.fileToZip(downloadDirectory,zipDirectory,zipFileName);
+			//下载zip文件到客户端
+			FileDisposeUtil.downloadFile(zipFileName+".zip",zipDirectory+"\\"+zipFileName+".zip",response);
+		}
+	}
 	
+	/**
+	 * 创建文件夹
+	 * 如果已经存在,删除再新建
+	 * @param directoryName
+	 */
+	private static void createDirectory(String directoryName){
+		File directory = new File(directoryName);
+		if(directory.exists()){
+			FileUtils.deleteQuietly(directory);
+		}
+		directory.mkdirs();
+	}
 }

+ 0 - 7
cqb-paper/src/main/java/com/qmth/cqb/paper/web/ExportPaperController.java

@@ -1,7 +1,6 @@
 package com.qmth.cqb.paper.web;
 
 import cn.com.qmth.examcloud.common.uac.annotation.Uac;
-import cn.com.qmth.examcloud.common.uac.entity.AccessUser;
 import cn.com.qmth.examcloud.common.uac.enums.RoleMeta;
 import cn.com.qmth.examcloud.common.uac.enums.UacPolicy;
 import io.swagger.annotations.ApiOperation;
@@ -57,12 +56,6 @@ public class ExportPaperController {
             	ExportPaperAbstractService exportPaperAbstractService = (ExportPaperAbstractService) SpringContextUtils.getBeanById(esm.getExportServiceName());
     			exportPaperAbstractService.downloadPaper(id, response);
     		}
-    		/*
-    		ExportServiceManage esm = exportServiceManageRepo.findByOrgName("电子科技大学");
-        	ExportPaperAbstractService exportPaperAbstractService = (ExportPaperAbstractService) SpringContextUtils.getBeanById(esm.getExportServiceName());
-			exportPaperAbstractService.downloadPaper(id, response);
-    		String folderLocalPath = request.getSession().getServletContext().getRealPath("/docxExport/");
-    		*/
 		} catch (Exception e) {
 			e.printStackTrace();
 	        log.error("导出异常:"+e.getMessage());

+ 19 - 3
cqb-paper/src/main/java/com/qmth/cqb/paper/web/ExtractConfigController.java

@@ -5,6 +5,7 @@ import java.util.HashMap;
 import java.util.Map;
 
 import javax.servlet.http.HttpServletRequest;
+import javax.servlet.http.HttpServletResponse;
 
 import io.swagger.annotations.ApiOperation;
 
@@ -17,6 +18,7 @@ import org.springframework.http.ResponseEntity;
 import org.springframework.stereotype.Controller;
 import org.springframework.web.bind.annotation.GetMapping;
 import org.springframework.web.bind.annotation.PathVariable;
+import org.springframework.web.bind.annotation.PostMapping;
 import org.springframework.web.bind.annotation.PutMapping;
 import org.springframework.web.bind.annotation.RequestBody;
 import org.springframework.web.bind.annotation.RequestMapping;
@@ -24,6 +26,7 @@ import org.springframework.web.bind.annotation.RequestMapping;
 import cn.com.qmth.examcloud.common.dto.question.PaperDto;
 import cn.com.qmth.examcloud.common.uac.entity.AccessUser;
 
+import com.qmth.cqb.paper.dto.ExportPaperInfoModel;
 import com.qmth.cqb.paper.model.ExtractConfig;
 import com.qmth.cqb.paper.service.ExtractConfigService;
 
@@ -39,6 +42,7 @@ import com.qmth.cqb.paper.service.ExtractConfigService;
 @RequestMapping("${api_cqb}/")
 public class ExtractConfigController {
 	private static final Logger logger = LoggerFactory.getLogger(ExtractConfigController.class);
+	
 	@Autowired
 	private ExtractConfigService extractConfigService;
 	
@@ -60,12 +64,14 @@ public class ExtractConfigController {
 	} 
 	
 	@ApiOperation(value = "保存调卷规则", notes = "保存调卷规则")
-    @PutMapping(value = "/extractConfig")
-	public ResponseEntity saveExtractConfig(HttpServletRequest request,@RequestBody ExtractConfig extractConfig){
+    @PutMapping(value = "/extractConfig/{orgName}")
+	public ResponseEntity saveExtractConfig(HttpServletRequest request,
+											@PathVariable String orgName,
+											@RequestBody ExtractConfig extractConfig){
 		try{
 			AccessUser user = (AccessUser) request.getAttribute("accessUser");
 			extractConfig.setOrgId(user.getRootOrgId()+"");
-			extractConfigService.saveExtractConfig(extractConfig);
+			extractConfigService.saveExtractConfig(extractConfig,orgName,user);
 			return new ResponseEntity(HttpStatus.OK);
 		}catch(Exception e){
 			return new ResponseEntity(HttpStatus.INTERNAL_SERVER_ERROR);
@@ -133,4 +139,14 @@ public class ExtractConfigController {
 			return new ResponseEntity<Map<String, Object>>(HttpStatus.INTERNAL_SERVER_ERROR);
 		}
 	}
+	
+	@ApiOperation(value = "导出考试试卷、答案、试卷结构", notes = "导出考试试卷、答案、试卷结构")
+	@GetMapping(value = "/exportExamPaperInfo/{examId}")
+	public ResponseEntity exportExamPaperInfo(HttpServletResponse response,@PathVariable String examId){
+		//,@RequestBody ExportPaperInfoModel exportModel
+		ExportPaperInfoModel exportModel = new ExportPaperInfoModel();
+		exportModel.setExamId(examId);
+		extractConfigService.exportExamPaperInfo(exportModel,response);
+		return new ResponseEntity(HttpStatus.OK);
+	}
 }	

+ 9 - 1
cqb-starter/src/main/resources/application-dev.properties

@@ -6,4 +6,12 @@ eureka.client.serviceUrl.defaultZone=http://192.168.1.99:1111/eureka/
 spring.application.name=ExamCloud-service-question
 
 spring.redis.host=192.168.1.99
-spring.redis.port=6379
+spring.redis.port=6379
+
+upyun.bucketName=exam-cloud-test
+upyun.userName=examcloud
+upyun.password=examcloud123456
+upyun.uploadUrl=/comm-ques-bank/exam-paper-file/
+upyun.downloadUrl=http://exam-cloud-test.b0.upaiyun.com
+upyun.downloadDirectory=paperDirectory
+upyun.zipDirectory=paperZipDirectory

+ 18 - 3
cqb-starter/src/test/java/com/qmth/cqb/ExtractConfigServiceTest.java

@@ -1,23 +1,32 @@
 package com.qmth.cqb;
 
+import java.io.File;
+import java.io.IOException;
 import java.util.ArrayList;
 import java.util.Collections;
 import java.util.List;
 import java.util.Map;
 
+import main.java.com.UpYun;
+
+import org.apache.commons.io.FileUtils;
 import org.junit.Test;
 import org.junit.runner.RunWith;
 import org.springframework.beans.factory.annotation.Autowired;
 import org.springframework.boot.test.context.SpringBootTest;
+import org.springframework.mock.web.MockHttpServletRequest;
+import org.springframework.mock.web.MockHttpServletResponse;
 import org.springframework.test.context.junit4.SpringRunner;
 
 import cn.com.qmth.examcloud.common.dto.question.QuestionDto;
 
 import com.qmth.cqb.paper.dao.PaperRepo;
+import com.qmth.cqb.paper.dto.ExportPaperInfoModel;
 import com.qmth.cqb.paper.model.ExamPaper;
 import com.qmth.cqb.paper.model.ExtractConfig;
 import com.qmth.cqb.paper.model.Paper;
 import com.qmth.cqb.paper.service.ExtractConfigService;
+import com.qmth.cqb.paper.service.export.SxsfExportPaperService;
 
 /**
  * @author  	chenken
@@ -33,13 +42,18 @@ public class ExtractConfigServiceTest {
 	private PaperRepo paperRepo;
 	@Autowired
 	private ExtractConfigService extractConfigService;
+	@Autowired
+	private SxsfExportPaperService sxsfExportPaperService;
 	
+	private MockHttpServletRequest request;  
+    private MockHttpServletResponse response; 
 	/**
 	 * 测试保存调卷规则
+	 * @throws Exception 
 	 */
 	@Test
-	public void testSaveExtractConfig(){
-		ExtractConfig extractConfig = new ExtractConfig();
+	public void testSaveExtractConfig() throws Exception{
+		/*ExtractConfig extractConfig = new ExtractConfig();
 		extractConfig.setExamId(2L);
 		extractConfig.setExamName("测试考试0419");
 		extractConfig.setExamType("TRANDITION");
@@ -51,7 +65,7 @@ public class ExtractConfigServiceTest {
 		//List<ExamPaper> examPaperList = buildOnlineExamPaper();
 		List<ExamPaper> examPaperList = buildTraditionExamPaper();
 		extractConfig.setExamPaperList(examPaperList);
-		extractConfigService.saveExtractConfig(extractConfig);
+		extractConfigService.saveExtractConfig(extractConfig,"机构名称");*/
 	}
 	/**
 	 * 测试根据调卷规则ID生成试卷
@@ -157,6 +171,7 @@ public class ExtractConfigServiceTest {
 		System.out.println(dto.getQuesAnswer());
 	}
 	
+	
 	public static void main(String[] args) {
 		List<String> newList = new ArrayList<String>();
 		newList.add("a");

Alguns ficheiros não foram mostrados porque muitos ficheiros mudaram neste diff