From 3ba3f0a71400f51139c3125846b10824ae537ebd Mon Sep 17 00:00:00 2001
From: liusheng <337615773@qq.com>
Date: 星期三, 19 七月 2023 10:25:19 +0800
Subject: [PATCH] 专家劳务费统计表

---
 ruoyi-project/src/main/java/com/ruoyi/project/domain/ServiceFunddetailAssort.java     |   44 
 ruoyi-admin/src/main/resources/template/专家劳务费发放申请单(1).ftl                             | 3938 +++++++++++++++++++++++++++++++++++++++++++++++++++++++++
 ruoyi-admin/src/main/java/com/ruoyi/web/controller/project/ServiceFundController.java |   50 
 3 files changed, 4,028 insertions(+), 4 deletions(-)

diff --git a/ruoyi-admin/src/main/java/com/ruoyi/web/controller/project/ServiceFundController.java b/ruoyi-admin/src/main/java/com/ruoyi/web/controller/project/ServiceFundController.java
index b5eee76..87e72dc 100644
--- a/ruoyi-admin/src/main/java/com/ruoyi/web/controller/project/ServiceFundController.java
+++ b/ruoyi-admin/src/main/java/com/ruoyi/web/controller/project/ServiceFundController.java
@@ -1,7 +1,5 @@
 package com.ruoyi.web.controller.project;
 
-import com.alibaba.fastjson.JSONArray;
-import com.alibaba.fastjson.JSONObject;
 import com.ruoyi.common.annotation.Log;
 import com.ruoyi.common.annotation.RepeatSubmit;
 import com.ruoyi.common.config.RuoYiConfig;
@@ -13,7 +11,6 @@
 import com.ruoyi.common.core.page.TableDataInfo;
 import com.ruoyi.common.enums.BusinessType;
 import com.ruoyi.common.exception.ServiceException;
-import com.ruoyi.common.utils.HttpClientKit;
 import com.ruoyi.common.utils.bean.DtoConversionUtils;
 import com.ruoyi.common.utils.poi.ExcelUtil;
 import com.ruoyi.project.domain.*;
@@ -33,6 +30,7 @@
 import java.math.BigDecimal;
 import java.text.SimpleDateFormat;
 import java.util.*;
+import java.util.stream.Collectors;
 
 import static com.ruoyi.web.controller.project.ServiceReimbursementController.convert;
 
@@ -647,7 +645,7 @@
         Template t = null;
         try {
             //鎹愮尞琛�.ftl涓鸿瑁呰浇鐨勬ā鏉�
-            t = configuration.getTemplate("涓撳鍔冲姟璐瑰彂鏀剧敵璇峰崟.ftl");
+            t = configuration.getTemplate("涓撳鍔冲姟璐瑰彂鏀剧敵璇峰崟(1).ftl");
         } catch (IOException e) {
             e.printStackTrace();
         }
@@ -714,6 +712,7 @@
         for (ServiceFunddetail f : fd) {
             Map<String, Object> map = new HashMap<String, Object>();
 
+
             map.put("XH", f.getItemcode() == null ? "" : f.getItemcode());
             String itemName = f.getItemname() == null ? "" : f.getItemname();
             String servicesscopename = f.getServicesscopename() == null ? "" : "(" + f.getServicesscopename() + ")";
@@ -735,12 +734,55 @@
             newsList.add(map);
         }
 
+        //  涓撳鍔冲姟璐圭粺璁¤〃
+        List<Map<String, Object>> lists = new ArrayList<Map<String, Object>>();
+
+        List<Double> sqljList = new ArrayList<>();
+        List<Double> ksljList = new ArrayList<>();
+        List<Double> shljList = new ArrayList<>();
+        Map<String, Optional<ServiceFunddetailAssort>> result = fd.stream().collect(Collectors.groupingBy(ServiceFunddetail::getApplytypename, Collectors.mapping(obj -> new ServiceFunddetailAssort(obj.getAmount(), obj.getTaxamount(), obj.getTaxedamount()), Collectors.reducing(ServiceFunddetailAssort::add))));
+        result.forEach((FWFL, serviceFunddetailAssort) -> {
+            Map<String, Object> map1 = new HashMap<String, Object>();
+            map1.put("FWFL", FWFL);
+            map1.put("SQXJ", serviceFunddetailAssort.get().getSQXJ());
+            map1.put("KSXJ", serviceFunddetailAssort.get().getKSXJ());
+            map1.put("SHXJ", serviceFunddetailAssort.get().getSHXJ());
+            sqljList.add(serviceFunddetailAssort.get().getSQXJ());
+            ksljList.add(serviceFunddetailAssort.get().getKSXJ());
+            shljList.add(serviceFunddetailAssort.get().getSHXJ());
+            lists.add(map1);
+        });
+
+        double sqxj = 0;
+        double kslj = 0;
+        double shlj = 0;
+        for (Double sqx : sqljList) {
+            sqxj += sqx;
+        }
+        for (Double ksl : ksljList) {
+            kslj += ksl;
+        }
+        for (Double shl : shljList) {
+            shlj += shl;
+        }
+
+        //鏁版嵁灏佽
         dataMap.put("list", newsList);
+        for (int i = 0; i < lists.size(); i++) {
+            Map<String, Object> map = lists.get(i);
+            map.put("XH", i+1);
+        }
+
+        dataMap.put("item", lists);
 
         dataMap.put("SQHJ", sq);
         dataMap.put("KSHJ", ks);
         dataMap.put("SHHJ", sh);
 
+        dataMap.put("SQLJ", sqxj);
+        dataMap.put("KSLJ", kslj);
+        dataMap.put("SHLJ", shlj);
+
     }
 
 
diff --git "a/ruoyi-admin/src/main/resources/template/\344\270\223\345\256\266\345\212\263\345\212\241\350\264\271\345\217\221\346\224\276\347\224\263\350\257\267\345\215\225\0501\051.ftl" "b/ruoyi-admin/src/main/resources/template/\344\270\223\345\256\266\345\212\263\345\212\241\350\264\271\345\217\221\346\224\276\347\224\263\350\257\267\345\215\225\0501\051.ftl"
new file mode 100644
index 0000000..0fc600e
--- /dev/null
+++ "b/ruoyi-admin/src/main/resources/template/\344\270\223\345\256\266\345\212\263\345\212\241\350\264\271\345\217\221\346\224\276\347\224\263\350\257\267\345\215\225\0501\051.ftl"
@@ -0,0 +1,3938 @@
+<?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:name="/_rels/.rels" pkg:contentType="application/vnd.openxmlformats-package.relationships+xml" pkg:padding="512">
+		<pkg:xmlData>
+			<Relationships xmlns="http://schemas.openxmlformats.org/package/2006/relationships">
+				<Relationship Id="rId3" Type="http://schemas.openxmlformats.org/officeDocument/2006/relationships/extended-properties" Target="docProps/app.xml"/>
+				<Relationship Id="rId2" Type="http://schemas.openxmlformats.org/package/2006/relationships/metadata/core-properties" Target="docProps/core.xml"/>
+				<Relationship Id="rId1" Type="http://schemas.openxmlformats.org/officeDocument/2006/relationships/officeDocument" Target="word/document.xml"/>
+			</Relationships>
+		</pkg:xmlData>
+	</pkg:part>
+	<pkg:part pkg:name="/word/document.xml" pkg:contentType="application/vnd.openxmlformats-officedocument.wordprocessingml.document.main+xml">
+		<pkg:xmlData>
+			<w:document xmlns:wpc="http://schemas.microsoft.com/office/word/2010/wordprocessingCanvas" xmlns:cx="http://schemas.microsoft.com/office/drawing/2014/chartex" xmlns:cx1="http://schemas.microsoft.com/office/drawing/2015/9/8/chartex" xmlns:cx2="http://schemas.microsoft.com/office/drawing/2015/10/21/chartex" xmlns:cx3="http://schemas.microsoft.com/office/drawing/2016/5/9/chartex" xmlns:cx4="http://schemas.microsoft.com/office/drawing/2016/5/10/chartex" xmlns:cx5="http://schemas.microsoft.com/office/drawing/2016/5/11/chartex" xmlns:cx6="http://schemas.microsoft.com/office/drawing/2016/5/12/chartex" xmlns:cx7="http://schemas.microsoft.com/office/drawing/2016/5/13/chartex" xmlns:cx8="http://schemas.microsoft.com/office/drawing/2016/5/14/chartex" xmlns:mc="http://schemas.openxmlformats.org/markup-compatibility/2006" xmlns:aink="http://schemas.microsoft.com/office/drawing/2016/ink" xmlns:am3d="http://schemas.microsoft.com/office/drawing/2017/model3d" xmlns:o="urn:schemas-microsoft-com:office:office" xmlns:oel="http://schemas.microsoft.com/office/2019/extlst" xmlns:r="http://schemas.openxmlformats.org/officeDocument/2006/relationships" xmlns:m="http://schemas.openxmlformats.org/officeDocument/2006/math" xmlns:v="urn:schemas-microsoft-com:vml" xmlns:wp14="http://schemas.microsoft.com/office/word/2010/wordprocessingDrawing" xmlns:wp="http://schemas.openxmlformats.org/drawingml/2006/wordprocessingDrawing" xmlns:w10="urn:schemas-microsoft-com:office:word" xmlns:w="http://schemas.openxmlformats.org/wordprocessingml/2006/main" xmlns:w14="http://schemas.microsoft.com/office/word/2010/wordml" xmlns:w15="http://schemas.microsoft.com/office/word/2012/wordml" xmlns:w16cex="http://schemas.microsoft.com/office/word/2018/wordml/cex" xmlns:w16cid="http://schemas.microsoft.com/office/word/2016/wordml/cid" xmlns:w16="http://schemas.microsoft.com/office/word/2018/wordml" xmlns:w16sdtdh="http://schemas.microsoft.com/office/word/2020/wordml/sdtdatahash" xmlns:w16se="http://schemas.microsoft.com/office/word/2015/wordml/symex" xmlns:wpg="http://schemas.microsoft.com/office/word/2010/wordprocessingGroup" xmlns:wpi="http://schemas.microsoft.com/office/word/2010/wordprocessingInk" xmlns:wne="http://schemas.microsoft.com/office/word/2006/wordml" xmlns:wps="http://schemas.microsoft.com/office/word/2010/wordprocessingShape" mc:Ignorable="w14 w15 w16se w16cid w16 w16cex w16sdtdh wp14">
+				<w:body>
+					<w:p w14:paraId="2B03D239" w14:textId="77777777" w:rsidR="00D61E43" w:rsidRPr="00D61E43" w:rsidRDefault="00D61E43" w:rsidP="00196045">
+						<w:pPr>
+							<w:widowControl/>
+							<w:wordWrap w:val="0"/>
+							<w:jc w:val="right"/>
+							<w:rPr>
+								<w:rFonts w:ascii="瀹嬩綋" w:eastAsia="瀹嬩綋" w:hAnsi="瀹嬩綋" w:cs="瀹嬩綋"/>
+								<w:color w:val="000000"/>
+								<w:kern w:val="0"/>
+								<w:sz w:val="28"/>
+								<w:szCs w:val="28"/>
+							</w:rPr>
+						</w:pPr>
+						<w:r w:rsidRPr="00D61E43">
+							<w:rPr>
+								<w:rFonts w:ascii="瀹嬩綋" w:eastAsia="瀹嬩綋" w:hAnsi="瀹嬩綋" w:cs="瀹嬩綋" w:hint="eastAsia"/>
+								<w:b/>
+								<w:bCs/>
+								<w:color w:val="000000"/>
+								<w:kern w:val="0"/>
+								<w:sz w:val="32"/>
+								<w:szCs w:val="32"/>
+							</w:rPr>
+							<w:t xml:space="preserve">         娴欐睙鐪佷汉浣撳櫒瀹樿幏鍙栨湇鍔$鐞嗕腑蹇�   </w:t>
+						</w:r>
+						<w:r>
+							<w:rPr>
+								<w:rFonts w:ascii="瀹嬩綋" w:eastAsia="瀹嬩綋" w:hAnsi="瀹嬩綋" w:cs="瀹嬩綋"/>
+								<w:b/>
+								<w:bCs/>
+								<w:color w:val="000000"/>
+								<w:kern w:val="0"/>
+								<w:sz w:val="32"/>
+								<w:szCs w:val="32"/>
+							</w:rPr>
+							<w:t xml:space="preserve">       </w:t>
+						</w:r>
+						<w:r w:rsidR="00196045">
+							<w:rPr>
+								<w:rFonts w:ascii="瀹嬩綋" w:eastAsia="瀹嬩綋" w:hAnsi="瀹嬩綋" w:cs="瀹嬩綋" w:hint="eastAsia"/>
+								<w:b/>
+								<w:bCs/>
+								<w:color w:val="000000"/>
+								<w:kern w:val="0"/>
+								<w:sz w:val="22"/>
+							</w:rPr>
+							<w:t xml:space="preserve">  </w:t>
+						</w:r>
+						<w:r w:rsidRPr="00D61E43">
+							<w:rPr>
+								<w:rFonts w:ascii="瀹嬩綋" w:eastAsia="瀹嬩綋" w:hAnsi="瀹嬩綋" w:cs="瀹嬩綋" w:hint="eastAsia"/>
+								<w:b/>
+								<w:bCs/>
+								<w:color w:val="000000"/>
+								<w:kern w:val="0"/>
+								<w:sz w:val="22"/>
+							</w:rPr>
+							<w:t xml:space="preserve">  </w:t>
+						</w:r>
+						<w:r w:rsidRPr="00D61E43">
+							<w:rPr>
+								<w:rFonts w:ascii="瀹嬩綋" w:eastAsia="瀹嬩綋" w:hAnsi="瀹嬩綋" w:cs="瀹嬩綋" w:hint="eastAsia"/>
+								<w:color w:val="000000"/>
+								<w:kern w:val="0"/>
+								<w:sz w:val="28"/>
+								<w:szCs w:val="28"/>
+							</w:rPr>
+							<w:t>姹囨�昏〃</w:t>
+						</w:r>
+						<w:r w:rsidR="00F40E70">
+							<w:rPr>
+								<w:rFonts w:ascii="瀹嬩綋" w:eastAsia="瀹嬩綋" w:hAnsi="瀹嬩綋" w:cs="瀹嬩綋"/>
+								<w:color w:val="000000"/>
+								<w:kern w:val="0"/>
+								<w:sz w:val="28"/>
+								<w:szCs w:val="28"/>
+							</w:rPr>
+							<w:t xml:space="preserve">  </w:t>
+						</w:r>
+						<w:r w:rsidRPr="00D61E43">
+							<w:rPr>
+								<w:rFonts w:ascii="瀹嬩綋" w:eastAsia="瀹嬩綋" w:hAnsi="瀹嬩綋" w:cs="瀹嬩綋" w:hint="eastAsia"/>
+								<w:color w:val="000000"/>
+								<w:kern w:val="0"/>
+								<w:sz w:val="28"/>
+								<w:szCs w:val="28"/>
+							</w:rPr>
+							<w:t>琛�9-0</w:t>
+						</w:r>
+						<w:r w:rsidR="00196045">
+							<w:rPr>
+								<w:rFonts w:ascii="瀹嬩綋" w:eastAsia="瀹嬩綋" w:hAnsi="瀹嬩綋" w:cs="瀹嬩綋"/>
+								<w:color w:val="000000"/>
+								<w:kern w:val="0"/>
+								<w:sz w:val="28"/>
+								<w:szCs w:val="28"/>
+							</w:rPr>
+							<w:t xml:space="preserve">      </w:t>
+						</w:r>
+					</w:p>
+					<w:p w14:paraId="4CA4ACF9" w14:textId="77777777" w:rsidR="00D61E43" w:rsidRDefault="00D61E43" w:rsidP="00D61E43">
+						<w:pPr>
+							<w:widowControl/>
+							<w:jc w:val="center"/>
+							<w:rPr>
+								<w:rFonts w:ascii="瀹嬩綋" w:eastAsia="瀹嬩綋" w:hAnsi="瀹嬩綋" w:cs="瀹嬩綋"/>
+								<w:b/>
+								<w:bCs/>
+								<w:color w:val="000000"/>
+								<w:kern w:val="0"/>
+								<w:sz w:val="40"/>
+								<w:szCs w:val="40"/>
+							</w:rPr>
+						</w:pPr>
+						<w:r w:rsidRPr="00D61E43">
+							<w:rPr>
+								<w:rFonts w:ascii="瀹嬩綋" w:eastAsia="瀹嬩綋" w:hAnsi="瀹嬩綋" w:cs="瀹嬩綋" w:hint="eastAsia"/>
+								<w:b/>
+								<w:bCs/>
+								<w:color w:val="000000"/>
+								<w:kern w:val="0"/>
+								<w:sz w:val="40"/>
+								<w:szCs w:val="40"/>
+							</w:rPr>
+							<w:t>璐圭敤鎶ラ攢鍗�</w:t>
+						</w:r>
+					</w:p>
+					<w:p w14:paraId="648CA53F" w14:textId="77777777" w:rsidR="004A1007" w:rsidRPr="0039783B" w:rsidRDefault="004A1007" w:rsidP="00D61E43">
+						<w:pPr>
+							<w:widowControl/>
+							<w:jc w:val="center"/>
+							<w:rPr>
+								<w:rFonts w:ascii="瀹嬩綋" w:eastAsia="瀹嬩綋" w:hAnsi="瀹嬩綋" w:cs="瀹嬩綋"/>
+								<w:b/>
+								<w:bCs/>
+								<w:color w:val="000000"/>
+								<w:kern w:val="0"/>
+								<w:sz w:val="24"/>
+								<w:szCs w:val="24"/>
+							</w:rPr>
+						</w:pPr>
+					</w:p>
+					<w:p w14:paraId="02AC4519" w14:textId="77777777" w:rsidR="00D61E43" w:rsidRPr="0039783B" w:rsidRDefault="00D61E43" w:rsidP="00196045">
+						<w:pPr>
+							<w:widowControl/>
+							<w:wordWrap w:val="0"/>
+							<w:ind w:firstLine="420"/>
+							<w:jc w:val="right"/>
+							<w:rPr>
+								<w:rFonts w:ascii="瀹嬩綋" w:eastAsia="瀹嬩綋" w:hAnsi="瀹嬩綋" w:cs="瀹嬩綋"/>
+								<w:color w:val="000000"/>
+								<w:kern w:val="0"/>
+								<w:sz w:val="24"/>
+								<w:szCs w:val="24"/>
+							</w:rPr>
+						</w:pPr>
+						<w:r w:rsidRPr="0039783B">
+							<w:rPr>
+								<w:rFonts w:ascii="瀹嬩綋" w:eastAsia="瀹嬩綋" w:hAnsi="瀹嬩綋" w:cs="瀹嬩綋" w:hint="eastAsia"/>
+								<w:color w:val="000000"/>
+								<w:kern w:val="0"/>
+								<w:sz w:val="24"/>
+								<w:szCs w:val="24"/>
+							</w:rPr>
+							<w:t>濉〃鏃ユ湡锛�${TBYYMMDD}</w:t>
+						</w:r>
+						<w:r w:rsidR="00A72865" w:rsidRPr="0039783B">
+							<w:rPr>
+								<w:rFonts w:ascii="瀹嬩綋" w:eastAsia="瀹嬩綋" w:hAnsi="瀹嬩綋" w:cs="瀹嬩綋"/>
+								<w:color w:val="000000"/>
+								<w:kern w:val="0"/>
+								<w:sz w:val="24"/>
+								<w:szCs w:val="24"/>
+							</w:rPr>
+							<w:t xml:space="preserve">      </w:t>
+						</w:r>
+						<w:r w:rsidR="004A1007" w:rsidRPr="0039783B">
+							<w:rPr>
+								<w:rFonts w:ascii="瀹嬩綋" w:eastAsia="瀹嬩綋" w:hAnsi="瀹嬩綋" w:cs="瀹嬩綋"/>
+								<w:color w:val="000000"/>
+								<w:kern w:val="0"/>
+								<w:sz w:val="24"/>
+								<w:szCs w:val="24"/>
+							</w:rPr>
+							<w:t xml:space="preserve">                               </w:t>
+						</w:r>
+						<w:r w:rsidRPr="0039783B">
+							<w:rPr>
+								<w:rFonts w:ascii="瀹嬩綋" w:eastAsia="瀹嬩綋" w:hAnsi="瀹嬩綋" w:cs="瀹嬩綋" w:hint="eastAsia"/>
+								<w:color w:val="000000"/>
+								<w:kern w:val="0"/>
+								<w:sz w:val="24"/>
+								<w:szCs w:val="24"/>
+							</w:rPr>
+							<w:t>闄勪欢 ${BXDFJ}寮�</w:t>
+						</w:r>
+						<w:r w:rsidR="00196045" w:rsidRPr="0039783B">
+							<w:rPr>
+								<w:rFonts w:ascii="瀹嬩綋" w:eastAsia="瀹嬩綋" w:hAnsi="瀹嬩綋" w:cs="瀹嬩綋" w:hint="eastAsia"/>
+								<w:color w:val="000000"/>
+								<w:kern w:val="0"/>
+								<w:sz w:val="24"/>
+								<w:szCs w:val="24"/>
+							</w:rPr>
+							<w:t xml:space="preserve"> </w:t>
+						</w:r>
+						<w:r w:rsidR="00196045" w:rsidRPr="0039783B">
+							<w:rPr>
+								<w:rFonts w:ascii="瀹嬩綋" w:eastAsia="瀹嬩綋" w:hAnsi="瀹嬩綋" w:cs="瀹嬩綋"/>
+								<w:color w:val="000000"/>
+								<w:kern w:val="0"/>
+								<w:sz w:val="24"/>
+								<w:szCs w:val="24"/>
+							</w:rPr>
+							<w:t xml:space="preserve">      </w:t>
+						</w:r>
+					</w:p>
+					<w:tbl>
+						<w:tblPr>
+							<w:tblW w:w="14029" w:type="dxa"/>
+							<w:jc w:val="center"/>
+							<w:tblLook w:val="04A0" w:firstRow="1" w:lastRow="0" w:firstColumn="1" w:lastColumn="0" w:noHBand="0" w:noVBand="1"/>
+						</w:tblPr>
+						<w:tblGrid>
+							<w:gridCol w:w="760"/>
+							<w:gridCol w:w="700"/>
+							<w:gridCol w:w="8200"/>
+							<w:gridCol w:w="1640"/>
+							<w:gridCol w:w="2729"/>
+						</w:tblGrid>
+						<w:tr w:rsidR="00D61E43" w:rsidRPr="0039783B" w14:paraId="3D777FF1" w14:textId="77777777" w:rsidTr="00196045">
+							<w:trPr>
+								<w:trHeight w:val="561"/>
+								<w:jc w:val="center"/>
+							</w:trPr>
+							<w:tc>
+								<w:tcPr>
+									<w:tcW w:w="1460" w:type="dxa"/>
+									<w:gridSpan w:val="2"/>
+									<w:tcBorders>
+										<w:top w:val="single" w:sz="4" w:space="0" w:color="000000"/>
+										<w:left w:val="single" w:sz="4" w:space="0" w:color="000000"/>
+										<w:bottom w:val="single" w:sz="4" w:space="0" w:color="000000"/>
+										<w:right w:val="single" w:sz="4" w:space="0" w:color="000000"/>
+									</w:tcBorders>
+									<w:shd w:val="clear" w:color="auto" w:fill="auto"/>
+									<w:vAlign w:val="center"/>
+									<w:hideMark/>
+								</w:tcPr>
+								<w:p w14:paraId="25E37014" w14:textId="77777777" w:rsidR="00D61E43" w:rsidRPr="0039783B" w:rsidRDefault="00D61E43" w:rsidP="00D61E43">
+									<w:pPr>
+										<w:widowControl/>
+										<w:jc w:val="left"/>
+										<w:rPr>
+											<w:rFonts w:ascii="瀹嬩綋" w:eastAsia="瀹嬩綋" w:hAnsi="瀹嬩綋" w:cs="瀹嬩綋"/>
+											<w:color w:val="000000"/>
+											<w:kern w:val="0"/>
+											<w:sz w:val="24"/>
+											<w:szCs w:val="24"/>
+										</w:rPr>
+									</w:pPr>
+									<w:r w:rsidRPr="0039783B">
+										<w:rPr>
+											<w:rFonts w:ascii="瀹嬩綋" w:eastAsia="瀹嬩綋" w:hAnsi="瀹嬩綋" w:cs="瀹嬩綋" w:hint="eastAsia"/>
+											<w:color w:val="000000"/>
+											<w:kern w:val="0"/>
+											<w:sz w:val="24"/>
+											<w:szCs w:val="24"/>
+										</w:rPr>
+										<w:t>鎹愮尞鑰呭鍚�</w:t>
+									</w:r>
+								</w:p>
+							</w:tc>
+							<w:tc>
+								<w:tcPr>
+									<w:tcW w:w="8200" w:type="dxa"/>
+									<w:tcBorders>
+										<w:top w:val="single" w:sz="4" w:space="0" w:color="000000"/>
+										<w:left w:val="nil"/>
+										<w:bottom w:val="single" w:sz="4" w:space="0" w:color="000000"/>
+										<w:right w:val="single" w:sz="4" w:space="0" w:color="000000"/>
+									</w:tcBorders>
+									<w:shd w:val="clear" w:color="auto" w:fill="auto"/>
+									<w:vAlign w:val="center"/>
+									<w:hideMark/>
+								</w:tcPr>
+								<w:p w14:paraId="214F7840" w14:textId="77777777" w:rsidR="00D61E43" w:rsidRPr="0039783B" w:rsidRDefault="00F91864" w:rsidP="004A1007">
+									<w:pPr>
+										<w:widowControl/>
+										<w:rPr>
+											<w:rFonts w:ascii="瀹嬩綋" w:eastAsia="瀹嬩綋" w:hAnsi="瀹嬩綋" w:cs="瀹嬩綋"/>
+											<w:color w:val="000000"/>
+											<w:kern w:val="0"/>
+											<w:sz w:val="24"/>
+											<w:szCs w:val="24"/>
+										</w:rPr>
+									</w:pPr>
+									<w:r w:rsidRPr="0039783B">
+										<w:rPr>
+											<w:rFonts w:ascii="瀹嬩綋" w:eastAsia="瀹嬩綋" w:hAnsi="瀹嬩綋" w:cs="瀹嬩綋" w:hint="eastAsia"/>
+											<w:color w:val="000000"/>
+											<w:kern w:val="0"/>
+											<w:sz w:val="24"/>
+											<w:szCs w:val="24"/>
+										</w:rPr>
+										<w:t>${JXZXM}</w:t>
+									</w:r>
+								</w:p>
+							</w:tc>
+							<w:tc>
+								<w:tcPr>
+									<w:tcW w:w="1640" w:type="dxa"/>
+									<w:tcBorders>
+										<w:top w:val="single" w:sz="4" w:space="0" w:color="000000"/>
+										<w:left w:val="nil"/>
+										<w:bottom w:val="single" w:sz="4" w:space="0" w:color="000000"/>
+										<w:right w:val="single" w:sz="4" w:space="0" w:color="000000"/>
+									</w:tcBorders>
+									<w:shd w:val="clear" w:color="auto" w:fill="auto"/>
+									<w:vAlign w:val="center"/>
+									<w:hideMark/>
+								</w:tcPr>
+								<w:p w14:paraId="00C4F696" w14:textId="77777777" w:rsidR="00D61E43" w:rsidRPr="0039783B" w:rsidRDefault="00D61E43" w:rsidP="00D61E43">
+									<w:pPr>
+										<w:widowControl/>
+										<w:jc w:val="left"/>
+										<w:rPr>
+											<w:rFonts w:ascii="瀹嬩綋" w:eastAsia="瀹嬩綋" w:hAnsi="瀹嬩綋" w:cs="瀹嬩綋"/>
+											<w:color w:val="000000"/>
+											<w:kern w:val="0"/>
+											<w:sz w:val="24"/>
+											<w:szCs w:val="24"/>
+										</w:rPr>
+									</w:pPr>
+									<w:r w:rsidRPr="0039783B">
+										<w:rPr>
+											<w:rFonts w:ascii="瀹嬩綋" w:eastAsia="瀹嬩綋" w:hAnsi="瀹嬩綋" w:cs="瀹嬩綋" w:hint="eastAsia"/>
+											<w:color w:val="000000"/>
+											<w:kern w:val="0"/>
+											<w:sz w:val="24"/>
+											<w:szCs w:val="24"/>
+										</w:rPr>
+										<w:t>缁忔墜浜�</w:t>
+									</w:r>
+								</w:p>
+							</w:tc>
+							<w:tc>
+								<w:tcPr>
+									<w:tcW w:w="2729" w:type="dxa"/>
+									<w:tcBorders>
+										<w:top w:val="single" w:sz="4" w:space="0" w:color="000000"/>
+										<w:left w:val="nil"/>
+										<w:bottom w:val="single" w:sz="4" w:space="0" w:color="000000"/>
+										<w:right w:val="single" w:sz="4" w:space="0" w:color="000000"/>
+									</w:tcBorders>
+									<w:shd w:val="clear" w:color="auto" w:fill="auto"/>
+									<w:vAlign w:val="center"/>
+									<w:hideMark/>
+								</w:tcPr>
+								<w:p w14:paraId="1F3488F9" w14:textId="77777777" w:rsidR="00D61E43" w:rsidRPr="0039783B" w:rsidRDefault="00F91864" w:rsidP="00D61E43">
+									<w:pPr>
+										<w:widowControl/>
+										<w:jc w:val="left"/>
+										<w:rPr>
+											<w:rFonts w:ascii="瀹嬩綋" w:eastAsia="瀹嬩綋" w:hAnsi="瀹嬩綋" w:cs="瀹嬩綋"/>
+											<w:color w:val="000000"/>
+											<w:kern w:val="0"/>
+											<w:sz w:val="24"/>
+											<w:szCs w:val="24"/>
+										</w:rPr>
+									</w:pPr>
+									<w:r w:rsidRPr="0039783B">
+										<w:rPr>
+											<w:rFonts w:ascii="瀹嬩綋" w:eastAsia="瀹嬩綋" w:hAnsi="瀹嬩綋" w:cs="瀹嬩綋" w:hint="eastAsia"/>
+											<w:color w:val="000000"/>
+											<w:kern w:val="0"/>
+											<w:sz w:val="24"/>
+											<w:szCs w:val="24"/>
+										</w:rPr>
+										<w:t>${JSR}</w:t>
+									</w:r>
+								</w:p>
+							</w:tc>
+						</w:tr>
+						<w:tr w:rsidR="00D61E43" w:rsidRPr="0039783B" w14:paraId="13C6817D" w14:textId="77777777" w:rsidTr="00196045">
+							<w:trPr>
+								<w:trHeight w:val="312"/>
+								<w:jc w:val="center"/>
+							</w:trPr>
+							<w:tc>
+								<w:tcPr>
+									<w:tcW w:w="760" w:type="dxa"/>
+									<w:vMerge w:val="restart"/>
+									<w:tcBorders>
+										<w:top w:val="nil"/>
+										<w:left w:val="single" w:sz="4" w:space="0" w:color="auto"/>
+										<w:bottom w:val="nil"/>
+										<w:right w:val="single" w:sz="4" w:space="0" w:color="auto"/>
+									</w:tcBorders>
+									<w:shd w:val="clear" w:color="auto" w:fill="auto"/>
+									<w:vAlign w:val="center"/>
+									<w:hideMark/>
+								</w:tcPr>
+								<w:p w14:paraId="2C740A78" w14:textId="77777777" w:rsidR="00D61E43" w:rsidRPr="0039783B" w:rsidRDefault="00D61E43" w:rsidP="00D61E43">
+									<w:pPr>
+										<w:widowControl/>
+										<w:jc w:val="center"/>
+										<w:rPr>
+											<w:rFonts w:ascii="瀹嬩綋" w:eastAsia="瀹嬩綋" w:hAnsi="瀹嬩綋" w:cs="瀹嬩綋"/>
+											<w:color w:val="000000"/>
+											<w:kern w:val="0"/>
+											<w:sz w:val="24"/>
+											<w:szCs w:val="24"/>
+										</w:rPr>
+									</w:pPr>
+									<w:r w:rsidRPr="0039783B">
+										<w:rPr>
+											<w:rFonts w:ascii="瀹嬩綋" w:eastAsia="瀹嬩綋" w:hAnsi="瀹嬩綋" w:cs="瀹嬩綋" w:hint="eastAsia"/>
+											<w:color w:val="000000"/>
+											<w:kern w:val="0"/>
+											<w:sz w:val="24"/>
+											<w:szCs w:val="24"/>
+										</w:rPr>
+										<w:t>璐圭敤  椤圭洰</w:t>
+									</w:r>
+								</w:p>
+							</w:tc>
+							<w:tc>
+								<w:tcPr>
+									<w:tcW w:w="700" w:type="dxa"/>
+									<w:vMerge w:val="restart"/>
+									<w:tcBorders>
+										<w:top w:val="nil"/>
+										<w:left w:val="single" w:sz="4" w:space="0" w:color="auto"/>
+										<w:bottom w:val="single" w:sz="4" w:space="0" w:color="auto"/>
+										<w:right w:val="single" w:sz="4" w:space="0" w:color="auto"/>
+									</w:tcBorders>
+									<w:shd w:val="clear" w:color="auto" w:fill="auto"/>
+									<w:noWrap/>
+									<w:vAlign w:val="center"/>
+									<w:hideMark/>
+								</w:tcPr>
+								<w:p w14:paraId="7AC26B84" w14:textId="77777777" w:rsidR="00D61E43" w:rsidRPr="0039783B" w:rsidRDefault="00D61E43" w:rsidP="00D61E43">
+									<w:pPr>
+										<w:widowControl/>
+										<w:jc w:val="center"/>
+										<w:rPr>
+											<w:rFonts w:ascii="瀹嬩綋" w:eastAsia="瀹嬩綋" w:hAnsi="瀹嬩綋" w:cs="瀹嬩綋"/>
+											<w:color w:val="000000"/>
+											<w:kern w:val="0"/>
+											<w:sz w:val="24"/>
+											<w:szCs w:val="24"/>
+										</w:rPr>
+									</w:pPr>
+									<w:r w:rsidRPr="0039783B">
+										<w:rPr>
+											<w:rFonts w:ascii="瀹嬩綋" w:eastAsia="瀹嬩綋" w:hAnsi="瀹嬩綋" w:cs="瀹嬩綋" w:hint="eastAsia"/>
+											<w:color w:val="000000"/>
+											<w:kern w:val="0"/>
+											<w:sz w:val="24"/>
+											<w:szCs w:val="24"/>
+										</w:rPr>
+										<w:t>1</w:t>
+									</w:r>
+								</w:p>
+							</w:tc>
+							<w:tc>
+								<w:tcPr>
+									<w:tcW w:w="12569" w:type="dxa"/>
+									<w:gridSpan w:val="3"/>
+									<w:vMerge w:val="restart"/>
+									<w:tcBorders>
+										<w:top w:val="nil"/>
+										<w:left w:val="single" w:sz="4" w:space="0" w:color="auto"/>
+										<w:bottom w:val="single" w:sz="4" w:space="0" w:color="auto"/>
+										<w:right w:val="single" w:sz="4" w:space="0" w:color="auto"/>
+									</w:tcBorders>
+									<w:shd w:val="clear" w:color="auto" w:fill="auto"/>
+									<w:noWrap/>
+									<w:vAlign w:val="center"/>
+									<w:hideMark/>
+								</w:tcPr>
+								<w:p w14:paraId="0FA3A390" w14:textId="77777777" w:rsidR="00D61E43" w:rsidRPr="0039783B" w:rsidRDefault="00F91864" w:rsidP="004A1007">
+									<w:pPr>
+										<w:widowControl/>
+										<w:rPr>
+											<w:rFonts w:ascii="瀹嬩綋" w:eastAsia="瀹嬩綋" w:hAnsi="瀹嬩綋" w:cs="瀹嬩綋"/>
+											<w:color w:val="000000"/>
+											<w:kern w:val="0"/>
+											<w:sz w:val="24"/>
+											<w:szCs w:val="24"/>
+										</w:rPr>
+									</w:pPr>
+									<w:r w:rsidRPr="0039783B">
+										<w:rPr>
+											<w:rFonts w:ascii="瀹嬩綋" w:eastAsia="瀹嬩綋" w:hAnsi="瀹嬩綋" w:cs="瀹嬩綋" w:hint="eastAsia"/>
+											<w:color w:val="000000"/>
+											<w:kern w:val="0"/>
+											<w:sz w:val="24"/>
+											<w:szCs w:val="24"/>
+										</w:rPr>
+										<w:t>${FYXM1}</w:t>
+									</w:r>
+								</w:p>
+							</w:tc>
+						</w:tr>
+						<w:tr w:rsidR="00D61E43" w:rsidRPr="0039783B" w14:paraId="3F4360E5" w14:textId="77777777" w:rsidTr="00196045">
+							<w:trPr>
+								<w:trHeight w:val="312"/>
+								<w:jc w:val="center"/>
+							</w:trPr>
+							<w:tc>
+								<w:tcPr>
+									<w:tcW w:w="760" w:type="dxa"/>
+									<w:vMerge/>
+									<w:tcBorders>
+										<w:top w:val="nil"/>
+										<w:left w:val="single" w:sz="4" w:space="0" w:color="auto"/>
+										<w:bottom w:val="nil"/>
+										<w:right w:val="single" w:sz="4" w:space="0" w:color="auto"/>
+									</w:tcBorders>
+									<w:vAlign w:val="center"/>
+									<w:hideMark/>
+								</w:tcPr>
+								<w:p w14:paraId="41625866" w14:textId="77777777" w:rsidR="00D61E43" w:rsidRPr="0039783B" w:rsidRDefault="00D61E43" w:rsidP="00D61E43">
+									<w:pPr>
+										<w:widowControl/>
+										<w:jc w:val="left"/>
+										<w:rPr>
+											<w:rFonts w:ascii="瀹嬩綋" w:eastAsia="瀹嬩綋" w:hAnsi="瀹嬩綋" w:cs="瀹嬩綋"/>
+											<w:color w:val="000000"/>
+											<w:kern w:val="0"/>
+											<w:sz w:val="24"/>
+											<w:szCs w:val="24"/>
+										</w:rPr>
+									</w:pPr>
+								</w:p>
+							</w:tc>
+							<w:tc>
+								<w:tcPr>
+									<w:tcW w:w="700" w:type="dxa"/>
+									<w:vMerge/>
+									<w:tcBorders>
+										<w:top w:val="nil"/>
+										<w:left w:val="single" w:sz="4" w:space="0" w:color="auto"/>
+										<w:bottom w:val="single" w:sz="4" w:space="0" w:color="auto"/>
+										<w:right w:val="single" w:sz="4" w:space="0" w:color="auto"/>
+									</w:tcBorders>
+									<w:vAlign w:val="center"/>
+									<w:hideMark/>
+								</w:tcPr>
+								<w:p w14:paraId="74E61F89" w14:textId="77777777" w:rsidR="00D61E43" w:rsidRPr="0039783B" w:rsidRDefault="00D61E43" w:rsidP="00D61E43">
+									<w:pPr>
+										<w:widowControl/>
+										<w:jc w:val="left"/>
+										<w:rPr>
+											<w:rFonts w:ascii="瀹嬩綋" w:eastAsia="瀹嬩綋" w:hAnsi="瀹嬩綋" w:cs="瀹嬩綋"/>
+											<w:color w:val="000000"/>
+											<w:kern w:val="0"/>
+											<w:sz w:val="24"/>
+											<w:szCs w:val="24"/>
+										</w:rPr>
+									</w:pPr>
+								</w:p>
+							</w:tc>
+							<w:tc>
+								<w:tcPr>
+									<w:tcW w:w="12569" w:type="dxa"/>
+									<w:gridSpan w:val="3"/>
+									<w:vMerge/>
+									<w:tcBorders>
+										<w:top w:val="nil"/>
+										<w:left w:val="single" w:sz="4" w:space="0" w:color="auto"/>
+										<w:bottom w:val="single" w:sz="4" w:space="0" w:color="auto"/>
+										<w:right w:val="single" w:sz="4" w:space="0" w:color="auto"/>
+									</w:tcBorders>
+									<w:vAlign w:val="center"/>
+									<w:hideMark/>
+								</w:tcPr>
+								<w:p w14:paraId="3B54CCD8" w14:textId="77777777" w:rsidR="00D61E43" w:rsidRPr="0039783B" w:rsidRDefault="00D61E43" w:rsidP="00D61E43">
+									<w:pPr>
+										<w:widowControl/>
+										<w:jc w:val="left"/>
+										<w:rPr>
+											<w:rFonts w:ascii="瀹嬩綋" w:eastAsia="瀹嬩綋" w:hAnsi="瀹嬩綋" w:cs="瀹嬩綋"/>
+											<w:color w:val="000000"/>
+											<w:kern w:val="0"/>
+											<w:sz w:val="24"/>
+											<w:szCs w:val="24"/>
+										</w:rPr>
+									</w:pPr>
+								</w:p>
+							</w:tc>
+						</w:tr>
+						<w:tr w:rsidR="00D61E43" w:rsidRPr="0039783B" w14:paraId="5025422F" w14:textId="77777777" w:rsidTr="00196045">
+							<w:trPr>
+								<w:trHeight w:val="312"/>
+								<w:jc w:val="center"/>
+							</w:trPr>
+							<w:tc>
+								<w:tcPr>
+									<w:tcW w:w="760" w:type="dxa"/>
+									<w:vMerge/>
+									<w:tcBorders>
+										<w:top w:val="nil"/>
+										<w:left w:val="single" w:sz="4" w:space="0" w:color="auto"/>
+										<w:bottom w:val="nil"/>
+										<w:right w:val="single" w:sz="4" w:space="0" w:color="auto"/>
+									</w:tcBorders>
+									<w:vAlign w:val="center"/>
+									<w:hideMark/>
+								</w:tcPr>
+								<w:p w14:paraId="16E916A6" w14:textId="77777777" w:rsidR="00D61E43" w:rsidRPr="0039783B" w:rsidRDefault="00D61E43" w:rsidP="00D61E43">
+									<w:pPr>
+										<w:widowControl/>
+										<w:jc w:val="left"/>
+										<w:rPr>
+											<w:rFonts w:ascii="瀹嬩綋" w:eastAsia="瀹嬩綋" w:hAnsi="瀹嬩綋" w:cs="瀹嬩綋"/>
+											<w:color w:val="000000"/>
+											<w:kern w:val="0"/>
+											<w:sz w:val="24"/>
+											<w:szCs w:val="24"/>
+										</w:rPr>
+									</w:pPr>
+								</w:p>
+							</w:tc>
+							<w:tc>
+								<w:tcPr>
+									<w:tcW w:w="700" w:type="dxa"/>
+									<w:vMerge w:val="restart"/>
+									<w:tcBorders>
+										<w:top w:val="nil"/>
+										<w:left w:val="single" w:sz="4" w:space="0" w:color="auto"/>
+										<w:bottom w:val="single" w:sz="4" w:space="0" w:color="auto"/>
+										<w:right w:val="single" w:sz="4" w:space="0" w:color="auto"/>
+									</w:tcBorders>
+									<w:shd w:val="clear" w:color="auto" w:fill="auto"/>
+									<w:noWrap/>
+									<w:vAlign w:val="center"/>
+									<w:hideMark/>
+								</w:tcPr>
+								<w:p w14:paraId="07168F89" w14:textId="77777777" w:rsidR="00D61E43" w:rsidRPr="0039783B" w:rsidRDefault="00D61E43" w:rsidP="00D61E43">
+									<w:pPr>
+										<w:widowControl/>
+										<w:jc w:val="center"/>
+										<w:rPr>
+											<w:rFonts w:ascii="瀹嬩綋" w:eastAsia="瀹嬩綋" w:hAnsi="瀹嬩綋" w:cs="瀹嬩綋"/>
+											<w:color w:val="000000"/>
+											<w:kern w:val="0"/>
+											<w:sz w:val="24"/>
+											<w:szCs w:val="24"/>
+										</w:rPr>
+									</w:pPr>
+									<w:r w:rsidRPr="0039783B">
+										<w:rPr>
+											<w:rFonts w:ascii="瀹嬩綋" w:eastAsia="瀹嬩綋" w:hAnsi="瀹嬩綋" w:cs="瀹嬩綋" w:hint="eastAsia"/>
+											<w:color w:val="000000"/>
+											<w:kern w:val="0"/>
+											<w:sz w:val="24"/>
+											<w:szCs w:val="24"/>
+										</w:rPr>
+										<w:t>2</w:t>
+									</w:r>
+								</w:p>
+							</w:tc>
+							<w:tc>
+								<w:tcPr>
+									<w:tcW w:w="12569" w:type="dxa"/>
+									<w:gridSpan w:val="3"/>
+									<w:vMerge w:val="restart"/>
+									<w:tcBorders>
+										<w:top w:val="single" w:sz="4" w:space="0" w:color="auto"/>
+										<w:left w:val="single" w:sz="4" w:space="0" w:color="auto"/>
+										<w:bottom w:val="single" w:sz="4" w:space="0" w:color="auto"/>
+										<w:right w:val="single" w:sz="4" w:space="0" w:color="auto"/>
+									</w:tcBorders>
+									<w:shd w:val="clear" w:color="auto" w:fill="auto"/>
+									<w:noWrap/>
+									<w:vAlign w:val="center"/>
+									<w:hideMark/>
+								</w:tcPr>
+								<w:p w14:paraId="078D3B36" w14:textId="77777777" w:rsidR="00D61E43" w:rsidRPr="0039783B" w:rsidRDefault="00F91864" w:rsidP="004A1007">
+									<w:pPr>
+										<w:widowControl/>
+										<w:rPr>
+											<w:rFonts w:ascii="瀹嬩綋" w:eastAsia="瀹嬩綋" w:hAnsi="瀹嬩綋" w:cs="瀹嬩綋"/>
+											<w:color w:val="000000"/>
+											<w:kern w:val="0"/>
+											<w:sz w:val="24"/>
+											<w:szCs w:val="24"/>
+										</w:rPr>
+									</w:pPr>
+									<w:r w:rsidRPr="0039783B">
+										<w:rPr>
+											<w:rFonts w:ascii="瀹嬩綋" w:eastAsia="瀹嬩綋" w:hAnsi="瀹嬩綋" w:cs="瀹嬩綋" w:hint="eastAsia"/>
+											<w:color w:val="000000"/>
+											<w:kern w:val="0"/>
+											<w:sz w:val="24"/>
+											<w:szCs w:val="24"/>
+										</w:rPr>
+										<w:t>${FYXM2}</w:t>
+									</w:r>
+								</w:p>
+							</w:tc>
+						</w:tr>
+						<w:tr w:rsidR="00D61E43" w:rsidRPr="0039783B" w14:paraId="63F34024" w14:textId="77777777" w:rsidTr="00196045">
+							<w:trPr>
+								<w:trHeight w:val="312"/>
+								<w:jc w:val="center"/>
+							</w:trPr>
+							<w:tc>
+								<w:tcPr>
+									<w:tcW w:w="760" w:type="dxa"/>
+									<w:vMerge/>
+									<w:tcBorders>
+										<w:top w:val="nil"/>
+										<w:left w:val="single" w:sz="4" w:space="0" w:color="auto"/>
+										<w:bottom w:val="nil"/>
+										<w:right w:val="single" w:sz="4" w:space="0" w:color="auto"/>
+									</w:tcBorders>
+									<w:vAlign w:val="center"/>
+									<w:hideMark/>
+								</w:tcPr>
+								<w:p w14:paraId="4068EE6C" w14:textId="77777777" w:rsidR="00D61E43" w:rsidRPr="0039783B" w:rsidRDefault="00D61E43" w:rsidP="00D61E43">
+									<w:pPr>
+										<w:widowControl/>
+										<w:jc w:val="left"/>
+										<w:rPr>
+											<w:rFonts w:ascii="瀹嬩綋" w:eastAsia="瀹嬩綋" w:hAnsi="瀹嬩綋" w:cs="瀹嬩綋"/>
+											<w:color w:val="000000"/>
+											<w:kern w:val="0"/>
+											<w:sz w:val="24"/>
+											<w:szCs w:val="24"/>
+										</w:rPr>
+									</w:pPr>
+								</w:p>
+							</w:tc>
+							<w:tc>
+								<w:tcPr>
+									<w:tcW w:w="700" w:type="dxa"/>
+									<w:vMerge/>
+									<w:tcBorders>
+										<w:top w:val="nil"/>
+										<w:left w:val="single" w:sz="4" w:space="0" w:color="auto"/>
+										<w:bottom w:val="single" w:sz="4" w:space="0" w:color="auto"/>
+										<w:right w:val="single" w:sz="4" w:space="0" w:color="auto"/>
+									</w:tcBorders>
+									<w:vAlign w:val="center"/>
+									<w:hideMark/>
+								</w:tcPr>
+								<w:p w14:paraId="148F8DEA" w14:textId="77777777" w:rsidR="00D61E43" w:rsidRPr="0039783B" w:rsidRDefault="00D61E43" w:rsidP="00D61E43">
+									<w:pPr>
+										<w:widowControl/>
+										<w:jc w:val="left"/>
+										<w:rPr>
+											<w:rFonts w:ascii="瀹嬩綋" w:eastAsia="瀹嬩綋" w:hAnsi="瀹嬩綋" w:cs="瀹嬩綋"/>
+											<w:color w:val="000000"/>
+											<w:kern w:val="0"/>
+											<w:sz w:val="24"/>
+											<w:szCs w:val="24"/>
+										</w:rPr>
+									</w:pPr>
+								</w:p>
+							</w:tc>
+							<w:tc>
+								<w:tcPr>
+									<w:tcW w:w="12569" w:type="dxa"/>
+									<w:gridSpan w:val="3"/>
+									<w:vMerge/>
+									<w:tcBorders>
+										<w:top w:val="single" w:sz="4" w:space="0" w:color="auto"/>
+										<w:left w:val="single" w:sz="4" w:space="0" w:color="auto"/>
+										<w:bottom w:val="single" w:sz="4" w:space="0" w:color="auto"/>
+										<w:right w:val="single" w:sz="4" w:space="0" w:color="auto"/>
+									</w:tcBorders>
+									<w:vAlign w:val="center"/>
+									<w:hideMark/>
+								</w:tcPr>
+								<w:p w14:paraId="6243F3F7" w14:textId="77777777" w:rsidR="00D61E43" w:rsidRPr="0039783B" w:rsidRDefault="00D61E43" w:rsidP="00D61E43">
+									<w:pPr>
+										<w:widowControl/>
+										<w:jc w:val="left"/>
+										<w:rPr>
+											<w:rFonts w:ascii="瀹嬩綋" w:eastAsia="瀹嬩綋" w:hAnsi="瀹嬩綋" w:cs="瀹嬩綋"/>
+											<w:color w:val="000000"/>
+											<w:kern w:val="0"/>
+											<w:sz w:val="24"/>
+											<w:szCs w:val="24"/>
+										</w:rPr>
+									</w:pPr>
+								</w:p>
+							</w:tc>
+						</w:tr>
+						<w:tr w:rsidR="00D61E43" w:rsidRPr="0039783B" w14:paraId="20017FB0" w14:textId="77777777" w:rsidTr="00196045">
+							<w:trPr>
+								<w:trHeight w:val="312"/>
+								<w:jc w:val="center"/>
+							</w:trPr>
+							<w:tc>
+								<w:tcPr>
+									<w:tcW w:w="760" w:type="dxa"/>
+									<w:vMerge/>
+									<w:tcBorders>
+										<w:top w:val="nil"/>
+										<w:left w:val="single" w:sz="4" w:space="0" w:color="auto"/>
+										<w:bottom w:val="nil"/>
+										<w:right w:val="single" w:sz="4" w:space="0" w:color="auto"/>
+									</w:tcBorders>
+									<w:vAlign w:val="center"/>
+									<w:hideMark/>
+								</w:tcPr>
+								<w:p w14:paraId="05F0971F" w14:textId="77777777" w:rsidR="00D61E43" w:rsidRPr="0039783B" w:rsidRDefault="00D61E43" w:rsidP="00D61E43">
+									<w:pPr>
+										<w:widowControl/>
+										<w:jc w:val="left"/>
+										<w:rPr>
+											<w:rFonts w:ascii="瀹嬩綋" w:eastAsia="瀹嬩綋" w:hAnsi="瀹嬩綋" w:cs="瀹嬩綋"/>
+											<w:color w:val="000000"/>
+											<w:kern w:val="0"/>
+											<w:sz w:val="24"/>
+											<w:szCs w:val="24"/>
+										</w:rPr>
+									</w:pPr>
+								</w:p>
+							</w:tc>
+							<w:tc>
+								<w:tcPr>
+									<w:tcW w:w="700" w:type="dxa"/>
+									<w:vMerge w:val="restart"/>
+									<w:tcBorders>
+										<w:top w:val="nil"/>
+										<w:left w:val="single" w:sz="4" w:space="0" w:color="auto"/>
+										<w:bottom w:val="single" w:sz="4" w:space="0" w:color="auto"/>
+										<w:right w:val="single" w:sz="4" w:space="0" w:color="auto"/>
+									</w:tcBorders>
+									<w:shd w:val="clear" w:color="auto" w:fill="auto"/>
+									<w:noWrap/>
+									<w:vAlign w:val="center"/>
+									<w:hideMark/>
+								</w:tcPr>
+								<w:p w14:paraId="79E24544" w14:textId="77777777" w:rsidR="00D61E43" w:rsidRPr="0039783B" w:rsidRDefault="00D61E43" w:rsidP="00D61E43">
+									<w:pPr>
+										<w:widowControl/>
+										<w:jc w:val="center"/>
+										<w:rPr>
+											<w:rFonts w:ascii="瀹嬩綋" w:eastAsia="瀹嬩綋" w:hAnsi="瀹嬩綋" w:cs="瀹嬩綋"/>
+											<w:color w:val="000000"/>
+											<w:kern w:val="0"/>
+											<w:sz w:val="24"/>
+											<w:szCs w:val="24"/>
+										</w:rPr>
+									</w:pPr>
+									<w:r w:rsidRPr="0039783B">
+										<w:rPr>
+											<w:rFonts w:ascii="瀹嬩綋" w:eastAsia="瀹嬩綋" w:hAnsi="瀹嬩綋" w:cs="瀹嬩綋" w:hint="eastAsia"/>
+											<w:color w:val="000000"/>
+											<w:kern w:val="0"/>
+											<w:sz w:val="24"/>
+											<w:szCs w:val="24"/>
+										</w:rPr>
+										<w:t>3</w:t>
+									</w:r>
+								</w:p>
+							</w:tc>
+							<w:tc>
+								<w:tcPr>
+									<w:tcW w:w="12569" w:type="dxa"/>
+									<w:gridSpan w:val="3"/>
+									<w:vMerge w:val="restart"/>
+									<w:tcBorders>
+										<w:top w:val="single" w:sz="4" w:space="0" w:color="auto"/>
+										<w:left w:val="single" w:sz="4" w:space="0" w:color="auto"/>
+										<w:bottom w:val="single" w:sz="4" w:space="0" w:color="auto"/>
+										<w:right w:val="single" w:sz="4" w:space="0" w:color="auto"/>
+									</w:tcBorders>
+									<w:shd w:val="clear" w:color="auto" w:fill="auto"/>
+									<w:noWrap/>
+									<w:vAlign w:val="center"/>
+									<w:hideMark/>
+								</w:tcPr>
+								<w:p w14:paraId="78884D11" w14:textId="77777777" w:rsidR="00D61E43" w:rsidRPr="0039783B" w:rsidRDefault="00F91864" w:rsidP="004A1007">
+									<w:pPr>
+										<w:widowControl/>
+										<w:rPr>
+											<w:rFonts w:ascii="瀹嬩綋" w:eastAsia="瀹嬩綋" w:hAnsi="瀹嬩綋" w:cs="瀹嬩綋"/>
+											<w:color w:val="000000"/>
+											<w:kern w:val="0"/>
+											<w:sz w:val="24"/>
+											<w:szCs w:val="24"/>
+										</w:rPr>
+									</w:pPr>
+									<w:r w:rsidRPr="0039783B">
+										<w:rPr>
+											<w:rFonts w:ascii="瀹嬩綋" w:eastAsia="瀹嬩綋" w:hAnsi="瀹嬩綋" w:cs="瀹嬩綋" w:hint="eastAsia"/>
+											<w:color w:val="000000"/>
+											<w:kern w:val="0"/>
+											<w:sz w:val="24"/>
+											<w:szCs w:val="24"/>
+										</w:rPr>
+										<w:t>${FYXM3}</w:t>
+									</w:r>
+								</w:p>
+							</w:tc>
+						</w:tr>
+						<w:tr w:rsidR="00D61E43" w:rsidRPr="0039783B" w14:paraId="5E6E59CA" w14:textId="77777777" w:rsidTr="00196045">
+							<w:trPr>
+								<w:trHeight w:val="312"/>
+								<w:jc w:val="center"/>
+							</w:trPr>
+							<w:tc>
+								<w:tcPr>
+									<w:tcW w:w="760" w:type="dxa"/>
+									<w:vMerge/>
+									<w:tcBorders>
+										<w:top w:val="nil"/>
+										<w:left w:val="single" w:sz="4" w:space="0" w:color="auto"/>
+										<w:bottom w:val="nil"/>
+										<w:right w:val="single" w:sz="4" w:space="0" w:color="auto"/>
+									</w:tcBorders>
+									<w:vAlign w:val="center"/>
+									<w:hideMark/>
+								</w:tcPr>
+								<w:p w14:paraId="748C35D0" w14:textId="77777777" w:rsidR="00D61E43" w:rsidRPr="0039783B" w:rsidRDefault="00D61E43" w:rsidP="00D61E43">
+									<w:pPr>
+										<w:widowControl/>
+										<w:jc w:val="left"/>
+										<w:rPr>
+											<w:rFonts w:ascii="瀹嬩綋" w:eastAsia="瀹嬩綋" w:hAnsi="瀹嬩綋" w:cs="瀹嬩綋"/>
+											<w:color w:val="000000"/>
+											<w:kern w:val="0"/>
+											<w:sz w:val="24"/>
+											<w:szCs w:val="24"/>
+										</w:rPr>
+									</w:pPr>
+								</w:p>
+							</w:tc>
+							<w:tc>
+								<w:tcPr>
+									<w:tcW w:w="700" w:type="dxa"/>
+									<w:vMerge/>
+									<w:tcBorders>
+										<w:top w:val="nil"/>
+										<w:left w:val="single" w:sz="4" w:space="0" w:color="auto"/>
+										<w:bottom w:val="single" w:sz="4" w:space="0" w:color="auto"/>
+										<w:right w:val="single" w:sz="4" w:space="0" w:color="auto"/>
+									</w:tcBorders>
+									<w:vAlign w:val="center"/>
+									<w:hideMark/>
+								</w:tcPr>
+								<w:p w14:paraId="41F95337" w14:textId="77777777" w:rsidR="00D61E43" w:rsidRPr="0039783B" w:rsidRDefault="00D61E43" w:rsidP="00D61E43">
+									<w:pPr>
+										<w:widowControl/>
+										<w:jc w:val="left"/>
+										<w:rPr>
+											<w:rFonts w:ascii="瀹嬩綋" w:eastAsia="瀹嬩綋" w:hAnsi="瀹嬩綋" w:cs="瀹嬩綋"/>
+											<w:color w:val="000000"/>
+											<w:kern w:val="0"/>
+											<w:sz w:val="24"/>
+											<w:szCs w:val="24"/>
+										</w:rPr>
+									</w:pPr>
+								</w:p>
+							</w:tc>
+							<w:tc>
+								<w:tcPr>
+									<w:tcW w:w="12569" w:type="dxa"/>
+									<w:gridSpan w:val="3"/>
+									<w:vMerge/>
+									<w:tcBorders>
+										<w:top w:val="single" w:sz="4" w:space="0" w:color="auto"/>
+										<w:left w:val="single" w:sz="4" w:space="0" w:color="auto"/>
+										<w:bottom w:val="single" w:sz="4" w:space="0" w:color="auto"/>
+										<w:right w:val="single" w:sz="4" w:space="0" w:color="auto"/>
+									</w:tcBorders>
+									<w:vAlign w:val="center"/>
+									<w:hideMark/>
+								</w:tcPr>
+								<w:p w14:paraId="14FA3921" w14:textId="77777777" w:rsidR="00D61E43" w:rsidRPr="0039783B" w:rsidRDefault="00D61E43" w:rsidP="00D61E43">
+									<w:pPr>
+										<w:widowControl/>
+										<w:jc w:val="left"/>
+										<w:rPr>
+											<w:rFonts w:ascii="瀹嬩綋" w:eastAsia="瀹嬩綋" w:hAnsi="瀹嬩綋" w:cs="瀹嬩綋"/>
+											<w:color w:val="000000"/>
+											<w:kern w:val="0"/>
+											<w:sz w:val="24"/>
+											<w:szCs w:val="24"/>
+										</w:rPr>
+									</w:pPr>
+								</w:p>
+							</w:tc>
+						</w:tr>
+						<w:tr w:rsidR="00D61E43" w:rsidRPr="0039783B" w14:paraId="6B682619" w14:textId="77777777" w:rsidTr="00196045">
+							<w:trPr>
+								<w:trHeight w:val="312"/>
+								<w:jc w:val="center"/>
+							</w:trPr>
+							<w:tc>
+								<w:tcPr>
+									<w:tcW w:w="760" w:type="dxa"/>
+									<w:vMerge w:val="restart"/>
+									<w:tcBorders>
+										<w:top w:val="single" w:sz="4" w:space="0" w:color="auto"/>
+										<w:left w:val="single" w:sz="4" w:space="0" w:color="auto"/>
+										<w:bottom w:val="nil"/>
+										<w:right w:val="single" w:sz="4" w:space="0" w:color="auto"/>
+									</w:tcBorders>
+									<w:shd w:val="clear" w:color="auto" w:fill="auto"/>
+									<w:vAlign w:val="center"/>
+									<w:hideMark/>
+								</w:tcPr>
+								<w:p w14:paraId="4A777A11" w14:textId="77777777" w:rsidR="00D61E43" w:rsidRPr="0039783B" w:rsidRDefault="00D61E43" w:rsidP="004A1007">
+									<w:pPr>
+										<w:widowControl/>
+										<w:jc w:val="center"/>
+										<w:rPr>
+											<w:rFonts w:ascii="瀹嬩綋" w:eastAsia="瀹嬩綋" w:hAnsi="瀹嬩綋" w:cs="瀹嬩綋"/>
+											<w:color w:val="000000"/>
+											<w:kern w:val="0"/>
+											<w:sz w:val="24"/>
+											<w:szCs w:val="24"/>
+										</w:rPr>
+									</w:pPr>
+									<w:r w:rsidRPr="0039783B">
+										<w:rPr>
+											<w:rFonts w:ascii="瀹嬩綋" w:eastAsia="瀹嬩綋" w:hAnsi="瀹嬩綋" w:cs="瀹嬩綋" w:hint="eastAsia"/>
+											<w:color w:val="000000"/>
+											<w:kern w:val="0"/>
+											<w:sz w:val="24"/>
+											<w:szCs w:val="24"/>
+										</w:rPr>
+										<w:t>閲戦鍚堣</w:t>
+									</w:r>
+								</w:p>
+							</w:tc>
+							<w:tc>
+								<w:tcPr>
+									<w:tcW w:w="13269" w:type="dxa"/>
+									<w:gridSpan w:val="4"/>
+									<w:vMerge w:val="restart"/>
+									<w:tcBorders>
+										<w:top w:val="single" w:sz="4" w:space="0" w:color="auto"/>
+										<w:left w:val="single" w:sz="4" w:space="0" w:color="auto"/>
+										<w:bottom w:val="single" w:sz="4" w:space="0" w:color="auto"/>
+										<w:right w:val="single" w:sz="4" w:space="0" w:color="auto"/>
+									</w:tcBorders>
+									<w:shd w:val="clear" w:color="auto" w:fill="auto"/>
+									<w:noWrap/>
+									<w:vAlign w:val="center"/>
+									<w:hideMark/>
+								</w:tcPr>
+								<w:p w14:paraId="6492B64A" w14:textId="77777777" w:rsidR="00D61E43" w:rsidRPr="0039783B" w:rsidRDefault="00D61E43" w:rsidP="00F91864">
+									<w:pPr>
+										<w:widowControl/>
+										<w:jc w:val="left"/>
+										<w:rPr>
+											<w:rFonts w:ascii="瀹嬩綋" w:eastAsia="瀹嬩綋" w:hAnsi="瀹嬩綋" w:cs="瀹嬩綋"/>
+											<w:color w:val="000000"/>
+											<w:kern w:val="0"/>
+											<w:sz w:val="24"/>
+											<w:szCs w:val="24"/>
+										</w:rPr>
+									</w:pPr>
+									<w:r w:rsidRPr="0039783B">
+										<w:rPr>
+											<w:rFonts w:ascii="瀹嬩綋" w:eastAsia="瀹嬩綋" w:hAnsi="瀹嬩綋" w:cs="瀹嬩綋" w:hint="eastAsia"/>
+											<w:color w:val="000000"/>
+											<w:kern w:val="0"/>
+											<w:sz w:val="24"/>
+											<w:szCs w:val="24"/>
+										</w:rPr>
+										<w:t xml:space="preserve"> 浜烘皯甯侊紙澶у啓锛�</w:t>
+									</w:r>
+									<w:r w:rsidR="00F91864" w:rsidRPr="0039783B">
+										<w:rPr>
+											<w:rFonts w:ascii="瀹嬩綋" w:eastAsia="瀹嬩綋" w:hAnsi="瀹嬩綋" w:cs="瀹嬩綋" w:hint="eastAsia"/>
+											<w:color w:val="000000"/>
+											<w:kern w:val="0"/>
+											<w:sz w:val="24"/>
+											<w:szCs w:val="24"/>
+										</w:rPr>
+										<w:t>:</w:t>
+									</w:r>
+									<w:r w:rsidRPr="0039783B">
+										<w:rPr>
+											<w:rFonts w:ascii="瀹嬩綋" w:eastAsia="瀹嬩綋" w:hAnsi="瀹嬩綋" w:cs="瀹嬩綋" w:hint="eastAsia"/>
+											<w:color w:val="000000"/>
+											<w:kern w:val="0"/>
+											<w:sz w:val="24"/>
+											<w:szCs w:val="24"/>
+										</w:rPr>
+										<w:t xml:space="preserve"> </w:t>
+									</w:r>
+									<w:r w:rsidR="00F91864" w:rsidRPr="0039783B">
+										<w:rPr>
+											<w:rFonts w:ascii="瀹嬩綋" w:eastAsia="瀹嬩綋" w:hAnsi="瀹嬩綋" w:cs="瀹嬩綋" w:hint="eastAsia"/>
+											<w:color w:val="000000"/>
+											<w:kern w:val="0"/>
+											<w:sz w:val="24"/>
+											<w:szCs w:val="24"/>
+										</w:rPr>
+										<w:t>${JEDS}</w:t>
+									</w:r>
+									<w:r w:rsidRPr="0039783B">
+										<w:rPr>
+											<w:rFonts w:ascii="瀹嬩綋" w:eastAsia="瀹嬩綋" w:hAnsi="瀹嬩綋" w:cs="瀹嬩綋" w:hint="eastAsia"/>
+											<w:color w:val="000000"/>
+											<w:kern w:val="0"/>
+											<w:sz w:val="24"/>
+											<w:szCs w:val="24"/>
+										</w:rPr>
+										<w:t xml:space="preserve">   浜烘皯甯侊紙灏忓啓锛�</w:t>
+									</w:r>
+									<w:r w:rsidR="00F91864" w:rsidRPr="0039783B">
+										<w:rPr>
+											<w:rFonts w:ascii="瀹嬩綋" w:eastAsia="瀹嬩綋" w:hAnsi="瀹嬩綋" w:cs="瀹嬩綋"/>
+											<w:color w:val="000000"/>
+											<w:kern w:val="0"/>
+											<w:sz w:val="24"/>
+											<w:szCs w:val="24"/>
+										</w:rPr>
+										<w:t>:</w:t>
+									</w:r>
+									<w:r w:rsidR="00F91864" w:rsidRPr="0039783B">
+										<w:rPr>
+											<w:rFonts w:ascii="瀹嬩綋" w:eastAsia="瀹嬩綋" w:hAnsi="瀹嬩綋" w:cs="瀹嬩綋" w:hint="eastAsia"/>
+											<w:color w:val="000000"/>
+											<w:kern w:val="0"/>
+											<w:sz w:val="24"/>
+											<w:szCs w:val="24"/>
+										</w:rPr>
+										<w:t xml:space="preserve"> ${JEXS}</w:t>
+									</w:r>
+									<w:r w:rsidRPr="0039783B">
+										<w:rPr>
+											<w:rFonts w:ascii="瀹嬩綋" w:eastAsia="瀹嬩綋" w:hAnsi="瀹嬩綋" w:cs="瀹嬩綋" w:hint="eastAsia"/>
+											<w:color w:val="000000"/>
+											<w:kern w:val="0"/>
+											<w:sz w:val="24"/>
+											<w:szCs w:val="24"/>
+										</w:rPr>
+										<w:t>鍏�</w:t>
+									</w:r>
+								</w:p>
+							</w:tc>
+						</w:tr>
+						<w:tr w:rsidR="00D61E43" w:rsidRPr="0039783B" w14:paraId="0E388C39" w14:textId="77777777" w:rsidTr="00196045">
+							<w:trPr>
+								<w:trHeight w:val="312"/>
+								<w:jc w:val="center"/>
+							</w:trPr>
+							<w:tc>
+								<w:tcPr>
+									<w:tcW w:w="760" w:type="dxa"/>
+									<w:vMerge/>
+									<w:tcBorders>
+										<w:top w:val="single" w:sz="4" w:space="0" w:color="auto"/>
+										<w:left w:val="single" w:sz="4" w:space="0" w:color="auto"/>
+										<w:bottom w:val="nil"/>
+										<w:right w:val="single" w:sz="4" w:space="0" w:color="auto"/>
+									</w:tcBorders>
+									<w:vAlign w:val="center"/>
+									<w:hideMark/>
+								</w:tcPr>
+								<w:p w14:paraId="158A7888" w14:textId="77777777" w:rsidR="00D61E43" w:rsidRPr="0039783B" w:rsidRDefault="00D61E43" w:rsidP="00D61E43">
+									<w:pPr>
+										<w:widowControl/>
+										<w:jc w:val="left"/>
+										<w:rPr>
+											<w:rFonts w:ascii="瀹嬩綋" w:eastAsia="瀹嬩綋" w:hAnsi="瀹嬩綋" w:cs="瀹嬩綋"/>
+											<w:color w:val="000000"/>
+											<w:kern w:val="0"/>
+											<w:sz w:val="24"/>
+											<w:szCs w:val="24"/>
+										</w:rPr>
+									</w:pPr>
+								</w:p>
+							</w:tc>
+							<w:tc>
+								<w:tcPr>
+									<w:tcW w:w="13269" w:type="dxa"/>
+									<w:gridSpan w:val="4"/>
+									<w:vMerge/>
+									<w:tcBorders>
+										<w:top w:val="single" w:sz="4" w:space="0" w:color="auto"/>
+										<w:left w:val="single" w:sz="4" w:space="0" w:color="auto"/>
+										<w:bottom w:val="single" w:sz="4" w:space="0" w:color="auto"/>
+										<w:right w:val="single" w:sz="4" w:space="0" w:color="auto"/>
+									</w:tcBorders>
+									<w:vAlign w:val="center"/>
+									<w:hideMark/>
+								</w:tcPr>
+								<w:p w14:paraId="7C3EBF29" w14:textId="77777777" w:rsidR="00D61E43" w:rsidRPr="0039783B" w:rsidRDefault="00D61E43" w:rsidP="00D61E43">
+									<w:pPr>
+										<w:widowControl/>
+										<w:jc w:val="left"/>
+										<w:rPr>
+											<w:rFonts w:ascii="瀹嬩綋" w:eastAsia="瀹嬩綋" w:hAnsi="瀹嬩綋" w:cs="瀹嬩綋"/>
+											<w:color w:val="000000"/>
+											<w:kern w:val="0"/>
+											<w:sz w:val="24"/>
+											<w:szCs w:val="24"/>
+										</w:rPr>
+									</w:pPr>
+								</w:p>
+							</w:tc>
+						</w:tr>
+						<w:tr w:rsidR="00D61E43" w:rsidRPr="0039783B" w14:paraId="32287B06" w14:textId="77777777" w:rsidTr="00196045">
+							<w:trPr>
+								<w:trHeight w:val="312"/>
+								<w:jc w:val="center"/>
+							</w:trPr>
+							<w:tc>
+								<w:tcPr>
+									<w:tcW w:w="760" w:type="dxa"/>
+									<w:vMerge/>
+									<w:tcBorders>
+										<w:top w:val="single" w:sz="4" w:space="0" w:color="auto"/>
+										<w:left w:val="single" w:sz="4" w:space="0" w:color="auto"/>
+										<w:bottom w:val="nil"/>
+										<w:right w:val="single" w:sz="4" w:space="0" w:color="auto"/>
+									</w:tcBorders>
+									<w:vAlign w:val="center"/>
+									<w:hideMark/>
+								</w:tcPr>
+								<w:p w14:paraId="2A6811CB" w14:textId="77777777" w:rsidR="00D61E43" w:rsidRPr="0039783B" w:rsidRDefault="00D61E43" w:rsidP="00D61E43">
+									<w:pPr>
+										<w:widowControl/>
+										<w:jc w:val="left"/>
+										<w:rPr>
+											<w:rFonts w:ascii="瀹嬩綋" w:eastAsia="瀹嬩綋" w:hAnsi="瀹嬩綋" w:cs="瀹嬩綋"/>
+											<w:color w:val="000000"/>
+											<w:kern w:val="0"/>
+											<w:sz w:val="24"/>
+											<w:szCs w:val="24"/>
+										</w:rPr>
+									</w:pPr>
+								</w:p>
+							</w:tc>
+							<w:tc>
+								<w:tcPr>
+									<w:tcW w:w="13269" w:type="dxa"/>
+									<w:gridSpan w:val="4"/>
+									<w:vMerge/>
+									<w:tcBorders>
+										<w:top w:val="single" w:sz="4" w:space="0" w:color="auto"/>
+										<w:left w:val="single" w:sz="4" w:space="0" w:color="auto"/>
+										<w:bottom w:val="single" w:sz="4" w:space="0" w:color="auto"/>
+										<w:right w:val="single" w:sz="4" w:space="0" w:color="auto"/>
+									</w:tcBorders>
+									<w:vAlign w:val="center"/>
+									<w:hideMark/>
+								</w:tcPr>
+								<w:p w14:paraId="757F5D3A" w14:textId="77777777" w:rsidR="00D61E43" w:rsidRPr="0039783B" w:rsidRDefault="00D61E43" w:rsidP="00D61E43">
+									<w:pPr>
+										<w:widowControl/>
+										<w:jc w:val="left"/>
+										<w:rPr>
+											<w:rFonts w:ascii="瀹嬩綋" w:eastAsia="瀹嬩綋" w:hAnsi="瀹嬩綋" w:cs="瀹嬩綋"/>
+											<w:color w:val="000000"/>
+											<w:kern w:val="0"/>
+											<w:sz w:val="24"/>
+											<w:szCs w:val="24"/>
+										</w:rPr>
+									</w:pPr>
+								</w:p>
+							</w:tc>
+						</w:tr>
+						<w:tr w:rsidR="00D61E43" w:rsidRPr="0039783B" w14:paraId="0F71DAE4" w14:textId="77777777" w:rsidTr="00196045">
+							<w:trPr>
+								<w:trHeight w:val="312"/>
+								<w:jc w:val="center"/>
+							</w:trPr>
+							<w:tc>
+								<w:tcPr>
+									<w:tcW w:w="760" w:type="dxa"/>
+									<w:vMerge w:val="restart"/>
+									<w:tcBorders>
+										<w:top w:val="single" w:sz="4" w:space="0" w:color="auto"/>
+										<w:left w:val="single" w:sz="4" w:space="0" w:color="auto"/>
+										<w:bottom w:val="single" w:sz="4" w:space="0" w:color="000000"/>
+										<w:right w:val="single" w:sz="4" w:space="0" w:color="auto"/>
+									</w:tcBorders>
+									<w:shd w:val="clear" w:color="auto" w:fill="auto"/>
+									<w:noWrap/>
+									<w:vAlign w:val="center"/>
+									<w:hideMark/>
+								</w:tcPr>
+								<w:p w14:paraId="56045FE2" w14:textId="77777777" w:rsidR="00D61E43" w:rsidRPr="0039783B" w:rsidRDefault="00D61E43" w:rsidP="00D61E43">
+									<w:pPr>
+										<w:widowControl/>
+										<w:jc w:val="center"/>
+										<w:rPr>
+											<w:rFonts w:ascii="瀹嬩綋" w:eastAsia="瀹嬩綋" w:hAnsi="瀹嬩綋" w:cs="瀹嬩綋"/>
+											<w:color w:val="000000"/>
+											<w:kern w:val="0"/>
+											<w:sz w:val="24"/>
+											<w:szCs w:val="24"/>
+										</w:rPr>
+									</w:pPr>
+									<w:r w:rsidRPr="0039783B">
+										<w:rPr>
+											<w:rFonts w:ascii="瀹嬩綋" w:eastAsia="瀹嬩綋" w:hAnsi="瀹嬩綋" w:cs="瀹嬩綋" w:hint="eastAsia"/>
+											<w:color w:val="000000"/>
+											<w:kern w:val="0"/>
+											<w:sz w:val="24"/>
+											<w:szCs w:val="24"/>
+										</w:rPr>
+										<w:t>澶囨敞</w:t>
+									</w:r>
+								</w:p>
+							</w:tc>
+							<w:tc>
+								<w:tcPr>
+									<w:tcW w:w="13269" w:type="dxa"/>
+									<w:gridSpan w:val="4"/>
+									<w:vMerge w:val="restart"/>
+									<w:tcBorders>
+										<w:top w:val="single" w:sz="4" w:space="0" w:color="auto"/>
+										<w:left w:val="single" w:sz="4" w:space="0" w:color="auto"/>
+										<w:bottom w:val="single" w:sz="4" w:space="0" w:color="auto"/>
+										<w:right w:val="single" w:sz="4" w:space="0" w:color="auto"/>
+									</w:tcBorders>
+									<w:shd w:val="clear" w:color="auto" w:fill="auto"/>
+									<w:noWrap/>
+									<w:vAlign w:val="center"/>
+									<w:hideMark/>
+								</w:tcPr>
+								<w:p w14:paraId="00DF3E9E" w14:textId="77777777" w:rsidR="00D61E43" w:rsidRPr="0039783B" w:rsidRDefault="00D61E43" w:rsidP="00D61E43">
+									<w:pPr>
+										<w:widowControl/>
+										<w:jc w:val="left"/>
+										<w:rPr>
+											<w:rFonts w:ascii="瀹嬩綋" w:eastAsia="瀹嬩綋" w:hAnsi="瀹嬩綋" w:cs="瀹嬩綋"/>
+											<w:color w:val="000000"/>
+											<w:kern w:val="0"/>
+											<w:sz w:val="24"/>
+											<w:szCs w:val="24"/>
+										</w:rPr>
+									</w:pPr>
+									<w:r w:rsidRPr="0039783B">
+										<w:rPr>
+											<w:rFonts w:ascii="瀹嬩綋" w:eastAsia="瀹嬩綋" w:hAnsi="瀹嬩綋" w:cs="瀹嬩綋" w:hint="eastAsia"/>
+											<w:color w:val="000000"/>
+											<w:kern w:val="0"/>
+											<w:sz w:val="24"/>
+											<w:szCs w:val="24"/>
+										</w:rPr>
+										<w:t xml:space="preserve">銆�</w:t>
+									</w:r>
+									<w:r w:rsidR="00F91864" w:rsidRPr="0039783B">
+										<w:rPr>
+											<w:rFonts w:ascii="瀹嬩綋" w:eastAsia="瀹嬩綋" w:hAnsi="瀹嬩綋" w:cs="瀹嬩綋" w:hint="eastAsia"/>
+											<w:color w:val="000000"/>
+											<w:kern w:val="0"/>
+											<w:sz w:val="24"/>
+											<w:szCs w:val="24"/>
+										</w:rPr>
+										<w:t>${BXBZ}</w:t>
+									</w:r>
+								</w:p>
+							</w:tc>
+						</w:tr>
+						<w:tr w:rsidR="00D61E43" w:rsidRPr="00D61E43" w14:paraId="5C6CD9AE" w14:textId="77777777" w:rsidTr="00196045">
+							<w:trPr>
+								<w:trHeight w:val="312"/>
+								<w:jc w:val="center"/>
+							</w:trPr>
+							<w:tc>
+								<w:tcPr>
+									<w:tcW w:w="760" w:type="dxa"/>
+									<w:vMerge/>
+									<w:tcBorders>
+										<w:top w:val="single" w:sz="4" w:space="0" w:color="auto"/>
+										<w:left w:val="single" w:sz="4" w:space="0" w:color="auto"/>
+										<w:bottom w:val="single" w:sz="4" w:space="0" w:color="000000"/>
+										<w:right w:val="single" w:sz="4" w:space="0" w:color="auto"/>
+									</w:tcBorders>
+									<w:vAlign w:val="center"/>
+									<w:hideMark/>
+								</w:tcPr>
+								<w:p w14:paraId="1DE705BE" w14:textId="77777777" w:rsidR="00D61E43" w:rsidRPr="00D61E43" w:rsidRDefault="00D61E43" w:rsidP="00D61E43">
+									<w:pPr>
+										<w:widowControl/>
+										<w:jc w:val="left"/>
+										<w:rPr>
+											<w:rFonts w:ascii="瀹嬩綋" w:eastAsia="瀹嬩綋" w:hAnsi="瀹嬩綋" w:cs="瀹嬩綋"/>
+											<w:color w:val="000000"/>
+											<w:kern w:val="0"/>
+											<w:sz w:val="24"/>
+											<w:szCs w:val="24"/>
+										</w:rPr>
+									</w:pPr>
+								</w:p>
+							</w:tc>
+							<w:tc>
+								<w:tcPr>
+									<w:tcW w:w="13269" w:type="dxa"/>
+									<w:gridSpan w:val="4"/>
+									<w:vMerge/>
+									<w:tcBorders>
+										<w:top w:val="single" w:sz="4" w:space="0" w:color="auto"/>
+										<w:left w:val="single" w:sz="4" w:space="0" w:color="auto"/>
+										<w:bottom w:val="single" w:sz="4" w:space="0" w:color="auto"/>
+										<w:right w:val="single" w:sz="4" w:space="0" w:color="auto"/>
+									</w:tcBorders>
+									<w:vAlign w:val="center"/>
+									<w:hideMark/>
+								</w:tcPr>
+								<w:p w14:paraId="42D40FBF" w14:textId="77777777" w:rsidR="00D61E43" w:rsidRPr="00D61E43" w:rsidRDefault="00D61E43" w:rsidP="00D61E43">
+									<w:pPr>
+										<w:widowControl/>
+										<w:jc w:val="left"/>
+										<w:rPr>
+											<w:rFonts w:ascii="瀹嬩綋" w:eastAsia="瀹嬩綋" w:hAnsi="瀹嬩綋" w:cs="瀹嬩綋"/>
+											<w:color w:val="000000"/>
+											<w:kern w:val="0"/>
+											<w:sz w:val="24"/>
+											<w:szCs w:val="24"/>
+										</w:rPr>
+									</w:pPr>
+								</w:p>
+							</w:tc>
+						</w:tr>
+						<w:tr w:rsidR="00D61E43" w:rsidRPr="00D61E43" w14:paraId="013E699B" w14:textId="77777777" w:rsidTr="00196045">
+							<w:trPr>
+								<w:trHeight w:val="312"/>
+								<w:jc w:val="center"/>
+							</w:trPr>
+							<w:tc>
+								<w:tcPr>
+									<w:tcW w:w="760" w:type="dxa"/>
+									<w:vMerge/>
+									<w:tcBorders>
+										<w:top w:val="single" w:sz="4" w:space="0" w:color="auto"/>
+										<w:left w:val="single" w:sz="4" w:space="0" w:color="auto"/>
+										<w:bottom w:val="single" w:sz="4" w:space="0" w:color="000000"/>
+										<w:right w:val="single" w:sz="4" w:space="0" w:color="auto"/>
+									</w:tcBorders>
+									<w:vAlign w:val="center"/>
+									<w:hideMark/>
+								</w:tcPr>
+								<w:p w14:paraId="56E7CEB6" w14:textId="77777777" w:rsidR="00D61E43" w:rsidRPr="00D61E43" w:rsidRDefault="00D61E43" w:rsidP="00D61E43">
+									<w:pPr>
+										<w:widowControl/>
+										<w:jc w:val="left"/>
+										<w:rPr>
+											<w:rFonts w:ascii="瀹嬩綋" w:eastAsia="瀹嬩綋" w:hAnsi="瀹嬩綋" w:cs="瀹嬩綋"/>
+											<w:color w:val="000000"/>
+											<w:kern w:val="0"/>
+											<w:sz w:val="24"/>
+											<w:szCs w:val="24"/>
+										</w:rPr>
+									</w:pPr>
+								</w:p>
+							</w:tc>
+							<w:tc>
+								<w:tcPr>
+									<w:tcW w:w="13269" w:type="dxa"/>
+									<w:gridSpan w:val="4"/>
+									<w:vMerge/>
+									<w:tcBorders>
+										<w:top w:val="single" w:sz="4" w:space="0" w:color="auto"/>
+										<w:left w:val="single" w:sz="4" w:space="0" w:color="auto"/>
+										<w:bottom w:val="single" w:sz="4" w:space="0" w:color="auto"/>
+										<w:right w:val="single" w:sz="4" w:space="0" w:color="auto"/>
+									</w:tcBorders>
+									<w:vAlign w:val="center"/>
+									<w:hideMark/>
+								</w:tcPr>
+								<w:p w14:paraId="15F2088B" w14:textId="77777777" w:rsidR="00D61E43" w:rsidRPr="00D61E43" w:rsidRDefault="00D61E43" w:rsidP="00D61E43">
+									<w:pPr>
+										<w:widowControl/>
+										<w:jc w:val="left"/>
+										<w:rPr>
+											<w:rFonts w:ascii="瀹嬩綋" w:eastAsia="瀹嬩綋" w:hAnsi="瀹嬩綋" w:cs="瀹嬩綋"/>
+											<w:color w:val="000000"/>
+											<w:kern w:val="0"/>
+											<w:sz w:val="24"/>
+											<w:szCs w:val="24"/>
+										</w:rPr>
+									</w:pPr>
+								</w:p>
+							</w:tc>
+						</w:tr>
+						<w:tr w:rsidR="00D61E43" w:rsidRPr="00D61E43" w14:paraId="01C45DB2" w14:textId="77777777" w:rsidTr="00196045">
+							<w:trPr>
+								<w:trHeight w:val="312"/>
+								<w:jc w:val="center"/>
+							</w:trPr>
+							<w:tc>
+								<w:tcPr>
+									<w:tcW w:w="760" w:type="dxa"/>
+									<w:vMerge/>
+									<w:tcBorders>
+										<w:top w:val="single" w:sz="4" w:space="0" w:color="auto"/>
+										<w:left w:val="single" w:sz="4" w:space="0" w:color="auto"/>
+										<w:bottom w:val="single" w:sz="4" w:space="0" w:color="000000"/>
+										<w:right w:val="single" w:sz="4" w:space="0" w:color="auto"/>
+									</w:tcBorders>
+									<w:vAlign w:val="center"/>
+									<w:hideMark/>
+								</w:tcPr>
+								<w:p w14:paraId="5266201F" w14:textId="77777777" w:rsidR="00D61E43" w:rsidRPr="00D61E43" w:rsidRDefault="00D61E43" w:rsidP="00D61E43">
+									<w:pPr>
+										<w:widowControl/>
+										<w:jc w:val="left"/>
+										<w:rPr>
+											<w:rFonts w:ascii="瀹嬩綋" w:eastAsia="瀹嬩綋" w:hAnsi="瀹嬩綋" w:cs="瀹嬩綋"/>
+											<w:color w:val="000000"/>
+											<w:kern w:val="0"/>
+											<w:sz w:val="24"/>
+											<w:szCs w:val="24"/>
+										</w:rPr>
+									</w:pPr>
+								</w:p>
+							</w:tc>
+							<w:tc>
+								<w:tcPr>
+									<w:tcW w:w="13269" w:type="dxa"/>
+									<w:gridSpan w:val="4"/>
+									<w:vMerge/>
+									<w:tcBorders>
+										<w:top w:val="single" w:sz="4" w:space="0" w:color="auto"/>
+										<w:left w:val="single" w:sz="4" w:space="0" w:color="auto"/>
+										<w:bottom w:val="single" w:sz="4" w:space="0" w:color="auto"/>
+										<w:right w:val="single" w:sz="4" w:space="0" w:color="auto"/>
+									</w:tcBorders>
+									<w:vAlign w:val="center"/>
+									<w:hideMark/>
+								</w:tcPr>
+								<w:p w14:paraId="32EB23AC" w14:textId="77777777" w:rsidR="00D61E43" w:rsidRPr="00D61E43" w:rsidRDefault="00D61E43" w:rsidP="00D61E43">
+									<w:pPr>
+										<w:widowControl/>
+										<w:jc w:val="left"/>
+										<w:rPr>
+											<w:rFonts w:ascii="瀹嬩綋" w:eastAsia="瀹嬩綋" w:hAnsi="瀹嬩綋" w:cs="瀹嬩綋"/>
+											<w:color w:val="000000"/>
+											<w:kern w:val="0"/>
+											<w:sz w:val="24"/>
+											<w:szCs w:val="24"/>
+										</w:rPr>
+									</w:pPr>
+								</w:p>
+							</w:tc>
+						</w:tr>
+						<w:tr w:rsidR="00D61E43" w:rsidRPr="00D61E43" w14:paraId="38FB8076" w14:textId="77777777" w:rsidTr="00196045">
+							<w:trPr>
+								<w:trHeight w:val="312"/>
+								<w:jc w:val="center"/>
+							</w:trPr>
+							<w:tc>
+								<w:tcPr>
+									<w:tcW w:w="760" w:type="dxa"/>
+									<w:vMerge/>
+									<w:tcBorders>
+										<w:top w:val="single" w:sz="4" w:space="0" w:color="auto"/>
+										<w:left w:val="single" w:sz="4" w:space="0" w:color="auto"/>
+										<w:bottom w:val="single" w:sz="4" w:space="0" w:color="000000"/>
+										<w:right w:val="single" w:sz="4" w:space="0" w:color="auto"/>
+									</w:tcBorders>
+									<w:vAlign w:val="center"/>
+									<w:hideMark/>
+								</w:tcPr>
+								<w:p w14:paraId="654B31D4" w14:textId="77777777" w:rsidR="00D61E43" w:rsidRPr="00D61E43" w:rsidRDefault="00D61E43" w:rsidP="00D61E43">
+									<w:pPr>
+										<w:widowControl/>
+										<w:jc w:val="left"/>
+										<w:rPr>
+											<w:rFonts w:ascii="瀹嬩綋" w:eastAsia="瀹嬩綋" w:hAnsi="瀹嬩綋" w:cs="瀹嬩綋"/>
+											<w:color w:val="000000"/>
+											<w:kern w:val="0"/>
+											<w:sz w:val="24"/>
+											<w:szCs w:val="24"/>
+										</w:rPr>
+									</w:pPr>
+								</w:p>
+							</w:tc>
+							<w:tc>
+								<w:tcPr>
+									<w:tcW w:w="13269" w:type="dxa"/>
+									<w:gridSpan w:val="4"/>
+									<w:vMerge/>
+									<w:tcBorders>
+										<w:top w:val="single" w:sz="4" w:space="0" w:color="auto"/>
+										<w:left w:val="single" w:sz="4" w:space="0" w:color="auto"/>
+										<w:bottom w:val="single" w:sz="4" w:space="0" w:color="auto"/>
+										<w:right w:val="single" w:sz="4" w:space="0" w:color="auto"/>
+									</w:tcBorders>
+									<w:vAlign w:val="center"/>
+									<w:hideMark/>
+								</w:tcPr>
+								<w:p w14:paraId="10C38CC1" w14:textId="77777777" w:rsidR="00D61E43" w:rsidRPr="00D61E43" w:rsidRDefault="00D61E43" w:rsidP="00D61E43">
+									<w:pPr>
+										<w:widowControl/>
+										<w:jc w:val="left"/>
+										<w:rPr>
+											<w:rFonts w:ascii="瀹嬩綋" w:eastAsia="瀹嬩綋" w:hAnsi="瀹嬩綋" w:cs="瀹嬩綋"/>
+											<w:color w:val="000000"/>
+											<w:kern w:val="0"/>
+											<w:sz w:val="24"/>
+											<w:szCs w:val="24"/>
+										</w:rPr>
+									</w:pPr>
+								</w:p>
+							</w:tc>
+						</w:tr>
+					</w:tbl>
+					<w:p w14:paraId="237BF920" w14:textId="77777777" w:rsidR="00196045" w:rsidRDefault="00196045" w:rsidP="00196045">
+						<w:pPr>
+							<w:ind w:firstLineChars="100" w:firstLine="210"/>
+						</w:pPr>
+					</w:p>
+					<w:p w14:paraId="6610F453" w14:textId="77777777" w:rsidR="00196045" w:rsidRDefault="00D61E43" w:rsidP="00196045">
+						<w:pPr>
+							<w:ind w:left="840" w:firstLineChars="200" w:firstLine="420"/>
+						</w:pPr>
+						<w:r w:rsidRPr="00D61E43">
+							<w:rPr>
+								<w:rFonts w:hint="eastAsia"/>
+							</w:rPr>
+							<w:t>涓績璐熻矗浜猴細</w:t>
+						</w:r>
+						<w:r w:rsidRPr="00D61E43">
+							<w:t xml:space="preserve">         璐㈠姟鍓櫌闀匡細          涓氬姟鍓櫌闀匡細         鍔炲叕瀹や富浠伙細           璐㈠姟閮ㄤ富浠伙細         璐㈠姟瀹℃牳锛�</w:t>
+						</w:r>
+					</w:p>
+					<w:p w14:paraId="3379FABB" w14:textId="77777777" w:rsidR="00196045" w:rsidRDefault="00196045">
+						<w:pPr>
+							<w:widowControl/>
+							<w:jc w:val="left"/>
+						</w:pPr>
+						<w:r>
+							<w:br w:type="page"/>
+						</w:r>
+					</w:p>
+					<w:p w14:paraId="6994A4F5" w14:textId="77777777" w:rsidR="006D0E9A" w:rsidRPr="003B60F8" w:rsidRDefault="006D0E9A" w:rsidP="006D0E9A">
+						<w:pPr>
+							<w:jc w:val="right"/>
+							<w:rPr>
+								<w:sz w:val="32"/>
+								<w:szCs w:val="32"/>
+							</w:rPr>
+						</w:pPr>
+						<w:r w:rsidRPr="003B60F8">
+							<w:rPr>
+								<w:rFonts w:hint="eastAsia"/>
+								<w:sz w:val="32"/>
+								<w:szCs w:val="32"/>
+							</w:rPr>
+							<w:lastRenderedPageBreak/>
+							<w:t xml:space="preserve">娴欐睙鐪佷汉浣撳櫒瀹樿幏鍙栨湇鍔$鐞嗕腑蹇� </w:t>
+						</w:r>
+						<w:r>
+							<w:rPr>
+								<w:sz w:val="32"/>
+								<w:szCs w:val="32"/>
+							</w:rPr>
+							<w:t xml:space="preserve">                      </w:t>
+						</w:r>
+						<w:r w:rsidRPr="003B60F8">
+							<w:rPr>
+								<w:rFonts w:hint="eastAsia"/>
+								<w:sz w:val="32"/>
+								<w:szCs w:val="32"/>
+							</w:rPr>
+							<w:t>琛�</w:t>
+						</w:r>
+						<w:r w:rsidRPr="003B60F8">
+							<w:rPr>
+								<w:sz w:val="32"/>
+								<w:szCs w:val="32"/>
+							</w:rPr>
+							<w:t>9-2</w:t>
+						</w:r>
+					</w:p>
+					<w:p w14:paraId="068940B8" w14:textId="77777777" w:rsidR="006D0E9A" w:rsidRPr="003B60F8" w:rsidRDefault="006D0E9A" w:rsidP="006D0E9A">
+						<w:pPr>
+							<w:jc w:val="center"/>
+							<w:rPr>
+								<w:sz w:val="30"/>
+								<w:szCs w:val="30"/>
+							</w:rPr>
+						</w:pPr>
+						<w:r w:rsidRPr="003B60F8">
+							<w:rPr>
+								<w:rFonts w:hint="eastAsia"/>
+								<w:sz w:val="30"/>
+								<w:szCs w:val="30"/>
+							</w:rPr>
+							<w:t>涓撳鍔冲姟璐瑰彂鏀捐〃</w:t>
+						</w:r>
+					</w:p>
+					<w:p w14:paraId="5A849408" w14:textId="77777777" w:rsidR="006D0E9A" w:rsidRPr="0039783B" w:rsidRDefault="006D0E9A" w:rsidP="006D0E9A">
+						<w:pPr>
+							<w:rPr>
+								<w:rFonts w:ascii="瀹嬩綋" w:eastAsia="瀹嬩綋" w:hAnsi="瀹嬩綋"/>
+								<w:sz w:val="24"/>
+								<w:szCs w:val="24"/>
+							</w:rPr>
+						</w:pPr>
+						<w:r w:rsidRPr="0039783B">
+							<w:rPr>
+								<w:rFonts w:ascii="瀹嬩綋" w:eastAsia="瀹嬩綋" w:hAnsi="瀹嬩綋" w:hint="eastAsia"/>
+								<w:sz w:val="24"/>
+								<w:szCs w:val="24"/>
+							</w:rPr>
+							<w:t>鏃ユ湡锛�</w:t>
+						</w:r>
+						<w:r w:rsidRPr="0039783B">
+							<w:rPr>
+								<w:rFonts w:ascii="瀹嬩綋" w:eastAsia="瀹嬩綋" w:hAnsi="瀹嬩綋" w:cs="鏂板畫浣�"/>
+								<w:color w:val="000000"/>
+								<w:kern w:val="0"/>
+								<w:sz w:val="19"/>
+								<w:szCs w:val="19"/>
+							</w:rPr>
+							<w:t>${YYMMDD}</w:t>
+						</w:r>
+					</w:p>
+					<w:tbl>
+						<w:tblPr>
+							<w:tblStyle w:val="a7"/>
+							<w:tblW w:w="14596" w:type="dxa"/>
+							<w:tblLayout w:type="fixed"/>
+							<w:tblLook w:val="04A0" w:firstRow="1" w:lastRow="0" w:firstColumn="1" w:lastColumn="0" w:noHBand="0" w:noVBand="1"/>
+						</w:tblPr>
+						<w:tblGrid>
+							<w:gridCol w:w="704"/>
+							<w:gridCol w:w="2552"/>
+							<w:gridCol w:w="850"/>
+							<w:gridCol w:w="1985"/>
+							<w:gridCol w:w="1134"/>
+							<w:gridCol w:w="1701"/>
+							<w:gridCol w:w="1134"/>
+							<w:gridCol w:w="1701"/>
+							<w:gridCol w:w="850"/>
+							<w:gridCol w:w="992"/>
+							<w:gridCol w:w="993"/>
+						</w:tblGrid>
+						<w:tr w:rsidR="006D0E9A" w14:paraId="1F771D10" w14:textId="77777777" w:rsidTr="00104EB8">
+							<w:trPr>
+								<w:trHeight w:val="617"/>
+							</w:trPr>
+							<w:tc>
+								<w:tcPr>
+									<w:tcW w:w="3256" w:type="dxa"/>
+									<w:gridSpan w:val="2"/>
+									<w:vAlign w:val="center"/>
+								</w:tcPr>
+								<w:p w14:paraId="2B2FD1CC" w14:textId="77777777" w:rsidR="006D0E9A" w:rsidRDefault="006D0E9A" w:rsidP="00104EB8">
+									<w:pPr>
+										<w:jc w:val="center"/>
+									</w:pPr>
+									<w:r w:rsidRPr="003B60F8">
+										<w:rPr>
+											<w:rFonts w:hint="eastAsia"/>
+										</w:rPr>
+										<w:t>鎹愮尞鑰呭鍚�</w:t>
+									</w:r>
+								</w:p>
+							</w:tc>
+							<w:tc>
+								<w:tcPr>
+									<w:tcW w:w="2835" w:type="dxa"/>
+									<w:gridSpan w:val="2"/>
+									<w:vAlign w:val="center"/>
+								</w:tcPr>
+								<w:p w14:paraId="64903F3F" w14:textId="77777777" w:rsidR="006D0E9A" w:rsidRDefault="006D0E9A" w:rsidP="00104EB8">
+									<w:pPr>
+										<w:jc w:val="center"/>
+									</w:pPr>
+									<w:r>
+										<w:rPr>
+											<w:rFonts w:ascii="鏂板畫浣�" w:eastAsia="鏂板畫浣�" w:cs="鏂板畫浣�"/>
+											<w:color w:val="000000"/>
+											<w:kern w:val="0"/>
+											<w:sz w:val="19"/>
+											<w:szCs w:val="19"/>
+										</w:rPr>
+										<w:t>${XM}</w:t>
+									</w:r>
+								</w:p>
+							</w:tc>
+							<w:tc>
+								<w:tcPr>
+									<w:tcW w:w="1134" w:type="dxa"/>
+									<w:vAlign w:val="center"/>
+								</w:tcPr>
+								<w:p w14:paraId="0CD74050" w14:textId="77777777" w:rsidR="006D0E9A" w:rsidRDefault="006D0E9A" w:rsidP="00104EB8">
+									<w:r w:rsidRPr="003B60F8">
+										<w:rPr>
+											<w:rFonts w:hint="eastAsia"/>
+										</w:rPr>
+										<w:t>涓撹亴宸ヤ綔浜哄憳</w:t>
+									</w:r>
+								</w:p>
+							</w:tc>
+							<w:tc>
+								<w:tcPr>
+									<w:tcW w:w="2835" w:type="dxa"/>
+									<w:gridSpan w:val="2"/>
+									<w:vAlign w:val="center"/>
+								</w:tcPr>
+								<w:p w14:paraId="38CAEA2C" w14:textId="77777777" w:rsidR="006D0E9A" w:rsidRDefault="006D0E9A" w:rsidP="00104EB8">
+									<w:pPr>
+										<w:jc w:val="center"/>
+									</w:pPr>
+									<w:r>
+										<w:rPr>
+											<w:rFonts w:ascii="鏂板畫浣�" w:eastAsia="鏂板畫浣�" w:cs="鏂板畫浣�"/>
+											<w:color w:val="000000"/>
+											<w:kern w:val="0"/>
+											<w:sz w:val="19"/>
+											<w:szCs w:val="19"/>
+										</w:rPr>
+										<w:t>${GZRY}</w:t>
+									</w:r>
+								</w:p>
+							</w:tc>
+							<w:tc>
+								<w:tcPr>
+									<w:tcW w:w="1701" w:type="dxa"/>
+									<w:vAlign w:val="center"/>
+								</w:tcPr>
+								<w:p w14:paraId="5B865ACC" w14:textId="77777777" w:rsidR="006D0E9A" w:rsidRDefault="006D0E9A" w:rsidP="00104EB8">
+									<w:pPr>
+										<w:jc w:val="center"/>
+									</w:pPr>
+									<w:r>
+										<w:rPr>
+											<w:rFonts w:hint="eastAsia"/>
+										</w:rPr>
+										<w:t>缁勯暱</w:t>
+									</w:r>
+								</w:p>
+							</w:tc>
+							<w:tc>
+								<w:tcPr>
+									<w:tcW w:w="2835" w:type="dxa"/>
+									<w:gridSpan w:val="3"/>
+									<w:vAlign w:val="center"/>
+								</w:tcPr>
+								<w:p w14:paraId="4C562285" w14:textId="77777777" w:rsidR="006D0E9A" w:rsidRDefault="006D0E9A" w:rsidP="00104EB8">
+									<w:pPr>
+										<w:jc w:val="center"/>
+									</w:pPr>
+									<w:r>
+										<w:rPr>
+											<w:rFonts w:ascii="鏂板畫浣�" w:eastAsia="鏂板畫浣�" w:cs="鏂板畫浣�"/>
+											<w:color w:val="000000"/>
+											<w:kern w:val="0"/>
+											<w:sz w:val="19"/>
+											<w:szCs w:val="19"/>
+										</w:rPr>
+										<w:t>${ZZ}</w:t>
+									</w:r>
+								</w:p>
+							</w:tc>
+						</w:tr>
+						<w:tr w:rsidR="006D0E9A" w14:paraId="06E58F95" w14:textId="77777777" w:rsidTr="00104EB8">
+							<w:tc>
+								<w:tcPr>
+									<w:tcW w:w="704" w:type="dxa"/>
+									<w:vAlign w:val="center"/>
+								</w:tcPr>
+								<w:p w14:paraId="37A2B300" w14:textId="77777777" w:rsidR="006D0E9A" w:rsidRDefault="006D0E9A" w:rsidP="00104EB8">
+									<w:pPr>
+										<w:widowControl/>
+										<w:jc w:val="center"/>
+										<w:rPr>
+											<w:color w:val="000000"/>
+											<w:sz w:val="20"/>
+											<w:szCs w:val="20"/>
+										</w:rPr>
+									</w:pPr>
+									<w:r>
+										<w:rPr>
+											<w:rFonts w:hint="eastAsia"/>
+											<w:color w:val="000000"/>
+											<w:sz w:val="20"/>
+											<w:szCs w:val="20"/>
+										</w:rPr>
+										<w:t>搴忓彿</w:t>
+									</w:r>
+								</w:p>
+							</w:tc>
+							<w:tc>
+								<w:tcPr>
+									<w:tcW w:w="2552" w:type="dxa"/>
+									<w:vAlign w:val="center"/>
+								</w:tcPr>
+								<w:p w14:paraId="77B9C5B6" w14:textId="77777777" w:rsidR="006D0E9A" w:rsidRDefault="006D0E9A" w:rsidP="00104EB8">
+									<w:pPr>
+										<w:jc w:val="center"/>
+										<w:rPr>
+											<w:color w:val="000000"/>
+											<w:sz w:val="20"/>
+											<w:szCs w:val="20"/>
+										</w:rPr>
+									</w:pPr>
+									<w:r>
+										<w:rPr>
+											<w:rFonts w:hint="eastAsia"/>
+											<w:color w:val="000000"/>
+											<w:sz w:val="20"/>
+											<w:szCs w:val="20"/>
+										</w:rPr>
+										<w:t>鏈嶅姟鍐呭</w:t>
+									</w:r>
+								</w:p>
+							</w:tc>
+							<w:tc>
+								<w:tcPr>
+									<w:tcW w:w="850" w:type="dxa"/>
+									<w:vAlign w:val="center"/>
+								</w:tcPr>
+								<w:p w14:paraId="2CE2D898" w14:textId="77777777" w:rsidR="006D0E9A" w:rsidRDefault="006D0E9A" w:rsidP="00104EB8">
+									<w:pPr>
+										<w:jc w:val="center"/>
+										<w:rPr>
+											<w:color w:val="000000"/>
+											<w:sz w:val="20"/>
+											<w:szCs w:val="20"/>
+										</w:rPr>
+									</w:pPr>
+									<w:r>
+										<w:rPr>
+											<w:rFonts w:hint="eastAsia"/>
+											<w:color w:val="000000"/>
+											<w:sz w:val="20"/>
+											<w:szCs w:val="20"/>
+										</w:rPr>
+										<w:t>濮撳悕</w:t>
+									</w:r>
+								</w:p>
+							</w:tc>
+							<w:tc>
+								<w:tcPr>
+									<w:tcW w:w="1985" w:type="dxa"/>
+									<w:vAlign w:val="center"/>
+								</w:tcPr>
+								<w:p w14:paraId="159C1444" w14:textId="77777777" w:rsidR="006D0E9A" w:rsidRDefault="006D0E9A" w:rsidP="00104EB8">
+									<w:pPr>
+										<w:jc w:val="center"/>
+										<w:rPr>
+											<w:color w:val="000000"/>
+											<w:sz w:val="20"/>
+											<w:szCs w:val="20"/>
+										</w:rPr>
+									</w:pPr>
+									<w:r>
+										<w:rPr>
+											<w:rFonts w:hint="eastAsia"/>
+											<w:color w:val="000000"/>
+											<w:sz w:val="20"/>
+											<w:szCs w:val="20"/>
+										</w:rPr>
+										<w:t>鍗曚綅</w:t>
+									</w:r>
+								</w:p>
+							</w:tc>
+							<w:tc>
+								<w:tcPr>
+									<w:tcW w:w="1134" w:type="dxa"/>
+									<w:vAlign w:val="center"/>
+								</w:tcPr>
+								<w:p w14:paraId="1FC22E66" w14:textId="77777777" w:rsidR="006D0E9A" w:rsidRDefault="006D0E9A" w:rsidP="00104EB8">
+									<w:pPr>
+										<w:jc w:val="center"/>
+										<w:rPr>
+											<w:color w:val="000000"/>
+											<w:sz w:val="20"/>
+											<w:szCs w:val="20"/>
+										</w:rPr>
+									</w:pPr>
+									<w:r>
+										<w:rPr>
+											<w:rFonts w:hint="eastAsia"/>
+											<w:color w:val="000000"/>
+											<w:sz w:val="20"/>
+											<w:szCs w:val="20"/>
+										</w:rPr>
+										<w:t>鑱岀О(鑱屽姟)</w:t>
+									</w:r>
+								</w:p>
+							</w:tc>
+							<w:tc>
+								<w:tcPr>
+									<w:tcW w:w="1701" w:type="dxa"/>
+									<w:vAlign w:val="center"/>
+								</w:tcPr>
+								<w:p w14:paraId="777AD3A5" w14:textId="77777777" w:rsidR="006D0E9A" w:rsidRDefault="006D0E9A" w:rsidP="00104EB8">
+									<w:pPr>
+										<w:jc w:val="center"/>
+										<w:rPr>
+											<w:color w:val="000000"/>
+											<w:sz w:val="20"/>
+											<w:szCs w:val="20"/>
+										</w:rPr>
+									</w:pPr>
+									<w:r>
+										<w:rPr>
+											<w:rFonts w:hint="eastAsia"/>
+											<w:color w:val="000000"/>
+											<w:sz w:val="20"/>
+											<w:szCs w:val="20"/>
+										</w:rPr>
+										<w:t>韬唤璇佸彿</w:t>
+									</w:r>
+								</w:p>
+							</w:tc>
+							<w:tc>
+								<w:tcPr>
+									<w:tcW w:w="1134" w:type="dxa"/>
+									<w:vAlign w:val="center"/>
+								</w:tcPr>
+								<w:p w14:paraId="3E1663EB" w14:textId="77777777" w:rsidR="006D0E9A" w:rsidRDefault="006D0E9A" w:rsidP="00104EB8">
+									<w:pPr>
+										<w:jc w:val="center"/>
+										<w:rPr>
+											<w:color w:val="000000"/>
+											<w:sz w:val="20"/>
+											<w:szCs w:val="20"/>
+										</w:rPr>
+									</w:pPr>
+									<w:r>
+										<w:rPr>
+											<w:rFonts w:hint="eastAsia"/>
+											<w:color w:val="000000"/>
+											<w:sz w:val="20"/>
+											<w:szCs w:val="20"/>
+										</w:rPr>
+										<w:t>寮�鎴烽摱琛�</w:t>
+									</w:r>
+								</w:p>
+							</w:tc>
+							<w:tc>
+								<w:tcPr>
+									<w:tcW w:w="1701" w:type="dxa"/>
+									<w:vAlign w:val="center"/>
+								</w:tcPr>
+								<w:p w14:paraId="7C03F553" w14:textId="77777777" w:rsidR="006D0E9A" w:rsidRDefault="006D0E9A" w:rsidP="00104EB8">
+									<w:pPr>
+										<w:jc w:val="center"/>
+										<w:rPr>
+											<w:color w:val="000000"/>
+											<w:sz w:val="20"/>
+											<w:szCs w:val="20"/>
+										</w:rPr>
+									</w:pPr>
+									<w:r>
+										<w:rPr>
+											<w:rFonts w:hint="eastAsia"/>
+											<w:color w:val="000000"/>
+											<w:sz w:val="20"/>
+											<w:szCs w:val="20"/>
+										</w:rPr>
+										<w:t>閾惰鍗″彿</w:t>
+									</w:r>
+								</w:p>
+							</w:tc>
+							<w:tc>
+								<w:tcPr>
+									<w:tcW w:w="850" w:type="dxa"/>
+									<w:vAlign w:val="center"/>
+								</w:tcPr>
+								<w:p w14:paraId="3EE771E1" w14:textId="77777777" w:rsidR="006D0E9A" w:rsidRDefault="006D0E9A" w:rsidP="00104EB8">
+									<w:pPr>
+										<w:jc w:val="center"/>
+										<w:rPr>
+											<w:color w:val="000000"/>
+											<w:sz w:val="20"/>
+											<w:szCs w:val="20"/>
+										</w:rPr>
+									</w:pPr>
+									<w:r>
+										<w:rPr>
+											<w:rFonts w:hint="eastAsia"/>
+											<w:color w:val="000000"/>
+											<w:sz w:val="20"/>
+											<w:szCs w:val="20"/>
+										</w:rPr>
+										<w:t>绋庡墠閲戦(鍏�)</w:t>
+									</w:r>
+								</w:p>
+							</w:tc>
+							<w:tc>
+								<w:tcPr>
+									<w:tcW w:w="992" w:type="dxa"/>
+									<w:vAlign w:val="center"/>
+								</w:tcPr>
+								<w:p w14:paraId="5008A0F9" w14:textId="77777777" w:rsidR="006D0E9A" w:rsidRDefault="006D0E9A" w:rsidP="00104EB8">
+									<w:pPr>
+										<w:jc w:val="center"/>
+										<w:rPr>
+											<w:color w:val="000000"/>
+											<w:sz w:val="20"/>
+											<w:szCs w:val="20"/>
+										</w:rPr>
+									</w:pPr>
+									<w:r>
+										<w:rPr>
+											<w:rFonts w:hint="eastAsia"/>
+											<w:color w:val="000000"/>
+											<w:sz w:val="20"/>
+											<w:szCs w:val="20"/>
+										</w:rPr>
+										<w:t>鎵g◣(鍏�)</w:t>
+									</w:r>
+								</w:p>
+							</w:tc>
+							<w:tc>
+								<w:tcPr>
+									<w:tcW w:w="993" w:type="dxa"/>
+									<w:vAlign w:val="center"/>
+								</w:tcPr>
+								<w:p w14:paraId="7614614C" w14:textId="77777777" w:rsidR="006D0E9A" w:rsidRDefault="006D0E9A" w:rsidP="00104EB8">
+									<w:pPr>
+										<w:jc w:val="center"/>
+										<w:rPr>
+											<w:color w:val="000000"/>
+											<w:sz w:val="20"/>
+											<w:szCs w:val="20"/>
+										</w:rPr>
+									</w:pPr>
+									<w:r>
+										<w:rPr>
+											<w:rFonts w:hint="eastAsia"/>
+											<w:color w:val="000000"/>
+											<w:sz w:val="20"/>
+											<w:szCs w:val="20"/>
+										</w:rPr>
+										<w:t>绋庡悗閲戦(鍏�)</w:t>
+									</w:r>
+								</w:p>
+							</w:tc>
+						</w:tr>
+						<#list list as list>
+						<w:tr w:rsidR="006D0E9A" w14:paraId="5B6B44A8" w14:textId="77777777" w:rsidTr="00104EB8">
+							<w:trPr>
+								<w:trHeight w:val="392"/>
+							</w:trPr>
+							<w:tc>
+								<w:tcPr>
+									<w:tcW w:w="704" w:type="dxa"/>
+									<w:vAlign w:val="center"/>
+								</w:tcPr>
+								<w:p w14:paraId="2FC1FB0E" w14:textId="77777777" w:rsidR="006D0E9A" w:rsidRDefault="006D0E9A" w:rsidP="00104EB8">
+									<w:pPr>
+										<w:jc w:val="center"/>
+									</w:pPr>
+									<w:r>
+										<w:rPr>
+											<w:rFonts w:ascii="鏂板畫浣�" w:eastAsia="鏂板畫浣�" w:cs="鏂板畫浣�"/>
+											<w:color w:val="000000"/>
+											<w:kern w:val="0"/>
+											<w:sz w:val="19"/>
+											<w:szCs w:val="19"/>
+										</w:rPr>
+										<w:t>${list.XH}</w:t>
+									</w:r>
+								</w:p>
+							</w:tc>
+							<w:tc>
+								<w:tcPr>
+									<w:tcW w:w="2552" w:type="dxa"/>
+									<w:vAlign w:val="center"/>
+								</w:tcPr>
+								<w:p w14:paraId="3FC91D34" w14:textId="77777777" w:rsidR="006D0E9A" w:rsidRDefault="006D0E9A" w:rsidP="00104EB8">
+									<w:pPr>
+										<w:jc w:val="center"/>
+									</w:pPr>
+									<w:r>
+										<w:rPr>
+											<w:rFonts w:ascii="鏂板畫浣�" w:eastAsia="鏂板畫浣�" w:cs="鏂板畫浣�"/>
+											<w:color w:val="000000"/>
+											<w:kern w:val="0"/>
+											<w:sz w:val="19"/>
+											<w:szCs w:val="19"/>
+										</w:rPr>
+										<w:t>${list.FWNR}</w:t>
+									</w:r>
+								</w:p>
+							</w:tc>
+							<w:tc>
+								<w:tcPr>
+									<w:tcW w:w="850" w:type="dxa"/>
+									<w:vAlign w:val="center"/>
+								</w:tcPr>
+								<w:p w14:paraId="21723AEB" w14:textId="77777777" w:rsidR="006D0E9A" w:rsidRDefault="006D0E9A" w:rsidP="00104EB8">
+									<w:pPr>
+										<w:jc w:val="center"/>
+									</w:pPr>
+									<w:r>
+										<w:rPr>
+											<w:rFonts w:ascii="鏂板畫浣�" w:eastAsia="鏂板畫浣�" w:cs="鏂板畫浣�"/>
+											<w:color w:val="000000"/>
+											<w:kern w:val="0"/>
+											<w:sz w:val="19"/>
+											<w:szCs w:val="19"/>
+										</w:rPr>
+										<w:t>${list.ZZXM}</w:t>
+									</w:r>
+								</w:p>
+							</w:tc>
+							<w:tc>
+								<w:tcPr>
+									<w:tcW w:w="1985" w:type="dxa"/>
+									<w:vAlign w:val="center"/>
+								</w:tcPr>
+								<w:p w14:paraId="364B19D8" w14:textId="77777777" w:rsidR="006D0E9A" w:rsidRDefault="006D0E9A" w:rsidP="00104EB8">
+									<w:pPr>
+										<w:jc w:val="center"/>
+									</w:pPr>
+									<w:r>
+										<w:rPr>
+											<w:rFonts w:ascii="鏂板畫浣�" w:eastAsia="鏂板畫浣�" w:cs="鏂板畫浣�"/>
+											<w:color w:val="000000"/>
+											<w:kern w:val="0"/>
+											<w:sz w:val="19"/>
+											<w:szCs w:val="19"/>
+										</w:rPr>
+										<w:t>${list.DW}</w:t>
+									</w:r>
+								</w:p>
+							</w:tc>
+							<w:tc>
+								<w:tcPr>
+									<w:tcW w:w="1134" w:type="dxa"/>
+									<w:vAlign w:val="center"/>
+								</w:tcPr>
+								<w:p w14:paraId="7A2B5074" w14:textId="77777777" w:rsidR="006D0E9A" w:rsidRDefault="006D0E9A" w:rsidP="00104EB8">
+									<w:pPr>
+										<w:jc w:val="center"/>
+									</w:pPr>
+									<w:r>
+										<w:rPr>
+											<w:rFonts w:ascii="鏂板畫浣�" w:eastAsia="鏂板畫浣�" w:cs="鏂板畫浣�"/>
+											<w:color w:val="000000"/>
+											<w:kern w:val="0"/>
+											<w:sz w:val="19"/>
+											<w:szCs w:val="19"/>
+										</w:rPr>
+										<w:t>${list.ZW}</w:t>
+									</w:r>
+								</w:p>
+							</w:tc>
+							<w:tc>
+								<w:tcPr>
+									<w:tcW w:w="1701" w:type="dxa"/>
+									<w:vAlign w:val="center"/>
+								</w:tcPr>
+								<w:p w14:paraId="6ABA5BF0" w14:textId="77777777" w:rsidR="006D0E9A" w:rsidRDefault="006D0E9A" w:rsidP="00104EB8">
+									<w:pPr>
+										<w:jc w:val="center"/>
+									</w:pPr>
+									<w:r>
+										<w:rPr>
+											<w:rFonts w:ascii="鏂板畫浣�" w:eastAsia="鏂板畫浣�" w:cs="鏂板畫浣�"/>
+											<w:color w:val="000000"/>
+											<w:kern w:val="0"/>
+											<w:sz w:val="19"/>
+											<w:szCs w:val="19"/>
+										</w:rPr>
+										<w:t>${list.SFZH}</w:t>
+									</w:r>
+								</w:p>
+							</w:tc>
+							<w:tc>
+								<w:tcPr>
+									<w:tcW w:w="1134" w:type="dxa"/>
+									<w:vAlign w:val="center"/>
+								</w:tcPr>
+								<w:p w14:paraId="0A65F250" w14:textId="77777777" w:rsidR="006D0E9A" w:rsidRDefault="006D0E9A" w:rsidP="00104EB8">
+									<w:pPr>
+										<w:jc w:val="center"/>
+									</w:pPr>
+									<w:r>
+										<w:rPr>
+											<w:rFonts w:ascii="鏂板畫浣�" w:eastAsia="鏂板畫浣�" w:cs="鏂板畫浣�"/>
+											<w:color w:val="000000"/>
+											<w:kern w:val="0"/>
+											<w:sz w:val="19"/>
+											<w:szCs w:val="19"/>
+										</w:rPr>
+										<w:t>${list.YH}</w:t>
+									</w:r>
+								</w:p>
+							</w:tc>
+							<w:tc>
+								<w:tcPr>
+									<w:tcW w:w="1701" w:type="dxa"/>
+									<w:vAlign w:val="center"/>
+								</w:tcPr>
+								<w:p w14:paraId="040D9EAA" w14:textId="77777777" w:rsidR="006D0E9A" w:rsidRDefault="006D0E9A" w:rsidP="00104EB8">
+									<w:pPr>
+										<w:jc w:val="center"/>
+									</w:pPr>
+									<w:r>
+										<w:rPr>
+											<w:rFonts w:ascii="鏂板畫浣�" w:eastAsia="鏂板畫浣�" w:cs="鏂板畫浣�"/>
+											<w:color w:val="000000"/>
+											<w:kern w:val="0"/>
+											<w:sz w:val="19"/>
+											<w:szCs w:val="19"/>
+										</w:rPr>
+										<w:t>${list.KH}</w:t>
+									</w:r>
+								</w:p>
+							</w:tc>
+							<w:tc>
+								<w:tcPr>
+									<w:tcW w:w="850" w:type="dxa"/>
+									<w:vAlign w:val="center"/>
+								</w:tcPr>
+								<w:p w14:paraId="198C8AB2" w14:textId="77777777" w:rsidR="006D0E9A" w:rsidRDefault="006D0E9A" w:rsidP="00104EB8">
+									<w:pPr>
+										<w:jc w:val="center"/>
+									</w:pPr>
+									<w:r>
+										<w:rPr>
+											<w:rFonts w:ascii="鏂板畫浣�" w:eastAsia="鏂板畫浣�" w:cs="鏂板畫浣�"/>
+											<w:color w:val="000000"/>
+											<w:kern w:val="0"/>
+											<w:sz w:val="19"/>
+											<w:szCs w:val="19"/>
+										</w:rPr>
+										<w:t>${list.SQ}</w:t>
+									</w:r>
+								</w:p>
+							</w:tc>
+							<w:tc>
+								<w:tcPr>
+									<w:tcW w:w="992" w:type="dxa"/>
+									<w:vAlign w:val="center"/>
+								</w:tcPr>
+								<w:p w14:paraId="3FB18536" w14:textId="77777777" w:rsidR="006D0E9A" w:rsidRDefault="006D0E9A" w:rsidP="00104EB8">
+									<w:pPr>
+										<w:jc w:val="center"/>
+									</w:pPr>
+									<w:r>
+										<w:rPr>
+											<w:rFonts w:ascii="鏂板畫浣�" w:eastAsia="鏂板畫浣�" w:cs="鏂板畫浣�"/>
+											<w:color w:val="000000"/>
+											<w:kern w:val="0"/>
+											<w:sz w:val="19"/>
+											<w:szCs w:val="19"/>
+										</w:rPr>
+										<w:t>${list.KS}</w:t>
+									</w:r>
+								</w:p>
+							</w:tc>
+							<w:tc>
+								<w:tcPr>
+									<w:tcW w:w="993" w:type="dxa"/>
+									<w:vAlign w:val="center"/>
+								</w:tcPr>
+								<w:p w14:paraId="18504B73" w14:textId="77777777" w:rsidR="006D0E9A" w:rsidRDefault="006D0E9A" w:rsidP="00104EB8">
+									<w:r>
+										<w:rPr>
+											<w:rFonts w:ascii="鏂板畫浣�" w:eastAsia="鏂板畫浣�" w:cs="鏂板畫浣�"/>
+											<w:color w:val="000000"/>
+											<w:kern w:val="0"/>
+											<w:sz w:val="19"/>
+											<w:szCs w:val="19"/>
+										</w:rPr>
+										<w:t>${list.SH}</w:t>
+									</w:r>
+								</w:p>
+							</w:tc>
+						</w:tr>
+						</#list>
+						<w:tr w:rsidR="006D0E9A" w14:paraId="362BA835" w14:textId="77777777" w:rsidTr="00104EB8">
+							<w:trPr>
+								<w:trHeight w:val="478"/>
+							</w:trPr>
+							<w:tc>
+								<w:tcPr>
+									<w:tcW w:w="11761" w:type="dxa"/>
+									<w:gridSpan w:val="8"/>
+									<w:vAlign w:val="center"/>
+								</w:tcPr>
+								<w:p w14:paraId="3D35BE9E" w14:textId="77777777" w:rsidR="006D0E9A" w:rsidRDefault="006D0E9A" w:rsidP="00104EB8">
+									<w:pPr>
+										<w:jc w:val="center"/>
+									</w:pPr>
+									<w:r w:rsidRPr="00653A0C">
+										<w:rPr>
+											<w:rFonts w:hint="eastAsia"/>
+										</w:rPr>
+										<w:t>鏈〉鍚堣锛堟湰琛ㄥ~鍏ョ◣鍚庨噾棰濆悗鑷姩璁$畻绋庡墠閲戦銆佹墸绋庛�佸強鐢宠鎬婚涓夋爮锛�</w:t>
+									</w:r>
+								</w:p>
+							</w:tc>
+							<w:tc>
+								<w:tcPr>
+									<w:tcW w:w="850" w:type="dxa"/>
+									<w:vAlign w:val="center"/>
+								</w:tcPr>
+								<w:p w14:paraId="51DE8837" w14:textId="77777777" w:rsidR="006D0E9A" w:rsidRDefault="006D0E9A" w:rsidP="00104EB8">
+									<w:pPr>
+										<w:jc w:val="center"/>
+									</w:pPr>
+									<w:r>
+										<w:rPr>
+											<w:rFonts w:ascii="鏂板畫浣�" w:eastAsia="鏂板畫浣�" w:cs="鏂板畫浣�"/>
+											<w:color w:val="000000"/>
+											<w:kern w:val="0"/>
+											<w:sz w:val="19"/>
+											<w:szCs w:val="19"/>
+										</w:rPr>
+										<w:t>${SQHJ}</w:t>
+									</w:r>
+								</w:p>
+							</w:tc>
+							<w:tc>
+								<w:tcPr>
+									<w:tcW w:w="992" w:type="dxa"/>
+									<w:vAlign w:val="center"/>
+								</w:tcPr>
+								<w:p w14:paraId="611C977F" w14:textId="77777777" w:rsidR="006D0E9A" w:rsidRDefault="006D0E9A" w:rsidP="00104EB8">
+									<w:pPr>
+										<w:jc w:val="center"/>
+									</w:pPr>
+									<w:r>
+										<w:rPr>
+											<w:rFonts w:ascii="鏂板畫浣�" w:eastAsia="鏂板畫浣�" w:cs="鏂板畫浣�"/>
+											<w:color w:val="000000"/>
+											<w:kern w:val="0"/>
+											<w:sz w:val="19"/>
+											<w:szCs w:val="19"/>
+										</w:rPr>
+										<w:t>${KSHJ}</w:t>
+									</w:r>
+								</w:p>
+							</w:tc>
+							<w:tc>
+								<w:tcPr>
+									<w:tcW w:w="993" w:type="dxa"/>
+									<w:vAlign w:val="center"/>
+								</w:tcPr>
+								<w:p w14:paraId="20ECC419" w14:textId="77777777" w:rsidR="006D0E9A" w:rsidRDefault="006D0E9A" w:rsidP="00104EB8">
+									<w:r>
+										<w:rPr>
+											<w:rFonts w:ascii="鏂板畫浣�" w:eastAsia="鏂板畫浣�" w:cs="鏂板畫浣�"/>
+											<w:color w:val="000000"/>
+											<w:kern w:val="0"/>
+											<w:sz w:val="19"/>
+											<w:szCs w:val="19"/>
+										</w:rPr>
+										<w:t>${SHHJ}</w:t>
+									</w:r>
+								</w:p>
+							</w:tc>
+						</w:tr>
+					</w:tbl>
+					<w:p w14:paraId="43E0CAC7" w14:textId="77777777" w:rsidR="006D0E9A" w:rsidRPr="00232246" w:rsidRDefault="006D0E9A" w:rsidP="006D0E9A">
+						<w:pPr>
+							<w:rPr>
+								<w:sz w:val="24"/>
+								<w:szCs w:val="24"/>
+							</w:rPr>
+						</w:pPr>
+						<w:r w:rsidRPr="00232246">
+							<w:rPr>
+								<w:rFonts w:hint="eastAsia"/>
+								<w:sz w:val="24"/>
+								<w:szCs w:val="24"/>
+							</w:rPr>
+							<w:t>鍔炲叕瀹や富浠伙細</w:t>
+						</w:r>
+						<w:r w:rsidRPr="00232246">
+							<w:rPr>
+								<w:sz w:val="24"/>
+								<w:szCs w:val="24"/>
+							</w:rPr>
+							<w:t xml:space="preserve">                           璐㈠姟閮ㄤ富浠伙細                            璐㈠姟瀹℃牳锛�</w:t>
+						</w:r>
+					</w:p>
+					<w:p w14:paraId="64FDBE7C" w14:textId="376F99A6" w:rsidR="00D1312A" w:rsidRPr="003B60F8" w:rsidRDefault="00D1312A" w:rsidP="00D1312A">
+						<w:pPr>
+							<w:jc w:val="right"/>
+							<w:rPr>
+								<w:sz w:val="32"/>
+								<w:szCs w:val="32"/>
+							</w:rPr>
+						</w:pPr>
+						<w:r>
+							<w:rPr>
+								<w:sz w:val="32"/>
+								<w:szCs w:val="32"/>
+							</w:rPr>
+							<w:t xml:space="preserve">                      </w:t>
+						</w:r>
+					</w:p>
+					<w:p w14:paraId="061FAF98" w14:textId="3818ACBA" w:rsidR="00D1312A" w:rsidRPr="0039783B" w:rsidRDefault="00D1312A" w:rsidP="00D1312A">
+						<w:pPr>
+							<w:jc w:val="center"/>
+							<w:rPr>
+								<w:rFonts w:ascii="瀹嬩綋" w:eastAsia="瀹嬩綋" w:hAnsi="瀹嬩綋"/>
+								<w:sz w:val="24"/>
+								<w:szCs w:val="24"/>
+							</w:rPr>
+						</w:pPr>
+						<w:r w:rsidRPr="003B60F8">
+							<w:rPr>
+								<w:rFonts w:hint="eastAsia"/>
+								<w:sz w:val="30"/>
+								<w:szCs w:val="30"/>
+							</w:rPr>
+							<w:t>涓撳鍔冲姟璐�</w:t>
+						</w:r>
+						<w:r>
+							<w:rPr>
+								<w:rFonts w:hint="eastAsia"/>
+								<w:sz w:val="30"/>
+								<w:szCs w:val="30"/>
+							</w:rPr>
+							<w:t>缁熻</w:t>
+						</w:r>
+						<w:r w:rsidRPr="003B60F8">
+							<w:rPr>
+								<w:rFonts w:hint="eastAsia"/>
+								<w:sz w:val="30"/>
+								<w:szCs w:val="30"/>
+							</w:rPr>
+							<w:t>琛�</w:t>
+						</w:r>
+					</w:p>
+					<w:tbl>
+						<w:tblPr>
+							<w:tblStyle w:val="a7"/>
+							<w:tblW w:w="14596" w:type="dxa"/>
+							<w:tblLayout w:type="fixed"/>
+							<w:tblLook w:val="04A0" w:firstRow="1" w:lastRow="0" w:firstColumn="1" w:lastColumn="0" w:noHBand="0" w:noVBand="1"/>
+						</w:tblPr>
+						<w:tblGrid>
+							<w:gridCol w:w="704"/>
+							<w:gridCol w:w="7088"/>
+							<w:gridCol w:w="2409"/>
+							<w:gridCol w:w="2410"/>
+							<w:gridCol w:w="1985"/>
+						</w:tblGrid>
+						<w:tr w:rsidR="00E96ED6" w14:paraId="4F56F409" w14:textId="77777777" w:rsidTr="00E96ED6">
+							<w:tc>
+								<w:tcPr>
+									<w:tcW w:w="704" w:type="dxa"/>
+									<w:vAlign w:val="center"/>
+								</w:tcPr>
+								<w:p w14:paraId="1132CC80" w14:textId="77777777" w:rsidR="00E96ED6" w:rsidRDefault="00E96ED6" w:rsidP="00E139FD">
+									<w:pPr>
+										<w:widowControl/>
+										<w:jc w:val="center"/>
+										<w:rPr>
+											<w:color w:val="000000"/>
+											<w:sz w:val="20"/>
+											<w:szCs w:val="20"/>
+										</w:rPr>
+									</w:pPr>
+									<w:r>
+										<w:rPr>
+											<w:rFonts w:hint="eastAsia"/>
+											<w:color w:val="000000"/>
+											<w:sz w:val="20"/>
+											<w:szCs w:val="20"/>
+										</w:rPr>
+										<w:t>搴忓彿</w:t>
+									</w:r>
+								</w:p>
+							</w:tc>
+							<w:tc>
+								<w:tcPr>
+									<w:tcW w:w="7088" w:type="dxa"/>
+									<w:vAlign w:val="center"/>
+								</w:tcPr>
+								<w:p w14:paraId="780FE94D" w14:textId="1E934C0B" w:rsidR="00E96ED6" w:rsidRDefault="00E96ED6" w:rsidP="00E139FD">
+									<w:pPr>
+										<w:jc w:val="center"/>
+										<w:rPr>
+											<w:color w:val="000000"/>
+											<w:sz w:val="20"/>
+											<w:szCs w:val="20"/>
+										</w:rPr>
+									</w:pPr>
+									<w:r>
+										<w:rPr>
+											<w:rFonts w:hint="eastAsia"/>
+											<w:color w:val="000000"/>
+											<w:sz w:val="20"/>
+											<w:szCs w:val="20"/>
+										</w:rPr>
+										<w:t>鏈嶅姟椤圭洰鍒嗙被</w:t>
+									</w:r>
+								</w:p>
+							</w:tc>
+							<w:tc>
+								<w:tcPr>
+									<w:tcW w:w="2409" w:type="dxa"/>
+									<w:vAlign w:val="center"/>
+								</w:tcPr>
+								<w:p w14:paraId="15761F11" w14:textId="77777777" w:rsidR="00E96ED6" w:rsidRDefault="00E96ED6" w:rsidP="00E139FD">
+									<w:pPr>
+										<w:jc w:val="center"/>
+										<w:rPr>
+											<w:color w:val="000000"/>
+											<w:sz w:val="20"/>
+											<w:szCs w:val="20"/>
+										</w:rPr>
+									</w:pPr>
+									<w:r>
+										<w:rPr>
+											<w:rFonts w:hint="eastAsia"/>
+											<w:color w:val="000000"/>
+											<w:sz w:val="20"/>
+											<w:szCs w:val="20"/>
+										</w:rPr>
+										<w:t>绋庡墠閲戦(鍏�)</w:t>
+									</w:r>
+								</w:p>
+							</w:tc>
+							<w:tc>
+								<w:tcPr>
+									<w:tcW w:w="2410" w:type="dxa"/>
+									<w:vAlign w:val="center"/>
+								</w:tcPr>
+								<w:p w14:paraId="6F929ED2" w14:textId="77777777" w:rsidR="00E96ED6" w:rsidRDefault="00E96ED6" w:rsidP="00E139FD">
+									<w:pPr>
+										<w:jc w:val="center"/>
+										<w:rPr>
+											<w:color w:val="000000"/>
+											<w:sz w:val="20"/>
+											<w:szCs w:val="20"/>
+										</w:rPr>
+									</w:pPr>
+									<w:r>
+										<w:rPr>
+											<w:rFonts w:hint="eastAsia"/>
+											<w:color w:val="000000"/>
+											<w:sz w:val="20"/>
+											<w:szCs w:val="20"/>
+										</w:rPr>
+										<w:t>鎵g◣(鍏�)</w:t>
+									</w:r>
+								</w:p>
+							</w:tc>
+							<w:tc>
+								<w:tcPr>
+									<w:tcW w:w="1985" w:type="dxa"/>
+									<w:vAlign w:val="center"/>
+								</w:tcPr>
+								<w:p w14:paraId="66E3E1B6" w14:textId="77777777" w:rsidR="00E96ED6" w:rsidRDefault="00E96ED6" w:rsidP="00E139FD">
+									<w:pPr>
+										<w:jc w:val="center"/>
+										<w:rPr>
+											<w:color w:val="000000"/>
+											<w:sz w:val="20"/>
+											<w:szCs w:val="20"/>
+										</w:rPr>
+									</w:pPr>
+									<w:r>
+										<w:rPr>
+											<w:rFonts w:hint="eastAsia"/>
+											<w:color w:val="000000"/>
+											<w:sz w:val="20"/>
+											<w:szCs w:val="20"/>
+										</w:rPr>
+										<w:t>绋庡悗閲戦(鍏�)</w:t>
+									</w:r>
+								</w:p>
+							</w:tc>
+						</w:tr>						
+						<#list item as item>
+						<w:tr w:rsidR="00E96ED6" w14:paraId="05D079F0" w14:textId="77777777" w:rsidTr="00E96ED6">
+							<w:trPr>
+								<w:trHeight w:val="392"/>
+							</w:trPr>
+							<w:tc>
+								<w:tcPr>
+									<w:tcW w:w="704" w:type="dxa"/>
+									<w:vAlign w:val="center"/>
+								</w:tcPr>
+								<w:p w14:paraId="55DCCCD8" w14:textId="1C3DB654" w:rsidR="00E96ED6" w:rsidRDefault="00E96ED6" w:rsidP="00E139FD">
+									<w:pPr>
+										<w:jc w:val="center"/>
+									</w:pPr>
+									<w:r>
+										<w:rPr>
+											<w:rFonts w:ascii="鏂板畫浣�" w:eastAsia="鏂板畫浣�" w:cs="鏂板畫浣�"/>
+											<w:color w:val="000000"/>
+											<w:kern w:val="0"/>
+											<w:sz w:val="19"/>
+											<w:szCs w:val="19"/>
+										</w:rPr>
+										<w:t>${item.XH}</w:t>
+									</w:r>
+								</w:p>
+							</w:tc>
+							<w:tc>
+								<w:tcPr>
+									<w:tcW w:w="7088" w:type="dxa"/>
+									<w:vAlign w:val="center"/>
+								</w:tcPr>
+								<w:p w14:paraId="6A0BEC3C" w14:textId="2FD7B78B" w:rsidR="00E96ED6" w:rsidRDefault="00E96ED6" w:rsidP="00E139FD">
+									<w:pPr>
+										<w:jc w:val="center"/>
+									</w:pPr>
+									<w:r>
+										<w:rPr>
+											<w:rFonts w:ascii="鏂板畫浣�" w:eastAsia="鏂板畫浣�" w:cs="鏂板畫浣�"/>
+											<w:color w:val="000000"/>
+											<w:kern w:val="0"/>
+											<w:sz w:val="19"/>
+											<w:szCs w:val="19"/>
+										</w:rPr>
+										<w:t>${item.FWFL}</w:t>
+									</w:r>
+								</w:p>
+							</w:tc>
+							<w:tc>
+								<w:tcPr>
+									<w:tcW w:w="2409" w:type="dxa"/>
+									<w:vAlign w:val="center"/>
+								</w:tcPr>
+								<w:p w14:paraId="6672B2BB" w14:textId="74D1FF92" w:rsidR="00E96ED6" w:rsidRDefault="00E96ED6" w:rsidP="00E139FD">
+									<w:pPr>
+										<w:jc w:val="center"/>
+									</w:pPr>
+									<w:r>
+										<w:rPr>
+											<w:rFonts w:ascii="鏂板畫浣�" w:eastAsia="鏂板畫浣�" w:cs="鏂板畫浣�"/>
+											<w:color w:val="000000"/>
+											<w:kern w:val="0"/>
+											<w:sz w:val="19"/>
+											<w:szCs w:val="19"/>
+										</w:rPr>
+										<w:t>${item.SQXJ}</w:t>
+									</w:r>
+								</w:p>
+							</w:tc>
+							<w:tc>
+								<w:tcPr>
+									<w:tcW w:w="2410" w:type="dxa"/>
+									<w:vAlign w:val="center"/>
+								</w:tcPr>
+								<w:p w14:paraId="593F9037" w14:textId="60CD295D" w:rsidR="00E96ED6" w:rsidRDefault="00E96ED6" w:rsidP="00E139FD">
+									<w:pPr>
+										<w:jc w:val="center"/>
+									</w:pPr>
+									<w:r>
+										<w:rPr>
+											<w:rFonts w:ascii="鏂板畫浣�" w:eastAsia="鏂板畫浣�" w:cs="鏂板畫浣�"/>
+											<w:color w:val="000000"/>
+											<w:kern w:val="0"/>
+											<w:sz w:val="19"/>
+											<w:szCs w:val="19"/>
+										</w:rPr>
+										<w:t>${item.KSXJ}</w:t>
+									</w:r>
+								</w:p>
+							</w:tc>
+							<w:tc>
+								<w:tcPr>
+									<w:tcW w:w="1985" w:type="dxa"/>
+									<w:vAlign w:val="center"/>
+								</w:tcPr>
+								<w:p w14:paraId="768C777A" w14:textId="602915FA" w:rsidR="00E96ED6" w:rsidRDefault="00E96ED6" w:rsidP="00E139FD">
+									<w:r>
+										<w:rPr>
+											<w:rFonts w:ascii="鏂板畫浣�" w:eastAsia="鏂板畫浣�" w:cs="鏂板畫浣�"/>
+											<w:color w:val="000000"/>
+											<w:kern w:val="0"/>
+											<w:sz w:val="19"/>
+											<w:szCs w:val="19"/>
+										</w:rPr>
+										<w:t>${item.SHXJ}</w:t>
+									</w:r>
+								</w:p>
+							</w:tc>
+						</w:tr>
+						</#list>
+						<w:tr w:rsidR="00D1312A" w14:paraId="1E926347" w14:textId="77777777" w:rsidTr="00E96ED6">
+							<w:trPr>
+								<w:trHeight w:val="478"/>
+							</w:trPr>
+							<w:tc>
+								<w:tcPr>
+									<w:tcW w:w="7792" w:type="dxa"/>
+									<w:gridSpan w:val="2"/>
+									<w:vAlign w:val="center"/>
+								</w:tcPr>
+								<w:p w14:paraId="29E28DFB" w14:textId="486E6221" w:rsidR="00D1312A" w:rsidRDefault="00D1312A" w:rsidP="00E139FD">
+									<w:pPr>
+										<w:jc w:val="center"/>
+									</w:pPr>
+									<w:r w:rsidRPr="00653A0C">
+										<w:rPr>
+											<w:rFonts w:hint="eastAsia"/>
+										</w:rPr>
+										<w:t>鏈〉鍚堣</w:t>
+									</w:r>
+								</w:p>
+							</w:tc>
+							<w:tc>
+								<w:tcPr>
+									<w:tcW w:w="2409" w:type="dxa"/>
+									<w:vAlign w:val="center"/>
+								</w:tcPr>
+								<w:p w14:paraId="736DACF3" w14:textId="4B70546A" w:rsidR="00D1312A" w:rsidRDefault="00D1312A" w:rsidP="00E139FD">
+									<w:pPr>
+										<w:jc w:val="center"/>
+									</w:pPr>
+									<w:r>
+										<w:rPr>
+											<w:rFonts w:ascii="鏂板畫浣�" w:eastAsia="鏂板畫浣�" w:cs="鏂板畫浣�"/>
+											<w:color w:val="000000"/>
+											<w:kern w:val="0"/>
+											<w:sz w:val="19"/>
+											<w:szCs w:val="19"/>
+										</w:rPr>
+										<w:t>${SQLJ}</w:t>
+									</w:r>
+								</w:p>
+							</w:tc>
+							<w:tc>
+								<w:tcPr>
+									<w:tcW w:w="2410" w:type="dxa"/>
+									<w:vAlign w:val="center"/>
+								</w:tcPr>
+								<w:p w14:paraId="5190CD27" w14:textId="420EC306" w:rsidR="00D1312A" w:rsidRDefault="00D1312A" w:rsidP="00E139FD">
+									<w:pPr>
+										<w:jc w:val="center"/>
+									</w:pPr>
+									<w:r>
+										<w:rPr>
+											<w:rFonts w:ascii="鏂板畫浣�" w:eastAsia="鏂板畫浣�" w:cs="鏂板畫浣�"/>
+											<w:color w:val="000000"/>
+											<w:kern w:val="0"/>
+											<w:sz w:val="19"/>
+											<w:szCs w:val="19"/>
+										</w:rPr>
+										<w:t>${KSLJ}</w:t>
+									</w:r>
+								</w:p>
+							</w:tc>
+							<w:tc>
+								<w:tcPr>
+									<w:tcW w:w="1985" w:type="dxa"/>
+									<w:vAlign w:val="center"/>
+								</w:tcPr>
+								<w:p w14:paraId="3B1B3A25" w14:textId="06F3B4CD" w:rsidR="00D1312A" w:rsidRDefault="00D1312A" w:rsidP="00E139FD">
+									<w:r>
+										<w:rPr>
+											<w:rFonts w:ascii="鏂板畫浣�" w:eastAsia="鏂板畫浣�" w:cs="鏂板畫浣�"/>
+											<w:color w:val="000000"/>
+											<w:kern w:val="0"/>
+											<w:sz w:val="19"/>
+											<w:szCs w:val="19"/>
+										</w:rPr>
+										<w:t>${SHLJ}</w:t>
+									</w:r>
+								</w:p>
+							</w:tc>
+						</w:tr>
+					</w:tbl>
+					<w:p w14:paraId="7BD7607B" w14:textId="77777777" w:rsidR="00D1312A" w:rsidRPr="00D1312A" w:rsidRDefault="00D1312A" w:rsidP="00EA3B03">
+						<w:pPr>
+							<w:ind w:firstLine="420"/>
+						</w:pPr>
+					</w:p>
+					<w:sectPr w:rsidR="00D1312A" w:rsidRPr="00D1312A" w:rsidSect="006D0E9A">
+						<w:pgSz w:w="16838" w:h="11906" w:orient="landscape"/>
+						<w:pgMar w:top="1701" w:right="1134" w:bottom="1701" w:left="1134" w:header="851" w:footer="992" w:gutter="0"/>
+						<w:cols w:space="425"/>
+						<w:docGrid w:type="lines" w:linePitch="312"/>
+					</w:sectPr>
+				</w:body>
+			</w:document>
+		</pkg:xmlData>
+	</pkg:part>
+	<pkg:part pkg:name="/word/_rels/document.xml.rels" pkg:contentType="application/vnd.openxmlformats-package.relationships+xml" pkg:padding="256">
+		<pkg:xmlData>
+			<Relationships xmlns="http://schemas.openxmlformats.org/package/2006/relationships">
+				<Relationship Id="rId3" Type="http://schemas.openxmlformats.org/officeDocument/2006/relationships/webSettings" Target="webSettings.xml"/>
+				<Relationship Id="rId7" Type="http://schemas.openxmlformats.org/officeDocument/2006/relationships/theme" Target="theme/theme1.xml"/>
+				<Relationship Id="rId2" Type="http://schemas.openxmlformats.org/officeDocument/2006/relationships/settings" Target="settings.xml"/>
+				<Relationship Id="rId1" Type="http://schemas.openxmlformats.org/officeDocument/2006/relationships/styles" Target="styles.xml"/>
+				<Relationship Id="rId6" Type="http://schemas.openxmlformats.org/officeDocument/2006/relationships/fontTable" Target="fontTable.xml"/>
+				<Relationship Id="rId5" Type="http://schemas.openxmlformats.org/officeDocument/2006/relationships/endnotes" Target="endnotes.xml"/>
+				<Relationship Id="rId4" Type="http://schemas.openxmlformats.org/officeDocument/2006/relationships/footnotes" Target="footnotes.xml"/>
+			</Relationships>
+		</pkg:xmlData>
+	</pkg:part>
+	<pkg:part pkg:name="/word/footnotes.xml" pkg:contentType="application/vnd.openxmlformats-officedocument.wordprocessingml.footnotes+xml">
+		<pkg:xmlData>
+			<w:footnotes xmlns:wpc="http://schemas.microsoft.com/office/word/2010/wordprocessingCanvas" xmlns:cx="http://schemas.microsoft.com/office/drawing/2014/chartex" xmlns:cx1="http://schemas.microsoft.com/office/drawing/2015/9/8/chartex" xmlns:cx2="http://schemas.microsoft.com/office/drawing/2015/10/21/chartex" xmlns:cx3="http://schemas.microsoft.com/office/drawing/2016/5/9/chartex" xmlns:cx4="http://schemas.microsoft.com/office/drawing/2016/5/10/chartex" xmlns:cx5="http://schemas.microsoft.com/office/drawing/2016/5/11/chartex" xmlns:cx6="http://schemas.microsoft.com/office/drawing/2016/5/12/chartex" xmlns:cx7="http://schemas.microsoft.com/office/drawing/2016/5/13/chartex" xmlns:cx8="http://schemas.microsoft.com/office/drawing/2016/5/14/chartex" xmlns:mc="http://schemas.openxmlformats.org/markup-compatibility/2006" xmlns:aink="http://schemas.microsoft.com/office/drawing/2016/ink" xmlns:am3d="http://schemas.microsoft.com/office/drawing/2017/model3d" xmlns:o="urn:schemas-microsoft-com:office:office" xmlns:oel="http://schemas.microsoft.com/office/2019/extlst" xmlns:r="http://schemas.openxmlformats.org/officeDocument/2006/relationships" xmlns:m="http://schemas.openxmlformats.org/officeDocument/2006/math" xmlns:v="urn:schemas-microsoft-com:vml" xmlns:wp14="http://schemas.microsoft.com/office/word/2010/wordprocessingDrawing" xmlns:wp="http://schemas.openxmlformats.org/drawingml/2006/wordprocessingDrawing" xmlns:w10="urn:schemas-microsoft-com:office:word" xmlns:w="http://schemas.openxmlformats.org/wordprocessingml/2006/main" xmlns:w14="http://schemas.microsoft.com/office/word/2010/wordml" xmlns:w15="http://schemas.microsoft.com/office/word/2012/wordml" xmlns:w16cex="http://schemas.microsoft.com/office/word/2018/wordml/cex" xmlns:w16cid="http://schemas.microsoft.com/office/word/2016/wordml/cid" xmlns:w16="http://schemas.microsoft.com/office/word/2018/wordml" xmlns:w16sdtdh="http://schemas.microsoft.com/office/word/2020/wordml/sdtdatahash" xmlns:w16se="http://schemas.microsoft.com/office/word/2015/wordml/symex" xmlns:wpg="http://schemas.microsoft.com/office/word/2010/wordprocessingGroup" xmlns:wpi="http://schemas.microsoft.com/office/word/2010/wordprocessingInk" xmlns:wne="http://schemas.microsoft.com/office/word/2006/wordml" xmlns:wps="http://schemas.microsoft.com/office/word/2010/wordprocessingShape" mc:Ignorable="w14 w15 w16se w16cid w16 w16cex w16sdtdh wp14">
+				<w:footnote w:type="separator" w:id="-1">
+					<w:p w14:paraId="0DF65365" w14:textId="77777777" w:rsidR="008A0800" w:rsidRDefault="008A0800" w:rsidP="00776A88">
+						<w:r>
+							<w:separator/>
+						</w:r>
+					</w:p>
+				</w:footnote>
+				<w:footnote w:type="continuationSeparator" w:id="0">
+					<w:p w14:paraId="53EFF44F" w14:textId="77777777" w:rsidR="008A0800" w:rsidRDefault="008A0800" w:rsidP="00776A88">
+						<w:r>
+							<w:continuationSeparator/>
+						</w:r>
+					</w:p>
+				</w:footnote>
+			</w:footnotes>
+		</pkg:xmlData>
+	</pkg:part>
+	<pkg:part pkg:name="/word/endnotes.xml" pkg:contentType="application/vnd.openxmlformats-officedocument.wordprocessingml.endnotes+xml">
+		<pkg:xmlData>
+			<w:endnotes xmlns:wpc="http://schemas.microsoft.com/office/word/2010/wordprocessingCanvas" xmlns:cx="http://schemas.microsoft.com/office/drawing/2014/chartex" xmlns:cx1="http://schemas.microsoft.com/office/drawing/2015/9/8/chartex" xmlns:cx2="http://schemas.microsoft.com/office/drawing/2015/10/21/chartex" xmlns:cx3="http://schemas.microsoft.com/office/drawing/2016/5/9/chartex" xmlns:cx4="http://schemas.microsoft.com/office/drawing/2016/5/10/chartex" xmlns:cx5="http://schemas.microsoft.com/office/drawing/2016/5/11/chartex" xmlns:cx6="http://schemas.microsoft.com/office/drawing/2016/5/12/chartex" xmlns:cx7="http://schemas.microsoft.com/office/drawing/2016/5/13/chartex" xmlns:cx8="http://schemas.microsoft.com/office/drawing/2016/5/14/chartex" xmlns:mc="http://schemas.openxmlformats.org/markup-compatibility/2006" xmlns:aink="http://schemas.microsoft.com/office/drawing/2016/ink" xmlns:am3d="http://schemas.microsoft.com/office/drawing/2017/model3d" xmlns:o="urn:schemas-microsoft-com:office:office" xmlns:oel="http://schemas.microsoft.com/office/2019/extlst" xmlns:r="http://schemas.openxmlformats.org/officeDocument/2006/relationships" xmlns:m="http://schemas.openxmlformats.org/officeDocument/2006/math" xmlns:v="urn:schemas-microsoft-com:vml" xmlns:wp14="http://schemas.microsoft.com/office/word/2010/wordprocessingDrawing" xmlns:wp="http://schemas.openxmlformats.org/drawingml/2006/wordprocessingDrawing" xmlns:w10="urn:schemas-microsoft-com:office:word" xmlns:w="http://schemas.openxmlformats.org/wordprocessingml/2006/main" xmlns:w14="http://schemas.microsoft.com/office/word/2010/wordml" xmlns:w15="http://schemas.microsoft.com/office/word/2012/wordml" xmlns:w16cex="http://schemas.microsoft.com/office/word/2018/wordml/cex" xmlns:w16cid="http://schemas.microsoft.com/office/word/2016/wordml/cid" xmlns:w16="http://schemas.microsoft.com/office/word/2018/wordml" xmlns:w16sdtdh="http://schemas.microsoft.com/office/word/2020/wordml/sdtdatahash" xmlns:w16se="http://schemas.microsoft.com/office/word/2015/wordml/symex" xmlns:wpg="http://schemas.microsoft.com/office/word/2010/wordprocessingGroup" xmlns:wpi="http://schemas.microsoft.com/office/word/2010/wordprocessingInk" xmlns:wne="http://schemas.microsoft.com/office/word/2006/wordml" xmlns:wps="http://schemas.microsoft.com/office/word/2010/wordprocessingShape" mc:Ignorable="w14 w15 w16se w16cid w16 w16cex w16sdtdh wp14">
+				<w:endnote w:type="separator" w:id="-1">
+					<w:p w14:paraId="3B7E58DE" w14:textId="77777777" w:rsidR="008A0800" w:rsidRDefault="008A0800" w:rsidP="00776A88">
+						<w:r>
+							<w:separator/>
+						</w:r>
+					</w:p>
+				</w:endnote>
+				<w:endnote w:type="continuationSeparator" w:id="0">
+					<w:p w14:paraId="7A5CB59C" w14:textId="77777777" w:rsidR="008A0800" w:rsidRDefault="008A0800" w:rsidP="00776A88">
+						<w:r>
+							<w:continuationSeparator/>
+						</w:r>
+					</w:p>
+				</w:endnote>
+			</w:endnotes>
+		</pkg:xmlData>
+	</pkg:part>
+	<pkg:part pkg:name="/word/theme/theme1.xml" pkg:contentType="application/vnd.openxmlformats-officedocument.theme+xml">
+		<pkg:xmlData>
+			<a:theme xmlns:a="http://schemas.openxmlformats.org/drawingml/2006/main" name="Office 涓婚鈥嬧��">
+				<a:themeElements>
+					<a:clrScheme name="Office">
+						<a:dk1>
+							<a:sysClr val="windowText" lastClr="000000"/>
+						</a:dk1>
+						<a:lt1>
+							<a:sysClr val="window" lastClr="FFFFFF"/>
+						</a:lt1>
+						<a:dk2>
+							<a:srgbClr val="44546A"/>
+						</a:dk2>
+						<a:lt2>
+							<a:srgbClr val="E7E6E6"/>
+						</a:lt2>
+						<a:accent1>
+							<a:srgbClr val="5B9BD5"/>
+						</a:accent1>
+						<a:accent2>
+							<a:srgbClr val="ED7D31"/>
+						</a:accent2>
+						<a:accent3>
+							<a:srgbClr val="A5A5A5"/>
+						</a:accent3>
+						<a:accent4>
+							<a:srgbClr val="FFC000"/>
+						</a:accent4>
+						<a:accent5>
+							<a:srgbClr val="4472C4"/>
+						</a:accent5>
+						<a:accent6>
+							<a:srgbClr val="70AD47"/>
+						</a:accent6>
+						<a:hlink>
+							<a:srgbClr val="0563C1"/>
+						</a:hlink>
+						<a:folHlink>
+							<a:srgbClr val="954F72"/>
+						</a:folHlink>
+					</a:clrScheme>
+					<a:fontScheme name="Office">
+						<a:majorFont>
+							<a:latin typeface="绛夌嚎 Light" panose="020F0302020204030204"/>
+							<a:ea typeface=""/>
+							<a:cs typeface=""/>
+							<a:font script="Jpan" typeface="娓搞偞銈枫儍銈� Light"/>
+							<a:font script="Hang" typeface="毵戩潃 瓿犽敃"/>
+							<a:font script="Hans" typeface="绛夌嚎 Light"/>
+							<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="绛夌嚎" panose="020F0502020204030204"/>
+							<a:ea typeface=""/>
+							<a:cs typeface=""/>
+							<a:font script="Jpan" typeface="娓告槑鏈�"/>
+							<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:lumMod val="110000"/>
+											<a:satMod val="105000"/>
+											<a:tint val="67000"/>
+										</a:schemeClr>
+									</a:gs>
+									<a:gs pos="50000">
+										<a:schemeClr val="phClr">
+											<a:lumMod val="105000"/>
+											<a:satMod val="103000"/>
+											<a:tint val="73000"/>
+										</a:schemeClr>
+									</a:gs>
+									<a:gs pos="100000">
+										<a:schemeClr val="phClr">
+											<a:lumMod val="105000"/>
+											<a:satMod val="109000"/>
+											<a:tint val="81000"/>
+										</a:schemeClr>
+									</a:gs>
+								</a:gsLst>
+								<a:lin ang="5400000" scaled="0"/>
+							</a:gradFill>
+							<a:gradFill rotWithShape="1">
+								<a:gsLst>
+									<a:gs pos="0">
+										<a:schemeClr val="phClr">
+											<a:satMod val="103000"/>
+											<a:lumMod val="102000"/>
+											<a:tint val="94000"/>
+										</a:schemeClr>
+									</a:gs>
+									<a:gs pos="50000">
+										<a:schemeClr val="phClr">
+											<a:satMod val="110000"/>
+											<a:lumMod val="100000"/>
+											<a:shade val="100000"/>
+										</a:schemeClr>
+									</a:gs>
+									<a:gs pos="100000">
+										<a:schemeClr val="phClr">
+											<a:lumMod val="99000"/>
+											<a:satMod val="120000"/>
+											<a:shade val="78000"/>
+										</a:schemeClr>
+									</a:gs>
+								</a:gsLst>
+								<a:lin ang="5400000" scaled="0"/>
+							</a:gradFill>
+						</a:fillStyleLst>
+						<a:lnStyleLst>
+							<a:ln w="6350" cap="flat" cmpd="sng" algn="ctr">
+								<a:solidFill>
+									<a:schemeClr val="phClr"/>
+								</a:solidFill>
+								<a:prstDash val="solid"/>
+								<a:miter lim="800000"/>
+							</a:ln>
+							<a:ln w="12700" cap="flat" cmpd="sng" algn="ctr">
+								<a:solidFill>
+									<a:schemeClr val="phClr"/>
+								</a:solidFill>
+								<a:prstDash val="solid"/>
+								<a:miter lim="800000"/>
+							</a:ln>
+							<a:ln w="19050" cap="flat" cmpd="sng" algn="ctr">
+								<a:solidFill>
+									<a:schemeClr val="phClr"/>
+								</a:solidFill>
+								<a:prstDash val="solid"/>
+								<a:miter lim="800000"/>
+							</a:ln>
+						</a:lnStyleLst>
+						<a:effectStyleLst>
+							<a:effectStyle>
+								<a:effectLst/>
+							</a:effectStyle>
+							<a:effectStyle>
+								<a:effectLst/>
+							</a:effectStyle>
+							<a:effectStyle>
+								<a:effectLst>
+									<a:outerShdw blurRad="57150" dist="19050" dir="5400000" algn="ctr" rotWithShape="0">
+										<a:srgbClr val="000000">
+											<a:alpha val="63000"/>
+										</a:srgbClr>
+									</a:outerShdw>
+								</a:effectLst>
+							</a:effectStyle>
+						</a:effectStyleLst>
+						<a:bgFillStyleLst>
+							<a:solidFill>
+								<a:schemeClr val="phClr"/>
+							</a:solidFill>
+							<a:solidFill>
+								<a:schemeClr val="phClr">
+									<a:tint val="95000"/>
+									<a:satMod val="170000"/>
+								</a:schemeClr>
+							</a:solidFill>
+							<a:gradFill rotWithShape="1">
+								<a:gsLst>
+									<a:gs pos="0">
+										<a:schemeClr val="phClr">
+											<a:tint val="93000"/>
+											<a:satMod val="150000"/>
+											<a:shade val="98000"/>
+											<a:lumMod val="102000"/>
+										</a:schemeClr>
+									</a:gs>
+									<a:gs pos="50000">
+										<a:schemeClr val="phClr">
+											<a:tint val="98000"/>
+											<a:satMod val="130000"/>
+											<a:shade val="90000"/>
+											<a:lumMod val="103000"/>
+										</a:schemeClr>
+									</a:gs>
+									<a:gs pos="100000">
+										<a:schemeClr val="phClr">
+											<a:shade val="63000"/>
+											<a:satMod val="120000"/>
+										</a:schemeClr>
+									</a:gs>
+								</a:gsLst>
+								<a:lin ang="5400000" scaled="0"/>
+							</a:gradFill>
+						</a:bgFillStyleLst>
+					</a:fmtScheme>
+				</a:themeElements>
+				<a:objectDefaults/>
+				<a:extraClrSchemeLst/>
+				<a:extLst>
+					<a:ext uri="{05A4C25C-085E-4340-85A3-A5531E510DB2}">
+						<thm15:themeFamily xmlns:thm15="http://schemas.microsoft.com/office/thememl/2012/main" name="Office Theme" id="{62F939B6-93AF-4DB8-9C6B-D6C7DFDC589F}" vid="{4A3C46E8-61CC-4603-A589-7422A47A8E4A}"/>
+					</a:ext>
+				</a:extLst>
+			</a:theme>
+		</pkg:xmlData>
+	</pkg:part>
+	<pkg:part pkg:name="/word/settings.xml" pkg:contentType="application/vnd.openxmlformats-officedocument.wordprocessingml.settings+xml">
+		<pkg:xmlData>
+			<w:settings 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:m="http://schemas.openxmlformats.org/officeDocument/2006/math" xmlns:v="urn:schemas-microsoft-com:vml" xmlns:w10="urn:schemas-microsoft-com:office:word" xmlns:w="http://schemas.openxmlformats.org/wordprocessingml/2006/main" xmlns:w14="http://schemas.microsoft.com/office/word/2010/wordml" xmlns:w15="http://schemas.microsoft.com/office/word/2012/wordml" xmlns:w16cex="http://schemas.microsoft.com/office/word/2018/wordml/cex" xmlns:w16cid="http://schemas.microsoft.com/office/word/2016/wordml/cid" xmlns:w16="http://schemas.microsoft.com/office/word/2018/wordml" xmlns:w16sdtdh="http://schemas.microsoft.com/office/word/2020/wordml/sdtdatahash" xmlns:w16se="http://schemas.microsoft.com/office/word/2015/wordml/symex" xmlns:sl="http://schemas.openxmlformats.org/schemaLibrary/2006/main" mc:Ignorable="w14 w15 w16se w16cid w16 w16cex w16sdtdh">
+				<w:zoom w:percent="90"/>
+				<w:bordersDoNotSurroundHeader/>
+				<w:bordersDoNotSurroundFooter/>
+				<w:defaultTabStop w:val="420"/>
+				<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 v:ext="edit" spidmax="2050"/>
+				</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:compatSetting w:name="compatibilityMode" w:uri="http://schemas.microsoft.com/office/word" w:val="15"/>
+					<w:compatSetting w:name="overrideTableStyleFontSizeAndJustification" w:uri="http://schemas.microsoft.com/office/word" w:val="1"/>
+					<w:compatSetting w:name="enableOpenTypeFeatures" w:uri="http://schemas.microsoft.com/office/word" w:val="1"/>
+					<w:compatSetting w:name="doNotFlipMirrorIndents" w:uri="http://schemas.microsoft.com/office/word" w:val="1"/>
+					<w:compatSetting w:name="differentiateMultirowTableHeaders" w:uri="http://schemas.microsoft.com/office/word" w:val="1"/>
+					<w:compatSetting w:name="useWord2013TrackBottomHyphenation" w:uri="http://schemas.microsoft.com/office/word" w:val="1"/>
+				</w:compat>
+				<w:rsids>
+					<w:rsidRoot w:val="00D61E43"/>
+					<w:rsid w:val="000E2F11"/>
+					<w:rsid w:val="00196045"/>
+					<w:rsid w:val="001B3ED3"/>
+					<w:rsid w:val="002D09EB"/>
+					<w:rsid w:val="0039783B"/>
+					<w:rsid w:val="003B5C96"/>
+					<w:rsid w:val="00482B63"/>
+					<w:rsid w:val="004A1007"/>
+					<w:rsid w:val="004B7D3D"/>
+					<w:rsid w:val="006D0E9A"/>
+					<w:rsid w:val="00776A88"/>
+					<w:rsid w:val="008541AB"/>
+					<w:rsid w:val="008A0800"/>
+					<w:rsid w:val="00910D35"/>
+					<w:rsid w:val="00951C18"/>
+					<w:rsid w:val="00A72865"/>
+					<w:rsid w:val="00B23214"/>
+					<w:rsid w:val="00B31321"/>
+					<w:rsid w:val="00C82F58"/>
+					<w:rsid w:val="00D1312A"/>
+					<w:rsid w:val="00D61E43"/>
+					<w:rsid w:val="00DE7D6E"/>
+					<w:rsid w:val="00E96ED6"/>
+					<w:rsid w:val="00EA3B03"/>
+					<w:rsid w:val="00F40E70"/>
+					<w:rsid w:val="00F91864"/>
+					<w:rsid w:val="00FB6AD6"/>
+				</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:val="en-US" w:eastAsia="zh-CN"/>
+				<w:clrSchemeMapping w:bg1="light1" w:t1="dark1" w:bg2="light2" w:t2="dark2" w:accent1="accent1" w:accent2="accent2" w:accent3="accent3" w:accent4="accent4" w:accent5="accent5" w:accent6="accent6" w:hyperlink="hyperlink" w:followedHyperlink="followedHyperlink"/>
+				<w:shapeDefaults>
+					<o:shapedefaults v:ext="edit" spidmax="2050"/>
+					<o:shapelayout v:ext="edit">
+						<o:idmap v:ext="edit" data="2"/>
+					</o:shapelayout>
+				</w:shapeDefaults>
+				<w:decimalSymbol w:val="."/>
+				<w:listSeparator w:val=","/>
+				<w14:docId w14:val="5C9D8AC4"/>
+				<w15:chartTrackingRefBased/>
+				<w15:docId w15:val="{27CA91BD-A32B-4822-99EA-6C8F8E06AA4B}"/>
+			</w:settings>
+		</pkg:xmlData>
+	</pkg:part>
+	<pkg:part pkg:name="/word/styles.xml" pkg:contentType="application/vnd.openxmlformats-officedocument.wordprocessingml.styles+xml">
+		<pkg:xmlData>
+			<w:styles 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" xmlns:w15="http://schemas.microsoft.com/office/word/2012/wordml" xmlns:w16cex="http://schemas.microsoft.com/office/word/2018/wordml/cex" xmlns:w16cid="http://schemas.microsoft.com/office/word/2016/wordml/cid" xmlns:w16="http://schemas.microsoft.com/office/word/2018/wordml" xmlns:w16sdtdh="http://schemas.microsoft.com/office/word/2020/wordml/sdtdatahash" xmlns:w16se="http://schemas.microsoft.com/office/word/2015/wordml/symex" mc:Ignorable="w14 w15 w16se w16cid w16 w16cex w16sdtdh">
+				<w:docDefaults>
+					<w:rPrDefault>
+						<w:rPr>
+							<w:rFonts w:asciiTheme="minorHAnsi" w:eastAsiaTheme="minorEastAsia" w:hAnsiTheme="minorHAnsi" w:cstheme="minorBidi"/>
+							<w:kern w:val="2"/>
+							<w:sz w:val="21"/>
+							<w:szCs w:val="22"/>
+							<w:lang w:val="en-US" w:eastAsia="zh-CN" w:bidi="ar-SA"/>
+						</w:rPr>
+					</w:rPrDefault>
+					<w:pPrDefault/>
+				</w:docDefaults>
+				<w:latentStyles w:defLockedState="0" w:defUIPriority="99" w:defSemiHidden="0" w:defUnhideWhenUsed="0" w:defQFormat="0" w:count="376">
+					<w:lsdException w:name="Normal" w:uiPriority="0" w:qFormat="1"/>
+					<w:lsdException w:name="heading 1" w:uiPriority="9" w:qFormat="1"/>
+					<w:lsdException w:name="heading 2" w:semiHidden="1" w:uiPriority="9" w:unhideWhenUsed="1" w:qFormat="1"/>
+					<w:lsdException w:name="heading 3" w:semiHidden="1" w:uiPriority="9" w:unhideWhenUsed="1" w:qFormat="1"/>
+					<w:lsdException w:name="heading 4" w:semiHidden="1" w:uiPriority="9" w:unhideWhenUsed="1" w:qFormat="1"/>
+					<w:lsdException w:name="heading 5" w:semiHidden="1" w:uiPriority="9" w:unhideWhenUsed="1" w:qFormat="1"/>
+					<w:lsdException w:name="heading 6" w:semiHidden="1" w:uiPriority="9" w:unhideWhenUsed="1" w:qFormat="1"/>
+					<w:lsdException w:name="heading 7" w:semiHidden="1" w:uiPriority="9" w:unhideWhenUsed="1" w:qFormat="1"/>
+					<w:lsdException w:name="heading 8" w:semiHidden="1" w:uiPriority="9" w:unhideWhenUsed="1" w:qFormat="1"/>
+					<w:lsdException w:name="heading 9" w:semiHidden="1" w:uiPriority="9" w:unhideWhenUsed="1" w:qFormat="1"/>
+					<w:lsdException w:name="index 1" w:semiHidden="1" w:unhideWhenUsed="1"/>
+					<w:lsdException w:name="index 2" w:semiHidden="1" w:unhideWhenUsed="1"/>
+					<w:lsdException w:name="index 3" w:semiHidden="1" w:unhideWhenUsed="1"/>
+					<w:lsdException w:name="index 4" w:semiHidden="1" w:unhideWhenUsed="1"/>
+					<w:lsdException w:name="index 5" w:semiHidden="1" w:unhideWhenUsed="1"/>
+					<w:lsdException w:name="index 6" w:semiHidden="1" w:unhideWhenUsed="1"/>
+					<w:lsdException w:name="index 7" w:semiHidden="1" w:unhideWhenUsed="1"/>
+					<w:lsdException w:name="index 8" w:semiHidden="1" w:unhideWhenUsed="1"/>
+					<w:lsdException w:name="index 9" w:semiHidden="1" w:unhideWhenUsed="1"/>
+					<w:lsdException w:name="toc 1" w:semiHidden="1" w:uiPriority="39" w:unhideWhenUsed="1"/>
+					<w:lsdException w:name="toc 2" w:semiHidden="1" w:uiPriority="39" w:unhideWhenUsed="1"/>
+					<w:lsdException w:name="toc 3" w:semiHidden="1" w:uiPriority="39" w:unhideWhenUsed="1"/>
+					<w:lsdException w:name="toc 4" w:semiHidden="1" w:uiPriority="39" w:unhideWhenUsed="1"/>
+					<w:lsdException w:name="toc 5" w:semiHidden="1" w:uiPriority="39" w:unhideWhenUsed="1"/>
+					<w:lsdException w:name="toc 6" w:semiHidden="1" w:uiPriority="39" w:unhideWhenUsed="1"/>
+					<w:lsdException w:name="toc 7" w:semiHidden="1" w:uiPriority="39" w:unhideWhenUsed="1"/>
+					<w:lsdException w:name="toc 8" w:semiHidden="1" w:uiPriority="39" w:unhideWhenUsed="1"/>
+					<w:lsdException w:name="toc 9" w:semiHidden="1" w:uiPriority="39" w:unhideWhenUsed="1"/>
+					<w:lsdException w:name="Normal Indent" w:semiHidden="1" w:unhideWhenUsed="1"/>
+					<w:lsdException w:name="footnote text" w:semiHidden="1" w:unhideWhenUsed="1"/>
+					<w:lsdException w:name="annotation text" w:semiHidden="1" w:unhideWhenUsed="1"/>
+					<w:lsdException w:name="header" w:semiHidden="1" w:unhideWhenUsed="1"/>
+					<w:lsdException w:name="footer" w:semiHidden="1" w:unhideWhenUsed="1"/>
+					<w:lsdException w:name="index heading" w:semiHidden="1" w:unhideWhenUsed="1"/>
+					<w:lsdException w:name="caption" w:semiHidden="1" w:uiPriority="35" w:unhideWhenUsed="1" w:qFormat="1"/>
+					<w:lsdException w:name="table of figures" w:semiHidden="1" w:unhideWhenUsed="1"/>
+					<w:lsdException w:name="envelope address" w:semiHidden="1" w:unhideWhenUsed="1"/>
+					<w:lsdException w:name="envelope return" w:semiHidden="1" w:unhideWhenUsed="1"/>
+					<w:lsdException w:name="footnote reference" w:semiHidden="1" w:unhideWhenUsed="1"/>
+					<w:lsdException w:name="annotation reference" w:semiHidden="1" w:unhideWhenUsed="1"/>
+					<w:lsdException w:name="line number" w:semiHidden="1" w:unhideWhenUsed="1"/>
+					<w:lsdException w:name="page number" w:semiHidden="1" w:unhideWhenUsed="1"/>
+					<w:lsdException w:name="endnote reference" w:semiHidden="1" w:unhideWhenUsed="1"/>
+					<w:lsdException w:name="endnote text" w:semiHidden="1" w:unhideWhenUsed="1"/>
+					<w:lsdException w:name="table of authorities" w:semiHidden="1" w:unhideWhenUsed="1"/>
+					<w:lsdException w:name="macro" w:semiHidden="1" w:unhideWhenUsed="1"/>
+					<w:lsdException w:name="toa heading" w:semiHidden="1" w:unhideWhenUsed="1"/>
+					<w:lsdException w:name="List" w:semiHidden="1" w:unhideWhenUsed="1"/>
+					<w:lsdException w:name="List Bullet" w:semiHidden="1" w:unhideWhenUsed="1"/>
+					<w:lsdException w:name="List Number" w:semiHidden="1" w:unhideWhenUsed="1"/>
+					<w:lsdException w:name="List 2" w:semiHidden="1" w:unhideWhenUsed="1"/>
+					<w:lsdException w:name="List 3" w:semiHidden="1" w:unhideWhenUsed="1"/>
+					<w:lsdException w:name="List 4" w:semiHidden="1" w:unhideWhenUsed="1"/>
+					<w:lsdException w:name="List 5" w:semiHidden="1" w:unhideWhenUsed="1"/>
+					<w:lsdException w:name="List Bullet 2" w:semiHidden="1" w:unhideWhenUsed="1"/>
+					<w:lsdException w:name="List Bullet 3" w:semiHidden="1" w:unhideWhenUsed="1"/>
+					<w:lsdException w:name="List Bullet 4" w:semiHidden="1" w:unhideWhenUsed="1"/>
+					<w:lsdException w:name="List Bullet 5" w:semiHidden="1" w:unhideWhenUsed="1"/>
+					<w:lsdException w:name="List Number 2" w:semiHidden="1" w:unhideWhenUsed="1"/>
+					<w:lsdException w:name="List Number 3" w:semiHidden="1" w:unhideWhenUsed="1"/>
+					<w:lsdException w:name="List Number 4" w:semiHidden="1" w:unhideWhenUsed="1"/>
+					<w:lsdException w:name="List Number 5" w:semiHidden="1" w:unhideWhenUsed="1"/>
+					<w:lsdException w:name="Title" w:uiPriority="10" w:qFormat="1"/>
+					<w:lsdException w:name="Closing" w:semiHidden="1" w:unhideWhenUsed="1"/>
+					<w:lsdException w:name="Signature" w:semiHidden="1" w:unhideWhenUsed="1"/>
+					<w:lsdException w:name="Default Paragraph Font" w:semiHidden="1" w:uiPriority="1" w:unhideWhenUsed="1"/>
+					<w:lsdException w:name="Body Text" w:semiHidden="1" w:unhideWhenUsed="1"/>
+					<w:lsdException w:name="Body Text Indent" w:semiHidden="1" w:unhideWhenUsed="1"/>
+					<w:lsdException w:name="List Continue" w:semiHidden="1" w:unhideWhenUsed="1"/>
+					<w:lsdException w:name="List Continue 2" w:semiHidden="1" w:unhideWhenUsed="1"/>
+					<w:lsdException w:name="List Continue 3" w:semiHidden="1" w:unhideWhenUsed="1"/>
+					<w:lsdException w:name="List Continue 4" w:semiHidden="1" w:unhideWhenUsed="1"/>
+					<w:lsdException w:name="List Continue 5" w:semiHidden="1" w:unhideWhenUsed="1"/>
+					<w:lsdException w:name="Message Header" w:semiHidden="1" w:unhideWhenUsed="1"/>
+					<w:lsdException w:name="Subtitle" w:uiPriority="11" w:qFormat="1"/>
+					<w:lsdException w:name="Salutation" w:semiHidden="1" w:unhideWhenUsed="1"/>
+					<w:lsdException w:name="Date" w:semiHidden="1" w:unhideWhenUsed="1"/>
+					<w:lsdException w:name="Body Text First Indent" w:semiHidden="1" w:unhideWhenUsed="1"/>
+					<w:lsdException w:name="Body Text First Indent 2" w:semiHidden="1" w:unhideWhenUsed="1"/>
+					<w:lsdException w:name="Note Heading" w:semiHidden="1" w:unhideWhenUsed="1"/>
+					<w:lsdException w:name="Body Text 2" w:semiHidden="1" w:unhideWhenUsed="1"/>
+					<w:lsdException w:name="Body Text 3" w:semiHidden="1" w:unhideWhenUsed="1"/>
+					<w:lsdException w:name="Body Text Indent 2" w:semiHidden="1" w:unhideWhenUsed="1"/>
+					<w:lsdException w:name="Body Text Indent 3" w:semiHidden="1" w:unhideWhenUsed="1"/>
+					<w:lsdException w:name="Block Text" w:semiHidden="1" w:unhideWhenUsed="1"/>
+					<w:lsdException w:name="Hyperlink" w:semiHidden="1" w:unhideWhenUsed="1"/>
+					<w:lsdException w:name="FollowedHyperlink" w:semiHidden="1" w:unhideWhenUsed="1"/>
+					<w:lsdException w:name="Strong" w:uiPriority="22" w:qFormat="1"/>
+					<w:lsdException w:name="Emphasis" w:uiPriority="20" w:qFormat="1"/>
+					<w:lsdException w:name="Document Map" w:semiHidden="1" w:unhideWhenUsed="1"/>
+					<w:lsdException w:name="Plain Text" w:semiHidden="1" w:unhideWhenUsed="1"/>
+					<w:lsdException w:name="E-mail Signature" w:semiHidden="1" w:unhideWhenUsed="1"/>
+					<w:lsdException w:name="HTML Top of Form" w:semiHidden="1" w:unhideWhenUsed="1"/>
+					<w:lsdException w:name="HTML Bottom of Form" w:semiHidden="1" w:unhideWhenUsed="1"/>
+					<w:lsdException w:name="Normal (Web)" w:semiHidden="1" w:unhideWhenUsed="1"/>
+					<w:lsdException w:name="HTML Acronym" w:semiHidden="1" w:unhideWhenUsed="1"/>
+					<w:lsdException w:name="HTML Address" w:semiHidden="1" w:unhideWhenUsed="1"/>
+					<w:lsdException w:name="HTML Cite" w:semiHidden="1" w:unhideWhenUsed="1"/>
+					<w:lsdException w:name="HTML Code" w:semiHidden="1" w:unhideWhenUsed="1"/>
+					<w:lsdException w:name="HTML Definition" w:semiHidden="1" w:unhideWhenUsed="1"/>
+					<w:lsdException w:name="HTML Keyboard" w:semiHidden="1" w:unhideWhenUsed="1"/>
+					<w:lsdException w:name="HTML Preformatted" w:semiHidden="1" w:unhideWhenUsed="1"/>
+					<w:lsdException w:name="HTML Sample" w:semiHidden="1" w:unhideWhenUsed="1"/>
+					<w:lsdException w:name="HTML Typewriter" w:semiHidden="1" w:unhideWhenUsed="1"/>
+					<w:lsdException w:name="HTML Variable" w:semiHidden="1" w:unhideWhenUsed="1"/>
+					<w:lsdException w:name="Normal Table" w:semiHidden="1" w:unhideWhenUsed="1"/>
+					<w:lsdException w:name="annotation subject" w:semiHidden="1" w:unhideWhenUsed="1"/>
+					<w:lsdException w:name="No List" w:semiHidden="1" w:unhideWhenUsed="1"/>
+					<w:lsdException w:name="Outline List 1" w:semiHidden="1" w:unhideWhenUsed="1"/>
+					<w:lsdException w:name="Outline List 2" w:semiHidden="1" w:unhideWhenUsed="1"/>
+					<w:lsdException w:name="Outline List 3" w:semiHidden="1" w:unhideWhenUsed="1"/>
+					<w:lsdException w:name="Table Simple 1" w:semiHidden="1" w:unhideWhenUsed="1"/>
+					<w:lsdException w:name="Table Simple 2" w:semiHidden="1" w:unhideWhenUsed="1"/>
+					<w:lsdException w:name="Table Simple 3" w:semiHidden="1" w:unhideWhenUsed="1"/>
+					<w:lsdException w:name="Table Classic 1" w:semiHidden="1" w:unhideWhenUsed="1"/>
+					<w:lsdException w:name="Table Classic 2" w:semiHidden="1" w:unhideWhenUsed="1"/>
+					<w:lsdException w:name="Table Classic 3" w:semiHidden="1" w:unhideWhenUsed="1"/>
+					<w:lsdException w:name="Table Classic 4" w:semiHidden="1" w:unhideWhenUsed="1"/>
+					<w:lsdException w:name="Table Colorful 1" w:semiHidden="1" w:unhideWhenUsed="1"/>
+					<w:lsdException w:name="Table Colorful 2" w:semiHidden="1" w:unhideWhenUsed="1"/>
+					<w:lsdException w:name="Table Colorful 3" w:semiHidden="1" w:unhideWhenUsed="1"/>
+					<w:lsdException w:name="Table Columns 1" w:semiHidden="1" w:unhideWhenUsed="1"/>
+					<w:lsdException w:name="Table Columns 2" w:semiHidden="1" w:unhideWhenUsed="1"/>
+					<w:lsdException w:name="Table Columns 3" w:semiHidden="1" w:unhideWhenUsed="1"/>
+					<w:lsdException w:name="Table Columns 4" w:semiHidden="1" w:unhideWhenUsed="1"/>
+					<w:lsdException w:name="Table Columns 5" w:semiHidden="1" w:unhideWhenUsed="1"/>
+					<w:lsdException w:name="Table Grid 1" w:semiHidden="1" w:unhideWhenUsed="1"/>
+					<w:lsdException w:name="Table Grid 2" w:semiHidden="1" w:unhideWhenUsed="1"/>
+					<w:lsdException w:name="Table Grid 3" w:semiHidden="1" w:unhideWhenUsed="1"/>
+					<w:lsdException w:name="Table Grid 4" w:semiHidden="1" w:unhideWhenUsed="1"/>
+					<w:lsdException w:name="Table Grid 5" w:semiHidden="1" w:unhideWhenUsed="1"/>
+					<w:lsdException w:name="Table Grid 6" w:semiHidden="1" w:unhideWhenUsed="1"/>
+					<w:lsdException w:name="Table Grid 7" w:semiHidden="1" w:unhideWhenUsed="1"/>
+					<w:lsdException w:name="Table Grid 8" w:semiHidden="1" w:unhideWhenUsed="1"/>
+					<w:lsdException w:name="Table List 1" w:semiHidden="1" w:unhideWhenUsed="1"/>
+					<w:lsdException w:name="Table List 2" w:semiHidden="1" w:unhideWhenUsed="1"/>
+					<w:lsdException w:name="Table List 3" w:semiHidden="1" w:unhideWhenUsed="1"/>
+					<w:lsdException w:name="Table List 4" w:semiHidden="1" w:unhideWhenUsed="1"/>
+					<w:lsdException w:name="Table List 5" w:semiHidden="1" w:unhideWhenUsed="1"/>
+					<w:lsdException w:name="Table List 6" w:semiHidden="1" w:unhideWhenUsed="1"/>
+					<w:lsdException w:name="Table List 7" w:semiHidden="1" w:unhideWhenUsed="1"/>
+					<w:lsdException w:name="Table List 8" w:semiHidden="1" w:unhideWhenUsed="1"/>
+					<w:lsdException w:name="Table 3D effects 1" w:semiHidden="1" w:unhideWhenUsed="1"/>
+					<w:lsdException w:name="Table 3D effects 2" w:semiHidden="1" w:unhideWhenUsed="1"/>
+					<w:lsdException w:name="Table 3D effects 3" w:semiHidden="1" w:unhideWhenUsed="1"/>
+					<w:lsdException w:name="Table Contemporary" w:semiHidden="1" w:unhideWhenUsed="1"/>
+					<w:lsdException w:name="Table Elegant" w:semiHidden="1" w:unhideWhenUsed="1"/>
+					<w:lsdException w:name="Table Professional" w:semiHidden="1" w:unhideWhenUsed="1"/>
+					<w:lsdException w:name="Table Subtle 1" w:semiHidden="1" w:unhideWhenUsed="1"/>
+					<w:lsdException w:name="Table Subtle 2" w:semiHidden="1" w:unhideWhenUsed="1"/>
+					<w:lsdException w:name="Table Web 1" w:semiHidden="1" w:unhideWhenUsed="1"/>
+					<w:lsdException w:name="Table Web 2" w:semiHidden="1" w:unhideWhenUsed="1"/>
+					<w:lsdException w:name="Table Web 3" w:semiHidden="1" w:unhideWhenUsed="1"/>
+					<w:lsdException w:name="Balloon Text" w:semiHidden="1" w:unhideWhenUsed="1"/>
+					<w:lsdException w:name="Table Grid" w:uiPriority="39"/>
+					<w:lsdException w:name="Table Theme" w:semiHidden="1" w:unhideWhenUsed="1"/>
+					<w:lsdException w:name="Placeholder Text" w:semiHidden="1"/>
+					<w:lsdException w:name="No Spacing" w:uiPriority="1" w:qFormat="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:lsdException w:name="List Paragraph" w:uiPriority="34" w:qFormat="1"/>
+					<w:lsdException w:name="Quote" w:uiPriority="29" w:qFormat="1"/>
+					<w:lsdException w:name="Intense Quote" w:uiPriority="30" w:qFormat="1"/>
+					<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:uiPriority="19" w:qFormat="1"/>
+					<w:lsdException w:name="Intense Emphasis" w:uiPriority="21" w:qFormat="1"/>
+					<w:lsdException w:name="Subtle Reference" w:uiPriority="31" w:qFormat="1"/>
+					<w:lsdException w:name="Intense Reference" w:uiPriority="32" w:qFormat="1"/>
+					<w:lsdException w:name="Book Title" w:uiPriority="33" w:qFormat="1"/>
+					<w:lsdException w:name="Bibliography" w:semiHidden="1" w:uiPriority="37" w:unhideWhenUsed="1"/>
+					<w:lsdException w:name="TOC Heading" w:semiHidden="1" w:uiPriority="39" w:unhideWhenUsed="1" w:qFormat="1"/>
+					<w:lsdException w:name="Plain Table 1" w:uiPriority="41"/>
+					<w:lsdException w:name="Plain Table 2" w:uiPriority="42"/>
+					<w:lsdException w:name="Plain Table 3" w:uiPriority="43"/>
+					<w:lsdException w:name="Plain Table 4" w:uiPriority="44"/>
+					<w:lsdException w:name="Plain Table 5" w:uiPriority="45"/>
+					<w:lsdException w:name="Grid Table Light" w:uiPriority="40"/>
+					<w:lsdException w:name="Grid Table 1 Light" w:uiPriority="46"/>
+					<w:lsdException w:name="Grid Table 2" w:uiPriority="47"/>
+					<w:lsdException w:name="Grid Table 3" w:uiPriority="48"/>
+					<w:lsdException w:name="Grid Table 4" w:uiPriority="49"/>
+					<w:lsdException w:name="Grid Table 5 Dark" w:uiPriority="50"/>
+					<w:lsdException w:name="Grid Table 6 Colorful" w:uiPriority="51"/>
+					<w:lsdException w:name="Grid Table 7 Colorful" w:uiPriority="52"/>
+					<w:lsdException w:name="Grid Table 1 Light Accent 1" w:uiPriority="46"/>
+					<w:lsdException w:name="Grid Table 2 Accent 1" w:uiPriority="47"/>
+					<w:lsdException w:name="Grid Table 3 Accent 1" w:uiPriority="48"/>
+					<w:lsdException w:name="Grid Table 4 Accent 1" w:uiPriority="49"/>
+					<w:lsdException w:name="Grid Table 5 Dark Accent 1" w:uiPriority="50"/>
+					<w:lsdException w:name="Grid Table 6 Colorful Accent 1" w:uiPriority="51"/>
+					<w:lsdException w:name="Grid Table 7 Colorful Accent 1" w:uiPriority="52"/>
+					<w:lsdException w:name="Grid Table 1 Light Accent 2" w:uiPriority="46"/>
+					<w:lsdException w:name="Grid Table 2 Accent 2" w:uiPriority="47"/>
+					<w:lsdException w:name="Grid Table 3 Accent 2" w:uiPriority="48"/>
+					<w:lsdException w:name="Grid Table 4 Accent 2" w:uiPriority="49"/>
+					<w:lsdException w:name="Grid Table 5 Dark Accent 2" w:uiPriority="50"/>
+					<w:lsdException w:name="Grid Table 6 Colorful Accent 2" w:uiPriority="51"/>
+					<w:lsdException w:name="Grid Table 7 Colorful Accent 2" w:uiPriority="52"/>
+					<w:lsdException w:name="Grid Table 1 Light Accent 3" w:uiPriority="46"/>
+					<w:lsdException w:name="Grid Table 2 Accent 3" w:uiPriority="47"/>
+					<w:lsdException w:name="Grid Table 3 Accent 3" w:uiPriority="48"/>
+					<w:lsdException w:name="Grid Table 4 Accent 3" w:uiPriority="49"/>
+					<w:lsdException w:name="Grid Table 5 Dark Accent 3" w:uiPriority="50"/>
+					<w:lsdException w:name="Grid Table 6 Colorful Accent 3" w:uiPriority="51"/>
+					<w:lsdException w:name="Grid Table 7 Colorful Accent 3" w:uiPriority="52"/>
+					<w:lsdException w:name="Grid Table 1 Light Accent 4" w:uiPriority="46"/>
+					<w:lsdException w:name="Grid Table 2 Accent 4" w:uiPriority="47"/>
+					<w:lsdException w:name="Grid Table 3 Accent 4" w:uiPriority="48"/>
+					<w:lsdException w:name="Grid Table 4 Accent 4" w:uiPriority="49"/>
+					<w:lsdException w:name="Grid Table 5 Dark Accent 4" w:uiPriority="50"/>
+					<w:lsdException w:name="Grid Table 6 Colorful Accent 4" w:uiPriority="51"/>
+					<w:lsdException w:name="Grid Table 7 Colorful Accent 4" w:uiPriority="52"/>
+					<w:lsdException w:name="Grid Table 1 Light Accent 5" w:uiPriority="46"/>
+					<w:lsdException w:name="Grid Table 2 Accent 5" w:uiPriority="47"/>
+					<w:lsdException w:name="Grid Table 3 Accent 5" w:uiPriority="48"/>
+					<w:lsdException w:name="Grid Table 4 Accent 5" w:uiPriority="49"/>
+					<w:lsdException w:name="Grid Table 5 Dark Accent 5" w:uiPriority="50"/>
+					<w:lsdException w:name="Grid Table 6 Colorful Accent 5" w:uiPriority="51"/>
+					<w:lsdException w:name="Grid Table 7 Colorful Accent 5" w:uiPriority="52"/>
+					<w:lsdException w:name="Grid Table 1 Light Accent 6" w:uiPriority="46"/>
+					<w:lsdException w:name="Grid Table 2 Accent 6" w:uiPriority="47"/>
+					<w:lsdException w:name="Grid Table 3 Accent 6" w:uiPriority="48"/>
+					<w:lsdException w:name="Grid Table 4 Accent 6" w:uiPriority="49"/>
+					<w:lsdException w:name="Grid Table 5 Dark Accent 6" w:uiPriority="50"/>
+					<w:lsdException w:name="Grid Table 6 Colorful Accent 6" w:uiPriority="51"/>
+					<w:lsdException w:name="Grid Table 7 Colorful Accent 6" w:uiPriority="52"/>
+					<w:lsdException w:name="List Table 1 Light" w:uiPriority="46"/>
+					<w:lsdException w:name="List Table 2" w:uiPriority="47"/>
+					<w:lsdException w:name="List Table 3" w:uiPriority="48"/>
+					<w:lsdException w:name="List Table 4" w:uiPriority="49"/>
+					<w:lsdException w:name="List Table 5 Dark" w:uiPriority="50"/>
+					<w:lsdException w:name="List Table 6 Colorful" w:uiPriority="51"/>
+					<w:lsdException w:name="List Table 7 Colorful" w:uiPriority="52"/>
+					<w:lsdException w:name="List Table 1 Light Accent 1" w:uiPriority="46"/>
+					<w:lsdException w:name="List Table 2 Accent 1" w:uiPriority="47"/>
+					<w:lsdException w:name="List Table 3 Accent 1" w:uiPriority="48"/>
+					<w:lsdException w:name="List Table 4 Accent 1" w:uiPriority="49"/>
+					<w:lsdException w:name="List Table 5 Dark Accent 1" w:uiPriority="50"/>
+					<w:lsdException w:name="List Table 6 Colorful Accent 1" w:uiPriority="51"/>
+					<w:lsdException w:name="List Table 7 Colorful Accent 1" w:uiPriority="52"/>
+					<w:lsdException w:name="List Table 1 Light Accent 2" w:uiPriority="46"/>
+					<w:lsdException w:name="List Table 2 Accent 2" w:uiPriority="47"/>
+					<w:lsdException w:name="List Table 3 Accent 2" w:uiPriority="48"/>
+					<w:lsdException w:name="List Table 4 Accent 2" w:uiPriority="49"/>
+					<w:lsdException w:name="List Table 5 Dark Accent 2" w:uiPriority="50"/>
+					<w:lsdException w:name="List Table 6 Colorful Accent 2" w:uiPriority="51"/>
+					<w:lsdException w:name="List Table 7 Colorful Accent 2" w:uiPriority="52"/>
+					<w:lsdException w:name="List Table 1 Light Accent 3" w:uiPriority="46"/>
+					<w:lsdException w:name="List Table 2 Accent 3" w:uiPriority="47"/>
+					<w:lsdException w:name="List Table 3 Accent 3" w:uiPriority="48"/>
+					<w:lsdException w:name="List Table 4 Accent 3" w:uiPriority="49"/>
+					<w:lsdException w:name="List Table 5 Dark Accent 3" w:uiPriority="50"/>
+					<w:lsdException w:name="List Table 6 Colorful Accent 3" w:uiPriority="51"/>
+					<w:lsdException w:name="List Table 7 Colorful Accent 3" w:uiPriority="52"/>
+					<w:lsdException w:name="List Table 1 Light Accent 4" w:uiPriority="46"/>
+					<w:lsdException w:name="List Table 2 Accent 4" w:uiPriority="47"/>
+					<w:lsdException w:name="List Table 3 Accent 4" w:uiPriority="48"/>
+					<w:lsdException w:name="List Table 4 Accent 4" w:uiPriority="49"/>
+					<w:lsdException w:name="List Table 5 Dark Accent 4" w:uiPriority="50"/>
+					<w:lsdException w:name="List Table 6 Colorful Accent 4" w:uiPriority="51"/>
+					<w:lsdException w:name="List Table 7 Colorful Accent 4" w:uiPriority="52"/>
+					<w:lsdException w:name="List Table 1 Light Accent 5" w:uiPriority="46"/>
+					<w:lsdException w:name="List Table 2 Accent 5" w:uiPriority="47"/>
+					<w:lsdException w:name="List Table 3 Accent 5" w:uiPriority="48"/>
+					<w:lsdException w:name="List Table 4 Accent 5" w:uiPriority="49"/>
+					<w:lsdException w:name="List Table 5 Dark Accent 5" w:uiPriority="50"/>
+					<w:lsdException w:name="List Table 6 Colorful Accent 5" w:uiPriority="51"/>
+					<w:lsdException w:name="List Table 7 Colorful Accent 5" w:uiPriority="52"/>
+					<w:lsdException w:name="List Table 1 Light Accent 6" w:uiPriority="46"/>
+					<w:lsdException w:name="List Table 2 Accent 6" w:uiPriority="47"/>
+					<w:lsdException w:name="List Table 3 Accent 6" w:uiPriority="48"/>
+					<w:lsdException w:name="List Table 4 Accent 6" w:uiPriority="49"/>
+					<w:lsdException w:name="List Table 5 Dark Accent 6" w:uiPriority="50"/>
+					<w:lsdException w:name="List Table 6 Colorful Accent 6" w:uiPriority="51"/>
+					<w:lsdException w:name="List Table 7 Colorful Accent 6" w:uiPriority="52"/>
+					<w:lsdException w:name="Mention" w:semiHidden="1" w:unhideWhenUsed="1"/>
+					<w:lsdException w:name="Smart Hyperlink" w:semiHidden="1" w:unhideWhenUsed="1"/>
+					<w:lsdException w:name="Hashtag" w:semiHidden="1" w:unhideWhenUsed="1"/>
+					<w:lsdException w:name="Unresolved Mention" w:semiHidden="1" w:unhideWhenUsed="1"/>
+					<w:lsdException w:name="Smart Link" w:semiHidden="1" w:unhideWhenUsed="1"/>
+				</w:latentStyles>
+				<w:style w:type="paragraph" w:default="1" w:styleId="a">
+					<w:name w:val="Normal"/>
+					<w:qFormat/>
+					<w:pPr>
+						<w:widowControl w:val="0"/>
+						<w:jc w:val="both"/>
+					</w:pPr>
+				</w:style>
+				<w:style w:type="character" w:default="1" w:styleId="a0">
+					<w:name w:val="Default Paragraph Font"/>
+					<w:uiPriority w:val="1"/>
+					<w:semiHidden/>
+					<w:unhideWhenUsed/>
+				</w:style>
+				<w:style w:type="table" w:default="1" w:styleId="a1">
+					<w:name w:val="Normal Table"/>
+					<w:uiPriority w:val="99"/>
+					<w:semiHidden/>
+					<w:unhideWhenUsed/>
+					<w:tblPr>
+						<w:tblInd w:w="0" w:type="dxa"/>
+						<w:tblCellMar>
+							<w:top w:w="0" w:type="dxa"/>
+							<w:left w:w="108" w:type="dxa"/>
+							<w:bottom w:w="0" w:type="dxa"/>
+							<w:right w:w="108" w:type="dxa"/>
+						</w:tblCellMar>
+					</w:tblPr>
+				</w:style>
+				<w:style w:type="numbering" w:default="1" w:styleId="a2">
+					<w:name w:val="No List"/>
+					<w:uiPriority w:val="99"/>
+					<w:semiHidden/>
+					<w:unhideWhenUsed/>
+				</w:style>
+				<w:style w:type="paragraph" w:styleId="a3">
+					<w:name w:val="header"/>
+					<w:basedOn w:val="a"/>
+					<w:link w:val="a4"/>
+					<w:uiPriority w:val="99"/>
+					<w:unhideWhenUsed/>
+					<w:rsid w:val="00776A88"/>
+					<w:pPr>
+						<w:pBdr>
+							<w:bottom w:val="single" w:sz="6" w:space="1" w:color="auto"/>
+						</w:pBdr>
+						<w:tabs>
+							<w:tab w:val="center" w:pos="4153"/>
+							<w:tab w:val="right" w:pos="8306"/>
+						</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:rPr>
+				</w:style>
+				<w:style w:type="character" w:customStyle="1" w:styleId="a4">
+					<w:name w:val="椤电湁 瀛楃"/>
+					<w:basedOn w:val="a0"/>
+					<w:link w:val="a3"/>
+					<w:uiPriority w:val="99"/>
+					<w:rsid w:val="00776A88"/>
+					<w:rPr>
+						<w:sz w:val="18"/>
+						<w:szCs w:val="18"/>
+					</w:rPr>
+				</w:style>
+				<w:style w:type="paragraph" w:styleId="a5">
+					<w:name w:val="footer"/>
+					<w:basedOn w:val="a"/>
+					<w:link w:val="a6"/>
+					<w:uiPriority w:val="99"/>
+					<w:unhideWhenUsed/>
+					<w:rsid w:val="00776A88"/>
+					<w:pPr>
+						<w:tabs>
+							<w:tab w:val="center" w:pos="4153"/>
+							<w:tab w:val="right" w:pos="8306"/>
+						</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:type="character" w:customStyle="1" w:styleId="a6">
+					<w:name w:val="椤佃剼 瀛楃"/>
+					<w:basedOn w:val="a0"/>
+					<w:link w:val="a5"/>
+					<w:uiPriority w:val="99"/>
+					<w:rsid w:val="00776A88"/>
+					<w:rPr>
+						<w:sz w:val="18"/>
+						<w:szCs w:val="18"/>
+					</w:rPr>
+				</w:style>
+				<w:style w:type="table" w:styleId="a7">
+					<w:name w:val="Table Grid"/>
+					<w:basedOn w:val="a1"/>
+					<w:uiPriority w:val="39"/>
+					<w:rsid w:val="006D0E9A"/>
+					<w:tblPr>
+						<w:tblBorders>
+							<w:top w:val="single" w:sz="4" w:space="0" w:color="auto"/>
+							<w:left w:val="single" w:sz="4" w:space="0" w:color="auto"/>
+							<w:bottom w:val="single" w:sz="4" w:space="0" w:color="auto"/>
+							<w:right w:val="single" w:sz="4" w:space="0" w:color="auto"/>
+							<w:insideH w:val="single" w:sz="4" w:space="0" w:color="auto"/>
+							<w:insideV w:val="single" w:sz="4" w:space="0" w:color="auto"/>
+						</w:tblBorders>
+					</w:tblPr>
+				</w:style>
+			</w:styles>
+		</pkg:xmlData>
+	</pkg:part>
+	<pkg:part pkg:name="/word/webSettings.xml" pkg:contentType="application/vnd.openxmlformats-officedocument.wordprocessingml.webSettings+xml">
+		<pkg:xmlData>
+			<w:webSettings 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" xmlns:w15="http://schemas.microsoft.com/office/word/2012/wordml" xmlns:w16cex="http://schemas.microsoft.com/office/word/2018/wordml/cex" xmlns:w16cid="http://schemas.microsoft.com/office/word/2016/wordml/cid" xmlns:w16="http://schemas.microsoft.com/office/word/2018/wordml" xmlns:w16sdtdh="http://schemas.microsoft.com/office/word/2020/wordml/sdtdatahash" xmlns:w16se="http://schemas.microsoft.com/office/word/2015/wordml/symex" mc:Ignorable="w14 w15 w16se w16cid w16 w16cex w16sdtdh">
+				<w:divs>
+					<w:div w:id="776869707">
+						<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:val="none" w:sz="0" w:space="0" w:color="auto"/>
+							<w:left w:val="none" w:sz="0" w:space="0" w:color="auto"/>
+							<w:bottom w:val="none" w:sz="0" w:space="0" w:color="auto"/>
+							<w:right w:val="none" w:sz="0" w:space="0" w:color="auto"/>
+						</w:divBdr>
+					</w:div>
+					<w:div w:id="1240677293">
+						<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:val="none" w:sz="0" w:space="0" w:color="auto"/>
+							<w:left w:val="none" w:sz="0" w:space="0" w:color="auto"/>
+							<w:bottom w:val="none" w:sz="0" w:space="0" w:color="auto"/>
+							<w:right w:val="none" w:sz="0" w:space="0" w:color="auto"/>
+						</w:divBdr>
+					</w:div>
+				</w:divs>
+				<w:optimizeForBrowser/>
+				<w:relyOnVML/>
+				<w:allowPNG/>
+			</w:webSettings>
+		</pkg:xmlData>
+	</pkg:part>
+	<pkg:part pkg:name="/word/fontTable.xml" pkg:contentType="application/vnd.openxmlformats-officedocument.wordprocessingml.fontTable+xml">
+		<pkg:xmlData>
+			<w:fonts 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" xmlns:w15="http://schemas.microsoft.com/office/word/2012/wordml" xmlns:w16cex="http://schemas.microsoft.com/office/word/2018/wordml/cex" xmlns:w16cid="http://schemas.microsoft.com/office/word/2016/wordml/cid" xmlns:w16="http://schemas.microsoft.com/office/word/2018/wordml" xmlns:w16sdtdh="http://schemas.microsoft.com/office/word/2020/wordml/sdtdatahash" xmlns:w16se="http://schemas.microsoft.com/office/word/2015/wordml/symex" mc:Ignorable="w14 w15 w16se w16cid w16 w16cex w16sdtdh">
+				<w:font w:name="绛夌嚎">
+					<w:altName w:val="DengXian"/>
+					<w:panose1 w:val="02010600030101010101"/>
+					<w:charset w:val="86"/>
+					<w:family w:val="auto"/>
+					<w:pitch w:val="variable"/>
+					<w:sig w:usb0="A00002BF" w:usb1="38CF7CFA" w:usb2="00000016" w:usb3="00000000" w:csb0="0004000F" w:csb1="00000000"/>
+				</w:font>
+				<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:usb0="E0002EFF" w:usb1="C000785B" w:usb2="00000009" w:usb3="00000000" w:csb0="000001FF" w:csb1="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:usb0="00000203" w:usb1="288F0000" w:usb2="00000016" w:usb3="00000000" w:csb0="00040001" w:csb1="00000000"/>
+				</w:font>
+				<w:font w:name="鏂板畫浣�">
+					<w:panose1 w:val="02010609030101010101"/>
+					<w:charset w:val="86"/>
+					<w:family w:val="modern"/>
+					<w:pitch w:val="fixed"/>
+					<w:sig w:usb0="00000203" w:usb1="288F0000" w:usb2="00000016" w:usb3="00000000" w:csb0="00040001" w:csb1="00000000"/>
+				</w:font>
+				<w:font w:name="绛夌嚎 Light">
+					<w:panose1 w:val="02010600030101010101"/>
+					<w:charset w:val="86"/>
+					<w:family w:val="auto"/>
+					<w:pitch w:val="variable"/>
+					<w:sig w:usb0="A00002BF" w:usb1="38CF7CFA" w:usb2="00000016" w:usb3="00000000" w:csb0="0004000F" w:csb1="00000000"/>
+				</w:font>
+			</w:fonts>
+		</pkg:xmlData>
+	</pkg:part>
+	<pkg:part pkg:name="/docProps/core.xml" pkg:contentType="application/vnd.openxmlformats-package.core-properties+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:dcterms="http://purl.org/dc/terms/" xmlns:dcmitype="http://purl.org/dc/dcmitype/" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance">
+				<dc:title/>
+				<dc:subject/>
+				<dc:creator>hzsz</dc:creator>
+				<cp:keywords/>
+				<dc:description/>
+				<cp:lastModifiedBy>Sendo</cp:lastModifiedBy>
+				<cp:revision>12</cp:revision>
+				<dcterms:created xsi:type="dcterms:W3CDTF">2022-05-07T09:35:00Z</dcterms:created>
+				<dcterms:modified xsi:type="dcterms:W3CDTF">2023-07-18T08:09:00Z</dcterms:modified>
+			</cp:coreProperties>
+		</pkg:xmlData>
+	</pkg:part>
+	<pkg:part pkg:name="/docProps/app.xml" pkg:contentType="application/vnd.openxmlformats-officedocument.extended-properties+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>35</TotalTime>
+				<Pages>2</Pages>
+				<Words>143</Words>
+				<Characters>819</Characters>
+				<Application>Microsoft Office Word</Application>
+				<DocSecurity>0</DocSecurity>
+				<Lines>6</Lines>
+				<Paragraphs>1</Paragraphs>
+				<ScaleCrop>false</ScaleCrop>
+				<Company>hzsz</Company>
+				<LinksUpToDate>false</LinksUpToDate>
+				<CharactersWithSpaces>961</CharactersWithSpaces>
+				<SharedDoc>false</SharedDoc>
+				<HyperlinksChanged>false</HyperlinksChanged>
+				<AppVersion>16.0000</AppVersion>
+			</Properties>
+		</pkg:xmlData>
+	</pkg:part>
+</pkg:package>
diff --git a/ruoyi-project/src/main/java/com/ruoyi/project/domain/ServiceFunddetailAssort.java b/ruoyi-project/src/main/java/com/ruoyi/project/domain/ServiceFunddetailAssort.java
new file mode 100644
index 0000000..dbfd699
--- /dev/null
+++ b/ruoyi-project/src/main/java/com/ruoyi/project/domain/ServiceFunddetailAssort.java
@@ -0,0 +1,44 @@
+package com.ruoyi.project.domain;
+
+import com.baomidou.mybatisplus.annotation.IdType;
+import com.baomidou.mybatisplus.annotation.TableId;
+import com.fasterxml.jackson.annotation.JsonFormat;
+import com.ruoyi.common.annotation.Excel;
+import com.ruoyi.common.core.domain.BaseEntity;
+import io.swagger.annotations.ApiModel;
+import io.swagger.annotations.ApiModelProperty;
+import lombok.Data;
+
+import java.util.Date;
+
+/**
+ * 璐圭敤鐢宠鏄庣粏鍒嗙被瀵硅薄
+ *
+ * @author ruoyi
+ * @date 2022-01-25
+ */
+@Data
+public class ServiceFunddetailAssort {
+
+    private String FWFL;
+
+    private Double SQXJ;
+
+    private Double KSXJ;
+
+    private Double SHXJ;
+
+
+    public ServiceFunddetailAssort(Double SQXJ, Double KSXJ, Double SHXJ) {
+        this.SQXJ = SQXJ;
+        this.KSXJ = KSXJ;
+        this.SHXJ = SHXJ;
+    }
+
+
+
+    public static ServiceFunddetailAssort add(ServiceFunddetailAssort a, ServiceFunddetailAssort b) {
+        return new ServiceFunddetailAssort(a.SQXJ + b.SQXJ, a.KSXJ + b.KSXJ,a.SHXJ+b.KSXJ);
+    }
+}
+

--
Gitblit v1.9.3