【freemaker实现导出word】

第一步、说明

本次制作模板使用的是【freemaker实现导出word】创建xml/ftl模板
项目SSM框架

第二步、制作ftl模板

ftl模板制作其实很简单,核心点就是把需要填充的地方使用 v a l u e 替 换 掉 即 可 。 这 里 有 个 小 技 巧 , 可 以 实 现 在 填 充 的 地 方 填 v a l u e , ′ {value}替换掉即可。这里有个小技巧,可以实现在填充的地方填value,' valuevalue,{}‘符号在转换为txt格式时 添加上即可。只要掌握好方法就好。
1、在Java后台事先准备好需要填充的数据;
2、在doc模板,把需要填充的地方替换掉,和后台数据一一对应上;
3、将doc文档模板另存为xml格式的文档,替换后 在网上使用格式转换 转换成便于观看与使用的格式;
4、在xml格式编辑页面,制作模板,ftl有其对于的语法,事先学习一下即可;
5、制作完成后,另存为ftl格式,保存类型为(all types(’.’))

第三步、java生成模板

//freemarket 模板生成
public static void writeTo(ServletContext context, Map map, String templateFilePath, String templateFileName, String targetFilePath, String targetFileName) {
        Configuration freemarkerCfg = new Configuration();
        // 设置要解析的模板所在的目录,并加载模板文件
        freemarkerCfg.setServletContextForTemplateLoading(context, templateFilePath);
        freemarkerCfg.setEncoding(Locale.getDefault(), "UTF-8");

        // 获取模板,并设置编码方式
        try{
            Template template = freemarkerCfg.getTemplate(templateFileName);
            template.setEncoding("UTF-8");
            File fileDir = new File(targetFilePath);
            if (!fileDir.exists()) {
                fileDir.mkdir();
            }

            File targetFile = new File(targetFilePath + File.separator + targetFileName);

            try(Writer out = new BufferedWriter(new OutputStreamWriter(new FileOutputStream(targetFile), "UTF-8"))){
                log.debug("generated file:"+targetFile.getAbsolutePath());
                // 合并数据模型与模板
                template.process(map, out);
                out.flush();
            }catch(Exception e){
                log.error("关闭Write对象出错", e);
            }
        }catch(Exception e){
            log.error(e.getMessage());
        }

    }

模板下载代码

// 下载doc模板
String sevletRealPath = request.getSession().getServletContext().getRealPath("/");

        String templateFilePath1 = "pages/ftl/";
        String templateFileName1 = "examWisdomAnalyse.xml.ftl";

        String targetFilePath1 = sevletRealPath + "/tmp/";
        String targetFileName1 = "examWisdomAnalyse_"+System.currentTimeMillis() + ".doc";

        FreeMarkerUtil.writeTo(request.getSession().getServletContext(), map, templateFilePath1, templateFileName1, targetFilePath1, targetFileName1);

        File outFile = new File(targetFilePath1 + targetFileName1);
        if(!outFile.exists()){
            outFile.createNewFile();
        }
        try(InputStream is = new FileInputStream(outFile)){

            response.setContentType("application/force-download");
            String filename = "试卷_"+examPaper.getPaperName()+"_"+System.currentTimeMillis()+".doc";
            if (StringUtils.isNotEmpty(filename)) {
                response.setHeader("Content-disposition", "attachment; filename=" + new String(filename.getBytes("gb2312"), "ISO8859-1"));
            } else {
                response.setHeader("Content-disposition", "attachment");
            }

            byte[] b = new byte[1024];
            int len;
            while ((len=is.read(b)) >0) {
                response.getOutputStream().write(b,0,len);
            }
            is.close();
            response.getOutputStream().flush();
            response.getOutputStream().close();
        }

最后附带生成的ftl模板

ftl对空格与空字符串敏感,list集合里,里面有两次判断处理

<?xml version="1.0" encoding="utf-8"?>
<?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"/>
        <Relationship Id="rId4" Type="http://schemas.openxmlformats.org/officeDocument/2006/relationships/custom-properties" Target="docProps/custom.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:w="http://schemas.openxmlformats.org/wordprocessingml/2006/main" 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: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: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="1ABA6856" w14:textId="4FD53C65" w:rsidR="00631ED5" w:rsidRDefault="00F60BC9">
            <w:pPr>
              <w:jc w:val="center"/>
              <w:rPr>
                <w:rFonts w:ascii="宋体" w:eastAsia="宋体" w:hAnsi="宋体"/>
                <w:b/>
                <w:bCs/>
                <w:sz w:val="36"/>
                <w:szCs w:val="36"/>
              </w:rPr>
            </w:pPr>
            <w:r>
              <w:rPr>
                <w:rFonts w:ascii="宋体" w:eastAsia="宋体" w:hAnsi="宋体" w:hint="eastAsia"/>
                <w:b/>
                <w:bCs/>
                <w:sz w:val="36"/>
                <w:szCs w:val="36"/>
              </w:rPr>
              <w:t>${roundTitle}</w:t>
            </w:r>
          </w:p>
          <w:p w14:paraId="7C4172DF" w14:textId="24211521" w:rsidR="00631ED5" w:rsidRDefault="002E38EF">
            <w:pPr>
              <w:jc w:val="center"/>
              <w:rPr>
                <w:rFonts w:ascii="宋体" w:eastAsia="宋体" w:hAnsi="宋体"/>
                <w:b/>
                <w:bCs/>
                <w:sz w:val="36"/>
                <w:szCs w:val="36"/>
              </w:rPr>
            </w:pPr>
            <w:r>
              <w:rPr>
                <w:rFonts w:ascii="宋体" w:eastAsia="宋体" w:hAnsi="宋体" w:hint="eastAsia"/>
                <w:szCs w:val="21"/>
              </w:rPr>
              <w:t>统计时间:${analyse.createTime?string('yyyy-MM-dd HH:mm:ss')}</w:t>
            </w:r>
            <w:proofErr w:type="spellEnd"/>
            <w:proofErr w:type="gramEnd"/>
          </w:p>
          <w:p w14:paraId="75E0C7B9" w14:textId="77777777" w:rsidR="00631ED5" w:rsidRDefault="002E38EF">
            <w:pPr>
              <w:pStyle w:val="ad"/>
              <w:numPr>
                <w:ilvl w:val="0"/>
                <w:numId w:val="1"/>
              </w:numPr>
              <w:spacing w:line="600" w:lineRule="auto"/>
              <w:ind w:firstLineChars="0"/>
              <w:rPr>
                <w:rFonts w:ascii="宋体" w:eastAsia="宋体" w:hAnsi="宋体"/>
                <w:sz w:val="28"/>
                <w:szCs w:val="28"/>
              </w:rPr>
            </w:pPr>
            <w:r>
              <w:rPr>
                <w:rFonts w:ascii="宋体" w:eastAsia="宋体" w:hAnsi="宋体" w:hint="eastAsia"/>
                <w:b/>
                <w:bCs/>
                <w:sz w:val="28"/>
                <w:szCs w:val="28"/>
              </w:rPr>
              <w:t>汇总统计</w:t>
            </w:r>
          </w:p>
          <w:p w14:paraId="4B5B0801" w14:textId="77777777" w:rsidR="00631ED5" w:rsidRDefault="002E38EF">
            <w:pPr>
              <w:rPr>
                <w:rFonts w:ascii="宋体" w:eastAsia="宋体" w:hAnsi="宋体"/>
                <w:b/>
                <w:bCs/>
              </w:rPr>
            </w:pPr>
            <w:r>
              <w:rPr>
                <w:rFonts w:ascii="宋体" w:eastAsia="宋体" w:hAnsi="宋体" w:hint="eastAsia"/>
                <w:b/>
                <w:bCs/>
                <w:color w:val="FF0000"/>
              </w:rPr>
              <w:t>说明: 仅针对“固定试卷”类型客观题进行汇总统计,其中“平均分”、“最高分”、“最低分”均以客观题维度统计,主观题不包含在内。</w:t>
            </w:r>
          </w:p>
          <w:tbl>
            <w:tblPr>
              <w:tblStyle w:val="ab"/>
              <w:tblW w:w="8784" w:type="dxa"/>
              <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="1637"/>
              <w:gridCol w:w="1714"/>
              <w:gridCol w:w="2004"/>
              <w:gridCol w:w="1533"/>
              <w:gridCol w:w="1896"/>
            </w:tblGrid>
            <w:tr w:rsidR="00631ED5" w14:paraId="3F8ACC39" w14:textId="77777777">
              <w:trPr>
                <w:trHeight w:val="680"/>
              </w:trPr>
              <w:tc>
                <w:tcPr>
                  <w:tcW w:w="1681" w:type="dxa"/>
                </w:tcPr>
                <w:p w14:paraId="7E4EFBAE" w14:textId="3097D692" w:rsidR="00631ED5" w:rsidRDefault="002E38EF">
                  <w:pPr>
                    <w:spacing w:line="600" w:lineRule="auto"/>
                    <w:rPr>
                      <w:rFonts w:ascii="宋体" w:eastAsia="宋体" w:hAnsi="宋体"/>
                    </w:rPr>
                  </w:pPr>
                  <w:r>
                    <w:rPr>
                      <w:rFonts w:ascii="宋体" w:eastAsia="宋体" w:hAnsi="宋体" w:hint="eastAsia"/>
                    </w:rPr>
                    <w:t>考试人数:${analyse.itemChoiceA}</w:t>
                  </w:r>
                  <w:proofErr w:type="spellEnd"/>
                </w:p>
              </w:tc>
              <w:tc>
                <w:tcPr>
                  <w:tcW w:w="1858" w:type="dxa"/>
                </w:tcPr>
                <w:p w14:paraId="371A42F0" w14:textId="71F4A40A" w:rsidR="00631ED5" w:rsidRDefault="002E38EF">
                  <w:pPr>
                    <w:spacing w:line="600" w:lineRule="auto"/>
                    <w:rPr>
                      <w:rFonts w:ascii="宋体" w:eastAsia="宋体" w:hAnsi="宋体"/>
                    </w:rPr>
                  </w:pPr>
                  <w:r>
                    <w:rPr>
                      <w:rFonts w:ascii="宋体" w:eastAsia="宋体" w:hAnsi="宋体" w:hint="eastAsia"/>
                    </w:rPr>
                    <w:t>客观题总数:${kgtNum}题</w:t>
                  </w:r>
                </w:p>
              </w:tc>
              <w:tc>
                <w:tcPr>
                  <w:tcW w:w="2126" w:type="dxa"/>
                </w:tcPr>
                <w:p w14:paraId="0586CD6E" w14:textId="2082C84B" w:rsidR="00631ED5" w:rsidRDefault="002E38EF">
                  <w:pPr>
                    <w:spacing w:line="600" w:lineRule="auto"/>
                    <w:rPr>
                      <w:rFonts w:ascii="宋体" w:eastAsia="宋体" w:hAnsi="宋体"/>
                    </w:rPr>
                  </w:pPr>
                  <w:r>
                    <w:rPr>
                      <w:rFonts w:ascii="宋体" w:eastAsia="宋体" w:hAnsi="宋体" w:hint="eastAsia"/>
                    </w:rPr>
                    <w:t>客观题总分:${kgtScore}分</w:t>
                  </w:r>
                </w:p>
              </w:tc>
              <w:tc>
                <w:tcPr>
                  <w:tcW w:w="1560" w:type="dxa"/>
                </w:tcPr>
                <w:p w14:paraId="1F839914" w14:textId="27987AC4" w:rsidR="00631ED5" w:rsidRDefault="002E38EF">
                  <w:pPr>
                    <w:spacing w:line="600" w:lineRule="auto"/>
                    <w:rPr>
                      <w:rFonts w:ascii="宋体" w:eastAsia="宋体" w:hAnsi="宋体"/>
                    </w:rPr>
                  </w:pPr>
                  <w:r>
                    <w:rPr>
                      <w:rFonts w:ascii="宋体" w:eastAsia="宋体" w:hAnsi="宋体" w:hint="eastAsia"/>
                    </w:rPr>
                    <w:t>最高分:${analyse.itemChoiceC}分</w:t>
                  </w:r>
                </w:p>
              </w:tc>
              <w:tc>
                <w:tcPr>
                  <w:tcW w:w="1559" w:type="dxa"/>
                  <w:vMerge w:val="restart"/>
                </w:tcPr>
                <w:p w14:paraId="16945CE0" w14:textId="77777777" w:rsidR="00631ED5" w:rsidRDefault="002E38EF">
                  <w:pPr>
                    <w:spacing w:line="600" w:lineRule="auto"/>
                    <w:jc w:val="center"/>
                    <w:rPr>
                      <w:rFonts w:ascii="宋体" w:eastAsia="宋体" w:hAnsi="宋体"/>
                      <w:b/>
                      <w:bCs/>
                      <w:color w:val="FB6A19"/>
                      <w:sz w:val="24"/>
                      <w:szCs w:val="24"/>
                    </w:rPr>
                  </w:pPr>
                  <w:r>
                    <w:rPr>
                      <w:rFonts w:ascii="宋体" w:eastAsia="宋体" w:hAnsi="宋体" w:hint="eastAsia"/>
                      <w:b/>
                      <w:bCs/>
                      <w:color w:val="FB6A19"/>
                      <w:sz w:val="24"/>
                      <w:szCs w:val="24"/>
                    </w:rPr>
                    <w:t>平均分:${analyse.subtotal}分</w:t>
                  </w:r>
                </w:p>
              </w:tc>
            </w:tr>
            <w:tr w:rsidR="00631ED5" w14:paraId="073A35C7" w14:textId="77777777">
              <w:trPr>
                <w:trHeight w:val="889"/>
              </w:trPr>
              <w:tc>
                <w:tcPr>
                  <w:tcW w:w="1681" w:type="dxa"/>
                </w:tcPr>
                <w:p w14:paraId="4AC96B7E" w14:textId="0C8B9CEF" w:rsidR="00631ED5" w:rsidRDefault="002E38EF">
                  <w:pPr>
                    <w:spacing w:line="600" w:lineRule="auto"/>
                    <w:rPr>
                      <w:rFonts w:ascii="宋体" w:eastAsia="宋体" w:hAnsi="宋体"/>
                    </w:rPr>
                  </w:pPr>
                  <w:r>
                    <w:rPr>
                      <w:rFonts w:ascii="宋体" w:eastAsia="宋体" w:hAnsi="宋体" w:hint="eastAsia"/>
                      <w:color w:val="000000" w:themeColor="text1"/>
                    </w:rPr>
                    <w:t>考试人次:${analyse.itemChoiceB}</w:t>
                  </w:r>
                  <w:proofErr w:type="spellEnd"/>
                </w:p>
              </w:tc>
              <w:tc>
                <w:tcPr>
                  <w:tcW w:w="1858" w:type="dxa"/>
                </w:tcPr>
                <w:p w14:paraId="2C2D90E0" w14:textId="54DF1700" w:rsidR="00631ED5" w:rsidRDefault="002E38EF">
                  <w:pPr>
                    <w:spacing w:line="600" w:lineRule="auto"/>
                    <w:rPr>
                      <w:rFonts w:ascii="宋体" w:eastAsia="宋体" w:hAnsi="宋体"/>
                    </w:rPr>
                  </w:pPr>
                  <w:r>
                    <w:rPr>
                      <w:rFonts w:ascii="宋体" w:eastAsia="宋体" w:hAnsi="宋体" w:hint="eastAsia"/>
                    </w:rPr>
                    <w:t>主观题总数:${zgtNum}题</w:t>
                  </w:r>
                </w:p>
              </w:tc>
              <w:tc>
                <w:tcPr>
                  <w:tcW w:w="2126" w:type="dxa"/>
                </w:tcPr>
                <w:p w14:paraId="6B1B9B84" w14:textId="17C94700" w:rsidR="00631ED5" w:rsidRDefault="002E38EF">
                  <w:pPr>
                    <w:spacing w:line="600" w:lineRule="auto"/>
                    <w:rPr>
                      <w:rFonts w:ascii="宋体" w:eastAsia="宋体" w:hAnsi="宋体"/>
                    </w:rPr>
                  </w:pPr>
                  <w:r>
                    <w:rPr>
                      <w:rFonts w:ascii="宋体" w:eastAsia="宋体" w:hAnsi="宋体" w:hint="eastAsia"/>
                    </w:rPr>
                    <w:t>试题满分:${examPaper.totalScore}分</w:t>
                  </w:r>
                </w:p>
              </w:tc>
              <w:tc>
                <w:tcPr>
                  <w:tcW w:w="1560" w:type="dxa"/>
                </w:tcPr>
                <w:p w14:paraId="1D2A155C" w14:textId="339C5B2F" w:rsidR="00631ED5" w:rsidRDefault="002E38EF">
                  <w:pPr>
                    <w:spacing w:line="600" w:lineRule="auto"/>
                    <w:rPr>
                      <w:rFonts w:ascii="宋体" w:eastAsia="宋体" w:hAnsi="宋体"/>
                    </w:rPr>
                  </w:pPr>
                  <w:r>
                    <w:rPr>
                      <w:rFonts w:ascii="宋体" w:eastAsia="宋体" w:hAnsi="宋体" w:hint="eastAsia"/>
                    </w:rPr>
                    <w:t>最低分:${analyse.itemChoiceD}分</w:t>
                  </w:r>
                </w:p>
              </w:tc>
              <w:tc>
                <w:tcPr>
                  <w:tcW w:w="1559" w:type="dxa"/>
                  <w:vMerge/>
                </w:tcPr>
                <w:p w14:paraId="72822E61" w14:textId="77777777" w:rsidR="00631ED5" w:rsidRDefault="00631ED5">
                  <w:pPr>
                    <w:spacing w:line="600" w:lineRule="auto"/>
                    <w:rPr>
                      <w:rFonts w:ascii="宋体" w:eastAsia="宋体" w:hAnsi="宋体"/>
                    </w:rPr>
                  </w:pPr>
                </w:p>
              </w:tc>
            </w:tr>
          </w:tbl>
          <w:p w14:paraId="5F2DD48E" w14:textId="77777777" w:rsidR="00631ED5" w:rsidRDefault="00631ED5">
            <w:pPr>
              <w:rPr>
                <w:b/>
                <w:bCs/>
              </w:rPr>
            </w:pPr>
          </w:p>
          <w:p w14:paraId="7C402D70" w14:textId="77777777" w:rsidR="00631ED5" w:rsidRDefault="002E38EF">
            <w:pPr>
              <w:pStyle w:val="ad"/>
              <w:numPr>
                <w:ilvl w:val="0"/>
                <w:numId w:val="1"/>
              </w:numPr>
              <w:spacing w:line="600" w:lineRule="auto"/>
              <w:ind w:firstLineChars="0"/>
              <w:rPr>
                <w:rFonts w:ascii="宋体" w:eastAsia="宋体" w:hAnsi="宋体"/>
                <w:b/>
                <w:bCs/>
                <w:sz w:val="28"/>
                <w:szCs w:val="28"/>
              </w:rPr>
            </w:pPr>
            <w:r>
              <w:rPr>
                <w:rFonts w:ascii="宋体" w:eastAsia="宋体" w:hAnsi="宋体" w:hint="eastAsia"/>
                <w:b/>
                <w:bCs/>
                <w:sz w:val="28"/>
                <w:szCs w:val="28"/>
              </w:rPr>
              <w:t>各题统计</w:t>
            </w:r>
          </w:p>
          <w:p w14:paraId="451C2A6F" w14:textId="77777777" w:rsidR="00631ED5" w:rsidRDefault="002E38EF">
            <w:pPr>
              <w:rPr>
                <w:rFonts w:ascii="宋体" w:eastAsia="宋体" w:hAnsi="宋体"/>
                <w:b/>
                <w:bCs/>
                <w:color w:val="FF0000"/>
              </w:rPr>
            </w:pPr>
            <w:r>
              <w:rPr>
                <w:rFonts w:ascii="宋体" w:eastAsia="宋体" w:hAnsi="宋体" w:hint="eastAsia"/>
                <w:b/>
                <w:bCs/>
                <w:color w:val="FF0000"/>
              </w:rPr>
              <w:t>说明: 仅针对“固定试卷”类型客观题(客观题包含:单选题、多选题、判断题三种。)进行统计分析。</w:t>
            </w:r>
          </w:p>
          <w:p w14:paraId="6494AAD4" w14:textId="77777777" w:rsidR="00631ED5" w:rsidRDefault="002E38EF">
            <w:pPr>
              <w:pStyle w:val="ad"/>
              <w:numPr>
                <w:ilvl w:val="0"/>
                <w:numId w:val="2"/>
              </w:numPr>
              <w:ind w:firstLineChars="0"/>
              <w:rPr>
                <w:rFonts w:ascii="宋体" w:eastAsia="宋体" w:hAnsi="宋体"/>
                <w:b/>
                <w:bCs/>
                <w:color w:val="FF0000"/>
              </w:rPr>
            </w:pPr>
            <w:r>
              <w:rPr>
                <w:rFonts w:ascii="宋体" w:eastAsia="宋体" w:hAnsi="宋体" w:hint="eastAsia"/>
                <w:b/>
                <w:bCs/>
                <w:color w:val="FF0000"/>
              </w:rPr>
              <w:t>“小计”:截至当前统计时间,考生多次考试中最高分的那次,各选项被选择的累计次数。</w:t>
            </w:r>
          </w:p>
          <w:p w14:paraId="366A844C" w14:textId="77777777" w:rsidR="00631ED5" w:rsidRDefault="002E38EF">
            <w:pPr>
              <w:pStyle w:val="ad"/>
              <w:numPr>
                <w:ilvl w:val="0"/>
                <w:numId w:val="2"/>
              </w:numPr>
              <w:ind w:firstLineChars="0"/>
              <w:rPr>
                <w:rFonts w:ascii="宋体" w:eastAsia="宋体" w:hAnsi="宋体"/>
                <w:b/>
                <w:bCs/>
                <w:color w:val="FF0000"/>
              </w:rPr>
            </w:pPr>
            <w:r>
              <w:rPr>
                <w:rFonts w:ascii="宋体" w:eastAsia="宋体" w:hAnsi="宋体" w:hint="eastAsia"/>
                <w:b/>
                <w:bCs/>
                <w:color w:val="FF0000"/>
              </w:rPr>
              <w:t>“比例”:截至当前统计时间,考生多次考试中最高分的那次,各选项被累计选择的占比。</w:t>
            </w:r>
            <w:proofErr w:type="gramStart"/>
            <w:r>
              <w:rPr>
                <w:rFonts w:ascii="宋体" w:eastAsia="宋体" w:hAnsi="宋体" w:hint="eastAsia"/>
                <w:b/>
                <w:bCs/>
                <w:color w:val="FF0000"/>
              </w:rPr>
              <w:t>即比例</w:t>
            </w:r>
            <w:proofErr w:type="gramEnd"/>
            <w:r>
              <w:rPr>
                <w:rFonts w:ascii="宋体" w:eastAsia="宋体" w:hAnsi="宋体"/>
                <w:b/>
                <w:bCs/>
                <w:color w:val="FF0000"/>
              </w:rPr>
              <w:t>=小计/考试人数*100%。(保留一位小数)</w:t>
            </w:r>
          </w:p>
          <w:p w14:paraId="2F622610" w14:textId="77777777" w:rsidR="00631ED5" w:rsidRDefault="002E38EF">
            <w:pPr>
              <w:pStyle w:val="ad"/>
              <w:numPr>
                <w:ilvl w:val="0"/>
                <w:numId w:val="2"/>
              </w:numPr>
              <w:ind w:firstLineChars="0"/>
              <w:rPr>
                <w:rFonts w:ascii="宋体" w:eastAsia="宋体" w:hAnsi="宋体"/>
                <w:b/>
                <w:bCs/>
                <w:color w:val="FF0000"/>
              </w:rPr>
            </w:pPr>
            <w:r>
              <w:rPr>
                <w:rFonts w:ascii="宋体" w:eastAsia="宋体" w:hAnsi="宋体" w:hint="eastAsia"/>
                <w:b/>
                <w:bCs/>
                <w:color w:val="FF0000"/>
              </w:rPr>
              <w:t>“正确率”:截至当前统计时间,各题的正确率。正确率</w:t>
            </w:r>
            <w:r>
              <w:rPr>
                <w:rFonts w:ascii="宋体" w:eastAsia="宋体" w:hAnsi="宋体"/>
                <w:b/>
                <w:bCs/>
                <w:color w:val="FF0000"/>
              </w:rPr>
              <w:t>=答对人数/考试人数。(</w:t>
            </w:r>
            <w:proofErr w:type="gramStart"/>
            <w:r>
              <w:rPr>
                <w:rFonts w:ascii="宋体" w:eastAsia="宋体" w:hAnsi="宋体"/>
                <w:b/>
                <w:bCs/>
                <w:color w:val="FF0000"/>
              </w:rPr>
              <w:t>若学</w:t>
            </w:r>
            <w:proofErr w:type="gramEnd"/>
            <w:r>
              <w:rPr>
                <w:rFonts w:ascii="宋体" w:eastAsia="宋体" w:hAnsi="宋体"/>
                <w:b/>
                <w:bCs/>
                <w:color w:val="FF0000"/>
              </w:rPr>
              <w:t>员多次考试,其中一次答对便可算作已回答正确。)</w:t>
            </w:r>
          </w:p>

          <w:p w14:paraId="635AEE1B" w14:textId="77558B19" w:rsidR="00631ED5" w:rsidRDefault="002E38EF">
            <w:pPr>
              <w:rPr>
                <w:b/>
                <w:bCs/>
              </w:rPr>
            </w:pPr>
            <w:r>
              <w:rPr>
                <w:rFonts w:hint="eastAsia"/>
                <w:b/>
                <w:bCs/>
              </w:rPr>
              <w:t>单选题:</w:t>
            </w:r>
          </w:p>
		  
          <#list  itemListSignle as  signle >
            <#if signle.itemTitle??>
              <w:p w14:paraId="0751DC71" w14:textId="77777777" w:rsidR="00631ED5" w:rsidRDefault="002E38EF">
                <w:pPr>
                  <w:rPr>
                    <w:rFonts w:ascii="宋体" w:eastAsia="宋体" w:hAnsi="宋体"/>
                  </w:rPr>
                  <w:pStyle w:val="a5" />
                  <w:numPr>
                    <w:ilvl w:val="0" />
                    <w:numId w:val="5" />
                  </w:numPr>
                  <w:ind w:firstLineChars="0" />
                </w:pPr>
                <w:r>
                  <w:rPr>
                    <w:rFonts w:ascii="宋体" w:eastAsia="宋体" w:hAnsi="宋体"/>
                  </w:rPr>
                  <w:t xml:space="preserve">${signle.itemTitle}(分数:${signle.score}) </w:t>
                </w:r>
              </w:p>

              <w:p w14:paraId="6A8298B7" w14:textId="77777777" w:rsidR="00631ED5" w:rsidRDefault="00631ED5">
                <w:pPr>
                  <w:rPr>
                    <w:rFonts w:ascii="宋体" w:eastAsia="宋体" w:hAnsi="宋体"/>
                  </w:rPr>
                </w:pPr>
              </w:p>
              <w:tbl>
                <w:tblPr>
                  <w:tblStyle w:val="ab"/>
                  <w:tblW w:w="0" w:type="auto"/>
                  <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="5524"/>
                  <w:gridCol w:w="1701"/>
                  <w:gridCol w:w="1071"/>
                </w:tblGrid>
                <w:tr w:rsidR="00631ED5" w14:paraId="5E156618" w14:textId="77777777">
                  <w:trPr>
                    <w:trHeight w:val="624"/>
                  </w:trPr>
                  <w:tc>
                    <w:tcPr>
                      <w:tcW w:w="5524" w:type="dxa"/>
                    </w:tcPr>
                    <w:p w14:paraId="2F299121" w14:textId="77777777" w:rsidR="00631ED5" w:rsidRDefault="002E38EF">
                      <w:pPr>
                        <w:rPr>
                          <w:rFonts w:ascii="宋体" w:eastAsia="宋体" w:hAnsi="宋体"/>
                          <w:b/>
                          <w:bCs/>
                        </w:rPr>
                      </w:pPr>
                      <w:r>
                        <w:rPr>
                          <w:rFonts w:ascii="宋体" w:eastAsia="宋体" w:hAnsi="宋体" w:hint="eastAsia"/>
                          <w:b/>
                          <w:bCs/>
                        </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:tcPr>
                    <w:p w14:paraId="68B160FF" w14:textId="77777777" w:rsidR="00631ED5" w:rsidRDefault="002E38EF">
                      <w:pPr>
                        <w:rPr>
                          <w:rFonts w:ascii="宋体" w:eastAsia="宋体" w:hAnsi="宋体"/>
                          <w:b/>
                          <w:bCs/>
                        </w:rPr>
                      </w:pPr>
                      <w:r>
                        <w:rPr>
                          <w:rFonts w:ascii="宋体" w:eastAsia="宋体" w:hAnsi="宋体" w:hint="eastAsia"/>
                          <w:b/>
                          <w:bCs/>
                        </w:rPr>
                        <w:t>小计</w:t>
                      </w:r>
                    </w:p>
                  </w:tc>
                  <w:tc>
                    <w:tcPr>
                      <w:tcW w:w="1071" w:type="dxa"/>
                    </w:tcPr>
                    <w:p w14:paraId="77E317CF" w14:textId="77777777" w:rsidR="00631ED5" w:rsidRDefault="002E38EF">
                      <w:pPr>
                        <w:rPr>
                          <w:rFonts w:ascii="宋体" w:eastAsia="宋体" w:hAnsi="宋体"/>
                          <w:b/>
                          <w:bCs/>
                        </w:rPr>
                      </w:pPr>
                      <w:r>
                        <w:rPr>
                          <w:rFonts w:ascii="宋体" w:eastAsia="宋体" w:hAnsi="宋体" w:hint="eastAsia"/>
                          <w:b/>
                          <w:bCs/>
                        </w:rPr>
                        <w:t>比例</w:t>
                      </w:r>
                    </w:p>
                  </w:tc>
                </w:tr>

                <#if signle.itemA??>
                  <w:tr w:rsidR="00631ED5" w14:paraId="387D6067" w14:textId="77777777">
                    <w:trPr>
                      <w:trHeight w:val="624"/>
                    </w:trPr>
                    <w:tc>
                      <w:tcPr>
                        <w:tcW w:w="5524" w:type="dxa"/>
                      </w:tcPr>
                      <w:p w14:paraId="75FA9755" w14:textId="77777777" w:rsidR="00631ED5" w:rsidRDefault="002E38EF">
                        <w:pPr>
                          <w:rPr>
                            <w:rFonts w:ascii="宋体" w:eastAsia="宋体" w:hAnsi="宋体"/>
                          </w:rPr>
                        </w:pPr>
                        <w:r>
                          <w:rPr>
                            <w:rFonts w:ascii="宋体" w:eastAsia="宋体" w:hAnsi="宋体"/>
                          </w:rPr>
                          <w:t>A.${signle.itemA}</w:t>
                        </w:r>
                      </w:p>
                      <w:p w14:paraId="298C984F" w14:textId="77777777" w:rsidR="00631ED5" w:rsidRDefault="00631ED5">
                        <w:pPr>
                          <w:rPr>
                            <w:rFonts w:ascii="宋体" w:eastAsia="宋体" w:hAnsi="宋体"/>
                          </w:rPr>
                        </w:pPr>
                      </w:p>
                    </w:tc>
                    <w:tc>
                      <w:tcPr>
                        <w:tcW w:w="1701" w:type="dxa"/>
                      </w:tcPr>
                      <w:p w14:paraId="11BBCF11" w14:textId="77777777" w:rsidR="00631ED5" w:rsidRDefault="002E38EF">
                        <w:pPr>
                          <w:rPr>
                            <w:rFonts w:ascii="宋体" w:eastAsia="宋体" w:hAnsi="宋体"/>
                          </w:rPr>
                        </w:pPr>
                        <w:r>
                          <w:rPr>
                            <w:rFonts w:ascii="宋体" w:eastAsia="宋体" w:hAnsi="宋体" w:hint="eastAsia"/>
                          </w:rPr>
                          <w:t>
                              <#if signle.itemChoiceA??>${signle.itemChoiceA}<#else>0</#if>
                          </w:t>
                        </w:r>
                      </w:p>
                    </w:tc>
                    <w:tc>
                      <w:tcPr>
                        <w:tcW w:w="1071" w:type="dxa"/>
                      </w:tcPr>
                      <w:p w14:paraId="6D0373C6" w14:textId="77777777" w:rsidR="00631ED5" w:rsidRDefault="002E38EF">
                        <w:pPr>
                          <w:rPr>
                            <w:rFonts w:ascii="宋体" w:eastAsia="宋体" w:hAnsi="宋体"/>
                          </w:rPr>
                        </w:pPr>
                        <w:r>
                          <w:rPr>
                            <w:rFonts w:ascii="宋体" w:eastAsia="宋体" w:hAnsi="宋体"/>
                          </w:rPr>
                          <w:t>
                              <#if signle.rateA??>${signle.rateA}%<#else>0%</#if>
                          </w:t>
                        </w:r>
                      </w:p>
                    </w:tc>
                  </w:tr>
                </#if>

                <#if signle.itemB??>
                  <w:tr w:rsidR="00631ED5" w14:paraId="7FEC043D" w14:textId="77777777">
                    <w:trPr>
                      <w:trHeight w:val="548"/>
                    </w:trPr>
                    <w:tc>
                      <w:tcPr>
                        <w:tcW w:w="5524" w:type="dxa"/>
                      </w:tcPr>
                      <w:p w14:paraId="3CE8116E" w14:textId="77777777" w:rsidR="00631ED5" w:rsidRDefault="002E38EF">
                        <w:pPr>
                          <w:rPr>
                            <w:rFonts w:ascii="宋体" w:eastAsia="宋体" w:hAnsi="宋体"/>
                          </w:rPr>
                        </w:pPr>
                        <w:r>
                          <w:rPr>
                            <w:rFonts w:ascii="宋体" w:eastAsia="宋体" w:hAnsi="宋体"/>
                          </w:rPr>
                          <w:lastRenderedPageBreak/>
                          <w:t>B.${signle.itemB}</w:t>
                        </w:r>
                      </w:p>
                      <w:p w14:paraId="2DF183C7" w14:textId="77777777" w:rsidR="00631ED5" w:rsidRDefault="00631ED5">
                        <w:pPr>
                          <w:rPr>
                            <w:rFonts w:ascii="宋体" w:eastAsia="宋体" w:hAnsi="宋体"/>
                          </w:rPr>
                        </w:pPr>
                      </w:p>
                    </w:tc>
                    <w:tc>
                      <w:tcPr>
                        <w:tcW w:w="1701" w:type="dxa"/>
                      </w:tcPr>
                      <w:p w14:paraId="25592277" w14:textId="77777777" w:rsidR="00631ED5" w:rsidRDefault="002E38EF">
                        <w:pPr>
                          <w:rPr>
                            <w:rFonts w:ascii="宋体" w:eastAsia="宋体" w:hAnsi="宋体"/>
                          </w:rPr>
                        </w:pPr>
                        <w:r>
                          <w:rPr>
                            <w:rFonts w:ascii="宋体" w:eastAsia="宋体" w:hAnsi="宋体" w:hint="eastAsia"/>
                          </w:rPr>
                          <w:t>
                              <#if signle.itemChoiceB??>${signle.itemChoiceB}<#else>0</#if>
                          </w:t>
                        </w:r>
                      </w:p>
                    </w:tc>
                    <w:tc>
                      <w:tcPr>
                        <w:tcW w:w="1071" w:type="dxa"/>
                      </w:tcPr>
                      <w:p w14:paraId="678BF968" w14:textId="77777777" w:rsidR="00631ED5" w:rsidRDefault="002E38EF">
                        <w:pPr>
                          <w:rPr>
                            <w:rFonts w:ascii="宋体" w:eastAsia="宋体" w:hAnsi="宋体"/>
                          </w:rPr>
                        </w:pPr>
                        <w:r>
                          <w:rPr>
                            <w:rFonts w:ascii="宋体" w:eastAsia="宋体" w:hAnsi="宋体" w:hint="eastAsia"/>
                          </w:rPr>
                          <w:t>
                              <#if signle.rateB??>${signle.rateB}%<#else>0%</#if>
                          </w:t>
                        </w:r>
                      </w:p>
                    </w:tc>
                  </w:tr>
                </#if>

                  <#if signle.itemC??>
                <#if signle.itemC?trim? length gt 0>
                  <w:tr w:rsidR="00631ED5" w14:paraId="7FEC043D" w14:textId="77777777">
                    <w:trPr>
                      <w:trHeight w:val="548"/>
                    </w:trPr>
                    <w:tc>
                      <w:tcPr>
                        <w:tcW w:w="5524" w:type="dxa"/>
                      </w:tcPr>
                      <w:p w14:paraId="3CE8116E" w14:textId="77777777" w:rsidR="00631ED5" w:rsidRDefault="002E38EF">
                        <w:pPr>
                          <w:rPr>
                            <w:rFonts w:ascii="宋体" w:eastAsia="宋体" w:hAnsi="宋体"/>
                          </w:rPr>
                        </w:pPr>
                        <w:r>
                          <w:rPr>
                            <w:rFonts w:ascii="宋体" w:eastAsia="宋体" w:hAnsi="宋体"/>
                          </w:rPr>
                          <w:lastRenderedPageBreak/>
                          <w:t>C.${signle.itemC}</w:t>
                        </w:r>
                      </w:p>
                      <w:p w14:paraId="2DF183C7" w14:textId="77777777" w:rsidR="00631ED5" w:rsidRDefault="00631ED5">
                        <w:pPr>
                          <w:rPr>
                            <w:rFonts w:ascii="宋体" w:eastAsia="宋体" w:hAnsi="宋体"/>
                          </w:rPr>
                        </w:pPr>
                      </w:p>
                    </w:tc>
                    <w:tc>
                      <w:tcPr>
                        <w:tcW w:w="1701" w:type="dxa"/>
                      </w:tcPr>
                      <w:p w14:paraId="25592277" w14:textId="77777777" w:rsidR="00631ED5" w:rsidRDefault="002E38EF">
                        <w:pPr>
                          <w:rPr>
                            <w:rFonts w:ascii="宋体" w:eastAsia="宋体" w:hAnsi="宋体"/>
                          </w:rPr>
                        </w:pPr>
                        <w:r>
                          <w:rPr>
                            <w:rFonts w:ascii="宋体" w:eastAsia="宋体" w:hAnsi="宋体" w:hint="eastAsia"/>
                          </w:rPr>
                          <w:t>
                              <#if signle.itemChoiceC??>${signle.itemChoiceC}<#else>0</#if>
                          </w:t>
                        </w:r>
                      </w:p>
                    </w:tc>
                    <w:tc>
                      <w:tcPr>
                        <w:tcW w:w="1071" w:type="dxa"/>
                      </w:tcPr>
                      <w:p w14:paraId="678BF968" w14:textId="77777777" w:rsidR="00631ED5" w:rsidRDefault="002E38EF">
                        <w:pPr>
                          <w:rPr>
                            <w:rFonts w:ascii="宋体" w:eastAsia="宋体" w:hAnsi="宋体"/>
                          </w:rPr>
                        </w:pPr>
                        <w:r>
                          <w:rPr>
                            <w:rFonts w:ascii="宋体" w:eastAsia="宋体" w:hAnsi="宋体" w:hint="eastAsia"/>
                          </w:rPr>
                          <w:t>
                              <#if signle.rateC??>${signle.rateC}%<#else>0%</#if>
                          </w:t>
                        </w:r>
                      </w:p>
                    </w:tc>
                  </w:tr>
                </#if>
                </#if>
                  <#if signle.itemD??>
                <#if signle.itemD?trim? length gt 0>
                  <w:tr w:rsidR="00631ED5" w14:paraId="7FEC043D" w14:textId="77777777">
                    <w:trPr>
                      <w:trHeight w:val="548"/>
                    </w:trPr>
                    <w:tc>
                      <w:tcPr>
                        <w:tcW w:w="5524" w:type="dxa"/>
                      </w:tcPr>
                      <w:p w14:paraId="3CE8116E" w14:textId="77777777" w:rsidR="00631ED5" w:rsidRDefault="002E38EF">
                        <w:pPr>
                          <w:rPr>
                            <w:rFonts w:ascii="宋体" w:eastAsia="宋体" w:hAnsi="宋体"/>
                          </w:rPr>
                        </w:pPr>
                        <w:r>
                          <w:rPr>
                            <w:rFonts w:ascii="宋体" w:eastAsia="宋体" w:hAnsi="宋体"/>
                          </w:rPr>
                          <w:lastRenderedPageBreak/>
                          <w:t>D.${signle.itemD}</w:t>
                        </w:r>
                      </w:p>
                      <w:p w14:paraId="2DF183C7" w14:textId="77777777" w:rsidR="00631ED5" w:rsidRDefault="00631ED5">
                        <w:pPr>
                          <w:rPr>
                            <w:rFonts w:ascii="宋体" w:eastAsia="宋体" w:hAnsi="宋体"/>
                          </w:rPr>
                        </w:pPr>
                      </w:p>
                    </w:tc>
                    <w:tc>
                      <w:tcPr>
                        <w:tcW w:w="1701" w:type="dxa"/>
                      </w:tcPr>
                      <w:p w14:paraId="25592277" w14:textId="77777777" w:rsidR="00631ED5" w:rsidRDefault="002E38EF">
                        <w:pPr>
                          <w:rPr>
                            <w:rFonts w:ascii="宋体" w:eastAsia="宋体" w:hAnsi="宋体"/>
                          </w:rPr>
                        </w:pPr>
                        <w:r>
                          <w:rPr>
                            <w:rFonts w:ascii="宋体" w:eastAsia="宋体" w:hAnsi="宋体" w:hint="eastAsia"/>
                          </w:rPr>
                          <w:t>
                              <#if signle.itemChoiceD??>${signle.itemChoiceD}<#else>0</#if>
                          </w:t>
                        </w:r>
                      </w:p>
                    </w:tc>
                    <w:tc>
                      <w:tcPr>
                        <w:tcW w:w="1071" w:type="dxa"/>
                      </w:tcPr>
                      <w:p w14:paraId="678BF968" w14:textId="77777777" w:rsidR="00631ED5" w:rsidRDefault="002E38EF">
                        <w:pPr>
                          <w:rPr>
                            <w:rFonts w:ascii="宋体" w:eastAsia="宋体" w:hAnsi="宋体"/>
                          </w:rPr>
                        </w:pPr>
                        <w:r>
                          <w:rPr>
                            <w:rFonts w:ascii="宋体" w:eastAsia="宋体" w:hAnsi="宋体" w:hint="eastAsia"/>
                          </w:rPr>
                          <w:t>
                              <#if signle.rateD??>${signle.rateD}%<#else>0%</#if>
                          </w:t>
                        </w:r>
                      </w:p>
                    </w:tc>
                  </w:tr>
                </#if>
                </#if>

                  <#if signle.itemE??>
                <#if signle.itemE?trim? length gt 0>
                  <w:tr w:rsidR="00631ED5" w14:paraId="7FEC043D" w14:textId="77777777">
                    <w:trPr>
                      <w:trHeight w:val="548"/>
                    </w:trPr>
                    <w:tc>
                      <w:tcPr>
                        <w:tcW w:w="5524" w:type="dxa"/>
                      </w:tcPr>
                      <w:p w14:paraId="3CE8116E" w14:textId="77777777" w:rsidR="00631ED5" w:rsidRDefault="002E38EF">
                        <w:pPr>
                          <w:rPr>
                            <w:rFonts w:ascii="宋体" w:eastAsia="宋体" w:hAnsi="宋体"/>
                          </w:rPr>
                        </w:pPr>
                        <w:r>
                          <w:rPr>
                            <w:rFonts w:ascii="宋体" w:eastAsia="宋体" w:hAnsi="宋体"/>
                          </w:rPr>
                          <w:lastRenderedPageBreak/>
                          <w:t>E.${signle.itemE}</w:t>
                        </w:r>
                      </w:p>
                      <w:p w14:paraId="2DF183C7" w14:textId="77777777" w:rsidR="00631ED5" w:rsidRDefault="00631ED5">
                        <w:pPr>
                          <w:rPr>
                            <w:rFonts w:ascii="宋体" w:eastAsia="宋体" w:hAnsi="宋体"/>
                          </w:rPr>
                        </w:pPr>
                      </w:p>
                    </w:tc>
                    <w:tc>
                      <w:tcPr>
                        <w:tcW w:w="1701" w:type="dxa"/>
                      </w:tcPr>
                      <w:p w14:paraId="25592277" w14:textId="77777777" w:rsidR="00631ED5" w:rsidRDefault="002E38EF">
                        <w:pPr>
                          <w:rPr>
                            <w:rFonts w:ascii="宋体" w:eastAsia="宋体" w:hAnsi="宋体"/>
                          </w:rPr>
                        </w:pPr>
                        <w:r>
                          <w:rPr>
                            <w:rFonts w:ascii="宋体" w:eastAsia="宋体" w:hAnsi="宋体" w:hint="eastAsia"/>
                          </w:rPr>
                          <w:t>
                              <#if signle.itemChoiceE??>${signle.itemChoiceE}<#else>0</#if>
                          </w:t>
                        </w:r>
                      </w:p>
                    </w:tc>
                    <w:tc>
                      <w:tcPr>
                        <w:tcW w:w="1071" w:type="dxa"/>
                      </w:tcPr>
                      <w:p w14:paraId="678BF968" w14:textId="77777777" w:rsidR="00631ED5" w:rsidRDefault="002E38EF">
                        <w:pPr>
                          <w:rPr>
                            <w:rFonts w:ascii="宋体" w:eastAsia="宋体" w:hAnsi="宋体"/>
                          </w:rPr>
                        </w:pPr>
                        <w:r>
                          <w:rPr>
                            <w:rFonts w:ascii="宋体" w:eastAsia="宋体" w:hAnsi="宋体" w:hint="eastAsia"/>
                          </w:rPr>
                          <w:t>
                              <#if signle.rateE??>${signle.rateE}%<#else>0%</#if>
                              </w:t>
                        </w:r>
                      </w:p>
                    </w:tc>
                  </w:tr>
                </#if>
              </#if>

                  <#if signle.itemF??>
                <#if signle.itemF?trim? length gt 0>
                  <w:tr w:rsidR="00631ED5" w14:paraId="7FEC043D" w14:textId="77777777">
                    <w:trPr>
                      <w:trHeight w:val="548"/>
                    </w:trPr>
                    <w:tc>
                      <w:tcPr>
                        <w:tcW w:w="5524" w:type="dxa"/>
                      </w:tcPr>
                      <w:p w14:paraId="3CE8116E" w14:textId="77777777" w:rsidR="00631ED5" w:rsidRDefault="002E38EF">
                        <w:pPr>
                          <w:rPr>
                            <w:rFonts w:ascii="宋体" w:eastAsia="宋体" w:hAnsi="宋体"/>
                          </w:rPr>
                        </w:pPr>
                        <w:r>
                          <w:rPr>
                            <w:rFonts w:ascii="宋体" w:eastAsia="宋体" w:hAnsi="宋体"/>
                          </w:rPr>
                          <w:lastRenderedPageBreak/>
                          <w:t>F.${signle.itemF}</w:t>
                        </w:r>
                      </w:p>
                      <w:p w14:paraId="2DF183C7" w14:textId="77777777" w:rsidR="00631ED5" w:rsidRDefault="00631ED5">
                        <w:pPr>
                          <w:rPr>
                            <w:rFonts w:ascii="宋体" w:eastAsia="宋体" w:hAnsi="宋体"/>
                          </w:rPr>
                        </w:pPr>
                      </w:p>
                    </w:tc>
                    <w:tc>
                      <w:tcPr>
                        <w:tcW w:w="1701" w:type="dxa"/>
                      </w:tcPr>
                      <w:p w14:paraId="25592277" w14:textId="77777777" w:rsidR="00631ED5" w:rsidRDefault="002E38EF">
                        <w:pPr>
                          <w:rPr>
                            <w:rFonts w:ascii="宋体" w:eastAsia="宋体" w:hAnsi="宋体"/>
                          </w:rPr>
                        </w:pPr>
                        <w:r>
                          <w:rPr>
                            <w:rFonts w:ascii="宋体" w:eastAsia="宋体" w:hAnsi="宋体" w:hint="eastAsia"/>
                          </w:rPr>
                          <w:t>
                              <#if signle.itemChoiceF??>${signle.itemChoiceF}<#else>0</#if>
                          </w:t>
                        </w:r>
                      </w:p>
                    </w:tc>
                    <w:tc>
                      <w:tcPr>
                        <w:tcW w:w="1071" w:type="dxa"/>
                      </w:tcPr>
                      <w:p w14:paraId="678BF968" w14:textId="77777777" w:rsidR="00631ED5" w:rsidRDefault="002E38EF">
                        <w:pPr>
                          <w:rPr>
                            <w:rFonts w:ascii="宋体" w:eastAsia="宋体" w:hAnsi="宋体"/>
                          </w:rPr>
                        </w:pPr>
                        <w:r>
                          <w:rPr>
                            <w:rFonts w:ascii="宋体" w:eastAsia="宋体" w:hAnsi="宋体" w:hint="eastAsia"/>
                          </w:rPr>
                          <w:t>
                              <#if signle.rateF??>${signle.rateF}%<#else>0%</#if>
                          </w:t>
                        </w:r>
                      </w:p>
                    </w:tc>
                  </w:tr>
                </#if>
                  </#if>

                <w:tr w:rsidR="00631ED5" w14:paraId="6387FE92" w14:textId="77777777">
                  <w:trPr>
                    <w:trHeight w:val="421"/>
                  </w:trPr>
                  <w:tc>
                    <w:tcPr>
                      <w:tcW w:w="8296" w:type="dxa"/>
                      <w:gridSpan w:val="3"/>
                    </w:tcPr>
                    <w:p w14:paraId="1C6B82DC" w14:textId="77777777" w:rsidR="00631ED5" w:rsidRDefault="002E38EF">
                      <w:pPr>
                        <w:rPr>
                          <w:rFonts w:ascii="宋体" w:eastAsia="宋体" w:hAnsi="宋体"/>
                        </w:rPr>
                      </w:pPr>
                      <w:r>
                        <w:rPr>
                          <w:rFonts w:ascii="宋体" w:eastAsia="宋体" w:hAnsi="宋体" w:hint="eastAsia"/>
                        </w:rPr>
                        <w:t>正确率:<#if signle.subtotal??>${signle.subtotal}<#else>0.0</#if>%</w:t>
                      </w:r>
                    </w:p>
                  </w:tc>
                </w:tr>
              </w:tbl>
            </#if>
          </#list>



          <w:p w14:paraId="275D2877" w14:textId="77777777" w:rsidR="00631ED5" w:rsidRDefault="00631ED5">
            <w:pPr>
              <w:rPr>
                <w:rFonts w:ascii="宋体" w:eastAsia="宋体" w:hAnsi="宋体"/>
              </w:rPr>
            </w:pPr>
          </w:p>
          <w:p w14:paraId="3BE62623" w14:textId="77777777" w:rsidR="00631ED5" w:rsidRDefault="002E38EF">
            <w:pPr>
              <w:rPr>
                <w:b/>
                <w:bCs/>
              </w:rPr>
            </w:pPr>
            <w:r>
              <w:rPr>
                <w:rFonts w:hint="eastAsia"/>
                <w:b/>
                <w:bCs/>
              </w:rPr>
              <w:t>判断题</w:t>
            </w:r>
          </w:p>

            <#list  itemListJudge as  judge >
                <#if judge.itemTitle??>
              <w:p w14:paraId="0751DC71" w14:textId="77777777" w:rsidR="00631ED5" w:rsidRDefault="002E38EF">
                <w:pPr>
                  <w:rPr>
                    <w:rFonts w:ascii="宋体" w:eastAsia="宋体" w:hAnsi="宋体"/>
                  </w:rPr>

                    <w:pStyle w:val="a5" />
                    <w:numPr>
                        <w:ilvl w:val="0" />
                        <w:numId w:val="5" />
                    </w:numPr>
                    <w:ind w:firstLineChars="0" />
                </w:pPr>
                <w:r>
                  <w:rPr>
                    <w:rFonts w:ascii="宋体" w:eastAsia="宋体" w:hAnsi="宋体"/>
                  </w:rPr>
                  <w:t xml:space="preserve">${judge.itemTitle}(分数:${judge.score}) </w:t>
                </w:r>
              </w:p>

              <w:p w14:paraId="6A8298B7" w14:textId="77777777" w:rsidR="00631ED5" w:rsidRDefault="00631ED5">
                <w:pPr>
                  <w:rPr>
                    <w:rFonts w:ascii="宋体" w:eastAsia="宋体" w:hAnsi="宋体"/>
                  </w:rPr>
                </w:pPr>
              </w:p>
              <w:tbl>
                <w:tblPr>
                  <w:tblStyle w:val="ab"/>
                  <w:tblW w:w="0" w:type="auto"/>
                  <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="5524"/>
                  <w:gridCol w:w="1701"/>
                  <w:gridCol w:w="1071"/>
                </w:tblGrid>
                <w:tr w:rsidR="00631ED5" w14:paraId="5E156618" w14:textId="77777777">
                  <w:trPr>
                    <w:trHeight w:val="624"/>
                  </w:trPr>
                  <w:tc>
                    <w:tcPr>
                      <w:tcW w:w="5524" w:type="dxa"/>
                    </w:tcPr>
                    <w:p w14:paraId="2F299121" w14:textId="77777777" w:rsidR="00631ED5" w:rsidRDefault="002E38EF">
                      <w:pPr>
                        <w:rPr>
                          <w:rFonts w:ascii="宋体" w:eastAsia="宋体" w:hAnsi="宋体"/>
                          <w:b/>
                          <w:bCs/>
                        </w:rPr>
                      </w:pPr>
                      <w:r>
                        <w:rPr>
                          <w:rFonts w:ascii="宋体" w:eastAsia="宋体" w:hAnsi="宋体" w:hint="eastAsia"/>
                          <w:b/>
                          <w:bCs/>
                        </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:tcPr>
                    <w:p w14:paraId="68B160FF" w14:textId="77777777" w:rsidR="00631ED5" w:rsidRDefault="002E38EF">
                      <w:pPr>
                        <w:rPr>
                          <w:rFonts w:ascii="宋体" w:eastAsia="宋体" w:hAnsi="宋体"/>
                          <w:b/>
                          <w:bCs/>
                        </w:rPr>
                      </w:pPr>
                      <w:r>
                        <w:rPr>
                          <w:rFonts w:ascii="宋体" w:eastAsia="宋体" w:hAnsi="宋体" w:hint="eastAsia"/>
                          <w:b/>
                          <w:bCs/>
                        </w:rPr>
                        <w:t>小计</w:t>
                      </w:r>
                    </w:p>
                  </w:tc>
                  <w:tc>
                    <w:tcPr>
                      <w:tcW w:w="1071" w:type="dxa"/>
                    </w:tcPr>
                    <w:p w14:paraId="77E317CF" w14:textId="77777777" w:rsidR="00631ED5" w:rsidRDefault="002E38EF">
                      <w:pPr>
                        <w:rPr>
                          <w:rFonts w:ascii="宋体" w:eastAsia="宋体" w:hAnsi="宋体"/>
                          <w:b/>
                          <w:bCs/>
                        </w:rPr>
                      </w:pPr>
                      <w:r>
                        <w:rPr>
                          <w:rFonts w:ascii="宋体" w:eastAsia="宋体" w:hAnsi="宋体" w:hint="eastAsia"/>
                          <w:b/>
                          <w:bCs/>
                        </w:rPr>
                        <w:t>比例</w:t>
                      </w:r>
                    </w:p>
                  </w:tc>
                </w:tr>

                <w:tr w:rsidR="00631ED5" w14:paraId="387D6067" w14:textId="77777777">
                  <w:trPr>
                    <w:trHeight w:val="624"/>
                  </w:trPr>
                  <w:tc>
                    <w:tcPr>
                      <w:tcW w:w="5524" w:type="dxa"/>
                    </w:tcPr>
                    <w:p w14:paraId="75FA9755" w14:textId="77777777" w:rsidR="00631ED5" w:rsidRDefault="002E38EF">
                      <w:pPr>
                        <w:rPr>
                          <w:rFonts w:ascii="宋体" w:eastAsia="宋体" w:hAnsi="宋体"/>
                        </w:rPr>
                      </w:pPr>
                      <w:r>
                        <w:rPr>
                          <w:rFonts w:ascii="宋体" w:eastAsia="宋体" w:hAnsi="宋体"/>
                        </w:rPr>
                        <w:t>A.${judge.itemA}</w:t>
                      </w:r>
                    </w:p>
                    <w:p w14:paraId="298C984F" w14:textId="77777777" w:rsidR="00631ED5" w:rsidRDefault="00631ED5">
                      <w:pPr>
                        <w:rPr>
                          <w:rFonts w:ascii="宋体" w:eastAsia="宋体" w:hAnsi="宋体"/>
                        </w:rPr>
                      </w:pPr>
                    </w:p>
                  </w:tc>
                  <w:tc>
                    <w:tcPr>
                      <w:tcW w:w="1701" w:type="dxa"/>
                    </w:tcPr>
                    <w:p w14:paraId="11BBCF11" w14:textId="77777777" w:rsidR="00631ED5" w:rsidRDefault="002E38EF">
                      <w:pPr>
                        <w:rPr>
                          <w:rFonts w:ascii="宋体" w:eastAsia="宋体" w:hAnsi="宋体"/>
                        </w:rPr>
                      </w:pPr>
                      <w:r>
                        <w:rPr>
                          <w:rFonts w:ascii="宋体" w:eastAsia="宋体" w:hAnsi="宋体" w:hint="eastAsia"/>
                        </w:rPr>
                        <w:t>
                            <#if judge.itemChoiceA??>${judge.itemChoiceA}<#else>0</#if>
                        </w:t>
                      </w:r>
                    </w:p>
                  </w:tc>
                  <w:tc>
                    <w:tcPr>
                      <w:tcW w:w="1071" w:type="dxa"/>
                    </w:tcPr>
                    <w:p w14:paraId="6D0373C6" w14:textId="77777777" w:rsidR="00631ED5" w:rsidRDefault="002E38EF">
                      <w:pPr>
                        <w:rPr>
                          <w:rFonts w:ascii="宋体" w:eastAsia="宋体" w:hAnsi="宋体"/>
                        </w:rPr>
                      </w:pPr>
                      <w:r>
                        <w:rPr>
                          <w:rFonts w:ascii="宋体" w:eastAsia="宋体" w:hAnsi="宋体"/>
                        </w:rPr>
                        <w:t>
                            <#if judge.rateA??>${judge.rateA}%<#else>0%</#if>
                        </w:t>
                      </w:r>
                    </w:p>
                  </w:tc>
                </w:tr>

                <w:tr w:rsidR="00631ED5" w14:paraId="7FEC043D" w14:textId="77777777">
                  <w:trPr>
                    <w:trHeight w:val="548"/>
                  </w:trPr>
                  <w:tc>
                    <w:tcPr>
                      <w:tcW w:w="5524" w:type="dxa"/>
                    </w:tcPr>
                    <w:p w14:paraId="3CE8116E" w14:textId="77777777" w:rsidR="00631ED5" w:rsidRDefault="002E38EF">
                      <w:pPr>
                        <w:rPr>
                          <w:rFonts w:ascii="宋体" w:eastAsia="宋体" w:hAnsi="宋体"/>
                        </w:rPr>
                      </w:pPr>
                      <w:r>
                        <w:rPr>
                          <w:rFonts w:ascii="宋体" w:eastAsia="宋体" w:hAnsi="宋体"/>
                        </w:rPr>
                        <w:lastRenderedPageBreak/>
                        <w:t>B.${judge.itemB}</w:t>
                      </w:r>
                    </w:p>
                    <w:p w14:paraId="2DF183C7" w14:textId="77777777" w:rsidR="00631ED5" w:rsidRDefault="00631ED5">
                      <w:pPr>
                        <w:rPr>
                          <w:rFonts w:ascii="宋体" w:eastAsia="宋体" w:hAnsi="宋体"/>
                        </w:rPr>
                      </w:pPr>
                    </w:p>
                  </w:tc>
                  <w:tc>
                    <w:tcPr>
                      <w:tcW w:w="1701" w:type="dxa"/>
                    </w:tcPr>
                    <w:p w14:paraId="25592277" w14:textId="77777777" w:rsidR="00631ED5" w:rsidRDefault="002E38EF">
                      <w:pPr>
                        <w:rPr>
                          <w:rFonts w:ascii="宋体" w:eastAsia="宋体" w:hAnsi="宋体"/>
                        </w:rPr>
                      </w:pPr>
                      <w:r>
                        <w:rPr>
                          <w:rFonts w:ascii="宋体" w:eastAsia="宋体" w:hAnsi="宋体" w:hint="eastAsia"/>
                        </w:rPr>
                        <w:t>
                            <#if judge.itemChoiceB??>${judge.itemChoiceB}<#else>0</#if>
                        </w:t>
                      </w:r>
                    </w:p>
                  </w:tc>
                  <w:tc>
                    <w:tcPr>
                      <w:tcW w:w="1071" w:type="dxa"/>
                    </w:tcPr>
                    <w:p w14:paraId="678BF968" w14:textId="77777777" w:rsidR="00631ED5" w:rsidRDefault="002E38EF">
                      <w:pPr>
                        <w:rPr>
                          <w:rFonts w:ascii="宋体" w:eastAsia="宋体" w:hAnsi="宋体"/>
                        </w:rPr>
                      </w:pPr>
                      <w:r>
                        <w:rPr>
                          <w:rFonts w:ascii="宋体" w:eastAsia="宋体" w:hAnsi="宋体" w:hint="eastAsia"/>
                        </w:rPr>
                        <w:t>
                            <#if judge.rateB??>${judge.rateB}%<#else>0%</#if>
                        </w:t>
                      </w:r>
                    </w:p>
                  </w:tc>
                </w:tr>

                <w:tr w:rsidR="00631ED5" w14:paraId="6387FE92" w14:textId="77777777">
                  <w:trPr>
                    <w:trHeight w:val="421"/>
                  </w:trPr>
                  <w:tc>
                    <w:tcPr>
                      <w:tcW w:w="8296" w:type="dxa"/>
                      <w:gridSpan w:val="3"/>
                    </w:tcPr>
                    <w:p w14:paraId="1C6B82DC" w14:textId="77777777" w:rsidR="00631ED5" w:rsidRDefault="002E38EF">
                      <w:pPr>
                        <w:rPr>
                          <w:rFonts w:ascii="宋体" w:eastAsia="宋体" w:hAnsi="宋体"/>
                        </w:rPr>
                      </w:pPr>
                      <w:r>
                        <w:rPr>
                          <w:rFonts w:ascii="宋体" w:eastAsia="宋体" w:hAnsi="宋体" w:hint="eastAsia"/>
                        </w:rPr>
                        <w:t>正确率:<#if judge.subtotal??>${judge.subtotal}<#else>0.0</#if>%</w:t>
                      </w:r>
                    </w:p>
                  </w:tc>
                </w:tr>
              </w:tbl>
            </#if>
		  </#list>

          <w:p w14:paraId="733E2045" w14:textId="77777777" w:rsidR="00631ED5" w:rsidRDefault="00631ED5">
            <w:pPr>
              <w:rPr>
                <w:rFonts w:ascii="宋体" w:eastAsia="宋体" w:hAnsi="宋体"/>
              </w:rPr>
            </w:pPr>
          </w:p>
          <w:p w14:paraId="3168F339" w14:textId="77777777" w:rsidR="00631ED5" w:rsidRDefault="002E38EF">
            <w:pPr>
              <w:rPr>
                <w:b/>
                <w:bCs/>
              </w:rPr>
            </w:pPr>
            <w:r>
              <w:rPr>
                <w:rFonts w:hint="eastAsia"/>
                <w:b/>
                <w:bCs/>
              </w:rPr>
              <w:t>多选题</w:t>
            </w:r>
          </w:p>

        <#list itemListMulti as multi>
            <#if multi.itemTitle??>
              <w:p w14:paraId="2247AACD" w14:textId="77777777" w:rsidR="00631ED5" w:rsidRDefault="002E38EF">
                <w:pPr>
                  <w:rPr>
                    <w:rFonts w:ascii="宋体" w:eastAsia="宋体" w:hAnsi="宋体"/>
                  </w:rPr>

                    <w:pStyle w:val="a5" />
                    <w:numPr>
                        <w:ilvl w:val="0" />
                        <w:numId w:val="5" />
                    </w:numPr>
                    <w:ind w:firstLineChars="0" />
                </w:pPr>
                <w:r>
                  <w:rPr>
                    <w:rFonts w:ascii="宋体" w:eastAsia="宋体" w:hAnsi="宋体"/>
                  </w:rPr>
                  <w:t xml:space="preserve">${multi.itemTitle}(分数:${multi.score}) </w:t>
                </w:r>
              </w:p>

              <w:p w14:paraId="0CD9F88E" w14:textId="77777777" w:rsidR="00631ED5" w:rsidRDefault="00631ED5">
                <w:pPr>
                  <w:rPr>
                    <w:rFonts w:ascii="宋体" w:eastAsia="宋体" w:hAnsi="宋体"/>
                  </w:rPr>
                </w:pPr>
              </w:p>

              <w:tbl>
                <w:tblPr>
                  <w:tblStyle w:val="ab"/>
                  <w:tblW w:w="0" w:type="auto"/>
                  <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="5524"/>
                  <w:gridCol w:w="1701"/>
                  <w:gridCol w:w="1071"/>
                </w:tblGrid>
                <w:tr w:rsidR="00631ED5" w14:paraId="46663B48" w14:textId="77777777">
                  <w:trPr>
                    <w:trHeight w:val="624"/>
                  </w:trPr>
                  <w:tc>
                    <w:tcPr>
                      <w:tcW w:w="5524" w:type="dxa"/>
                    </w:tcPr>
                    <w:p w14:paraId="21210760" w14:textId="77777777" w:rsidR="00631ED5" w:rsidRDefault="002E38EF">
                      <w:pPr>
                        <w:rPr>
                          <w:rFonts w:ascii="宋体" w:eastAsia="宋体" w:hAnsi="宋体"/>
                          <w:b/>
                          <w:bCs/>
                        </w:rPr>
                      </w:pPr>
                      <w:r>
                        <w:rPr>
                          <w:rFonts w:ascii="宋体" w:eastAsia="宋体" w:hAnsi="宋体" w:hint="eastAsia"/>
                          <w:b/>
                          <w:bCs/>
                        </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:tcPr>
                    <w:p w14:paraId="0B24B2AA" w14:textId="77777777" w:rsidR="00631ED5" w:rsidRDefault="002E38EF">
                      <w:pPr>
                        <w:rPr>
                          <w:rFonts w:ascii="宋体" w:eastAsia="宋体" w:hAnsi="宋体"/>
                          <w:b/>
                          <w:bCs/>
                        </w:rPr>
                      </w:pPr>
                      <w:r>
                        <w:rPr>
                          <w:rFonts w:ascii="宋体" w:eastAsia="宋体" w:hAnsi="宋体" w:hint="eastAsia"/>
                          <w:b/>
                          <w:bCs/>
                        </w:rPr>
                        <w:t>小计</w:t>
                      </w:r>
                    </w:p>
                  </w:tc>
                  <w:tc>
                    <w:tcPr>
                      <w:tcW w:w="1071" w:type="dxa"/>
                    </w:tcPr>
                    <w:p w14:paraId="19E6CD7F" w14:textId="77777777" w:rsidR="00631ED5" w:rsidRDefault="002E38EF">
                      <w:pPr>
                        <w:rPr>
                          <w:rFonts w:ascii="宋体" w:eastAsia="宋体" w:hAnsi="宋体"/>
                          <w:b/>
                          <w:bCs/>
                        </w:rPr>
                      </w:pPr>
                      <w:r>
                        <w:rPr>
                          <w:rFonts w:ascii="宋体" w:eastAsia="宋体" w:hAnsi="宋体" w:hint="eastAsia"/>
                          <w:b/>
                          <w:bCs/>
                        </w:rPr>
                        <w:t>比例</w:t>
                      </w:r>
                    </w:p>
                  </w:tc>
                </w:tr>

                  <#if multi.itemA??>
                      <w:tr w:rsidR="00631ED5" w14:paraId="6499D7C7" w14:textId="77777777">
                          <w:trPr>
                              <w:trHeight w:val="556"/>
                          </w:trPr>
                          <w:tc>
                          <w:tcPr>
                              <w:tcW w:w="5524" w:type="dxa"/>
                          </w:tcPr>
                          <w:p w14:paraId="5991D7C7" w14:textId="77777777" w:rsidR="00631ED5" w:rsidRDefault="002E38EF">
                          <w:pPr>
                            <w:rPr>
                              <w:rFonts w:ascii="宋体" w:eastAsia="宋体" w:hAnsi="宋体"/>
                            </w:rPr>
                          </w:pPr>
                          <w:r>
                            <w:rPr>
                              <w:rFonts w:ascii="宋体" w:eastAsia="宋体" w:hAnsi="宋体"/>
                            </w:rPr>
                            <w:t>A.${multi.itemA}</w:t>
                          </w:r>
                        </w:p>
                      </w:tc>
                      <w:tc>
                        <w:tcPr>
                          <w:tcW w:w="1701" w:type="dxa"/>
                        </w:tcPr>
                        <w:p w14:paraId="3989956A" w14:textId="77777777" w:rsidR="00631ED5" w:rsidRDefault="002E38EF">
                          <w:pPr>
                            <w:rPr>
                              <w:rFonts w:ascii="宋体" w:eastAsia="宋体" w:hAnsi="宋体"/>
                              <w:sz w:val="18"/>
                              <w:szCs w:val="20"/>
                            </w:rPr>
                          </w:pPr>
                          <w:r>
                            <w:rPr>
                              <w:rFonts w:ascii="宋体" w:eastAsia="宋体" w:hAnsi="宋体"/>
                              <w:sz w:val="18"/>
                              <w:szCs w:val="20"/>
                            </w:rPr>
                            <w:t>
                                <#if multi.itemChoiceA??>${multi.itemChoiceA}<#else>0</#if>
                            </w:t>
                          </w:r>
                        </w:p>
                      </w:tc>
                      <w:tc>
                        <w:tcPr>
                          <w:tcW w:w="1071" w:type="dxa"/>
                        </w:tcPr>
                        <w:p w14:paraId="6E35CCB6" w14:textId="77777777" w:rsidR="00631ED5" w:rsidRDefault="002E38EF">
                          <w:pPr>
                            <w:rPr>
                              <w:rFonts w:ascii="宋体" w:eastAsia="宋体" w:hAnsi="宋体"/>
                              <w:sz w:val="18"/>
                              <w:szCs w:val="20"/>
                            </w:rPr>
                          </w:pPr>
                          <w:r>
                            <w:rPr>
                              <w:rFonts w:ascii="宋体" w:eastAsia="宋体" w:hAnsi="宋体" w:hint="eastAsia"/>
                              <w:sz w:val="18"/>
                              <w:szCs w:val="20"/>
                            </w:rPr>
                            <w:t>
                                <#if multi.rateA??>${multi.rateA}%<#else>0%</#if>
                            </w:t>
                          </w:r>
                        </w:p>
                      </w:tc>
                    </w:tr>
                  </#if>
                  <#if multi.itemB??>
                      <w:tr w:rsidR="00631ED5" w14:paraId="6499D7C7" w14:textId="77777777">
                          <w:trPr>
                              <w:trHeight w:val="556"/>
                          </w:trPr>
                          <w:tc>
                          <w:tcPr>
                              <w:tcW w:w="5524" w:type="dxa"/>
                          </w:tcPr>
                          <w:p w14:paraId="5991D7C7" w14:textId="77777777" w:rsidR="00631ED5" w:rsidRDefault="002E38EF">
                          <w:pPr>
                            <w:rPr>
                              <w:rFonts w:ascii="宋体" w:eastAsia="宋体" w:hAnsi="宋体"/>
                            </w:rPr>
                          </w:pPr>
                          <w:r>
                            <w:rPr>
                              <w:rFonts w:ascii="宋体" w:eastAsia="宋体" w:hAnsi="宋体"/>
                            </w:rPr>
                            <w:t>B.${multi.itemB}</w:t>
                          </w:r>
                        </w:p>
                        <w:p w14:paraId="52558953" w14:textId="77777777" w:rsidR="00631ED5" w:rsidRDefault="00631ED5">
                          <w:pPr>
                            <w:rPr>
                              <w:rFonts w:ascii="宋体" w:eastAsia="宋体" w:hAnsi="宋体"/>
                            </w:rPr>
                          </w:pPr>
                        </w:p>
                      </w:tc>
                      <w:tc>
                        <w:tcPr>
                          <w:tcW w:w="1701" w:type="dxa"/>
                        </w:tcPr>
                        <w:p w14:paraId="36820F71" w14:textId="77777777" w:rsidR="00631ED5" w:rsidRDefault="002E38EF">
                          <w:pPr>
                            <w:rPr>
                              <w:rFonts w:ascii="宋体" w:eastAsia="宋体" w:hAnsi="宋体"/>
                            </w:rPr>
                          </w:pPr>
                          <w:r>
                            <w:rPr>
                              <w:rFonts w:ascii="宋体" w:eastAsia="宋体" w:hAnsi="宋体"/>
                            </w:rPr>
                            <w:t>
                                <#if multi.itemChoiceB??>${multi.itemChoiceB}<#else>0</#if>
                            </w:t>
                          </w:r>
                        </w:p>
                      </w:tc>
                      <w:tc>
                        <w:tcPr>
                          <w:tcW w:w="1071" w:type="dxa"/>
                        </w:tcPr>
                        <w:p w14:paraId="3697372C" w14:textId="77777777" w:rsidR="00631ED5" w:rsidRDefault="002E38EF">
                          <w:pPr>
                            <w:rPr>
                              <w:rFonts w:ascii="宋体" w:eastAsia="宋体" w:hAnsi="宋体"/>
                            </w:rPr>
                          </w:pPr>
                          <w:r>
                            <w:rPr>
                              <w:rFonts w:ascii="宋体" w:eastAsia="宋体" w:hAnsi="宋体" w:hint="eastAsia"/>
                              <w:sz w:val="18"/>
                              <w:szCs w:val="20"/>
                            </w:rPr>
                            <w:t>
                                <#if multi.rateB??>${multi.rateB}%<#else>0%</#if>
                            </w:t>
                          </w:r>
                        </w:p>
                      </w:tc>
                    </w:tr>
                  </#if>

                  <#if multi.itemC??>
                  <#if multi.itemC?trim? length gt 0>
                    <w:tr w:rsidR="00631ED5" w14:paraId="6499D7C7" w14:textId="77777777">
                      <w:trPr>
                        <w:trHeight w:val="556"/>
                      </w:trPr>
                      <w:tc>
                        <w:tcPr>
                          <w:tcW w:w="5524" w:type="dxa"/>
                        </w:tcPr>
                        <w:p w14:paraId="5991D7C7" w14:textId="77777777" w:rsidR="00631ED5" w:rsidRDefault="002E38EF">
                          <w:pPr>
                            <w:rPr>
                              <w:rFonts w:ascii="宋体" w:eastAsia="宋体" w:hAnsi="宋体"/>
                            </w:rPr>
                          </w:pPr>
                          <w:r>
                            <w:rPr>
                              <w:rFonts w:ascii="宋体" w:eastAsia="宋体" w:hAnsi="宋体"/>
                            </w:rPr>
                            <w:t>C.${multi.itemC}</w:t>
                          </w:r>
                        </w:p>
                        <w:p w14:paraId="4B0FCA47" w14:textId="77777777" w:rsidR="00631ED5" w:rsidRDefault="00631ED5">
                          <w:pPr>
                            <w:rPr>
                              <w:rFonts w:ascii="宋体" w:eastAsia="宋体" w:hAnsi="宋体"/>
                            </w:rPr>
                          </w:pPr>
                        </w:p>
                      </w:tc>
                      <w:tc>
                        <w:tcPr>
                          <w:tcW w:w="1701" w:type="dxa"/>
                        </w:tcPr>
                        <w:p w14:paraId="37CFEF98" w14:textId="77777777" w:rsidR="00631ED5" w:rsidRDefault="002E38EF">
                          <w:pPr>
                            <w:rPr>
                              <w:rFonts w:ascii="宋体" w:eastAsia="宋体" w:hAnsi="宋体"/>
                            </w:rPr>
                          </w:pPr>
                          <w:r>
                            <w:rPr>
                              <w:rFonts w:ascii="宋体" w:eastAsia="宋体" w:hAnsi="宋体"/>
                            </w:rPr>
                            <w:t>
                                <#if multi.itemChoiceC??>${multi.itemChoiceC}<#else>0</#if>
                            </w:t>
                          </w:r>
                        </w:p>
                      </w:tc>
                      <w:tc>
                        <w:tcPr>
                          <w:tcW w:w="1071" w:type="dxa"/>
                        </w:tcPr>
                        <w:p w14:paraId="3F275FFA" w14:textId="77777777" w:rsidR="00631ED5" w:rsidRDefault="002E38EF">
                          <w:pPr>
                            <w:rPr>
                              <w:rFonts w:ascii="宋体" w:eastAsia="宋体" w:hAnsi="宋体"/>
                            </w:rPr>
                          </w:pPr>
                          <w:r>
                            <w:rPr>
                              <w:rFonts w:ascii="宋体" w:eastAsia="宋体" w:hAnsi="宋体" w:hint="eastAsia"/>
                              <w:sz w:val="18"/>
                              <w:szCs w:val="20"/>
                            </w:rPr>
                            <w:t>
                                <#if multi.rateC??>${multi.rateC}%<#else>0%</#if>
                            </w:t>
                          </w:r>
                        </w:p>
                      </w:tc>
                    </w:tr>
                </#if>
                  </#if>
                  <#if multi.itemD??>
                <#if multi.itemD?trim? length gt 0>
                    <w:tr w:rsidR="00631ED5" w14:paraId="4B0B6451" w14:textId="77777777">
                      <w:trPr>
                        <w:trHeight w:val="630"/>
                      </w:trPr>
                      <w:tc>
                        <w:tcPr>
                          <w:tcW w:w="5524" w:type="dxa"/>
                        </w:tcPr>
                        <w:p w14:paraId="7CF7E4F3" w14:textId="77777777" w:rsidR="00631ED5" w:rsidRDefault="002E38EF">
                          <w:pPr>
                            <w:rPr>
                              <w:rFonts w:ascii="宋体" w:eastAsia="宋体" w:hAnsi="宋体"/>
                            </w:rPr>
                          </w:pPr>
                          <w:r>
                            <w:rPr>
                              <w:rFonts w:ascii="宋体" w:eastAsia="宋体" w:hAnsi="宋体"/>
                            </w:rPr>
                            <w:t>D.${multi.itemD}</w:t>
                          </w:r>
                        </w:p>
                        <w:p w14:paraId="4D17418D" w14:textId="77777777" w:rsidR="00631ED5" w:rsidRDefault="00631ED5">
                          <w:pPr>
                            <w:rPr>
                              <w:rFonts w:ascii="宋体" w:eastAsia="宋体" w:hAnsi="宋体"/>
                            </w:rPr>
                          </w:pPr>
                        </w:p>
                      </w:tc>
                      <w:tc>
                        <w:tcPr>
                          <w:tcW w:w="1701" w:type="dxa"/>
                        </w:tcPr>
                        <w:p w14:paraId="103AA10E" w14:textId="77777777" w:rsidR="00631ED5" w:rsidRDefault="002E38EF">
                          <w:pPr>
                            <w:rPr>
                              <w:rFonts w:ascii="宋体" w:eastAsia="宋体" w:hAnsi="宋体"/>
                            </w:rPr>
                          </w:pPr>
                          <w:r>
                            <w:rPr>
                              <w:rFonts w:ascii="宋体" w:eastAsia="宋体" w:hAnsi="宋体" w:hint="eastAsia"/>
                            </w:rPr>
                            <w:t>
                                <#if multi.itemChoiceD??>${multi.itemChoiceD}<#else>0</#if>
                            </w:t>
                          </w:r>
                        </w:p>
                      </w:tc>
                      <w:tc>
                        <w:tcPr>
                          <w:tcW w:w="1071" w:type="dxa"/>
                        </w:tcPr>
                        <w:p w14:paraId="34415FF7" w14:textId="77777777" w:rsidR="00631ED5" w:rsidRDefault="002E38EF">
                          <w:pPr>
                            <w:rPr>
                              <w:rFonts w:ascii="宋体" w:eastAsia="宋体" w:hAnsi="宋体"/>
                            </w:rPr>
                          </w:pPr>
                          <w:r>
                            <w:rPr>
                              <w:rFonts w:ascii="宋体" w:eastAsia="宋体" w:hAnsi="宋体" w:hint="eastAsia"/>
                            </w:rPr>
                            <w:t>
                                <#if multi.rateD??>${multi.rateD}%<#else>0%</#if>
                            </w:t>
                          </w:r>
                        </w:p>
                      </w:tc>
                    </w:tr>
                  </#if>
                </#if>
                  <#if multi.itemE??>
                  <#if multi.itemE?trim? length gt 0>
                      <w:tr w:rsidR="00631ED5" w14:paraId="4B0B6451" w14:textId="77777777">
                          <w:trPr>
                              <w:trHeight w:val="630"/>
                          </w:trPr>
                          <w:tc>
                              <w:tcPr>
                                  <w:tcW w:w="5524" w:type="dxa"/>
                              </w:tcPr>
                              <w:p w14:paraId="7CF7E4F3" w14:textId="77777777" w:rsidR="00631ED5" w:rsidRDefault="002E38EF">
                                  <w:pPr>
                                      <w:rPr>
                                          <w:rFonts w:ascii="宋体" w:eastAsia="宋体" w:hAnsi="宋体"/>
                                      </w:rPr>
                                  </w:pPr>
                                  <w:r>
                                      <w:rPr>
                                          <w:rFonts w:ascii="宋体" w:eastAsia="宋体" w:hAnsi="宋体"/>
                                      </w:rPr>
                                      <w:t>E.${multi.itemE}</w:t>
                                  </w:r>
                              </w:p>
                              <w:p w14:paraId="4D17418D" w14:textId="77777777" w:rsidR="00631ED5" w:rsidRDefault="00631ED5">
                                  <w:pPr>
                                      <w:rPr>
                                          <w:rFonts w:ascii="宋体" w:eastAsia="宋体" w:hAnsi="宋体"/>
                                      </w:rPr>
                                  </w:pPr>
                              </w:p>
                          </w:tc>
                          <w:tc>
                              <w:tcPr>
                                  <w:tcW w:w="1701" w:type="dxa"/>
                              </w:tcPr>
                              <w:p w14:paraId="103AA10E" w14:textId="77777777" w:rsidR="00631ED5" w:rsidRDefault="002E38EF">
                                  <w:pPr>
                                      <w:rPr>
                                          <w:rFonts w:ascii="宋体" w:eastAsia="宋体" w:hAnsi="宋体"/>
                                      </w:rPr>
                                  </w:pPr>
                                  <w:r>
                                      <w:rPr>
                                          <w:rFonts w:ascii="宋体" w:eastAsia="宋体" w:hAnsi="宋体" w:hint="eastAsia"/>
                                      </w:rPr>
                                      <w:t>
                                          <#if multi.itemChoiceE??>${multi.itemChoiceE}<#else>0</#if>
                                      </w:t>
                                  </w:r>
                              </w:p>
                          </w:tc>
                          <w:tc>
                              <w:tcPr>
                                  <w:tcW w:w="1071" w:type="dxa"/>
                              </w:tcPr>
                              <w:p w14:paraId="34415FF7" w14:textId="77777777" w:rsidR="00631ED5" w:rsidRDefault="002E38EF">
                                  <w:pPr>
                                      <w:rPr>
                                          <w:rFonts w:ascii="宋体" w:eastAsia="宋体" w:hAnsi="宋体"/>
                                      </w:rPr>
                                  </w:pPr>
                                  <w:r>
                                      <w:rPr>
                                          <w:rFonts w:ascii="宋体" w:eastAsia="宋体" w:hAnsi="宋体" w:hint="eastAsia"/>
                                      </w:rPr>
                                      <w:t>
                                          <#if multi.rateE??>${multi.rateE}%<#else>0%</#if>
                                      </w:t>
                                  </w:r>
                              </w:p>
                          </w:tc>
                      </w:tr>
                  </#if>
                  </#if>
                  <#if multi.itemF??>
                  <#if multi.itemF?trim? length gt 0>
                      <w:tr w:rsidR="00631ED5" w14:paraId="4B0B6451" w14:textId="77777777">
                          <w:trPr>
                              <w:trHeight w:val="630"/>
                          </w:trPr>
                          <w:tc>
                              <w:tcPr>
                                  <w:tcW w:w="5524" w:type="dxa"/>
                              </w:tcPr>
                              <w:p w14:paraId="7CF7E4F3" w14:textId="77777777" w:rsidR="00631ED5" w:rsidRDefault="002E38EF">
                                  <w:pPr>
                                      <w:rPr>
                                          <w:rFonts w:ascii="宋体" w:eastAsia="宋体" w:hAnsi="宋体"/>
                                      </w:rPr>
                                  </w:pPr>
                                  <w:r>
                                      <w:rPr>
                                          <w:rFonts w:ascii="宋体" w:eastAsia="宋体" w:hAnsi="宋体"/>
                                      </w:rPr>
                                      <w:t>F.${multi.itemF}</w:t>
                                  </w:r>
                              </w:p>
                              <w:p w14:paraId="4D17418D" w14:textId="77777777" w:rsidR="00631ED5" w:rsidRDefault="00631ED5">
                                  <w:pPr>
                                      <w:rPr>
                                          <w:rFonts w:ascii="宋体" w:eastAsia="宋体" w:hAnsi="宋体"/>
                                      </w:rPr>
                                  </w:pPr>
                              </w:p>
                          </w:tc>
                          <w:tc>
                              <w:tcPr>
                                  <w:tcW w:w="1701" w:type="dxa"/>
                              </w:tcPr>
                              <w:p w14:paraId="103AA10E" w14:textId="77777777" w:rsidR="00631ED5" w:rsidRDefault="002E38EF">
                                  <w:pPr>
                                      <w:rPr>
                                          <w:rFonts w:ascii="宋体" w:eastAsia="宋体" w:hAnsi="宋体"/>
                                      </w:rPr>
                                  </w:pPr>
                                  <w:r>
                                      <w:rPr>
                                          <w:rFonts w:ascii="宋体" w:eastAsia="宋体" w:hAnsi="宋体" w:hint="eastAsia"/>
                                      </w:rPr>
                                      <w:t>
                                          <#if multi.itemChoiceF??>${multi.itemChoiceF}<#else>0</#if>
                                      </w:t>
                                  </w:r>
                              </w:p>
                          </w:tc>
                          <w:tc>
                              <w:tcPr>
                                  <w:tcW w:w="1071" w:type="dxa"/>
                              </w:tcPr>
                              <w:p w14:paraId="34415FF7" w14:textId="77777777" w:rsidR="00631ED5" w:rsidRDefault="002E38EF">
                                  <w:pPr>
                                      <w:rPr>
                                          <w:rFonts w:ascii="宋体" w:eastAsia="宋体" w:hAnsi="宋体"/>
                                      </w:rPr>
                                  </w:pPr>
                                  <w:r>
                                      <w:rPr>
                                          <w:rFonts w:ascii="宋体" w:eastAsia="宋体" w:hAnsi="宋体" w:hint="eastAsia"/>
                                      </w:rPr>
                                      <w:t>
                                          <#if multi.rateF??>${multi.rateF}%<#else>0%</#if>
                                      </w:t>
                                  </w:r>
                              </w:p>
                          </w:tc>
                      </w:tr>
                  </#if>
                  </#if>

                <w:tr w:rsidR="00631ED5" w14:paraId="18BDD80B" w14:textId="77777777">
                  <w:trPr>
                    <w:trHeight w:val="421"/>
                  </w:trPr>
                  <w:tc>
                    <w:tcPr>
                      <w:tcW w:w="8296" w:type="dxa"/>
                      <w:gridSpan w:val="3"/>
                    </w:tcPr>
                    <w:p w14:paraId="0F144C3F" w14:textId="77777777" w:rsidR="00631ED5" w:rsidRDefault="002E38EF">
                      <w:pPr>
                        <w:rPr>
                          <w:rFonts w:ascii="宋体" w:eastAsia="宋体" w:hAnsi="宋体"/>
                        </w:rPr>
                      </w:pPr>
                      <w:r>
                        <w:rPr>
                          <w:rFonts w:ascii="宋体" w:eastAsia="宋体" w:hAnsi="宋体" w:hint="eastAsia"/>
                        </w:rPr>
                        <w:t>正确率:<#if multi.subtotal??>${multi.subtotal}<#else>0.0</#if>%
                        </w:t>
                      </w:r>
                    </w:p>
                  </w:tc>
                </w:tr>
              </w:tbl>
            </#if>
        </#list>
          <w:p w14:paraId="4615D897" w14:textId="77777777" w:rsidR="00631ED5" w:rsidRDefault="00631ED5"/>
          <w:sectPr w:rsidR="00631ED5">
            <w:pgSz w:w="11906" w:h="16838"/>
            <w:pgMar w:top="1440" w:right="1800" w:bottom="1440" w:left="1800" 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/styles" Target="styles.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/numbering" Target="numbering.xml"/>
        <Relationship Id="rId1" Type="http://schemas.openxmlformats.org/officeDocument/2006/relationships/customXml" Target="../customXml/item1.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/webSettings" Target="webSettings.xml"/>
        <Relationship Id="rId4" Type="http://schemas.openxmlformats.org/officeDocument/2006/relationships/settings" Target="settings.xml"/>
      </Relationships>
    </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="4472C4"/>
            </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="5B9BD5"/>
            </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"/>
              <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="等线"/>
              <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: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:w="http://schemas.openxmlformats.org/wordprocessingml/2006/main" 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: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="100"/>
        <w:bordersDoNotSurroundHeader/>
        <w:bordersDoNotSurroundFooter/>
        <w:proofState w:spelling="clean" w:grammar="clean"/>
        <w:defaultTabStop w:val="420"/>
        <w:drawingGridVerticalSpacing w:val="156"/>
        <w:displayHorizontalDrawingGridEvery w:val="0"/>
        <w:displayVerticalDrawingGridEvery w:val="2"/>
        <w:characterSpacingControl w:val="compressPunctuation"/>
        <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="001147AC"/>
          <w:rsid w:val="00000F45"/>
          <w:rsid w:val="00021F1A"/>
          <w:rsid w:val="00033D59"/>
          <w:rsid w:val="000C3C7C"/>
          <w:rsid w:val="001147AC"/>
          <w:rsid w:val="00164A31"/>
          <w:rsid w:val="00183AD1"/>
          <w:rsid w:val="001A102A"/>
          <w:rsid w:val="001B1C5E"/>
          <w:rsid w:val="001B2F27"/>
          <w:rsid w:val="001B4F49"/>
          <w:rsid w:val="001D125F"/>
          <w:rsid w:val="001E542C"/>
          <w:rsid w:val="00205F64"/>
          <w:rsid w:val="00236736"/>
          <w:rsid w:val="00241E20"/>
          <w:rsid w:val="00270230"/>
          <w:rsid w:val="00270CC7"/>
          <w:rsid w:val="002814F9"/>
          <w:rsid w:val="002B2CD5"/>
          <w:rsid w:val="002C06F9"/>
          <w:rsid w:val="002D27C6"/>
          <w:rsid w:val="002E38EF"/>
          <w:rsid w:val="0031058D"/>
          <w:rsid w:val="003D7834"/>
          <w:rsid w:val="0041531C"/>
          <w:rsid w:val="00446360"/>
          <w:rsid w:val="00477FDE"/>
          <w:rsid w:val="004818FD"/>
          <w:rsid w:val="0048204C"/>
          <w:rsid w:val="00495060"/>
          <w:rsid w:val="004D7356"/>
          <w:rsid w:val="00536223"/>
          <w:rsid w:val="0054373A"/>
          <w:rsid w:val="00570669"/>
          <w:rsid w:val="005C7FD9"/>
          <w:rsid w:val="005D16D9"/>
          <w:rsid w:val="005F3E71"/>
          <w:rsid w:val="00631ED5"/>
          <w:rsid w:val="006550BE"/>
          <w:rsid w:val="00676521"/>
          <w:rsid w:val="007319F6"/>
          <w:rsid w:val="00736EC6"/>
          <w:rsid w:val="0079536D"/>
          <w:rsid w:val="007D0B9D"/>
          <w:rsid w:val="007D689C"/>
          <w:rsid w:val="007D6E8C"/>
          <w:rsid w:val="00810DC0"/>
          <w:rsid w:val="008116F1"/>
          <w:rsid w:val="00814E46"/>
          <w:rsid w:val="008442AF"/>
          <w:rsid w:val="00871484"/>
          <w:rsid w:val="00891E7A"/>
          <w:rsid w:val="009143A2"/>
          <w:rsid w:val="009973EF"/>
          <w:rsid w:val="009D2F01"/>
          <w:rsid w:val="009D4105"/>
          <w:rsid w:val="00A0253A"/>
          <w:rsid w:val="00A1179E"/>
          <w:rsid w:val="00A31322"/>
          <w:rsid w:val="00A44FE7"/>
          <w:rsid w:val="00A76E5E"/>
          <w:rsid w:val="00A77EAE"/>
          <w:rsid w:val="00A77EBF"/>
          <w:rsid w:val="00A83AE7"/>
          <w:rsid w:val="00AA78B7"/>
          <w:rsid w:val="00AB6E5C"/>
          <w:rsid w:val="00AD42E0"/>
          <w:rsid w:val="00AE0D47"/>
          <w:rsid w:val="00AF19AB"/>
          <w:rsid w:val="00B02015"/>
          <w:rsid w:val="00B17194"/>
          <w:rsid w:val="00B270DC"/>
          <w:rsid w:val="00B51BAB"/>
          <w:rsid w:val="00B928E8"/>
          <w:rsid w:val="00B94519"/>
          <w:rsid w:val="00BE247A"/>
          <w:rsid w:val="00BF4BF0"/>
          <w:rsid w:val="00C20C79"/>
          <w:rsid w:val="00C25335"/>
          <w:rsid w:val="00C55CD7"/>
          <w:rsid w:val="00C56E58"/>
          <w:rsid w:val="00C760B3"/>
          <w:rsid w:val="00C95727"/>
          <w:rsid w:val="00CB1CFD"/>
          <w:rsid w:val="00CB497A"/>
          <w:rsid w:val="00CC07CB"/>
          <w:rsid w:val="00CD10B5"/>
          <w:rsid w:val="00CD7618"/>
          <w:rsid w:val="00CE199D"/>
          <w:rsid w:val="00CE38BD"/>
          <w:rsid w:val="00D3320E"/>
          <w:rsid w:val="00D4652B"/>
          <w:rsid w:val="00D8148D"/>
          <w:rsid w:val="00DC233D"/>
          <w:rsid w:val="00DF4457"/>
          <w:rsid w:val="00E1201B"/>
          <w:rsid w:val="00E22188"/>
          <w:rsid w:val="00E3370B"/>
          <w:rsid w:val="00E40C56"/>
          <w:rsid w:val="00E57596"/>
          <w:rsid w:val="00E97022"/>
          <w:rsid w:val="00EC684B"/>
          <w:rsid w:val="00EF1841"/>
          <w:rsid w:val="00F11983"/>
          <w:rsid w:val="00F13EF0"/>
          <w:rsid w:val="00F21CF5"/>
          <w:rsid w:val="00F3132F"/>
          <w:rsid w:val="00F40B5B"/>
          <w:rsid w:val="00F50B5E"/>
          <w:rsid w:val="00F57603"/>
          <w:rsid w:val="00F60BC9"/>
          <w:rsid w:val="00F94A5D"/>
          <w:rsid w:val="00FC0F05"/>
          <w:rsid w:val="00FF3D47"/>
          <w:rsid w:val="11887607"/>
        </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="1026"/>
          <o:shapelayout v:ext="edit">
            <o:idmap v:ext="edit" data="1"/>
          </o:shapelayout>
        </w:shapeDefaults>
        <w:decimalSymbol w:val="."/>
        <w:listSeparator w:val=","/>
        <w14:docId w14:val="0B04A57F"/>
        <w15:docId w15:val="{7090A8B2-C53E-4F34-BC9A-07F21B512519}"/>
      </w:settings>
    </pkg:xmlData>
  </pkg:part>
  <pkg:part pkg:name="/customXml/item1.xml" pkg:contentType="application/xml" pkg:padding="32">
    <pkg:xmlData>
      <s:customData xmlns:s="http://www.wps.cn/officeDocument/2013/wpsCustomData" xmlns="http://www.wps.cn/officeDocument/2013/wpsCustomData">
        <customSectProps>
          <customSectPr/>
        </customSectProps>
      </s:customData>
    </pkg:xmlData>
  </pkg:part>
  <pkg:part pkg:name="/customXml/itemProps1.xml" pkg:contentType="application/vnd.openxmlformats-officedocument.customXmlProperties+xml" pkg:padding="32">
    <pkg:xmlData pkg:originalXmlStandalone="no">
      <ds:datastoreItem xmlns:ds="http://schemas.openxmlformats.org/officeDocument/2006/customXml" ds:itemID="{B1977F7D-205B-4081-913C-38D41E755F92}">
        <ds:schemaRefs>
          <ds:schemaRef ds:uri="http://www.wps.cn/officeDocument/2013/wpsCustomData"/>
        </ds:schemaRefs>
      </ds:datastoreItem>
    </pkg:xmlData>
  </pkg:part>
  <pkg:part pkg:name="/word/numbering.xml" pkg:contentType="application/vnd.openxmlformats-officedocument.wordprocessingml.numbering+xml">
    <pkg:xmlData>
      <w:numbering xmlns:w="http://schemas.openxmlformats.org/wordprocessingml/2006/main" 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: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: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:abstractNum w:abstractNumId="0" w15:restartNumberingAfterBreak="0">
          <w:nsid w:val="4A7F3ABD"/>
          <w:multiLevelType w:val="multilevel"/>
          <w:tmpl w:val="4A7F3ABD"/>
          <w:lvl w:ilvl="0">
            <w:start w:val="1"/>
            <w:numFmt w:val="japaneseCounting"/>
            <w:lvlText w:val="%1、"/>
            <w:lvlJc w:val="left"/>
            <w:pPr>
              <w:ind w:left="432" w:hanging="432"/>
            </w:pPr>
            <w:rPr>
              <w:rFonts w:hint="default"/>
            </w:rPr>
          </w:lvl>
          <w:lvl w:ilvl="1">
            <w:start w:val="1"/>
            <w:numFmt w:val="lowerLetter"/>
            <w:lvlText w:val="%2)"/>
            <w:lvlJc w:val="left"/>
            <w:pPr>
              <w:ind w:left="840" w:hanging="420"/>
            </w:pPr>
          </w:lvl>
          <w:lvl w:ilvl="2">
            <w:start w:val="1"/>
            <w:numFmt w:val="lowerRoman"/>
            <w:lvlText w:val="%3."/>
            <w:lvlJc w:val="right"/>
            <w:pPr>
              <w:ind w:left="1260" w:hanging="420"/>
            </w:pPr>
          </w:lvl>
          <w:lvl w:ilvl="3">
            <w:start w:val="1"/>
            <w:numFmt w:val="decimal"/>
            <w:lvlText w:val="%4."/>
            <w:lvlJc w:val="left"/>
            <w:pPr>
              <w:ind w:left="1680" w:hanging="420"/>
            </w:pPr>
          </w:lvl>
          <w:lvl w:ilvl="4">
            <w:start w:val="1"/>
            <w:numFmt w:val="lowerLetter"/>
            <w:lvlText w:val="%5)"/>
            <w:lvlJc w:val="left"/>
            <w:pPr>
              <w:ind w:left="2100" w:hanging="420"/>
            </w:pPr>
          </w:lvl>
          <w:lvl w:ilvl="5">
            <w:start w:val="1"/>
            <w:numFmt w:val="lowerRoman"/>
            <w:lvlText w:val="%6."/>
            <w:lvlJc w:val="right"/>
            <w:pPr>
              <w:ind w:left="2520" w:hanging="420"/>
            </w:pPr>
          </w:lvl>
          <w:lvl w:ilvl="6">
            <w:start w:val="1"/>
            <w:numFmt w:val="decimal"/>
            <w:lvlText w:val="%7."/>
            <w:lvlJc w:val="left"/>
            <w:pPr>
              <w:ind w:left="2940" w:hanging="420"/>
            </w:pPr>
          </w:lvl>
          <w:lvl w:ilvl="7">
            <w:start w:val="1"/>
            <w:numFmt w:val="lowerLetter"/>
            <w:lvlText w:val="%8)"/>
            <w:lvlJc w:val="left"/>
            <w:pPr>
              <w:ind w:left="3360" w:hanging="420"/>
            </w:pPr>
          </w:lvl>
          <w:lvl w:ilvl="8">
            <w:start w:val="1"/>
            <w:numFmt w:val="lowerRoman"/>
            <w:lvlText w:val="%9."/>
            <w:lvlJc w:val="right"/>
            <w:pPr>
              <w:ind w:left="3780" w:hanging="420"/>
            </w:pPr>
          </w:lvl>
        </w:abstractNum>
        <w:abstractNum w:abstractNumId="1" w15:restartNumberingAfterBreak="0">
          <w:nsid w:val="568D2FF3"/>
          <w:multiLevelType w:val="multilevel"/>
          <w:tmpl w:val="568D2FF3"/>
          <w:lvl w:ilvl="0">
            <w:start w:val="1"/>
            <w:numFmt w:val="decimal"/>
            <w:lvlText w:val="(%1)"/>
            <w:lvlJc w:val="left"/>
            <w:pPr>
              <w:ind w:left="720" w:hanging="720"/>
            </w:pPr>
            <w:rPr>
              <w:rFonts w:hint="default"/>
            </w:rPr>
          </w:lvl>
          <w:lvl w:ilvl="1">
            <w:start w:val="1"/>
            <w:numFmt w:val="lowerLetter"/>
            <w:lvlText w:val="%2)"/>
            <w:lvlJc w:val="left"/>
            <w:pPr>
              <w:ind w:left="840" w:hanging="420"/>
            </w:pPr>
          </w:lvl>
          <w:lvl w:ilvl="2">
            <w:start w:val="1"/>
            <w:numFmt w:val="lowerRoman"/>
            <w:lvlText w:val="%3."/>
            <w:lvlJc w:val="right"/>
            <w:pPr>
              <w:ind w:left="1260" w:hanging="420"/>
            </w:pPr>
          </w:lvl>
          <w:lvl w:ilvl="3">
            <w:start w:val="1"/>
            <w:numFmt w:val="decimal"/>
            <w:lvlText w:val="%4."/>
            <w:lvlJc w:val="left"/>
            <w:pPr>
              <w:ind w:left="1680" w:hanging="420"/>
            </w:pPr>
          </w:lvl>
          <w:lvl w:ilvl="4">
            <w:start w:val="1"/>
            <w:numFmt w:val="lowerLetter"/>
            <w:lvlText w:val="%5)"/>
            <w:lvlJc w:val="left"/>
            <w:pPr>
              <w:ind w:left="2100" w:hanging="420"/>
            </w:pPr>
          </w:lvl>
          <w:lvl w:ilvl="5">
            <w:start w:val="1"/>
            <w:numFmt w:val="lowerRoman"/>
            <w:lvlText w:val="%6."/>
            <w:lvlJc w:val="right"/>
            <w:pPr>
              <w:ind w:left="2520" w:hanging="420"/>
            </w:pPr>
          </w:lvl>
          <w:lvl w:ilvl="6">
            <w:start w:val="1"/>
            <w:numFmt w:val="decimal"/>
            <w:lvlText w:val="%7."/>
            <w:lvlJc w:val="left"/>
            <w:pPr>
              <w:ind w:left="2940" w:hanging="420"/>
            </w:pPr>
          </w:lvl>
          <w:lvl w:ilvl="7">
            <w:start w:val="1"/>
            <w:numFmt w:val="lowerLetter"/>
            <w:lvlText w:val="%8)"/>
            <w:lvlJc w:val="left"/>
            <w:pPr>
              <w:ind w:left="3360" w:hanging="420"/>
            </w:pPr>
          </w:lvl>
          <w:lvl w:ilvl="8">
            <w:start w:val="1"/>
            <w:numFmt w:val="lowerRoman"/>
            <w:lvlText w:val="%9."/>
            <w:lvlJc w:val="right"/>
            <w:pPr>
              <w:ind w:left="3780" w:hanging="420"/>
            </w:pPr>
          </w:lvl>
        </w:abstractNum>
        <w:num w:numId="1">
          <w:abstractNumId w:val="0"/>
        </w:num>
        <w:num w:numId="2">
          <w:abstractNumId w:val="1"/>
        </w:num>
      </w:numbering>
    </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:w="http://schemas.openxmlformats.org/wordprocessingml/2006/main" xmlns:mc="http://schemas.openxmlformats.org/markup-compatibility/2006" xmlns:r="http://schemas.openxmlformats.org/officeDocument/2006/relationships" 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: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:qFormat="1"/>
          <w:lsdException w:name="header" w:unhideWhenUsed="1" w:qFormat="1"/>
          <w:lsdException w:name="footer" w:unhideWhenUsed="1" w:qFormat="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:qFormat="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:qFormat="1"/>
          <w:lsdException w:name="annotation subject" w:semiHidden="1" w:unhideWhenUsed="1" w:qFormat="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:qFormat="1"/>
          <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="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="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:rPr>
            <w:kern w:val="2"/>
            <w:sz w:val="21"/>
            <w:szCs w:val="22"/>
          </w:rPr>
        </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="annotation text"/>
          <w:basedOn w:val="a"/>
          <w:link w:val="a4"/>
          <w:uiPriority w:val="99"/>
          <w:semiHidden/>
          <w:unhideWhenUsed/>
          <w:qFormat/>
          <w:pPr>
            <w:jc w:val="left"/>
          </w:pPr>
        </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:qFormat/>
          <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="paragraph" w:styleId="a7">
          <w:name w:val="header"/>
          <w:basedOn w:val="a"/>
          <w:link w:val="a8"/>
          <w:uiPriority w:val="99"/>
          <w:unhideWhenUsed/>
          <w:qFormat/>
          <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="paragraph" w:styleId="a9">
          <w:name w:val="annotation subject"/>
          <w:basedOn w:val="a3"/>
          <w:next w:val="a3"/>
          <w:link w:val="aa"/>
          <w:uiPriority w:val="99"/>
          <w:semiHidden/>
          <w:unhideWhenUsed/>
          <w:qFormat/>
          <w:rPr>
            <w:b/>
            <w:bCs/>
          </w:rPr>
        </w:style>
        <w:style w:type="table" w:styleId="ab">
          <w:name w:val="Table Grid"/>
          <w:basedOn w:val="a1"/>
          <w:uiPriority w:val="39"/>
          <w:qFormat/>
          <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:style w:type="character" w:styleId="ac">
          <w:name w:val="annotation reference"/>
          <w:basedOn w:val="a0"/>
          <w:uiPriority w:val="99"/>
          <w:semiHidden/>
          <w:unhideWhenUsed/>
          <w:qFormat/>
          <w:rPr>
            <w:sz w:val="21"/>
            <w:szCs w:val="21"/>
          </w:rPr>
        </w:style>
        <w:style w:type="character" w:customStyle="1" w:styleId="a8">
          <w:name w:val="页眉 字符"/>
          <w:basedOn w:val="a0"/>
          <w:link w:val="a7"/>
          <w:uiPriority w:val="99"/>
          <w:qFormat/>
          <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:qFormat/>
          <w:rPr>
            <w:sz w:val="18"/>
            <w:szCs w:val="18"/>
          </w:rPr>
        </w:style>
        <w:style w:type="paragraph" w:styleId="ad">
          <w:name w:val="List Paragraph"/>
          <w:basedOn w:val="a"/>
          <w:uiPriority w:val="34"/>
          <w:qFormat/>
          <w:pPr>
            <w:ind w:firstLineChars="200" w:firstLine="420"/>
          </w:pPr>
        </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:semiHidden/>
          <w:qFormat/>
        </w:style>
        <w:style w:type="character" w:customStyle="1" w:styleId="aa">
          <w:name w:val="批注主题 字符"/>
          <w:basedOn w:val="a4"/>
          <w:link w:val="a9"/>
          <w:uiPriority w:val="99"/>
          <w:semiHidden/>
          <w:qFormat/>
          <w:rPr>
            <w:b/>
            <w:bCs/>
          </w:rPr>
        </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:w="http://schemas.openxmlformats.org/wordprocessingml/2006/main" xmlns:mc="http://schemas.openxmlformats.org/markup-compatibility/2006" xmlns:r="http://schemas.openxmlformats.org/officeDocument/2006/relationships" 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="1877349045">
            <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: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:w="http://schemas.openxmlformats.org/wordprocessingml/2006/main" xmlns:mc="http://schemas.openxmlformats.org/markup-compatibility/2006" xmlns:r="http://schemas.openxmlformats.org/officeDocument/2006/relationships" 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="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="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="宋体">
          <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="00000003" 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:creator>Von FJ</dc:creator>
        <cp:lastModifiedBy>dell</cp:lastModifiedBy>
        <cp:revision>2</cp:revision>
        <dcterms:created xsi:type="dcterms:W3CDTF">2021-12-15T08:05:00Z</dcterms:created>
        <dcterms:modified xsi:type="dcterms:W3CDTF">2021-12-15T08:05: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>0</TotalTime>
        <Pages>3</Pages>
        <Words>190</Words>
        <Characters>1089</Characters>
        <Application>Microsoft Office Word</Application>
        <DocSecurity>0</DocSecurity>
        <Lines>9</Lines>
        <Paragraphs>2</Paragraphs>
        <ScaleCrop>false</ScaleCrop>
        <Company/>
        <LinksUpToDate>false</LinksUpToDate>
        <CharactersWithSpaces>1277</CharactersWithSpaces>
        <SharedDoc>false</SharedDoc>
        <HyperlinksChanged>false</HyperlinksChanged>
        <AppVersion>16.0000</AppVersion>
      </Properties>
    </pkg:xmlData>
  </pkg:part>
  <pkg:part pkg:name="/docProps/custom.xml" pkg:contentType="application/vnd.openxmlformats-officedocument.custom-properties+xml" pkg:padding="256">
    <pkg:xmlData>
      <Properties xmlns="http://schemas.openxmlformats.org/officeDocument/2006/custom-properties" xmlns:vt="http://schemas.openxmlformats.org/officeDocument/2006/docPropsVTypes">
        <property fmtid="{D5CDD505-2E9C-101B-9397-08002B2CF9AE}" pid="2" name="KSOProductBuildVer">
          <vt:lpwstr>2052-11.1.0.9584</vt:lpwstr>
        </property>
      </Properties>
    </pkg:xmlData>
  </pkg:part>
  <pkg:part pkg:name="/customXml/_rels/item1.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="rId1" Type="http://schemas.openxmlformats.org/officeDocument/2006/relationships/customXmlProps" Target="itemProps1.xml"/>
      </Relationships>
    </pkg:xmlData>
  </pkg:part>
</pkg:package>

生活不易,加油吧!少年!!!

  • 0
    点赞
  • 0
    收藏
    觉得还不错? 一键收藏
  • 0
    评论
您可以使用Apache POI库和iText库来将Freemarker生成的Word文档转换为PDF。首先,您需要使用Freemarker生成Word文档,然后使用Apache POI库将其加载到内存中。接下来,您可以使用iText库将加载的Word文档转换为PDF格式。以下是一个示例代码片段,演示如何执行此操作: ```java import freemarker.template.Configuration; import freemarker.template.Template; import org.apache.poi.xwpf.usermodel.XWPFDocument; import org.apache.poi.xwpf.usermodel.XWPFParagraph; import org.apache.poi.xwpf.usermodel.XWPFRun; import org.apache.poi.xwpf.usermodel.XWPFTable; import org.apache.poi.xwpf.usermodel.XWPFTableCell; import org.apache.poi.xwpf.usermodel.XWPFTableRow; import java.io.*; import java.util.HashMap; import java.util.List; import java.util.Map; public class WordToPdfConverter { public static void main(String[] args) { try { // Load the Freemarker template Configuration configuration = new Configuration(Configuration.DEFAULT_INCOMPATIBLE_IMPROVEMENTS); configuration.setClassForTemplateLoading(WordToPdfConverter.class, "/"); Template template = configuration.getTemplate("template.ftl"); // Prepare data for the template Map<String, Object> data = new HashMap<>(); data.put("name", "John Doe"); // ... add more data // Generate the Word document using Freemarker Writer out = new BufferedWriter(new OutputStreamWriter(new FileOutputStream("output.docx"))); template.process(data, out); out.close(); // Convert the Word document to PDF using Apache POI and iText FileInputStream in = new FileInputStream(new File("output.docx")); XWPFDocument document = new XWPFDocument(in); File outputFile = new File("output.pdf"); FileOutputStream outStream = new FileOutputStream(outputFile); PdfOptions options = PdfOptions.create(); PdfConverter.getInstance().convert(document, outStream, options); // Clean up outStream.close(); in.close(); System.out.println("Word document converted to PDF successfully!"); } catch (Exception e) { e.printStackTrace(); } } } ``` 请确保在运行代码之前将`template.ftl`替换为您自己的Freemarker模板文件。此外,您需要在项目中添加Apache POI和iText库的依赖项。
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值