docxtor2 0.0.9
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- checksums.yaml +7 -0
 - data/.coveralls.yml +1 -0
 - data/.gitignore +21 -0
 - data/.rspec +2 -0
 - data/.ruby-version +1 -0
 - data/.travis.yml +6 -0
 - data/.wrong +1 -0
 - data/Gemfile +18 -0
 - data/LICENSE.txt +22 -0
 - data/README.md +71 -0
 - data/Rakefile +7 -0
 - data/TODO.md +2 -0
 - data/docxtor2.gemspec +32 -0
 - data/lib/docxtor2.rb +39 -0
 - data/lib/docxtor2/block_evaluator.rb +13 -0
 - data/lib/docxtor2/constants.rb +4 -0
 - data/lib/docxtor2/content_builder.rb +29 -0
 - data/lib/docxtor2/document_builder.rb +19 -0
 - data/lib/docxtor2/element_list.rb +26 -0
 - data/lib/docxtor2/generator.rb +12 -0
 - data/lib/docxtor2/known/aliases.rb +11 -0
 - data/lib/docxtor2/known/mappings.rb +31 -0
 - data/lib/docxtor2/known/parts.rb +9 -0
 - data/lib/docxtor2/known/path.rb +11 -0
 - data/lib/docxtor2/known/styles.rb +10 -0
 - data/lib/docxtor2/known/templates.rb +7 -0
 - data/lib/docxtor2/object_utils.rb +7 -0
 - data/lib/docxtor2/package.rb +33 -0
 - data/lib/docxtor2/package/document.rb +28 -0
 - data/lib/docxtor2/package/document/element.rb +89 -0
 - data/lib/docxtor2/package/document/heading.rb +11 -0
 - data/lib/docxtor2/package/document/page_break.rb +16 -0
 - data/lib/docxtor2/package/document/paragraph.rb +90 -0
 - data/lib/docxtor2/package/document/table_of_contents.rb +90 -0
 - data/lib/docxtor2/package/part.rb +10 -0
 - data/lib/docxtor2/template_parser.rb +42 -0
 - data/lib/docxtor2/version.rb +3 -0
 - data/spec/docxtor2/content_builder_spec.rb +24 -0
 - data/spec/docxtor2/docxtor2_spec.rb +13 -0
 - data/spec/docxtor2/package/document/element_spec.rb +20 -0
 - data/spec/docxtor2/package/document/heading_spec.rb +9 -0
 - data/spec/docxtor2/package/document/paragraph_spec.rb +56 -0
 - data/spec/docxtor2/package/document/table_of_contents_spec.rb +18 -0
 - data/spec/docxtor2/package/document_spec.rb +13 -0
 - data/spec/docxtor2/package/part_spec.rb +16 -0
 - data/spec/docxtor2/package_spec.rb +37 -0
 - data/spec/docxtor2/prerequisites_spec.rb +9 -0
 - data/spec/docxtor2/support/contexts/integration_context.rb +6 -0
 - data/spec/docxtor2/support/contexts/xml_builder_context.rb +11 -0
 - data/spec/docxtor2/support/examples/.gitkeep +0 -0
 - data/spec/docxtor2/support/matchers/wordprocessingml_matchers.rb +42 -0
 - data/spec/docxtor2/support/matchers/xpath_matchers.rb +46 -0
 - data/spec/docxtor2/template_parser_spec.rb +18 -0
 - data/spec/spec_helper.rb +35 -0
 - data/templates/.gitkeep +0 -0
 - data/templates/default/[Content_Types].xml +16 -0
 - data/templates/default/_rels/.rels +4 -0
 - data/templates/default/word/_rels/document.xml.rels +13 -0
 - data/templates/default/word/endnotes.xml +17 -0
 - data/templates/default/word/fontTable.xml +31 -0
 - data/templates/default/word/footer1.xml +35 -0
 - data/templates/default/word/footer2.xml +48 -0
 - data/templates/default/word/footnotes.xml +17 -0
 - data/templates/default/word/numbering.xml +212 -0
 - data/templates/default/word/settings.xml +107 -0
 - data/templates/default/word/styles.xml +368 -0
 - data/templates/default/word/theme/theme1.xml +2 -0
 - data/templates/default/word/websettings.xml +4 -0
 - metadata +212 -0
 
| 
         @@ -0,0 +1,35 @@ 
     | 
|
| 
      
 1 
     | 
    
         
            +
            <?xml version="1.0" encoding="UTF-8" standalone="yes"?>
         
     | 
| 
      
 2 
     | 
    
         
            +
            <w:ftr xmlns:m="http://schemas.openxmlformats.org/officeDocument/2006/math" xmlns:o="urn:schemas-microsoft-com:office:office" xmlns:r="http://schemas.openxmlformats.org/officeDocument/2006/relationships" xmlns:v="urn:schemas-microsoft-com:vml" xmlns:ve="http://schemas.openxmlformats.org/markup-compatibility/2006" xmlns:w="http://schemas.openxmlformats.org/wordprocessingml/2006/main" xmlns:w10="urn:schemas-microsoft-com:office:word" xmlns:wne="http://schemas.microsoft.com/office/word/2006/wordml" xmlns:wp="http://schemas.openxmlformats.org/drawingml/2006/wordprocessingDrawing">
         
     | 
| 
      
 3 
     | 
    
         
            +
              <w:p w:rsidR="00940665" w:rsidRDefault="00940665">
         
     | 
| 
      
 4 
     | 
    
         
            +
                <w:pPr>
         
     | 
| 
      
 5 
     | 
    
         
            +
                  <w:pStyle w:val="a3"/>
         
     | 
| 
      
 6 
     | 
    
         
            +
                  <w:framePr w:hAnchor="margin" w:vAnchor="text" w:wrap="around" w:xAlign="center" w:y="1"/>
         
     | 
| 
      
 7 
     | 
    
         
            +
                  <w:rPr>
         
     | 
| 
      
 8 
     | 
    
         
            +
                    <w:rStyle w:val="a4"/>
         
     | 
| 
      
 9 
     | 
    
         
            +
                  </w:rPr>
         
     | 
| 
      
 10 
     | 
    
         
            +
                </w:pPr>
         
     | 
| 
      
 11 
     | 
    
         
            +
                <w:r>
         
     | 
| 
      
 12 
     | 
    
         
            +
                  <w:rPr>
         
     | 
| 
      
 13 
     | 
    
         
            +
                    <w:rStyle w:val="a4"/>
         
     | 
| 
      
 14 
     | 
    
         
            +
                  </w:rPr>
         
     | 
| 
      
 15 
     | 
    
         
            +
                  <w:fldChar w:fldCharType="begin"/>
         
     | 
| 
      
 16 
     | 
    
         
            +
                </w:r>
         
     | 
| 
      
 17 
     | 
    
         
            +
                <w:r>
         
     | 
| 
      
 18 
     | 
    
         
            +
                  <w:rPr>
         
     | 
| 
      
 19 
     | 
    
         
            +
                    <w:rStyle w:val="a4"/>
         
     | 
| 
      
 20 
     | 
    
         
            +
                  </w:rPr>
         
     | 
| 
      
 21 
     | 
    
         
            +
                  <w:instrText xml:space="preserve">PAGE  </w:instrText>
         
     | 
| 
      
 22 
     | 
    
         
            +
                </w:r>
         
     | 
| 
      
 23 
     | 
    
         
            +
                <w:r>
         
     | 
| 
      
 24 
     | 
    
         
            +
                  <w:rPr>
         
     | 
| 
      
 25 
     | 
    
         
            +
                    <w:rStyle w:val="a4"/>
         
     | 
| 
      
 26 
     | 
    
         
            +
                  </w:rPr>
         
     | 
| 
      
 27 
     | 
    
         
            +
                  <w:fldChar w:fldCharType="end"/>
         
     | 
| 
      
 28 
     | 
    
         
            +
                </w:r>
         
     | 
| 
      
 29 
     | 
    
         
            +
              </w:p>
         
     | 
| 
      
 30 
     | 
    
         
            +
              <w:p w:rsidR="00940665" w:rsidRDefault="00940665">
         
     | 
| 
      
 31 
     | 
    
         
            +
                <w:pPr>
         
     | 
| 
      
 32 
     | 
    
         
            +
                  <w:pStyle w:val="a3"/>
         
     | 
| 
      
 33 
     | 
    
         
            +
                </w:pPr>
         
     | 
| 
      
 34 
     | 
    
         
            +
              </w:p>
         
     | 
| 
      
 35 
     | 
    
         
            +
            </w:ftr>
         
     | 
| 
         @@ -0,0 +1,48 @@ 
     | 
|
| 
      
 1 
     | 
    
         
            +
            <?xml version="1.0" encoding="UTF-8" standalone="yes"?>
         
     | 
| 
      
 2 
     | 
    
         
            +
            <w:ftr xmlns:m="http://schemas.openxmlformats.org/officeDocument/2006/math" xmlns:o="urn:schemas-microsoft-com:office:office" xmlns:r="http://schemas.openxmlformats.org/officeDocument/2006/relationships" xmlns:v="urn:schemas-microsoft-com:vml" xmlns:ve="http://schemas.openxmlformats.org/markup-compatibility/2006" xmlns:w="http://schemas.openxmlformats.org/wordprocessingml/2006/main" xmlns:w10="urn:schemas-microsoft-com:office:word" xmlns:wne="http://schemas.microsoft.com/office/word/2006/wordml" xmlns:wp="http://schemas.openxmlformats.org/drawingml/2006/wordprocessingDrawing">
         
     | 
| 
      
 3 
     | 
    
         
            +
              <w:p w:rsidR="00940665" w:rsidRDefault="00940665">
         
     | 
| 
      
 4 
     | 
    
         
            +
                <w:pPr>
         
     | 
| 
      
 5 
     | 
    
         
            +
                  <w:pStyle w:val="a3"/>
         
     | 
| 
      
 6 
     | 
    
         
            +
                  <w:framePr w:hAnchor="margin" w:vAnchor="text" w:wrap="around" w:xAlign="center" w:y="1"/>
         
     | 
| 
      
 7 
     | 
    
         
            +
                  <w:rPr>
         
     | 
| 
      
 8 
     | 
    
         
            +
                    <w:rStyle w:val="a4"/>
         
     | 
| 
      
 9 
     | 
    
         
            +
                  </w:rPr>
         
     | 
| 
      
 10 
     | 
    
         
            +
                </w:pPr>
         
     | 
| 
      
 11 
     | 
    
         
            +
                <w:r>
         
     | 
| 
      
 12 
     | 
    
         
            +
                  <w:rPr>
         
     | 
| 
      
 13 
     | 
    
         
            +
                    <w:rStyle w:val="a4"/>
         
     | 
| 
      
 14 
     | 
    
         
            +
                  </w:rPr>
         
     | 
| 
      
 15 
     | 
    
         
            +
                  <w:fldChar w:fldCharType="begin"/>
         
     | 
| 
      
 16 
     | 
    
         
            +
                </w:r>
         
     | 
| 
      
 17 
     | 
    
         
            +
                <w:r>
         
     | 
| 
      
 18 
     | 
    
         
            +
                  <w:rPr>
         
     | 
| 
      
 19 
     | 
    
         
            +
                    <w:rStyle w:val="a4"/>
         
     | 
| 
      
 20 
     | 
    
         
            +
                  </w:rPr>
         
     | 
| 
      
 21 
     | 
    
         
            +
                  <w:instrText xml:space="preserve">PAGE  </w:instrText>
         
     | 
| 
      
 22 
     | 
    
         
            +
                </w:r>
         
     | 
| 
      
 23 
     | 
    
         
            +
                <w:r>
         
     | 
| 
      
 24 
     | 
    
         
            +
                  <w:rPr>
         
     | 
| 
      
 25 
     | 
    
         
            +
                    <w:rStyle w:val="a4"/>
         
     | 
| 
      
 26 
     | 
    
         
            +
                  </w:rPr>
         
     | 
| 
      
 27 
     | 
    
         
            +
                  <w:fldChar w:fldCharType="separate"/>
         
     | 
| 
      
 28 
     | 
    
         
            +
                </w:r>
         
     | 
| 
      
 29 
     | 
    
         
            +
                <w:r w:rsidR="001A4A26">
         
     | 
| 
      
 30 
     | 
    
         
            +
                  <w:rPr>
         
     | 
| 
      
 31 
     | 
    
         
            +
                    <w:rStyle w:val="a4"/>
         
     | 
| 
      
 32 
     | 
    
         
            +
                    <w:noProof/>
         
     | 
| 
      
 33 
     | 
    
         
            +
                  </w:rPr>
         
     | 
| 
      
 34 
     | 
    
         
            +
                  <w:t>111</w:t>
         
     | 
| 
      
 35 
     | 
    
         
            +
                </w:r>
         
     | 
| 
      
 36 
     | 
    
         
            +
                <w:r>
         
     | 
| 
      
 37 
     | 
    
         
            +
                  <w:rPr>
         
     | 
| 
      
 38 
     | 
    
         
            +
                    <w:rStyle w:val="a4"/>
         
     | 
| 
      
 39 
     | 
    
         
            +
                  </w:rPr>
         
     | 
| 
      
 40 
     | 
    
         
            +
                  <w:fldChar w:fldCharType="end"/>
         
     | 
| 
      
 41 
     | 
    
         
            +
                </w:r>
         
     | 
| 
      
 42 
     | 
    
         
            +
              </w:p>
         
     | 
| 
      
 43 
     | 
    
         
            +
              <w:p w:rsidR="00940665" w:rsidRDefault="00940665">
         
     | 
| 
      
 44 
     | 
    
         
            +
                <w:pPr>
         
     | 
| 
      
 45 
     | 
    
         
            +
                  <w:pStyle w:val="a3"/>
         
     | 
| 
      
 46 
     | 
    
         
            +
                </w:pPr>
         
     | 
| 
      
 47 
     | 
    
         
            +
              </w:p>
         
     | 
| 
      
 48 
     | 
    
         
            +
            </w:ftr>
         
     | 
| 
         @@ -0,0 +1,17 @@ 
     | 
|
| 
      
 1 
     | 
    
         
            +
            <?xml version="1.0" encoding="UTF-8" standalone="yes"?>
         
     | 
| 
      
 2 
     | 
    
         
            +
            <w:footnotes xmlns:m="http://schemas.openxmlformats.org/officeDocument/2006/math" xmlns:o="urn:schemas-microsoft-com:office:office" xmlns:r="http://schemas.openxmlformats.org/officeDocument/2006/relationships" xmlns:v="urn:schemas-microsoft-com:vml" xmlns:ve="http://schemas.openxmlformats.org/markup-compatibility/2006" xmlns:w="http://schemas.openxmlformats.org/wordprocessingml/2006/main" xmlns:w10="urn:schemas-microsoft-com:office:word" xmlns:wne="http://schemas.microsoft.com/office/word/2006/wordml" xmlns:wp="http://schemas.openxmlformats.org/drawingml/2006/wordprocessingDrawing">
         
     | 
| 
      
 3 
     | 
    
         
            +
              <w:footnote w:id="0" w:type="separator">
         
     | 
| 
      
 4 
     | 
    
         
            +
                <w:p w:rsidR="00F8394C" w:rsidRDefault="00F8394C">
         
     | 
| 
      
 5 
     | 
    
         
            +
                  <w:r>
         
     | 
| 
      
 6 
     | 
    
         
            +
                    <w:separator/>
         
     | 
| 
      
 7 
     | 
    
         
            +
                  </w:r>
         
     | 
| 
      
 8 
     | 
    
         
            +
                </w:p>
         
     | 
| 
      
 9 
     | 
    
         
            +
              </w:footnote>
         
     | 
| 
      
 10 
     | 
    
         
            +
              <w:footnote w:id="1" w:type="continuationSeparator">
         
     | 
| 
      
 11 
     | 
    
         
            +
                <w:p w:rsidR="00F8394C" w:rsidRDefault="00F8394C">
         
     | 
| 
      
 12 
     | 
    
         
            +
                  <w:r>
         
     | 
| 
      
 13 
     | 
    
         
            +
                    <w:continuationSeparator/>
         
     | 
| 
      
 14 
     | 
    
         
            +
                  </w:r>
         
     | 
| 
      
 15 
     | 
    
         
            +
                </w:p>
         
     | 
| 
      
 16 
     | 
    
         
            +
              </w:footnote>
         
     | 
| 
      
 17 
     | 
    
         
            +
            </w:footnotes>
         
     | 
| 
         @@ -0,0 +1,212 @@ 
     | 
|
| 
      
 1 
     | 
    
         
            +
            <?xml version="1.0" encoding="UTF-8" standalone="yes"?>
         
     | 
| 
      
 2 
     | 
    
         
            +
            <w:numbering xmlns:m="http://schemas.openxmlformats.org/officeDocument/2006/math" xmlns:o="urn:schemas-microsoft-com:office:office" xmlns:r="http://schemas.openxmlformats.org/officeDocument/2006/relationships" xmlns:v="urn:schemas-microsoft-com:vml" xmlns:ve="http://schemas.openxmlformats.org/markup-compatibility/2006" xmlns:w="http://schemas.openxmlformats.org/wordprocessingml/2006/main" xmlns:w10="urn:schemas-microsoft-com:office:word" xmlns:wne="http://schemas.microsoft.com/office/word/2006/wordml" xmlns:wp="http://schemas.openxmlformats.org/drawingml/2006/wordprocessingDrawing">
         
     | 
| 
      
 3 
     | 
    
         
            +
              <w:abstractNum w:abstractNumId="0">
         
     | 
| 
      
 4 
     | 
    
         
            +
                <w:nsid w:val="167C5681"/>
         
     | 
| 
      
 5 
     | 
    
         
            +
                <w:multiLevelType w:val="hybridMultilevel"/>
         
     | 
| 
      
 6 
     | 
    
         
            +
                <w:tmpl w:val="D1F061A8"/>
         
     | 
| 
      
 7 
     | 
    
         
            +
                <w:lvl w:ilvl="0" w:tplc="0419000F">
         
     | 
| 
      
 8 
     | 
    
         
            +
                  <w:start w:val="1"/>
         
     | 
| 
      
 9 
     | 
    
         
            +
                  <w:numFmt w:val="decimal"/>
         
     | 
| 
      
 10 
     | 
    
         
            +
                  <w:lvlText w:val="%1."/>
         
     | 
| 
      
 11 
     | 
    
         
            +
                  <w:lvlJc w:val="left"/>
         
     | 
| 
      
 12 
     | 
    
         
            +
                  <w:pPr>
         
     | 
| 
      
 13 
     | 
    
         
            +
                    <w:tabs>
         
     | 
| 
      
 14 
     | 
    
         
            +
                      <w:tab w:pos="720" w:val="num"/>
         
     | 
| 
      
 15 
     | 
    
         
            +
                    </w:tabs>
         
     | 
| 
      
 16 
     | 
    
         
            +
                    <w:ind w:hanging="360" w:left="720"/>
         
     | 
| 
      
 17 
     | 
    
         
            +
                  </w:pPr>
         
     | 
| 
      
 18 
     | 
    
         
            +
                </w:lvl>
         
     | 
| 
      
 19 
     | 
    
         
            +
                <w:lvl w:ilvl="1" w:tentative="1" w:tplc="04190019">
         
     | 
| 
      
 20 
     | 
    
         
            +
                  <w:start w:val="1"/>
         
     | 
| 
      
 21 
     | 
    
         
            +
                  <w:numFmt w:val="lowerLetter"/>
         
     | 
| 
      
 22 
     | 
    
         
            +
                  <w:lvlText w:val="%2."/>
         
     | 
| 
      
 23 
     | 
    
         
            +
                  <w:lvlJc w:val="left"/>
         
     | 
| 
      
 24 
     | 
    
         
            +
                  <w:pPr>
         
     | 
| 
      
 25 
     | 
    
         
            +
                    <w:tabs>
         
     | 
| 
      
 26 
     | 
    
         
            +
                      <w:tab w:pos="1440" w:val="num"/>
         
     | 
| 
      
 27 
     | 
    
         
            +
                    </w:tabs>
         
     | 
| 
      
 28 
     | 
    
         
            +
                    <w:ind w:hanging="360" w:left="1440"/>
         
     | 
| 
      
 29 
     | 
    
         
            +
                  </w:pPr>
         
     | 
| 
      
 30 
     | 
    
         
            +
                </w:lvl>
         
     | 
| 
      
 31 
     | 
    
         
            +
                <w:lvl w:ilvl="2" w:tentative="1" w:tplc="0419001B">
         
     | 
| 
      
 32 
     | 
    
         
            +
                  <w:start w:val="1"/>
         
     | 
| 
      
 33 
     | 
    
         
            +
                  <w:numFmt w:val="lowerRoman"/>
         
     | 
| 
      
 34 
     | 
    
         
            +
                  <w:lvlText w:val="%3."/>
         
     | 
| 
      
 35 
     | 
    
         
            +
                  <w:lvlJc w:val="right"/>
         
     | 
| 
      
 36 
     | 
    
         
            +
                  <w:pPr>
         
     | 
| 
      
 37 
     | 
    
         
            +
                    <w:tabs>
         
     | 
| 
      
 38 
     | 
    
         
            +
                      <w:tab w:pos="2160" w:val="num"/>
         
     | 
| 
      
 39 
     | 
    
         
            +
                    </w:tabs>
         
     | 
| 
      
 40 
     | 
    
         
            +
                    <w:ind w:hanging="180" w:left="2160"/>
         
     | 
| 
      
 41 
     | 
    
         
            +
                  </w:pPr>
         
     | 
| 
      
 42 
     | 
    
         
            +
                </w:lvl>
         
     | 
| 
      
 43 
     | 
    
         
            +
                <w:lvl w:ilvl="3" w:tentative="1" w:tplc="0419000F">
         
     | 
| 
      
 44 
     | 
    
         
            +
                  <w:start w:val="1"/>
         
     | 
| 
      
 45 
     | 
    
         
            +
                  <w:numFmt w:val="decimal"/>
         
     | 
| 
      
 46 
     | 
    
         
            +
                  <w:lvlText w:val="%4."/>
         
     | 
| 
      
 47 
     | 
    
         
            +
                  <w:lvlJc w:val="left"/>
         
     | 
| 
      
 48 
     | 
    
         
            +
                  <w:pPr>
         
     | 
| 
      
 49 
     | 
    
         
            +
                    <w:tabs>
         
     | 
| 
      
 50 
     | 
    
         
            +
                      <w:tab w:pos="2880" w:val="num"/>
         
     | 
| 
      
 51 
     | 
    
         
            +
                    </w:tabs>
         
     | 
| 
      
 52 
     | 
    
         
            +
                    <w:ind w:hanging="360" w:left="2880"/>
         
     | 
| 
      
 53 
     | 
    
         
            +
                  </w:pPr>
         
     | 
| 
      
 54 
     | 
    
         
            +
                </w:lvl>
         
     | 
| 
      
 55 
     | 
    
         
            +
                <w:lvl w:ilvl="4" w:tentative="1" w:tplc="04190019">
         
     | 
| 
      
 56 
     | 
    
         
            +
                  <w:start w:val="1"/>
         
     | 
| 
      
 57 
     | 
    
         
            +
                  <w:numFmt w:val="lowerLetter"/>
         
     | 
| 
      
 58 
     | 
    
         
            +
                  <w:lvlText w:val="%5."/>
         
     | 
| 
      
 59 
     | 
    
         
            +
                  <w:lvlJc w:val="left"/>
         
     | 
| 
      
 60 
     | 
    
         
            +
                  <w:pPr>
         
     | 
| 
      
 61 
     | 
    
         
            +
                    <w:tabs>
         
     | 
| 
      
 62 
     | 
    
         
            +
                      <w:tab w:pos="3600" w:val="num"/>
         
     | 
| 
      
 63 
     | 
    
         
            +
                    </w:tabs>
         
     | 
| 
      
 64 
     | 
    
         
            +
                    <w:ind w:hanging="360" w:left="3600"/>
         
     | 
| 
      
 65 
     | 
    
         
            +
                  </w:pPr>
         
     | 
| 
      
 66 
     | 
    
         
            +
                </w:lvl>
         
     | 
| 
      
 67 
     | 
    
         
            +
                <w:lvl w:ilvl="5" w:tentative="1" w:tplc="0419001B">
         
     | 
| 
      
 68 
     | 
    
         
            +
                  <w:start w:val="1"/>
         
     | 
| 
      
 69 
     | 
    
         
            +
                  <w:numFmt w:val="lowerRoman"/>
         
     | 
| 
      
 70 
     | 
    
         
            +
                  <w:lvlText w:val="%6."/>
         
     | 
| 
      
 71 
     | 
    
         
            +
                  <w:lvlJc w:val="right"/>
         
     | 
| 
      
 72 
     | 
    
         
            +
                  <w:pPr>
         
     | 
| 
      
 73 
     | 
    
         
            +
                    <w:tabs>
         
     | 
| 
      
 74 
     | 
    
         
            +
                      <w:tab w:pos="4320" w:val="num"/>
         
     | 
| 
      
 75 
     | 
    
         
            +
                    </w:tabs>
         
     | 
| 
      
 76 
     | 
    
         
            +
                    <w:ind w:hanging="180" w:left="4320"/>
         
     | 
| 
      
 77 
     | 
    
         
            +
                  </w:pPr>
         
     | 
| 
      
 78 
     | 
    
         
            +
                </w:lvl>
         
     | 
| 
      
 79 
     | 
    
         
            +
                <w:lvl w:ilvl="6" w:tentative="1" w:tplc="0419000F">
         
     | 
| 
      
 80 
     | 
    
         
            +
                  <w:start w:val="1"/>
         
     | 
| 
      
 81 
     | 
    
         
            +
                  <w:numFmt w:val="decimal"/>
         
     | 
| 
      
 82 
     | 
    
         
            +
                  <w:lvlText w:val="%7."/>
         
     | 
| 
      
 83 
     | 
    
         
            +
                  <w:lvlJc w:val="left"/>
         
     | 
| 
      
 84 
     | 
    
         
            +
                  <w:pPr>
         
     | 
| 
      
 85 
     | 
    
         
            +
                    <w:tabs>
         
     | 
| 
      
 86 
     | 
    
         
            +
                      <w:tab w:pos="5040" w:val="num"/>
         
     | 
| 
      
 87 
     | 
    
         
            +
                    </w:tabs>
         
     | 
| 
      
 88 
     | 
    
         
            +
                    <w:ind w:hanging="360" w:left="5040"/>
         
     | 
| 
      
 89 
     | 
    
         
            +
                  </w:pPr>
         
     | 
| 
      
 90 
     | 
    
         
            +
                </w:lvl>
         
     | 
| 
      
 91 
     | 
    
         
            +
                <w:lvl w:ilvl="7" w:tentative="1" w:tplc="04190019">
         
     | 
| 
      
 92 
     | 
    
         
            +
                  <w:start w:val="1"/>
         
     | 
| 
      
 93 
     | 
    
         
            +
                  <w:numFmt w:val="lowerLetter"/>
         
     | 
| 
      
 94 
     | 
    
         
            +
                  <w:lvlText w:val="%8."/>
         
     | 
| 
      
 95 
     | 
    
         
            +
                  <w:lvlJc w:val="left"/>
         
     | 
| 
      
 96 
     | 
    
         
            +
                  <w:pPr>
         
     | 
| 
      
 97 
     | 
    
         
            +
                    <w:tabs>
         
     | 
| 
      
 98 
     | 
    
         
            +
                      <w:tab w:pos="5760" w:val="num"/>
         
     | 
| 
      
 99 
     | 
    
         
            +
                    </w:tabs>
         
     | 
| 
      
 100 
     | 
    
         
            +
                    <w:ind w:hanging="360" w:left="5760"/>
         
     | 
| 
      
 101 
     | 
    
         
            +
                  </w:pPr>
         
     | 
| 
      
 102 
     | 
    
         
            +
                </w:lvl>
         
     | 
| 
      
 103 
     | 
    
         
            +
                <w:lvl w:ilvl="8" w:tentative="1" w:tplc="0419001B">
         
     | 
| 
      
 104 
     | 
    
         
            +
                  <w:start w:val="1"/>
         
     | 
| 
      
 105 
     | 
    
         
            +
                  <w:numFmt w:val="lowerRoman"/>
         
     | 
| 
      
 106 
     | 
    
         
            +
                  <w:lvlText w:val="%9."/>
         
     | 
| 
      
 107 
     | 
    
         
            +
                  <w:lvlJc w:val="right"/>
         
     | 
| 
      
 108 
     | 
    
         
            +
                  <w:pPr>
         
     | 
| 
      
 109 
     | 
    
         
            +
                    <w:tabs>
         
     | 
| 
      
 110 
     | 
    
         
            +
                      <w:tab w:pos="6480" w:val="num"/>
         
     | 
| 
      
 111 
     | 
    
         
            +
                    </w:tabs>
         
     | 
| 
      
 112 
     | 
    
         
            +
                    <w:ind w:hanging="180" w:left="6480"/>
         
     | 
| 
      
 113 
     | 
    
         
            +
                  </w:pPr>
         
     | 
| 
      
 114 
     | 
    
         
            +
                </w:lvl>
         
     | 
| 
      
 115 
     | 
    
         
            +
              </w:abstractNum>
         
     | 
| 
      
 116 
     | 
    
         
            +
              <w:abstractNum w:abstractNumId="1">
         
     | 
| 
      
 117 
     | 
    
         
            +
                <w:nsid w:val="34B5542F"/>
         
     | 
| 
      
 118 
     | 
    
         
            +
                <w:multiLevelType w:val="hybridMultilevel"/>
         
     | 
| 
      
 119 
     | 
    
         
            +
                <w:tmpl w:val="86DC1F06"/>
         
     | 
| 
      
 120 
     | 
    
         
            +
                <w:lvl w:ilvl="0" w:tplc="E89C2AEE">
         
     | 
| 
      
 121 
     | 
    
         
            +
                  <w:start w:val="1"/>
         
     | 
| 
      
 122 
     | 
    
         
            +
                  <w:numFmt w:val="decimal"/>
         
     | 
| 
      
 123 
     | 
    
         
            +
                  <w:lvlRestart w:val="0"/>
         
     | 
| 
      
 124 
     | 
    
         
            +
                  <w:lvlText w:val="%1."/>
         
     | 
| 
      
 125 
     | 
    
         
            +
                  <w:lvlJc w:val="left"/>
         
     | 
| 
      
 126 
     | 
    
         
            +
                  <w:pPr>
         
     | 
| 
      
 127 
     | 
    
         
            +
                    <w:tabs>
         
     | 
| 
      
 128 
     | 
    
         
            +
                      <w:tab w:pos="720" w:val="num"/>
         
     | 
| 
      
 129 
     | 
    
         
            +
                    </w:tabs>
         
     | 
| 
      
 130 
     | 
    
         
            +
                    <w:ind w:hanging="363" w:left="720"/>
         
     | 
| 
      
 131 
     | 
    
         
            +
                  </w:pPr>
         
     | 
| 
      
 132 
     | 
    
         
            +
                </w:lvl>
         
     | 
| 
      
 133 
     | 
    
         
            +
                <w:lvl w:ilvl="1" w:tentative="1" w:tplc="04190019">
         
     | 
| 
      
 134 
     | 
    
         
            +
                  <w:start w:val="1"/>
         
     | 
| 
      
 135 
     | 
    
         
            +
                  <w:numFmt w:val="lowerLetter"/>
         
     | 
| 
      
 136 
     | 
    
         
            +
                  <w:lvlText w:val="%2."/>
         
     | 
| 
      
 137 
     | 
    
         
            +
                  <w:lvlJc w:val="left"/>
         
     | 
| 
      
 138 
     | 
    
         
            +
                  <w:pPr>
         
     | 
| 
      
 139 
     | 
    
         
            +
                    <w:ind w:hanging="360" w:left="1440"/>
         
     | 
| 
      
 140 
     | 
    
         
            +
                  </w:pPr>
         
     | 
| 
      
 141 
     | 
    
         
            +
                </w:lvl>
         
     | 
| 
      
 142 
     | 
    
         
            +
                <w:lvl w:ilvl="2" w:tentative="1" w:tplc="0419001B">
         
     | 
| 
      
 143 
     | 
    
         
            +
                  <w:start w:val="1"/>
         
     | 
| 
      
 144 
     | 
    
         
            +
                  <w:numFmt w:val="lowerRoman"/>
         
     | 
| 
      
 145 
     | 
    
         
            +
                  <w:lvlText w:val="%3."/>
         
     | 
| 
      
 146 
     | 
    
         
            +
                  <w:lvlJc w:val="right"/>
         
     | 
| 
      
 147 
     | 
    
         
            +
                  <w:pPr>
         
     | 
| 
      
 148 
     | 
    
         
            +
                    <w:ind w:hanging="180" w:left="2160"/>
         
     | 
| 
      
 149 
     | 
    
         
            +
                  </w:pPr>
         
     | 
| 
      
 150 
     | 
    
         
            +
                </w:lvl>
         
     | 
| 
      
 151 
     | 
    
         
            +
                <w:lvl w:ilvl="3" w:tentative="1" w:tplc="0419000F">
         
     | 
| 
      
 152 
     | 
    
         
            +
                  <w:start w:val="1"/>
         
     | 
| 
      
 153 
     | 
    
         
            +
                  <w:numFmt w:val="decimal"/>
         
     | 
| 
      
 154 
     | 
    
         
            +
                  <w:lvlText w:val="%4."/>
         
     | 
| 
      
 155 
     | 
    
         
            +
                  <w:lvlJc w:val="left"/>
         
     | 
| 
      
 156 
     | 
    
         
            +
                  <w:pPr>
         
     | 
| 
      
 157 
     | 
    
         
            +
                    <w:ind w:hanging="360" w:left="2880"/>
         
     | 
| 
      
 158 
     | 
    
         
            +
                  </w:pPr>
         
     | 
| 
      
 159 
     | 
    
         
            +
                </w:lvl>
         
     | 
| 
      
 160 
     | 
    
         
            +
                <w:lvl w:ilvl="4" w:tentative="1" w:tplc="04190019">
         
     | 
| 
      
 161 
     | 
    
         
            +
                  <w:start w:val="1"/>
         
     | 
| 
      
 162 
     | 
    
         
            +
                  <w:numFmt w:val="lowerLetter"/>
         
     | 
| 
      
 163 
     | 
    
         
            +
                  <w:lvlText w:val="%5."/>
         
     | 
| 
      
 164 
     | 
    
         
            +
                  <w:lvlJc w:val="left"/>
         
     | 
| 
      
 165 
     | 
    
         
            +
                  <w:pPr>
         
     | 
| 
      
 166 
     | 
    
         
            +
                    <w:ind w:hanging="360" w:left="3600"/>
         
     | 
| 
      
 167 
     | 
    
         
            +
                  </w:pPr>
         
     | 
| 
      
 168 
     | 
    
         
            +
                </w:lvl>
         
     | 
| 
      
 169 
     | 
    
         
            +
                <w:lvl w:ilvl="5" w:tentative="1" w:tplc="0419001B">
         
     | 
| 
      
 170 
     | 
    
         
            +
                  <w:start w:val="1"/>
         
     | 
| 
      
 171 
     | 
    
         
            +
                  <w:numFmt w:val="lowerRoman"/>
         
     | 
| 
      
 172 
     | 
    
         
            +
                  <w:lvlText w:val="%6."/>
         
     | 
| 
      
 173 
     | 
    
         
            +
                  <w:lvlJc w:val="right"/>
         
     | 
| 
      
 174 
     | 
    
         
            +
                  <w:pPr>
         
     | 
| 
      
 175 
     | 
    
         
            +
                    <w:ind w:hanging="180" w:left="4320"/>
         
     | 
| 
      
 176 
     | 
    
         
            +
                  </w:pPr>
         
     | 
| 
      
 177 
     | 
    
         
            +
                </w:lvl>
         
     | 
| 
      
 178 
     | 
    
         
            +
                <w:lvl w:ilvl="6" w:tentative="1" w:tplc="0419000F">
         
     | 
| 
      
 179 
     | 
    
         
            +
                  <w:start w:val="1"/>
         
     | 
| 
      
 180 
     | 
    
         
            +
                  <w:numFmt w:val="decimal"/>
         
     | 
| 
      
 181 
     | 
    
         
            +
                  <w:lvlText w:val="%7."/>
         
     | 
| 
      
 182 
     | 
    
         
            +
                  <w:lvlJc w:val="left"/>
         
     | 
| 
      
 183 
     | 
    
         
            +
                  <w:pPr>
         
     | 
| 
      
 184 
     | 
    
         
            +
                    <w:ind w:hanging="360" w:left="5040"/>
         
     | 
| 
      
 185 
     | 
    
         
            +
                  </w:pPr>
         
     | 
| 
      
 186 
     | 
    
         
            +
                </w:lvl>
         
     | 
| 
      
 187 
     | 
    
         
            +
                <w:lvl w:ilvl="7" w:tentative="1" w:tplc="04190019">
         
     | 
| 
      
 188 
     | 
    
         
            +
                  <w:start w:val="1"/>
         
     | 
| 
      
 189 
     | 
    
         
            +
                  <w:numFmt w:val="lowerLetter"/>
         
     | 
| 
      
 190 
     | 
    
         
            +
                  <w:lvlText w:val="%8."/>
         
     | 
| 
      
 191 
     | 
    
         
            +
                  <w:lvlJc w:val="left"/>
         
     | 
| 
      
 192 
     | 
    
         
            +
                  <w:pPr>
         
     | 
| 
      
 193 
     | 
    
         
            +
                    <w:ind w:hanging="360" w:left="5760"/>
         
     | 
| 
      
 194 
     | 
    
         
            +
                  </w:pPr>
         
     | 
| 
      
 195 
     | 
    
         
            +
                </w:lvl>
         
     | 
| 
      
 196 
     | 
    
         
            +
                <w:lvl w:ilvl="8" w:tentative="1" w:tplc="0419001B">
         
     | 
| 
      
 197 
     | 
    
         
            +
                  <w:start w:val="1"/>
         
     | 
| 
      
 198 
     | 
    
         
            +
                  <w:numFmt w:val="lowerRoman"/>
         
     | 
| 
      
 199 
     | 
    
         
            +
                  <w:lvlText w:val="%9."/>
         
     | 
| 
      
 200 
     | 
    
         
            +
                  <w:lvlJc w:val="right"/>
         
     | 
| 
      
 201 
     | 
    
         
            +
                  <w:pPr>
         
     | 
| 
      
 202 
     | 
    
         
            +
                    <w:ind w:hanging="180" w:left="6480"/>
         
     | 
| 
      
 203 
     | 
    
         
            +
                  </w:pPr>
         
     | 
| 
      
 204 
     | 
    
         
            +
                </w:lvl>
         
     | 
| 
      
 205 
     | 
    
         
            +
              </w:abstractNum>
         
     | 
| 
      
 206 
     | 
    
         
            +
              <w:num w:numId="1">
         
     | 
| 
      
 207 
     | 
    
         
            +
                <w:abstractNumId w:val="0"/>
         
     | 
| 
      
 208 
     | 
    
         
            +
              </w:num>
         
     | 
| 
      
 209 
     | 
    
         
            +
              <w:num w:numId="2">
         
     | 
| 
      
 210 
     | 
    
         
            +
                <w:abstractNumId w:val="1"/>
         
     | 
| 
      
 211 
     | 
    
         
            +
              </w:num>
         
     | 
| 
      
 212 
     | 
    
         
            +
            </w:numbering>
         
     | 
| 
         @@ -0,0 +1,107 @@ 
     | 
|
| 
      
 1 
     | 
    
         
            +
            <?xml version="1.0" encoding="UTF-8" standalone="yes"?>
         
     | 
| 
      
 2 
     | 
    
         
            +
            <w:settings xmlns:m="http://schemas.openxmlformats.org/officeDocument/2006/math" xmlns:o="urn:schemas-microsoft-com:office:office" xmlns:r="http://schemas.openxmlformats.org/officeDocument/2006/relationships" xmlns:sl="http://schemas.openxmlformats.org/schemaLibrary/2006/main" xmlns:v="urn:schemas-microsoft-com:vml" xmlns:w="http://schemas.openxmlformats.org/wordprocessingml/2006/main" xmlns:w10="urn:schemas-microsoft-com:office:word">
         
     | 
| 
      
 3 
     | 
    
         
            +
              <w:zoom w:percent="100"/>
         
     | 
| 
      
 4 
     | 
    
         
            +
              <w:stylePaneFormatFilter w:val="3F01"/>
         
     | 
| 
      
 5 
     | 
    
         
            +
              <w:defaultTabStop w:val="708"/>
         
     | 
| 
      
 6 
     | 
    
         
            +
              <w:characterSpacingControl w:val="doNotCompress"/>
         
     | 
| 
      
 7 
     | 
    
         
            +
              <w:footnotePr>
         
     | 
| 
      
 8 
     | 
    
         
            +
                <w:footnote w:id="0"/>
         
     | 
| 
      
 9 
     | 
    
         
            +
                <w:footnote w:id="1"/>
         
     | 
| 
      
 10 
     | 
    
         
            +
              </w:footnotePr>
         
     | 
| 
      
 11 
     | 
    
         
            +
              <w:endnotePr>
         
     | 
| 
      
 12 
     | 
    
         
            +
                <w:endnote w:id="0"/>
         
     | 
| 
      
 13 
     | 
    
         
            +
                <w:endnote w:id="1"/>
         
     | 
| 
      
 14 
     | 
    
         
            +
              </w:endnotePr>
         
     | 
| 
      
 15 
     | 
    
         
            +
              <w:compat/>
         
     | 
| 
      
 16 
     | 
    
         
            +
              <w:rsids>
         
     | 
| 
      
 17 
     | 
    
         
            +
                <w:rsidRoot w:val="00F8394C"/>
         
     | 
| 
      
 18 
     | 
    
         
            +
                <w:rsid w:val="000568F2"/>
         
     | 
| 
      
 19 
     | 
    
         
            +
                <w:rsid w:val="000619F9"/>
         
     | 
| 
      
 20 
     | 
    
         
            +
                <w:rsid w:val="001A4A26"/>
         
     | 
| 
      
 21 
     | 
    
         
            +
                <w:rsid w:val="001A7FAC"/>
         
     | 
| 
      
 22 
     | 
    
         
            +
                <w:rsid w:val="001D7964"/>
         
     | 
| 
      
 23 
     | 
    
         
            +
                <w:rsid w:val="00213296"/>
         
     | 
| 
      
 24 
     | 
    
         
            +
                <w:rsid w:val="002A4DEE"/>
         
     | 
| 
      
 25 
     | 
    
         
            +
                <w:rsid w:val="003A46EB"/>
         
     | 
| 
      
 26 
     | 
    
         
            +
                <w:rsid w:val="004914B0"/>
         
     | 
| 
      
 27 
     | 
    
         
            +
                <w:rsid w:val="00493AC7"/>
         
     | 
| 
      
 28 
     | 
    
         
            +
                <w:rsid w:val="004B764D"/>
         
     | 
| 
      
 29 
     | 
    
         
            +
                <w:rsid w:val="004C5B98"/>
         
     | 
| 
      
 30 
     | 
    
         
            +
                <w:rsid w:val="00545BA6"/>
         
     | 
| 
      
 31 
     | 
    
         
            +
                <w:rsid w:val="00560883"/>
         
     | 
| 
      
 32 
     | 
    
         
            +
                <w:rsid w:val="00593113"/>
         
     | 
| 
      
 33 
     | 
    
         
            +
                <w:rsid w:val="005B73F8"/>
         
     | 
| 
      
 34 
     | 
    
         
            +
                <w:rsid w:val="005C48D0"/>
         
     | 
| 
      
 35 
     | 
    
         
            +
                <w:rsid w:val="005F1CBA"/>
         
     | 
| 
      
 36 
     | 
    
         
            +
                <w:rsid w:val="006B5365"/>
         
     | 
| 
      
 37 
     | 
    
         
            +
                <w:rsid w:val="006C3BC7"/>
         
     | 
| 
      
 38 
     | 
    
         
            +
                <w:rsid w:val="006D616A"/>
         
     | 
| 
      
 39 
     | 
    
         
            +
                <w:rsid w:val="00741162"/>
         
     | 
| 
      
 40 
     | 
    
         
            +
                <w:rsid w:val="00780C02"/>
         
     | 
| 
      
 41 
     | 
    
         
            +
                <w:rsid w:val="007C4403"/>
         
     | 
| 
      
 42 
     | 
    
         
            +
                <w:rsid w:val="007D676D"/>
         
     | 
| 
      
 43 
     | 
    
         
            +
                <w:rsid w:val="007F25BC"/>
         
     | 
| 
      
 44 
     | 
    
         
            +
                <w:rsid w:val="00837D65"/>
         
     | 
| 
      
 45 
     | 
    
         
            +
                <w:rsid w:val="008466B0"/>
         
     | 
| 
      
 46 
     | 
    
         
            +
                <w:rsid w:val="008D2C38"/>
         
     | 
| 
      
 47 
     | 
    
         
            +
                <w:rsid w:val="008D776A"/>
         
     | 
| 
      
 48 
     | 
    
         
            +
                <w:rsid w:val="00915B20"/>
         
     | 
| 
      
 49 
     | 
    
         
            +
                <w:rsid w:val="00940665"/>
         
     | 
| 
      
 50 
     | 
    
         
            +
                <w:rsid w:val="00942F6D"/>
         
     | 
| 
      
 51 
     | 
    
         
            +
                <w:rsid w:val="00964F45"/>
         
     | 
| 
      
 52 
     | 
    
         
            +
                <w:rsid w:val="00971FD4"/>
         
     | 
| 
      
 53 
     | 
    
         
            +
                <w:rsid w:val="00983214"/>
         
     | 
| 
      
 54 
     | 
    
         
            +
                <w:rsid w:val="00986C93"/>
         
     | 
| 
      
 55 
     | 
    
         
            +
                <w:rsid w:val="009A27F7"/>
         
     | 
| 
      
 56 
     | 
    
         
            +
                <w:rsid w:val="009A3627"/>
         
     | 
| 
      
 57 
     | 
    
         
            +
                <w:rsid w:val="00A8280B"/>
         
     | 
| 
      
 58 
     | 
    
         
            +
                <w:rsid w:val="00AB1AE9"/>
         
     | 
| 
      
 59 
     | 
    
         
            +
                <w:rsid w:val="00AD0DF1"/>
         
     | 
| 
      
 60 
     | 
    
         
            +
                <w:rsid w:val="00B10B0D"/>
         
     | 
| 
      
 61 
     | 
    
         
            +
                <w:rsid w:val="00B17973"/>
         
     | 
| 
      
 62 
     | 
    
         
            +
                <w:rsid w:val="00B64B55"/>
         
     | 
| 
      
 63 
     | 
    
         
            +
                <w:rsid w:val="00B86CE1"/>
         
     | 
| 
      
 64 
     | 
    
         
            +
                <w:rsid w:val="00BB3342"/>
         
     | 
| 
      
 65 
     | 
    
         
            +
                <w:rsid w:val="00BC3687"/>
         
     | 
| 
      
 66 
     | 
    
         
            +
                <w:rsid w:val="00BD4B73"/>
         
     | 
| 
      
 67 
     | 
    
         
            +
                <w:rsid w:val="00C405C6"/>
         
     | 
| 
      
 68 
     | 
    
         
            +
                <w:rsid w:val="00C56D1A"/>
         
     | 
| 
      
 69 
     | 
    
         
            +
                <w:rsid w:val="00C70C5F"/>
         
     | 
| 
      
 70 
     | 
    
         
            +
                <w:rsid w:val="00CD2348"/>
         
     | 
| 
      
 71 
     | 
    
         
            +
                <w:rsid w:val="00D730AB"/>
         
     | 
| 
      
 72 
     | 
    
         
            +
                <w:rsid w:val="00D9193A"/>
         
     | 
| 
      
 73 
     | 
    
         
            +
                <w:rsid w:val="00DA4CBF"/>
         
     | 
| 
      
 74 
     | 
    
         
            +
                <w:rsid w:val="00DB046F"/>
         
     | 
| 
      
 75 
     | 
    
         
            +
                <w:rsid w:val="00DC7277"/>
         
     | 
| 
      
 76 
     | 
    
         
            +
                <w:rsid w:val="00EE575D"/>
         
     | 
| 
      
 77 
     | 
    
         
            +
                <w:rsid w:val="00F631A8"/>
         
     | 
| 
      
 78 
     | 
    
         
            +
                <w:rsid w:val="00F8394C"/>
         
     | 
| 
      
 79 
     | 
    
         
            +
                <w:rsid w:val="00F96346"/>
         
     | 
| 
      
 80 
     | 
    
         
            +
                <w:rsid w:val="00FD511B"/>
         
     | 
| 
      
 81 
     | 
    
         
            +
              </w:rsids>
         
     | 
| 
      
 82 
     | 
    
         
            +
              <m:mathPr>
         
     | 
| 
      
 83 
     | 
    
         
            +
                <m:mathFont m:val="Cambria Math"/>
         
     | 
| 
      
 84 
     | 
    
         
            +
                <m:brkBin m:val="before"/>
         
     | 
| 
      
 85 
     | 
    
         
            +
                <m:brkBinSub m:val="--"/>
         
     | 
| 
      
 86 
     | 
    
         
            +
                <m:smallFrac m:val="off"/>
         
     | 
| 
      
 87 
     | 
    
         
            +
                <m:dispDef/>
         
     | 
| 
      
 88 
     | 
    
         
            +
                <m:lMargin m:val="0"/>
         
     | 
| 
      
 89 
     | 
    
         
            +
                <m:rMargin m:val="0"/>
         
     | 
| 
      
 90 
     | 
    
         
            +
                <m:defJc m:val="centerGroup"/>
         
     | 
| 
      
 91 
     | 
    
         
            +
                <m:wrapIndent m:val="1440"/>
         
     | 
| 
      
 92 
     | 
    
         
            +
                <m:intLim m:val="subSup"/>
         
     | 
| 
      
 93 
     | 
    
         
            +
                <m:naryLim m:val="undOvr"/>
         
     | 
| 
      
 94 
     | 
    
         
            +
              </m:mathPr>
         
     | 
| 
      
 95 
     | 
    
         
            +
              <w:themeFontLang w:val="ru-RU"/>
         
     | 
| 
      
 96 
     | 
    
         
            +
              <w:clrSchemeMapping w:accent1="accent1" w:accent2="accent2" w:accent3="accent3" w:accent4="accent4" w:accent5="accent5" w:accent6="accent6" w:bg1="light1" w:bg2="light2" w:followedHyperlink="followedHyperlink" w:hyperlink="hyperlink" w:t1="dark1" w:t2="dark2"/>
         
     | 
| 
      
 97 
     | 
    
         
            +
              <w:doNotIncludeSubdocsInStats/>
         
     | 
| 
      
 98 
     | 
    
         
            +
              <w:shapeDefaults>
         
     | 
| 
      
 99 
     | 
    
         
            +
                <o:shapedefaults spidmax="2050" v:ext="edit"/>
         
     | 
| 
      
 100 
     | 
    
         
            +
                <o:shapelayout v:ext="edit">
         
     | 
| 
      
 101 
     | 
    
         
            +
                  <o:idmap data="1" v:ext="edit"/>
         
     | 
| 
      
 102 
     | 
    
         
            +
                </o:shapelayout>
         
     | 
| 
      
 103 
     | 
    
         
            +
              </w:shapeDefaults>
         
     | 
| 
      
 104 
     | 
    
         
            +
              <w:decimalSymbol w:val=","/>
         
     | 
| 
      
 105 
     | 
    
         
            +
              <w:listSeparator w:val=";"/>
         
     | 
| 
      
 106 
     | 
    
         
            +
              <w:updateFields w:val="true"/>
         
     | 
| 
      
 107 
     | 
    
         
            +
            </w:settings>
         
     | 
| 
         @@ -0,0 +1,368 @@ 
     | 
|
| 
      
 1 
     | 
    
         
            +
            <?xml version="1.0" encoding="UTF-8" standalone="yes"?>
         
     | 
| 
      
 2 
     | 
    
         
            +
            <w:styles xmlns:r="http://schemas.openxmlformats.org/officeDocument/2006/relationships" xmlns:w="http://schemas.openxmlformats.org/wordprocessingml/2006/main">
         
     | 
| 
      
 3 
     | 
    
         
            +
              <w:docDefaults>
         
     | 
| 
      
 4 
     | 
    
         
            +
                <w:rPrDefault>
         
     | 
| 
      
 5 
     | 
    
         
            +
                  <w:rPr>
         
     | 
| 
      
 6 
     | 
    
         
            +
                    <w:rFonts w:ascii="Times New Roman" w:cs="Times New Roman" w:eastAsia="Times New Roman" w:hAnsi="Times New Roman"/>
         
     | 
| 
      
 7 
     | 
    
         
            +
                    <w:lang w:bidi="ar-SA" w:eastAsia="ru-RU" w:val="ru-RU"/>
         
     | 
| 
      
 8 
     | 
    
         
            +
                  </w:rPr>
         
     | 
| 
      
 9 
     | 
    
         
            +
                </w:rPrDefault>
         
     | 
| 
      
 10 
     | 
    
         
            +
                <w:pPrDefault/>
         
     | 
| 
      
 11 
     | 
    
         
            +
              </w:docDefaults>
         
     | 
| 
      
 12 
     | 
    
         
            +
              <w:latentStyles w:count="267" w:defLockedState="0" w:defQFormat="0" w:defSemiHidden="0" w:defUIPriority="0" w:defUnhideWhenUsed="0">
         
     | 
| 
      
 13 
     | 
    
         
            +
                <w:lsdException w:name="Normal" w:qFormat="1"/>
         
     | 
| 
      
 14 
     | 
    
         
            +
                <w:lsdException w:name="heading 1" w:qFormat="1"/>
         
     | 
| 
      
 15 
     | 
    
         
            +
                <w:lsdException w:name="heading 2" w:qFormat="1"/>
         
     | 
| 
      
 16 
     | 
    
         
            +
                <w:lsdException w:name="heading 3" w:qFormat="1"/>
         
     | 
| 
      
 17 
     | 
    
         
            +
                <w:lsdException w:name="heading 4" w:qFormat="1" w:semiHidden="1" w:unhideWhenUsed="1"/>
         
     | 
| 
      
 18 
     | 
    
         
            +
                <w:lsdException w:name="heading 5" w:qFormat="1" w:semiHidden="1" w:unhideWhenUsed="1"/>
         
     | 
| 
      
 19 
     | 
    
         
            +
                <w:lsdException w:name="heading 6" w:qFormat="1" w:semiHidden="1" w:unhideWhenUsed="1"/>
         
     | 
| 
      
 20 
     | 
    
         
            +
                <w:lsdException w:name="heading 7" w:qFormat="1" w:semiHidden="1" w:unhideWhenUsed="1"/>
         
     | 
| 
      
 21 
     | 
    
         
            +
                <w:lsdException w:name="heading 8" w:qFormat="1" w:semiHidden="1" w:unhideWhenUsed="1"/>
         
     | 
| 
      
 22 
     | 
    
         
            +
                <w:lsdException w:name="heading 9" w:qFormat="1" w:semiHidden="1" w:unhideWhenUsed="1"/>
         
     | 
| 
      
 23 
     | 
    
         
            +
                <w:lsdException w:name="toc 1" w:uiPriority="39"/>
         
     | 
| 
      
 24 
     | 
    
         
            +
                <w:lsdException w:name="caption" w:qFormat="1" w:semiHidden="1" w:unhideWhenUsed="1"/>
         
     | 
| 
      
 25 
     | 
    
         
            +
                <w:lsdException w:name="Title" w:qFormat="1"/>
         
     | 
| 
      
 26 
     | 
    
         
            +
                <w:lsdException w:name="Subtitle" w:qFormat="1"/>
         
     | 
| 
      
 27 
     | 
    
         
            +
                <w:lsdException w:name="Hyperlink" w:uiPriority="99"/>
         
     | 
| 
      
 28 
     | 
    
         
            +
                <w:lsdException w:name="Strong" w:qFormat="1"/>
         
     | 
| 
      
 29 
     | 
    
         
            +
                <w:lsdException w:name="Emphasis" w:qFormat="1"/>
         
     | 
| 
      
 30 
     | 
    
         
            +
                <w:lsdException w:name="Placeholder Text" w:semiHidden="1" w:uiPriority="99"/>
         
     | 
| 
      
 31 
     | 
    
         
            +
                <w:lsdException w:name="No Spacing" w:qFormat="1" w:uiPriority="1"/>
         
     | 
| 
      
 32 
     | 
    
         
            +
                <w:lsdException w:name="Light Shading" w:uiPriority="60"/>
         
     | 
| 
      
 33 
     | 
    
         
            +
                <w:lsdException w:name="Light List" w:uiPriority="61"/>
         
     | 
| 
      
 34 
     | 
    
         
            +
                <w:lsdException w:name="Light Grid" w:uiPriority="62"/>
         
     | 
| 
      
 35 
     | 
    
         
            +
                <w:lsdException w:name="Medium Shading 1" w:uiPriority="63"/>
         
     | 
| 
      
 36 
     | 
    
         
            +
                <w:lsdException w:name="Medium Shading 2" w:uiPriority="64"/>
         
     | 
| 
      
 37 
     | 
    
         
            +
                <w:lsdException w:name="Medium List 1" w:uiPriority="65"/>
         
     | 
| 
      
 38 
     | 
    
         
            +
                <w:lsdException w:name="Medium List 2" w:uiPriority="66"/>
         
     | 
| 
      
 39 
     | 
    
         
            +
                <w:lsdException w:name="Medium Grid 1" w:uiPriority="67"/>
         
     | 
| 
      
 40 
     | 
    
         
            +
                <w:lsdException w:name="Medium Grid 2" w:uiPriority="68"/>
         
     | 
| 
      
 41 
     | 
    
         
            +
                <w:lsdException w:name="Medium Grid 3" w:uiPriority="69"/>
         
     | 
| 
      
 42 
     | 
    
         
            +
                <w:lsdException w:name="Dark List" w:uiPriority="70"/>
         
     | 
| 
      
 43 
     | 
    
         
            +
                <w:lsdException w:name="Colorful Shading" w:uiPriority="71"/>
         
     | 
| 
      
 44 
     | 
    
         
            +
                <w:lsdException w:name="Colorful List" w:uiPriority="72"/>
         
     | 
| 
      
 45 
     | 
    
         
            +
                <w:lsdException w:name="Colorful Grid" w:uiPriority="73"/>
         
     | 
| 
      
 46 
     | 
    
         
            +
                <w:lsdException w:name="Light Shading Accent 1" w:uiPriority="60"/>
         
     | 
| 
      
 47 
     | 
    
         
            +
                <w:lsdException w:name="Light List Accent 1" w:uiPriority="61"/>
         
     | 
| 
      
 48 
     | 
    
         
            +
                <w:lsdException w:name="Light Grid Accent 1" w:uiPriority="62"/>
         
     | 
| 
      
 49 
     | 
    
         
            +
                <w:lsdException w:name="Medium Shading 1 Accent 1" w:uiPriority="63"/>
         
     | 
| 
      
 50 
     | 
    
         
            +
                <w:lsdException w:name="Medium Shading 2 Accent 1" w:uiPriority="64"/>
         
     | 
| 
      
 51 
     | 
    
         
            +
                <w:lsdException w:name="Medium List 1 Accent 1" w:uiPriority="65"/>
         
     | 
| 
      
 52 
     | 
    
         
            +
                <w:lsdException w:name="Revision" w:semiHidden="1" w:uiPriority="99"/>
         
     | 
| 
      
 53 
     | 
    
         
            +
                <w:lsdException w:name="List Paragraph" w:qFormat="1" w:uiPriority="34"/>
         
     | 
| 
      
 54 
     | 
    
         
            +
                <w:lsdException w:name="Quote" w:qFormat="1" w:uiPriority="29"/>
         
     | 
| 
      
 55 
     | 
    
         
            +
                <w:lsdException w:name="Intense Quote" w:qFormat="1" w:uiPriority="30"/>
         
     | 
| 
      
 56 
     | 
    
         
            +
                <w:lsdException w:name="Medium List 2 Accent 1" w:uiPriority="66"/>
         
     | 
| 
      
 57 
     | 
    
         
            +
                <w:lsdException w:name="Medium Grid 1 Accent 1" w:uiPriority="67"/>
         
     | 
| 
      
 58 
     | 
    
         
            +
                <w:lsdException w:name="Medium Grid 2 Accent 1" w:uiPriority="68"/>
         
     | 
| 
      
 59 
     | 
    
         
            +
                <w:lsdException w:name="Medium Grid 3 Accent 1" w:uiPriority="69"/>
         
     | 
| 
      
 60 
     | 
    
         
            +
                <w:lsdException w:name="Dark List Accent 1" w:uiPriority="70"/>
         
     | 
| 
      
 61 
     | 
    
         
            +
                <w:lsdException w:name="Colorful Shading Accent 1" w:uiPriority="71"/>
         
     | 
| 
      
 62 
     | 
    
         
            +
                <w:lsdException w:name="Colorful List Accent 1" w:uiPriority="72"/>
         
     | 
| 
      
 63 
     | 
    
         
            +
                <w:lsdException w:name="Colorful Grid Accent 1" w:uiPriority="73"/>
         
     | 
| 
      
 64 
     | 
    
         
            +
                <w:lsdException w:name="Light Shading Accent 2" w:uiPriority="60"/>
         
     | 
| 
      
 65 
     | 
    
         
            +
                <w:lsdException w:name="Light List Accent 2" w:uiPriority="61"/>
         
     | 
| 
      
 66 
     | 
    
         
            +
                <w:lsdException w:name="Light Grid Accent 2" w:uiPriority="62"/>
         
     | 
| 
      
 67 
     | 
    
         
            +
                <w:lsdException w:name="Medium Shading 1 Accent 2" w:uiPriority="63"/>
         
     | 
| 
      
 68 
     | 
    
         
            +
                <w:lsdException w:name="Medium Shading 2 Accent 2" w:uiPriority="64"/>
         
     | 
| 
      
 69 
     | 
    
         
            +
                <w:lsdException w:name="Medium List 1 Accent 2" w:uiPriority="65"/>
         
     | 
| 
      
 70 
     | 
    
         
            +
                <w:lsdException w:name="Medium List 2 Accent 2" w:uiPriority="66"/>
         
     | 
| 
      
 71 
     | 
    
         
            +
                <w:lsdException w:name="Medium Grid 1 Accent 2" w:uiPriority="67"/>
         
     | 
| 
      
 72 
     | 
    
         
            +
                <w:lsdException w:name="Medium Grid 2 Accent 2" w:uiPriority="68"/>
         
     | 
| 
      
 73 
     | 
    
         
            +
                <w:lsdException w:name="Medium Grid 3 Accent 2" w:uiPriority="69"/>
         
     | 
| 
      
 74 
     | 
    
         
            +
                <w:lsdException w:name="Dark List Accent 2" w:uiPriority="70"/>
         
     | 
| 
      
 75 
     | 
    
         
            +
                <w:lsdException w:name="Colorful Shading Accent 2" w:uiPriority="71"/>
         
     | 
| 
      
 76 
     | 
    
         
            +
                <w:lsdException w:name="Colorful List Accent 2" w:uiPriority="72"/>
         
     | 
| 
      
 77 
     | 
    
         
            +
                <w:lsdException w:name="Colorful Grid Accent 2" w:uiPriority="73"/>
         
     | 
| 
      
 78 
     | 
    
         
            +
                <w:lsdException w:name="Light Shading Accent 3" w:uiPriority="60"/>
         
     | 
| 
      
 79 
     | 
    
         
            +
                <w:lsdException w:name="Light List Accent 3" w:uiPriority="61"/>
         
     | 
| 
      
 80 
     | 
    
         
            +
                <w:lsdException w:name="Light Grid Accent 3" w:uiPriority="62"/>
         
     | 
| 
      
 81 
     | 
    
         
            +
                <w:lsdException w:name="Medium Shading 1 Accent 3" w:uiPriority="63"/>
         
     | 
| 
      
 82 
     | 
    
         
            +
                <w:lsdException w:name="Medium Shading 2 Accent 3" w:uiPriority="64"/>
         
     | 
| 
      
 83 
     | 
    
         
            +
                <w:lsdException w:name="Medium List 1 Accent 3" w:uiPriority="65"/>
         
     | 
| 
      
 84 
     | 
    
         
            +
                <w:lsdException w:name="Medium List 2 Accent 3" w:uiPriority="66"/>
         
     | 
| 
      
 85 
     | 
    
         
            +
                <w:lsdException w:name="Medium Grid 1 Accent 3" w:uiPriority="67"/>
         
     | 
| 
      
 86 
     | 
    
         
            +
                <w:lsdException w:name="Medium Grid 2 Accent 3" w:uiPriority="68"/>
         
     | 
| 
      
 87 
     | 
    
         
            +
                <w:lsdException w:name="Medium Grid 3 Accent 3" w:uiPriority="69"/>
         
     | 
| 
      
 88 
     | 
    
         
            +
                <w:lsdException w:name="Dark List Accent 3" w:uiPriority="70"/>
         
     | 
| 
      
 89 
     | 
    
         
            +
                <w:lsdException w:name="Colorful Shading Accent 3" w:uiPriority="71"/>
         
     | 
| 
      
 90 
     | 
    
         
            +
                <w:lsdException w:name="Colorful List Accent 3" w:uiPriority="72"/>
         
     | 
| 
      
 91 
     | 
    
         
            +
                <w:lsdException w:name="Colorful Grid Accent 3" w:uiPriority="73"/>
         
     | 
| 
      
 92 
     | 
    
         
            +
                <w:lsdException w:name="Light Shading Accent 4" w:uiPriority="60"/>
         
     | 
| 
      
 93 
     | 
    
         
            +
                <w:lsdException w:name="Light List Accent 4" w:uiPriority="61"/>
         
     | 
| 
      
 94 
     | 
    
         
            +
                <w:lsdException w:name="Light Grid Accent 4" w:uiPriority="62"/>
         
     | 
| 
      
 95 
     | 
    
         
            +
                <w:lsdException w:name="Medium Shading 1 Accent 4" w:uiPriority="63"/>
         
     | 
| 
      
 96 
     | 
    
         
            +
                <w:lsdException w:name="Medium Shading 2 Accent 4" w:uiPriority="64"/>
         
     | 
| 
      
 97 
     | 
    
         
            +
                <w:lsdException w:name="Medium List 1 Accent 4" w:uiPriority="65"/>
         
     | 
| 
      
 98 
     | 
    
         
            +
                <w:lsdException w:name="Medium List 2 Accent 4" w:uiPriority="66"/>
         
     | 
| 
      
 99 
     | 
    
         
            +
                <w:lsdException w:name="Medium Grid 1 Accent 4" w:uiPriority="67"/>
         
     | 
| 
      
 100 
     | 
    
         
            +
                <w:lsdException w:name="Medium Grid 2 Accent 4" w:uiPriority="68"/>
         
     | 
| 
      
 101 
     | 
    
         
            +
                <w:lsdException w:name="Medium Grid 3 Accent 4" w:uiPriority="69"/>
         
     | 
| 
      
 102 
     | 
    
         
            +
                <w:lsdException w:name="Dark List Accent 4" w:uiPriority="70"/>
         
     | 
| 
      
 103 
     | 
    
         
            +
                <w:lsdException w:name="Colorful Shading Accent 4" w:uiPriority="71"/>
         
     | 
| 
      
 104 
     | 
    
         
            +
                <w:lsdException w:name="Colorful List Accent 4" w:uiPriority="72"/>
         
     | 
| 
      
 105 
     | 
    
         
            +
                <w:lsdException w:name="Colorful Grid Accent 4" w:uiPriority="73"/>
         
     | 
| 
      
 106 
     | 
    
         
            +
                <w:lsdException w:name="Light Shading Accent 5" w:uiPriority="60"/>
         
     | 
| 
      
 107 
     | 
    
         
            +
                <w:lsdException w:name="Light List Accent 5" w:uiPriority="61"/>
         
     | 
| 
      
 108 
     | 
    
         
            +
                <w:lsdException w:name="Light Grid Accent 5" w:uiPriority="62"/>
         
     | 
| 
      
 109 
     | 
    
         
            +
                <w:lsdException w:name="Medium Shading 1 Accent 5" w:uiPriority="63"/>
         
     | 
| 
      
 110 
     | 
    
         
            +
                <w:lsdException w:name="Medium Shading 2 Accent 5" w:uiPriority="64"/>
         
     | 
| 
      
 111 
     | 
    
         
            +
                <w:lsdException w:name="Medium List 1 Accent 5" w:uiPriority="65"/>
         
     | 
| 
      
 112 
     | 
    
         
            +
                <w:lsdException w:name="Medium List 2 Accent 5" w:uiPriority="66"/>
         
     | 
| 
      
 113 
     | 
    
         
            +
                <w:lsdException w:name="Medium Grid 1 Accent 5" w:uiPriority="67"/>
         
     | 
| 
      
 114 
     | 
    
         
            +
                <w:lsdException w:name="Medium Grid 2 Accent 5" w:uiPriority="68"/>
         
     | 
| 
      
 115 
     | 
    
         
            +
                <w:lsdException w:name="Medium Grid 3 Accent 5" w:uiPriority="69"/>
         
     | 
| 
      
 116 
     | 
    
         
            +
                <w:lsdException w:name="Dark List Accent 5" w:uiPriority="70"/>
         
     | 
| 
      
 117 
     | 
    
         
            +
                <w:lsdException w:name="Colorful Shading Accent 5" w:uiPriority="71"/>
         
     | 
| 
      
 118 
     | 
    
         
            +
                <w:lsdException w:name="Colorful List Accent 5" w:uiPriority="72"/>
         
     | 
| 
      
 119 
     | 
    
         
            +
                <w:lsdException w:name="Colorful Grid Accent 5" w:uiPriority="73"/>
         
     | 
| 
      
 120 
     | 
    
         
            +
                <w:lsdException w:name="Light Shading Accent 6" w:uiPriority="60"/>
         
     | 
| 
      
 121 
     | 
    
         
            +
                <w:lsdException w:name="Light List Accent 6" w:uiPriority="61"/>
         
     | 
| 
      
 122 
     | 
    
         
            +
                <w:lsdException w:name="Light Grid Accent 6" w:uiPriority="62"/>
         
     | 
| 
      
 123 
     | 
    
         
            +
                <w:lsdException w:name="Medium Shading 1 Accent 6" w:uiPriority="63"/>
         
     | 
| 
      
 124 
     | 
    
         
            +
                <w:lsdException w:name="Medium Shading 2 Accent 6" w:uiPriority="64"/>
         
     | 
| 
      
 125 
     | 
    
         
            +
                <w:lsdException w:name="Medium List 1 Accent 6" w:uiPriority="65"/>
         
     | 
| 
      
 126 
     | 
    
         
            +
                <w:lsdException w:name="Medium List 2 Accent 6" w:uiPriority="66"/>
         
     | 
| 
      
 127 
     | 
    
         
            +
                <w:lsdException w:name="Medium Grid 1 Accent 6" w:uiPriority="67"/>
         
     | 
| 
      
 128 
     | 
    
         
            +
                <w:lsdException w:name="Medium Grid 2 Accent 6" w:uiPriority="68"/>
         
     | 
| 
      
 129 
     | 
    
         
            +
                <w:lsdException w:name="Medium Grid 3 Accent 6" w:uiPriority="69"/>
         
     | 
| 
      
 130 
     | 
    
         
            +
                <w:lsdException w:name="Dark List Accent 6" w:uiPriority="70"/>
         
     | 
| 
      
 131 
     | 
    
         
            +
                <w:lsdException w:name="Colorful Shading Accent 6" w:uiPriority="71"/>
         
     | 
| 
      
 132 
     | 
    
         
            +
                <w:lsdException w:name="Colorful List Accent 6" w:uiPriority="72"/>
         
     | 
| 
      
 133 
     | 
    
         
            +
                <w:lsdException w:name="Colorful Grid Accent 6" w:uiPriority="73"/>
         
     | 
| 
      
 134 
     | 
    
         
            +
                <w:lsdException w:name="Subtle Emphasis" w:qFormat="1" w:uiPriority="19"/>
         
     | 
| 
      
 135 
     | 
    
         
            +
                <w:lsdException w:name="Intense Emphasis" w:qFormat="1" w:uiPriority="21"/>
         
     | 
| 
      
 136 
     | 
    
         
            +
                <w:lsdException w:name="Subtle Reference" w:qFormat="1" w:uiPriority="31"/>
         
     | 
| 
      
 137 
     | 
    
         
            +
                <w:lsdException w:name="Intense Reference" w:qFormat="1" w:uiPriority="32"/>
         
     | 
| 
      
 138 
     | 
    
         
            +
                <w:lsdException w:name="Book Title" w:qFormat="1" w:uiPriority="33"/>
         
     | 
| 
      
 139 
     | 
    
         
            +
                <w:lsdException w:name="Bibliography" w:semiHidden="1" w:uiPriority="37" w:unhideWhenUsed="1"/>
         
     | 
| 
      
 140 
     | 
    
         
            +
              </w:latentStyles>
         
     | 
| 
      
 141 
     | 
    
         
            +
              <w:style w:default="1" w:styleId="a" w:type="paragraph">
         
     | 
| 
      
 142 
     | 
    
         
            +
                <w:name w:val="Normal"/>
         
     | 
| 
      
 143 
     | 
    
         
            +
                <w:qFormat/>
         
     | 
| 
      
 144 
     | 
    
         
            +
                <w:rPr>
         
     | 
| 
      
 145 
     | 
    
         
            +
                  <w:sz w:val="24"/>
         
     | 
| 
      
 146 
     | 
    
         
            +
                  <w:szCs w:val="24"/>
         
     | 
| 
      
 147 
     | 
    
         
            +
                </w:rPr>
         
     | 
| 
      
 148 
     | 
    
         
            +
              </w:style>
         
     | 
| 
      
 149 
     | 
    
         
            +
              <w:style w:styleId="1" w:type="paragraph">
         
     | 
| 
      
 150 
     | 
    
         
            +
                <w:name w:val="heading 1"/>
         
     | 
| 
      
 151 
     | 
    
         
            +
                <w:basedOn w:val="a"/>
         
     | 
| 
      
 152 
     | 
    
         
            +
                <w:next w:val="a"/>
         
     | 
| 
      
 153 
     | 
    
         
            +
                <w:qFormat/>
         
     | 
| 
      
 154 
     | 
    
         
            +
                <w:pPr>
         
     | 
| 
      
 155 
     | 
    
         
            +
                  <w:keepNext/>
         
     | 
| 
      
 156 
     | 
    
         
            +
                  <w:spacing w:after="60" w:before="240"/>
         
     | 
| 
      
 157 
     | 
    
         
            +
                  <w:outlineLvl w:val="0"/>
         
     | 
| 
      
 158 
     | 
    
         
            +
                </w:pPr>
         
     | 
| 
      
 159 
     | 
    
         
            +
                <w:rPr>
         
     | 
| 
      
 160 
     | 
    
         
            +
                  <w:rFonts w:cs="Arial"/>
         
     | 
| 
      
 161 
     | 
    
         
            +
                  <w:b/>
         
     | 
| 
      
 162 
     | 
    
         
            +
                  <w:bCs/>
         
     | 
| 
      
 163 
     | 
    
         
            +
                  <w:kern w:val="32"/>
         
     | 
| 
      
 164 
     | 
    
         
            +
                  <w:szCs w:val="32"/>
         
     | 
| 
      
 165 
     | 
    
         
            +
                </w:rPr>
         
     | 
| 
      
 166 
     | 
    
         
            +
              </w:style>
         
     | 
| 
      
 167 
     | 
    
         
            +
              <w:style w:styleId="2" w:type="paragraph">
         
     | 
| 
      
 168 
     | 
    
         
            +
                <w:name w:val="heading 2"/>
         
     | 
| 
      
 169 
     | 
    
         
            +
                <w:basedOn w:val="a"/>
         
     | 
| 
      
 170 
     | 
    
         
            +
                <w:next w:val="a"/>
         
     | 
| 
      
 171 
     | 
    
         
            +
                <w:qFormat/>
         
     | 
| 
      
 172 
     | 
    
         
            +
                <w:pPr>
         
     | 
| 
      
 173 
     | 
    
         
            +
                  <w:keepNext/>
         
     | 
| 
      
 174 
     | 
    
         
            +
                  <w:spacing w:after="60" w:before="240"/>
         
     | 
| 
      
 175 
     | 
    
         
            +
                  <w:outlineLvl w:val="1"/>
         
     | 
| 
      
 176 
     | 
    
         
            +
                </w:pPr>
         
     | 
| 
      
 177 
     | 
    
         
            +
                <w:rPr>
         
     | 
| 
      
 178 
     | 
    
         
            +
                  <w:rFonts w:ascii="Arial" w:cs="Arial" w:hAnsi="Arial"/>
         
     | 
| 
      
 179 
     | 
    
         
            +
                  <w:b/>
         
     | 
| 
      
 180 
     | 
    
         
            +
                  <w:bCs/>
         
     | 
| 
      
 181 
     | 
    
         
            +
                  <w:i/>
         
     | 
| 
      
 182 
     | 
    
         
            +
                  <w:iCs/>
         
     | 
| 
      
 183 
     | 
    
         
            +
                  <w:sz w:val="28"/>
         
     | 
| 
      
 184 
     | 
    
         
            +
                  <w:szCs w:val="28"/>
         
     | 
| 
      
 185 
     | 
    
         
            +
                </w:rPr>
         
     | 
| 
      
 186 
     | 
    
         
            +
              </w:style>
         
     | 
| 
      
 187 
     | 
    
         
            +
              <w:style w:styleId="3" w:type="paragraph">
         
     | 
| 
      
 188 
     | 
    
         
            +
                <w:name w:val="heading 3"/>
         
     | 
| 
      
 189 
     | 
    
         
            +
                <w:basedOn w:val="a"/>
         
     | 
| 
      
 190 
     | 
    
         
            +
                <w:next w:val="a"/>
         
     | 
| 
      
 191 
     | 
    
         
            +
                <w:qFormat/>
         
     | 
| 
      
 192 
     | 
    
         
            +
                <w:pPr>
         
     | 
| 
      
 193 
     | 
    
         
            +
                  <w:keepNext/>
         
     | 
| 
      
 194 
     | 
    
         
            +
                  <w:spacing w:after="60" w:before="240"/>
         
     | 
| 
      
 195 
     | 
    
         
            +
                  <w:outlineLvl w:val="2"/>
         
     | 
| 
      
 196 
     | 
    
         
            +
                </w:pPr>
         
     | 
| 
      
 197 
     | 
    
         
            +
                <w:rPr>
         
     | 
| 
      
 198 
     | 
    
         
            +
                  <w:rFonts w:ascii="Arial" w:cs="Arial" w:hAnsi="Arial"/>
         
     | 
| 
      
 199 
     | 
    
         
            +
                  <w:b/>
         
     | 
| 
      
 200 
     | 
    
         
            +
                  <w:bCs/>
         
     | 
| 
      
 201 
     | 
    
         
            +
                  <w:sz w:val="26"/>
         
     | 
| 
      
 202 
     | 
    
         
            +
                  <w:szCs w:val="26"/>
         
     | 
| 
      
 203 
     | 
    
         
            +
                </w:rPr>
         
     | 
| 
      
 204 
     | 
    
         
            +
              </w:style>
         
     | 
| 
      
 205 
     | 
    
         
            +
              <w:style w:default="1" w:styleId="a0" w:type="character">
         
     | 
| 
      
 206 
     | 
    
         
            +
                <w:name w:val="Default Paragraph Font"/>
         
     | 
| 
      
 207 
     | 
    
         
            +
                <w:semiHidden/>
         
     | 
| 
      
 208 
     | 
    
         
            +
              </w:style>
         
     | 
| 
      
 209 
     | 
    
         
            +
              <w:style w:default="1" w:styleId="a1" w:type="table">
         
     | 
| 
      
 210 
     | 
    
         
            +
                <w:name w:val="Normal Table"/>
         
     | 
| 
      
 211 
     | 
    
         
            +
                <w:semiHidden/>
         
     | 
| 
      
 212 
     | 
    
         
            +
                <w:tblPr>
         
     | 
| 
      
 213 
     | 
    
         
            +
                  <w:tblInd w:type="dxa" w:w="0"/>
         
     | 
| 
      
 214 
     | 
    
         
            +
                  <w:tblCellMar>
         
     | 
| 
      
 215 
     | 
    
         
            +
                    <w:top w:type="dxa" w:w="0"/>
         
     | 
| 
      
 216 
     | 
    
         
            +
                    <w:left w:type="dxa" w:w="108"/>
         
     | 
| 
      
 217 
     | 
    
         
            +
                    <w:bottom w:type="dxa" w:w="0"/>
         
     | 
| 
      
 218 
     | 
    
         
            +
                    <w:right w:type="dxa" w:w="108"/>
         
     | 
| 
      
 219 
     | 
    
         
            +
                  </w:tblCellMar>
         
     | 
| 
      
 220 
     | 
    
         
            +
                </w:tblPr>
         
     | 
| 
      
 221 
     | 
    
         
            +
              </w:style>
         
     | 
| 
      
 222 
     | 
    
         
            +
              <w:style w:default="1" w:styleId="a2" w:type="numbering">
         
     | 
| 
      
 223 
     | 
    
         
            +
                <w:name w:val="No List"/>
         
     | 
| 
      
 224 
     | 
    
         
            +
                <w:semiHidden/>
         
     | 
| 
      
 225 
     | 
    
         
            +
              </w:style>
         
     | 
| 
      
 226 
     | 
    
         
            +
              <w:style w:customStyle="1" w:styleId="defprnRUSSelStyle" w:type="paragraph">
         
     | 
| 
      
 227 
     | 
    
         
            +
                <w:name w:val="defprn_RUS_SelStyle"/>
         
     | 
| 
      
 228 
     | 
    
         
            +
                <w:basedOn w:val="a"/>
         
     | 
| 
      
 229 
     | 
    
         
            +
                <w:autoRedefine/>
         
     | 
| 
      
 230 
     | 
    
         
            +
                <w:pPr>
         
     | 
| 
      
 231 
     | 
    
         
            +
                  <w:keepNext/>
         
     | 
| 
      
 232 
     | 
    
         
            +
                  <w:keepLines/>
         
     | 
| 
      
 233 
     | 
    
         
            +
                  <w:pBdr>
         
     | 
| 
      
 234 
     | 
    
         
            +
                    <w:top w:color="auto" w:shadow="1" w:space="1" w:sz="8" w:val="single"/>
         
     | 
| 
      
 235 
     | 
    
         
            +
                    <w:left w:color="auto" w:shadow="1" w:space="4" w:sz="8" w:val="single"/>
         
     | 
| 
      
 236 
     | 
    
         
            +
                    <w:bottom w:color="auto" w:shadow="1" w:space="1" w:sz="8" w:val="single"/>
         
     | 
| 
      
 237 
     | 
    
         
            +
                    <w:right w:color="auto" w:shadow="1" w:space="4" w:sz="8" w:val="single"/>
         
     | 
| 
      
 238 
     | 
    
         
            +
                  </w:pBdr>
         
     | 
| 
      
 239 
     | 
    
         
            +
                  <w:spacing w:after="120" w:before="240"/>
         
     | 
| 
      
 240 
     | 
    
         
            +
                  <w:jc w:val="center"/>
         
     | 
| 
      
 241 
     | 
    
         
            +
                </w:pPr>
         
     | 
| 
      
 242 
     | 
    
         
            +
                <w:rPr>
         
     | 
| 
      
 243 
     | 
    
         
            +
                  <w:noProof/>
         
     | 
| 
      
 244 
     | 
    
         
            +
                  <w:color w:val="000000"/>
         
     | 
| 
      
 245 
     | 
    
         
            +
                  <w:spacing w:val="80"/>
         
     | 
| 
      
 246 
     | 
    
         
            +
                  <w:sz w:val="20"/>
         
     | 
| 
      
 247 
     | 
    
         
            +
                  <w:szCs w:val="20"/>
         
     | 
| 
      
 248 
     | 
    
         
            +
                </w:rPr>
         
     | 
| 
      
 249 
     | 
    
         
            +
              </w:style>
         
     | 
| 
      
 250 
     | 
    
         
            +
              <w:style w:styleId="a3" w:type="paragraph">
         
     | 
| 
      
 251 
     | 
    
         
            +
                <w:name w:val="footer"/>
         
     | 
| 
      
 252 
     | 
    
         
            +
                <w:basedOn w:val="a"/>
         
     | 
| 
      
 253 
     | 
    
         
            +
                <w:pPr>
         
     | 
| 
      
 254 
     | 
    
         
            +
                  <w:tabs>
         
     | 
| 
      
 255 
     | 
    
         
            +
                    <w:tab w:pos="4677" w:val="center"/>
         
     | 
| 
      
 256 
     | 
    
         
            +
                    <w:tab w:pos="9355" w:val="right"/>
         
     | 
| 
      
 257 
     | 
    
         
            +
                  </w:tabs>
         
     | 
| 
      
 258 
     | 
    
         
            +
                </w:pPr>
         
     | 
| 
      
 259 
     | 
    
         
            +
              </w:style>
         
     | 
| 
      
 260 
     | 
    
         
            +
              <w:style w:styleId="a4" w:type="character">
         
     | 
| 
      
 261 
     | 
    
         
            +
                <w:name w:val="page number"/>
         
     | 
| 
      
 262 
     | 
    
         
            +
                <w:basedOn w:val="a0"/>
         
     | 
| 
      
 263 
     | 
    
         
            +
              </w:style>
         
     | 
| 
      
 264 
     | 
    
         
            +
              <w:style w:styleId="10" w:type="paragraph">
         
     | 
| 
      
 265 
     | 
    
         
            +
                <w:name w:val="toc 1"/>
         
     | 
| 
      
 266 
     | 
    
         
            +
                <w:basedOn w:val="a"/>
         
     | 
| 
      
 267 
     | 
    
         
            +
                <w:next w:val="a"/>
         
     | 
| 
      
 268 
     | 
    
         
            +
                <w:autoRedefine/>
         
     | 
| 
      
 269 
     | 
    
         
            +
                <w:uiPriority w:val="39"/>
         
     | 
| 
      
 270 
     | 
    
         
            +
              </w:style>
         
     | 
| 
      
 271 
     | 
    
         
            +
              <w:style w:styleId="a5" w:type="character">
         
     | 
| 
      
 272 
     | 
    
         
            +
                <w:name w:val="Hyperlink"/>
         
     | 
| 
      
 273 
     | 
    
         
            +
                <w:basedOn w:val="a0"/>
         
     | 
| 
      
 274 
     | 
    
         
            +
                <w:uiPriority w:val="99"/>
         
     | 
| 
      
 275 
     | 
    
         
            +
                <w:rPr>
         
     | 
| 
      
 276 
     | 
    
         
            +
                  <w:color w:val="0000FF"/>
         
     | 
| 
      
 277 
     | 
    
         
            +
                  <w:u w:val="single"/>
         
     | 
| 
      
 278 
     | 
    
         
            +
                </w:rPr>
         
     | 
| 
      
 279 
     | 
    
         
            +
              </w:style>
         
     | 
| 
      
 280 
     | 
    
         
            +
              <w:style w:styleId="a6" w:type="paragraph">
         
     | 
| 
      
 281 
     | 
    
         
            +
                <w:name w:val="Body Text"/>
         
     | 
| 
      
 282 
     | 
    
         
            +
                <w:basedOn w:val="a"/>
         
     | 
| 
      
 283 
     | 
    
         
            +
                <w:rPr>
         
     | 
| 
      
 284 
     | 
    
         
            +
                  <w:b/>
         
     | 
| 
      
 285 
     | 
    
         
            +
                  <w:bCs/>
         
     | 
| 
      
 286 
     | 
    
         
            +
                </w:rPr>
         
     | 
| 
      
 287 
     | 
    
         
            +
              </w:style>
         
     | 
| 
      
 288 
     | 
    
         
            +
              <w:style w:styleId="20" w:type="paragraph">
         
     | 
| 
      
 289 
     | 
    
         
            +
                <w:name w:val="toc 2"/>
         
     | 
| 
      
 290 
     | 
    
         
            +
                <w:basedOn w:val="a"/>
         
     | 
| 
      
 291 
     | 
    
         
            +
                <w:next w:val="a"/>
         
     | 
| 
      
 292 
     | 
    
         
            +
                <w:autoRedefine/>
         
     | 
| 
      
 293 
     | 
    
         
            +
                <w:semiHidden/>
         
     | 
| 
      
 294 
     | 
    
         
            +
                <w:pPr>
         
     | 
| 
      
 295 
     | 
    
         
            +
                  <w:ind w:left="240"/>
         
     | 
| 
      
 296 
     | 
    
         
            +
                </w:pPr>
         
     | 
| 
      
 297 
     | 
    
         
            +
              </w:style>
         
     | 
| 
      
 298 
     | 
    
         
            +
              <w:style w:styleId="30" w:type="paragraph">
         
     | 
| 
      
 299 
     | 
    
         
            +
                <w:name w:val="toc 3"/>
         
     | 
| 
      
 300 
     | 
    
         
            +
                <w:basedOn w:val="a"/>
         
     | 
| 
      
 301 
     | 
    
         
            +
                <w:next w:val="a"/>
         
     | 
| 
      
 302 
     | 
    
         
            +
                <w:autoRedefine/>
         
     | 
| 
      
 303 
     | 
    
         
            +
                <w:semiHidden/>
         
     | 
| 
      
 304 
     | 
    
         
            +
                <w:pPr>
         
     | 
| 
      
 305 
     | 
    
         
            +
                  <w:ind w:left="480"/>
         
     | 
| 
      
 306 
     | 
    
         
            +
                </w:pPr>
         
     | 
| 
      
 307 
     | 
    
         
            +
              </w:style>
         
     | 
| 
      
 308 
     | 
    
         
            +
              <w:style w:styleId="4" w:type="paragraph">
         
     | 
| 
      
 309 
     | 
    
         
            +
                <w:name w:val="toc 4"/>
         
     | 
| 
      
 310 
     | 
    
         
            +
                <w:basedOn w:val="a"/>
         
     | 
| 
      
 311 
     | 
    
         
            +
                <w:next w:val="a"/>
         
     | 
| 
      
 312 
     | 
    
         
            +
                <w:autoRedefine/>
         
     | 
| 
      
 313 
     | 
    
         
            +
                <w:semiHidden/>
         
     | 
| 
      
 314 
     | 
    
         
            +
                <w:pPr>
         
     | 
| 
      
 315 
     | 
    
         
            +
                  <w:ind w:left="720"/>
         
     | 
| 
      
 316 
     | 
    
         
            +
                </w:pPr>
         
     | 
| 
      
 317 
     | 
    
         
            +
              </w:style>
         
     | 
| 
      
 318 
     | 
    
         
            +
              <w:style w:styleId="5" w:type="paragraph">
         
     | 
| 
      
 319 
     | 
    
         
            +
                <w:name w:val="toc 5"/>
         
     | 
| 
      
 320 
     | 
    
         
            +
                <w:basedOn w:val="a"/>
         
     | 
| 
      
 321 
     | 
    
         
            +
                <w:next w:val="a"/>
         
     | 
| 
      
 322 
     | 
    
         
            +
                <w:autoRedefine/>
         
     | 
| 
      
 323 
     | 
    
         
            +
                <w:semiHidden/>
         
     | 
| 
      
 324 
     | 
    
         
            +
                <w:pPr>
         
     | 
| 
      
 325 
     | 
    
         
            +
                  <w:ind w:left="960"/>
         
     | 
| 
      
 326 
     | 
    
         
            +
                </w:pPr>
         
     | 
| 
      
 327 
     | 
    
         
            +
              </w:style>
         
     | 
| 
      
 328 
     | 
    
         
            +
              <w:style w:styleId="6" w:type="paragraph">
         
     | 
| 
      
 329 
     | 
    
         
            +
                <w:name w:val="toc 6"/>
         
     | 
| 
      
 330 
     | 
    
         
            +
                <w:basedOn w:val="a"/>
         
     | 
| 
      
 331 
     | 
    
         
            +
                <w:next w:val="a"/>
         
     | 
| 
      
 332 
     | 
    
         
            +
                <w:autoRedefine/>
         
     | 
| 
      
 333 
     | 
    
         
            +
                <w:semiHidden/>
         
     | 
| 
      
 334 
     | 
    
         
            +
                <w:pPr>
         
     | 
| 
      
 335 
     | 
    
         
            +
                  <w:ind w:left="1200"/>
         
     | 
| 
      
 336 
     | 
    
         
            +
                </w:pPr>
         
     | 
| 
      
 337 
     | 
    
         
            +
              </w:style>
         
     | 
| 
      
 338 
     | 
    
         
            +
              <w:style w:styleId="7" w:type="paragraph">
         
     | 
| 
      
 339 
     | 
    
         
            +
                <w:name w:val="toc 7"/>
         
     | 
| 
      
 340 
     | 
    
         
            +
                <w:basedOn w:val="a"/>
         
     | 
| 
      
 341 
     | 
    
         
            +
                <w:next w:val="a"/>
         
     | 
| 
      
 342 
     | 
    
         
            +
                <w:autoRedefine/>
         
     | 
| 
      
 343 
     | 
    
         
            +
                <w:semiHidden/>
         
     | 
| 
      
 344 
     | 
    
         
            +
                <w:pPr>
         
     | 
| 
      
 345 
     | 
    
         
            +
                  <w:ind w:left="1440"/>
         
     | 
| 
      
 346 
     | 
    
         
            +
                </w:pPr>
         
     | 
| 
      
 347 
     | 
    
         
            +
              </w:style>
         
     | 
| 
      
 348 
     | 
    
         
            +
              <w:style w:styleId="8" w:type="paragraph">
         
     | 
| 
      
 349 
     | 
    
         
            +
                <w:name w:val="toc 8"/>
         
     | 
| 
      
 350 
     | 
    
         
            +
                <w:basedOn w:val="a"/>
         
     | 
| 
      
 351 
     | 
    
         
            +
                <w:next w:val="a"/>
         
     | 
| 
      
 352 
     | 
    
         
            +
                <w:autoRedefine/>
         
     | 
| 
      
 353 
     | 
    
         
            +
                <w:semiHidden/>
         
     | 
| 
      
 354 
     | 
    
         
            +
                <w:pPr>
         
     | 
| 
      
 355 
     | 
    
         
            +
                  <w:ind w:left="1680"/>
         
     | 
| 
      
 356 
     | 
    
         
            +
                </w:pPr>
         
     | 
| 
      
 357 
     | 
    
         
            +
              </w:style>
         
     | 
| 
      
 358 
     | 
    
         
            +
              <w:style w:styleId="9" w:type="paragraph">
         
     | 
| 
      
 359 
     | 
    
         
            +
                <w:name w:val="toc 9"/>
         
     | 
| 
      
 360 
     | 
    
         
            +
                <w:basedOn w:val="a"/>
         
     | 
| 
      
 361 
     | 
    
         
            +
                <w:next w:val="a"/>
         
     | 
| 
      
 362 
     | 
    
         
            +
                <w:autoRedefine/>
         
     | 
| 
      
 363 
     | 
    
         
            +
                <w:semiHidden/>
         
     | 
| 
      
 364 
     | 
    
         
            +
                <w:pPr>
         
     | 
| 
      
 365 
     | 
    
         
            +
                  <w:ind w:left="1920"/>
         
     | 
| 
      
 366 
     | 
    
         
            +
                </w:pPr>
         
     | 
| 
      
 367 
     | 
    
         
            +
              </w:style>
         
     | 
| 
      
 368 
     | 
    
         
            +
            </w:styles>
         
     |