浏览代码

提交陕西师范大学试卷导出功能代码

chenken 8 年之前
父节点
当前提交
791e7d8cec

+ 59 - 0
cqb-comm-utils/src/main/java/com/qmth/cqb/utils/SpringContextUtils.java

@@ -0,0 +1,59 @@
+package com.qmth.cqb.utils;
+
+import java.util.Map;
+
+import org.springframework.beans.BeansException;
+import org.springframework.context.ApplicationContext;
+import org.springframework.context.ApplicationContextAware;
+import org.springframework.stereotype.Component;
+
+/**
+ * 获取ApplicationContext和Object的工具类
+ */
+@Component
+public class SpringContextUtils implements ApplicationContextAware {
+    private static ApplicationContext applicationContext;
+ 
+    public void setApplicationContext(ApplicationContext arg0)
+            throws BeansException {
+        applicationContext = arg0;
+    }
+ 
+    /**
+     * 获取applicationContext对象
+     * @return
+     */
+    public static ApplicationContext getApplicationContext(){
+        return applicationContext;
+    }
+     
+    /**
+     * 根据bean的id来查找对象
+     * @param id
+     * @return
+     */
+    public static Object getBeanById(String id){
+        return applicationContext.getBean(id);
+    }
+     
+    /**
+     * 根据bean的class来查找对象
+     * @param c
+     * @return
+     */
+    @SuppressWarnings({ "unchecked", "rawtypes" })
+	public static Object getBeanByClass(Class c){
+        return applicationContext.getBean(c);
+    }
+     
+    /**
+     * 根据bean的class来查找所有的对象(包括子类)
+     * @param c
+     * @return
+     */
+    @SuppressWarnings({ "unchecked", "rawtypes" })
+	public static Map getBeansByClass(Class c){
+        return applicationContext.getBeansOfType(c);
+    }
+}
+

+ 47 - 28
cqb-comm-utils/src/main/java/com/qmth/cqb/utils/word/DocxProcessUtil.java

@@ -3,6 +3,7 @@ package com.qmth.cqb.utils.word;
 import com.qmth.cqb.utils.CommonUtils;
 import com.qmth.cqb.utils.ZipUtils;
 import com.qmth.cqb.utils.enums.QuesUnit;
+
 import freemarker.template.Configuration;
 import freemarker.template.Template;
 import net.sf.saxon.TransformerFactoryImpl;
@@ -10,6 +11,7 @@ import net.sourceforge.jeuclid.LayoutContext;
 import net.sourceforge.jeuclid.context.LayoutContextImpl;
 import net.sourceforge.jeuclid.context.StyleAttributeLayoutContext;
 import net.sourceforge.jeuclid.converter.Converter;
+
 import org.apache.commons.codec.binary.Base64;
 import org.apache.commons.io.FileUtils;
 import org.apache.commons.io.IOUtils;
@@ -28,13 +30,11 @@ import org.docx4j.jaxb.Context;
 import org.docx4j.math.CTOMath;
 import org.docx4j.math.CTOMathPara;
 import org.docx4j.openpackaging.exceptions.Docx4JException;
-import org.docx4j.openpackaging.io3.stores.PartStore;
 import org.docx4j.openpackaging.io3.stores.ZipPartStore;
 import org.docx4j.openpackaging.packages.WordprocessingMLPackage;
 import org.docx4j.openpackaging.parts.Part;
 import org.docx4j.openpackaging.parts.WordprocessingML.BinaryPartAbstractImage;
 import org.docx4j.openpackaging.parts.WordprocessingML.MainDocumentPart;
-import org.docx4j.openpackaging.parts.WordprocessingML.NumberingDefinitionsPart;
 import org.docx4j.openpackaging.parts.relationships.Namespaces;
 import org.docx4j.openpackaging.parts.relationships.RelationshipsPart;
 import org.docx4j.relationships.Relationship;
@@ -44,8 +44,11 @@ import org.dom4j.io.SAXReader;
 import org.jsoup.Jsoup;
 import org.jsoup.nodes.Element;
 import org.jsoup.select.Elements;
+import org.slf4j.Logger;
+import org.slf4j.LoggerFactory;
 import org.xml.sax.InputSource;
 
+import javax.imageio.ImageIO;
 import javax.servlet.http.HttpServletResponse;
 import javax.xml.bind.JAXBElement;
 import javax.xml.parsers.DocumentBuilder;
@@ -55,8 +58,26 @@ import javax.xml.transform.TransformerFactory;
 import javax.xml.transform.dom.DOMSource;
 import javax.xml.transform.stream.StreamResult;
 import javax.xml.transform.stream.StreamSource;
-import java.io.*;
-import java.util.*;
+
+import java.awt.image.BufferedImage;
+import java.io.BufferedWriter;
+import java.io.ByteArrayInputStream;
+import java.io.ByteArrayOutputStream;
+import java.io.File;
+import java.io.FileInputStream;
+import java.io.FileOutputStream;
+import java.io.InputStream;
+import java.io.OutputStream;
+import java.io.OutputStreamWriter;
+import java.io.StringReader;
+import java.io.StringWriter;
+import java.io.Writer;
+import java.util.ArrayList;
+import java.util.HashSet;
+import java.util.List;
+import java.util.Map;
+import java.util.Set;
+import java.util.UUID;
 import java.util.regex.Matcher;
 import java.util.regex.Pattern;
 import java.util.zip.ZipOutputStream;
@@ -66,9 +87,13 @@ import java.util.zip.ZipOutputStream;
  */
 public final class DocxProcessUtil {
 
+	private static final Logger logger = LoggerFactory.getLogger(DocxProcessUtil.class);
+	
     public static final LayoutContext IMG_LAYOUT = new StyleAttributeLayoutContext(
             LayoutContextImpl.getDefaultLayoutContext(), "2em", java.awt.Color.BLACK);
-
+    
+    public static Configuration configuration;
+    
     public static final String IMG_OUT_TYPE = "image/png";
 
     public static final String ENCODING = "utf-8";
@@ -91,7 +116,7 @@ public final class DocxProcessUtil {
 
     public static final String BODY_TAIL = "</w:body>";
 
-    public static final String REL_ID_HEADER = "rld";
+    public static final String REL_ID_HEADER = "rId";
 
     static {
         init();
@@ -636,26 +661,15 @@ public final class DocxProcessUtil {
      * @param dataMap
      * @param fileName
      */
-    public static void exportWord(Map dataMap, String fileName, String templatePath)throws Exception {
+    public static void exportWord(Map dataMap, String fileName,Template template)throws Exception {
         Writer out = null;
-        // 创建配置实例
-        Configuration configuration = new Configuration(Configuration.VERSION_2_3_25);
-        // 设置编码
-        configuration.setDefaultEncoding("UTF-8");
-        // 设置ftl模板路径
-        configuration.setClassForTemplateLoading(DocxProcessUtil.class, "/");
-        // 获取模板
-        Template template = configuration.getTemplate(templatePath, ENCODING);
         // 输出文件
         File outFile = new File(TEMP_FILE_EXP + fileName + DOCX_SUFFIX);
-
         // 将模板和数据模型合并生成文件
         out = new BufferedWriter(new OutputStreamWriter(new FileOutputStream(outFile), ENCODING));
         // 生成文件
         template.process(dataMap, out);
-
         out.flush();
-
         IOUtils.closeQuietly(out);
     }
 
@@ -665,8 +679,8 @@ public final class DocxProcessUtil {
      * @param dataMap
      * @param fileName
      */
-    public static void exportPaper(Map dataMap, String fileName,String paperTemplate) throws Exception {
-        exportWord(dataMap, fileName, paperTemplate);
+    public static void exportPaper(Map dataMap, String fileName,Template template) throws Exception {
+        exportWord(dataMap, fileName, template);
     }
 
     /**
@@ -675,8 +689,8 @@ public final class DocxProcessUtil {
      * @param dataMap
      * @param fileName
      */
-    public static void exportAnswer(Map dataMap, String fileName,String answerTemplate) throws Exception {
-        exportWord(dataMap, fileName, answerTemplate);
+    public static void exportAnswer(Map dataMap, String fileName,Template template) throws Exception {
+        exportWord(dataMap, fileName, template);
     }
 
     /**
@@ -687,7 +701,7 @@ public final class DocxProcessUtil {
      * @throws Exception
      */
     public static void processImage(String fileName, List<WordprocessingMLPackage> wordMLPackages) throws Exception {
-
+    	logger.info(fileName+"word导出处理图片开始...");
         String filePath = TEMP_FILE_EXP + fileName + DOCX_SUFFIX;
         InputStream mainFile = new FileInputStream(filePath);
         // 以单个wordXml方式解析freemarker导出的文件
@@ -696,7 +710,6 @@ public final class DocxProcessUtil {
         RelationshipsPart relationshipsPart = wordMLPackage.getMainDocumentPart().getRelationshipsPart();
 
         for (WordprocessingMLPackage wp : wordMLPackages) {
-
             // 获取资源文件存储
             ZipPartStore partStore = (ZipPartStore) wp.getSourcePartStore();
             // 获取图片资源定义
@@ -715,12 +728,13 @@ public final class DocxProcessUtil {
                 }
             }
             // 添加资源文件存储
-//            wordMLPackage.setSourcePartStore(partStore);
+            //wordMLPackage.setSourcePartStore(partStore);
         }
         // 以word2007标准模式重新保存(zip包)
         OutputStream os = new java.io.FileOutputStream(filePath);
         Docx4J.save(wordMLPackage, os, Docx4J.FLAG_SAVE_ZIP_FILE);
         IOUtils.closeQuietly(os);
+        logger.info(fileName+"word导出处理图片结束:"+System.currentTimeMillis());
     }
 
     /**
@@ -732,10 +746,15 @@ public final class DocxProcessUtil {
      */
     public static void copyImage(WordprocessingMLPackage wordMLPackage, ZipPartStore partStore, Part p)throws Exception{
         byte [] bytes = partStore.getByteArray(p.getPartName().getName().substring(1)).getBytes();
-        BinaryPartAbstractImage imagePart = BinaryPartAbstractImage.createImagePart(wordMLPackage, bytes);
-        imagePart.getRelLast().setId(p.getSourceRelationships().get(0).getId());
+        ByteArrayInputStream bais = new ByteArrayInputStream(bytes);  
+        BufferedImage bi1 = ImageIO.read(bais);
+        if(bi1!=null){
+        	BinaryPartAbstractImage imagePart = BinaryPartAbstractImage.createImagePart(wordMLPackage, bytes);
+            imagePart.getRelLast().setId(p.getSourceRelationships().get(0).getId());
+        }
+        
     }
-
+    
     /**
      * 获取word二进制数据(空文档,只有样式和资源)
      *

文件差异内容过多而无法显示
+ 4085 - 0
cqb-comm-utils/src/main/resources/sxsf_answer_template.ftl


+ 5009 - 0
cqb-comm-utils/src/main/resources/sxsf_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>电子科技大学网络教育考卷(A1卷)</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>

+ 4 - 2
cqb-question-resource/src/main/java/com/qmth/cqb/question/model/Question.java

@@ -25,8 +25,10 @@ public class Question implements Serializable {
     private String quesBody;// 题干,默认为html
 
     private String quesBodyWord;// 题干word
-
-    private byte[] quesPkg;// 试题wordpkg对象序列化数据
+    /**
+     * 试题wordpkg对象序列化数据
+     */
+    private byte[] quesPkg;
 
     private String quesAnswer;// 答案,默认为html
 

+ 1 - 1
cqb-question-resource/src/main/java/com/qmth/cqb/question/web/QuesController.java

@@ -102,7 +102,7 @@ public class QuesController {
     @PostMapping(value = "/question")
     public ResponseEntity addQuestion(HttpServletRequest request,
                                       @RequestBody Question question) {
-        return new ResponseEntity(quesRepo.save(question), HttpStatus.CREATED);
+        return new ResponseEntity(quesService.saveQues(question), HttpStatus.CREATED);
     }
 
     /**

+ 13 - 0
cqb-starter/src/test/java/com/qmth/cqb/PaperServiceTest.java

@@ -7,6 +7,8 @@ import org.springframework.beans.factory.annotation.Autowired;
 import org.springframework.boot.test.context.SpringBootTest;
 import org.springframework.test.context.junit4.SpringRunner;
 
+import com.qmth.cqb.paper.dao.ExportServiceManageRepo;
+import com.qmth.cqb.paper.model.ExportServiceManage;
 import com.qmth.cqb.paper.service.PaperService;
 
 /**
@@ -20,6 +22,8 @@ import com.qmth.cqb.paper.service.PaperService;
 public class PaperServiceTest {
 	@Autowired
 	PaperService paperService;
+	@Autowired
+	ExportServiceManageRepo esmRepo;
 	
 	@Test
 	public void testUseBasePaper(){
@@ -32,5 +36,14 @@ public class PaperServiceTest {
 		String[] answers = {"A","B"};
 		System.out.println(StringUtils.join(answers,","));
 	}
+	
+	
+	@Test
+	public void testExportServiceManage(){
+		ExportServiceManage esm = new ExportServiceManage();
+		esm.setOrgName("陕西师范大学");
+		esm.setExportServiceName("sxsfExportPaperService");
+		esmRepo.save(esm);
+	}
 }
 

部分文件因为文件数量过多而无法显示