feat: Support indent

main
bokuweb 2019-11-11 16:48:28 +09:00
parent 67b6be4618
commit b28c482c75
21 changed files with 1013 additions and 11 deletions

View File

@ -0,0 +1,24 @@
use docx_core::*;
pub const DUMMY: &str = "Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua.";
pub fn main() {
let path = std::path::Path::new("./output/indent.docx");
let file = std::fs::File::create(&path).unwrap();
Docx::new()
.add_paragraph(Paragraph::new().add_run(Run::new(DUMMY)).indent(840, None))
.add_paragraph(Paragraph::new())
.add_paragraph(
Paragraph::new()
.add_run(Run::new(DUMMY))
.indent(840, Some(SpecialIndentType::FirstLine(720))),
)
.add_paragraph(Paragraph::new())
.add_paragraph(
Paragraph::new()
.add_run(Run::new(DUMMY))
.indent(1560, Some(SpecialIndentType::Hanging(720))),
)
.build()
.pack(file);
}

View File

@ -0,0 +1,59 @@
use crate::documents::BuildXML;
use crate::types::*;
use crate::xml_builder::*;
#[derive(Debug)]
pub struct Indent {
left: usize,
special_indent: Option<SpecialIndentType>,
}
impl Indent {
pub fn new(left: usize, special_indent: Option<SpecialIndentType>) -> Indent {
Indent {
left,
special_indent,
}
}
}
impl BuildXML for Indent {
fn build(&self) -> Vec<u8> {
XMLBuilder::new()
.indent(self.left, self.special_indent)
.build()
}
}
#[cfg(test)]
mod tests {
use super::*;
#[cfg(test)]
use pretty_assertions::assert_eq;
use std::str;
#[test]
fn test_left() {
let b = Indent::new(20, None).build();
assert_eq!(str::from_utf8(&b).unwrap(), r#"<w:ind w:left="20" />"#);
}
#[test]
fn test_first_line() {
let b = Indent::new(20, Some(SpecialIndentType::FirstLine(40))).build();
assert_eq!(
str::from_utf8(&b).unwrap(),
r#"<w:ind w:left="20" w:firstLine="40" />"#
);
}
#[test]
fn test_hanging() {
let b = Indent::new(20, Some(SpecialIndentType::Hanging(50))).build();
assert_eq!(
str::from_utf8(&b).unwrap(),
r#"<w:ind w:left="20" w:hanging="50" />"#
);
}
}

View File

@ -1,6 +1,7 @@
mod based_on;
mod color;
mod doc_defaults;
mod indent;
mod justification;
mod name;
mod next;
@ -19,6 +20,7 @@ mod text;
pub use based_on::*;
pub use color::*;
pub use doc_defaults::*;
pub use indent::*;
pub use justification::*;
pub use name::*;
pub use next::*;

View File

@ -42,6 +42,11 @@ impl Paragraph {
self.property = self.property.style(style_id);
self
}
pub fn indent(mut self, left: usize, special_indent: Option<SpecialIndentType>) -> Paragraph {
self.property = self.property.indent(left, special_indent);
self
}
}
impl BuildXML for Paragraph {

View File

@ -1,22 +1,24 @@
use super::{Justification, ParagraphStyle, RunProperty, Sz, SzCs};
use super::{Indent, Justification, ParagraphStyle, RunProperty};
use crate::documents::BuildXML;
use crate::types::AlignmentType;
use crate::types::{AlignmentType, SpecialIndentType};
use crate::xml_builder::*;
#[derive(Debug)]
pub struct ParagraphProperty {
alignment: Option<Justification>,
run_property: RunProperty,
style: ParagraphStyle,
alignment: Option<Justification>,
indent: Option<Indent>,
}
impl Default for ParagraphProperty {
fn default() -> Self {
let s: Option<&str> = None;
ParagraphProperty {
alignment: None,
run_property: RunProperty::new(),
style: ParagraphStyle::new(s),
alignment: None,
indent: None,
}
}
}
@ -40,13 +42,25 @@ impl ParagraphProperty {
self.style = ParagraphStyle::new(Some(style_id));
self
}
pub fn indent(
mut self,
left: usize,
special_indent: Option<SpecialIndentType>,
) -> ParagraphProperty {
self.indent = Some(Indent::new(left, special_indent));
self
}
}
impl BuildXML for ParagraphProperty {
fn build(&self) -> Vec<u8> {
XMLBuilder::new()
.open_paragraph_property()
.add_child(&self.style)
.add_child(&self.run_property)
.add_optional_child(&self.alignment)
.add_optional_child(&self.indent)
.close()
.build()
}
@ -64,7 +78,10 @@ mod tests {
fn test_default() {
let c = ParagraphProperty::new();
let b = c.build();
assert_eq!(str::from_utf8(&b).unwrap(), r#"<w:pPr />"#);
assert_eq!(
str::from_utf8(&b).unwrap(),
r#"<w:pPr><w:pStyle w:val="Normal" /><w:rPr /></w:pPr>"#
);
}
#[test]
@ -73,7 +90,17 @@ mod tests {
let b = c.align(AlignmentType::Right).build();
assert_eq!(
str::from_utf8(&b).unwrap(),
r#"<w:pPr><w:jc w:val="right" /></w:pPr>"#
r#"<w:pPr><w:pStyle w:val="Normal" /><w:rPr /><w:jc w:val="right" /></w:pPr>"#
);
}
#[test]
fn test_indent() {
let c = ParagraphProperty::new();
let b = c.indent(20, None).build();
assert_eq!(
str::from_utf8(&b).unwrap(),
r#"<w:pPr><w:pStyle w:val="Normal" /><w:rPr /><w:ind w:left="20" /></w:pPr>"#
);
}
}

View File

@ -1,5 +1,7 @@
pub mod alignment_type;
pub mod special_indent_type;
pub mod style_type;
pub use alignment_type::*;
pub use special_indent_type::*;
pub use style_type::*;

View File

@ -0,0 +1,7 @@
// INFO: wasm-bindgen allow c-style enum for now
// Please convert typescript type to following type.
#[derive(Copy, Clone, Debug)]
pub enum SpecialIndentType {
FirstLine(usize),
Hanging(usize),
}

View File

@ -2,6 +2,8 @@ use super::XMLBuilder;
use super::XmlEvent;
use crate::types::*;
const EXPECT_MESSAGE: &str = "should write buf";
impl XMLBuilder {
// i.e. <w:body... >
opened_el!(open_body, "w:body");
@ -16,8 +18,8 @@ impl XMLBuilder {
};
self.writer
.write(XmlEvent::start_element("w:t").attr("xml:space", space))
.expect("should write to buf");
self.writer.write(text).expect("should write to buf");
.expect(EXPECT_MESSAGE);
self.writer.write(text).expect(EXPECT_MESSAGE);
self.close()
}
// i.e. <w:r ... >
@ -49,14 +51,14 @@ impl XMLBuilder {
.attr("w:type", &style_type.to_string())
.attr("w:styleId", id),
)
.expect("should write to buf");
.expect(EXPECT_MESSAGE);
self
}
// i.e. <w:next ... >
pub(crate) fn next(mut self, val: &str) -> Self {
self.writer
.write(XmlEvent::start_element("w:next").attr("w:val", val))
.expect("should write to buf");
.expect(EXPECT_MESSAGE);
self.close()
}
@ -64,7 +66,25 @@ impl XMLBuilder {
pub(crate) fn color(mut self, val: &str) -> Self {
self.writer
.write(XmlEvent::start_element("w:color").attr("w:val", val))
.expect("should write to buf");
.expect(EXPECT_MESSAGE);
self.close()
}
// i.e. <w:ind ... >
pub(crate) fn indent(mut self, left: usize, special_indent: Option<SpecialIndentType>) -> Self {
let left = &format!("{}", left);
let base = XmlEvent::start_element("w:ind").attr("w:left", left);
match special_indent {
Some(SpecialIndentType::FirstLine(v)) => self
.writer
.write(base.attr("w:firstLine", &format!("{}", v)))
.expect(EXPECT_MESSAGE),
Some(SpecialIndentType::Hanging(v)) => self
.writer
.write(base.attr("w:hanging", &format!("{}", v)))
.expect(EXPECT_MESSAGE),
_ => self.writer.write(base).expect(EXPECT_MESSAGE),
};
self.close()
}
}

View File

@ -0,0 +1 @@
<?xml version="1.0" encoding="utf-8"?><Types xmlns="http://schemas.openxmlformats.org/package/2006/content-types"><Default Extension="rels" ContentType="application/vnd.openxmlformats-package.relationships+xml" /><Default Extension="xml" ContentType="application/xml" /><Override PartName="/word/document2.xml" ContentType="application/vnd.openxmlformats-officedocument.wordprocessingml.document.main+xml" /><Override PartName="/word/styles.xml" ContentType="application/vnd.openxmlformats-officedocument.wordprocessingml.styles+xml" /><Override PartName="/word/settings.xml" ContentType="application/vnd.openxmlformats-officedocument.wordprocessingml.settings+xml" /><Override PartName="/word/webSettings.xml" ContentType="application/vnd.openxmlformats-officedocument.wordprocessingml.webSettings+xml" /><Override PartName="/word/fontTable.xml" ContentType="application/vnd.openxmlformats-officedocument.wordprocessingml.fontTable+xml" /><Override PartName="/word/theme/theme1.xml" ContentType="application/vnd.openxmlformats-officedocument.theme+xml" /><Override PartName="/docProps/core.xml" ContentType="application/vnd.openxmlformats-package.core-properties+xml" /><Override PartName="/docProps/app.xml" ContentType="application/vnd.openxmlformats-officedocument.extended-properties+xml" /></Types>

View File

@ -0,0 +1 @@
<?xml version="1.0" encoding="utf-8"?><Relationships xmlns="http://schemas.openxmlformats.org/package/2006/relationships"><Relationship Type="http://schemas.openxmlformats.org/officeDocument/2006/relationships/extended-properties" Target="docProps/app.xml" Id="rId3" /><Relationship Type="http://schemas.openxmlformats.org/package/2006/relationships/metadata/core-properties" Target="docProps/core.xml" Id="rId2" /><Relationship Type="http://schemas.openxmlformats.org/officeDocument/2006/relationships/officeDocument" Target="/word/document2.xml" Id="rId1" /></Relationships>

View File

@ -0,0 +1 @@
<?xml version="1.0" encoding="utf-8" standalone="yes"?><ap:Properties xmlns="http://schemas.openxmlformats.org/officeDocument/2006/extended-properties" xmlns:vt="http://schemas.openxmlformats.org/officeDocument/2006/docPropsVTypes" xmlns:ap="http://schemas.openxmlformats.org/officeDocument/2006/extended-properties"><ap:Application>Microsoft Office Word</ap:Application><ap:DocSecurity>0</ap:DocSecurity><ap:ScaleCrop>false</ap:ScaleCrop><ap:Company /><ap:SharedDoc>false</ap:SharedDoc><ap:HyperlinksChanged>false</ap:HyperlinksChanged><ap:AppVersion>00.0001</ap:AppVersion><ap:Template>Normal.dotm</ap:Template><ap:LinksUpToDate>false</ap:LinksUpToDate></ap:Properties>

View File

@ -0,0 +1 @@
<?xml version="1.0" encoding="utf-8"?><coreProperties xmlns:dc="http://purl.org/dc/elements/1.1/" xmlns:dcterms="http://purl.org/dc/terms/" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.openxmlformats.org/package/2006/metadata/core-properties"><dc:title /><dc:subject /><keywords /><dc:description /><dcterms:created xsi:type="dcterms:W3CDTF">2019-11-11T06:45:09.0517060Z</dcterms:created><dcterms:modified xsi:type="dcterms:W3CDTF">2019-11-11T06:48:02.2167547Z</dcterms:modified><dc:creator>Satoshi Ueki</dc:creator><lastModifiedBy>Satoshi Ueki</lastModifiedBy></coreProperties>

Binary file not shown.

View File

@ -0,0 +1,3 @@
<?xml version="1.0" encoding="UTF-8"?>
<Relationships xmlns="http://schemas.openxmlformats.org/package/2006/relationships"><Relationship Id="rId1" Type="http://schemas.openxmlformats.org/officeDocument/2006/relationships/styles" Target="styles.xml"/><Relationship Id="rId2" Type="http://schemas.openxmlformats.org/officeDocument/2006/relationships/fontTable" Target="fontTable.xml"/><Relationship Id="rId3" Type="http://schemas.openxmlformats.org/officeDocument/2006/relationships/settings" Target="settings.xml"/>
</Relationships>

View File

@ -0,0 +1 @@
<?xml version="1.0" encoding="utf-8"?><Relationships xmlns="http://schemas.openxmlformats.org/package/2006/relationships"><Relationship Type="http://schemas.openxmlformats.org/officeDocument/2006/relationships/webSettings" Target="/word/webSettings.xml" Id="rId3" /><Relationship Type="http://schemas.openxmlformats.org/officeDocument/2006/relationships/settings" Target="/word/settings.xml" Id="rId2" /><Relationship Type="http://schemas.openxmlformats.org/officeDocument/2006/relationships/styles" Target="/word/styles.xml" Id="rId1" /><Relationship Type="http://schemas.openxmlformats.org/officeDocument/2006/relationships/theme" Target="/word/theme/theme1.xml" Id="rId5" /><Relationship Type="http://schemas.openxmlformats.org/officeDocument/2006/relationships/fontTable" Target="/word/fontTable.xml" Id="rId4" /></Relationships>

View File

@ -0,0 +1,106 @@
<?xml version="1.0" encoding="utf-8" standalone="yes"?>
<w:document xmlns:wpc="http://schemas.microsoft.com/office/word/2010/wordprocessingCanvas"
xmlns:mc="http://schemas.openxmlformats.org/markup-compatibility/2006"
xmlns:o="urn:schemas-microsoft-com:office:office"
xmlns:r="http://schemas.openxmlformats.org/officeDocument/2006/relationships"
xmlns:m="http://schemas.openxmlformats.org/officeDocument/2006/math"
xmlns:v="urn:schemas-microsoft-com:vml"
xmlns:wp14="http://schemas.microsoft.com/office/word/2010/wordprocessingDrawing"
xmlns:wp="http://schemas.openxmlformats.org/drawingml/2006/wordprocessingDrawing"
xmlns:w10="urn:schemas-microsoft-com:office:word"
xmlns:w="http://schemas.openxmlformats.org/wordprocessingml/2006/main"
xmlns:w14="http://schemas.microsoft.com/office/word/2010/wordml"
xmlns:w15="http://schemas.microsoft.com/office/word/2012/wordml"
xmlns:wpg="http://schemas.microsoft.com/office/word/2010/wordprocessingGroup"
xmlns:wpi="http://schemas.microsoft.com/office/word/2010/wordprocessingInk"
xmlns:wne="http://schemas.microsoft.com/office/word/2006/wordml"
xmlns:wps="http://schemas.microsoft.com/office/word/2010/wordprocessingShape" mc:Ignorable="w14 w15 wp14">
<w:body>
<w:p w:rsidR="370DCFF3" w:rsidP="370DCFF3" w:rsidRDefault="370DCFF3" w14:paraId="5231A740" w14:textId="31D108F5">
<w:pPr>
<w:pStyle w:val="Normal" />
<w:ind w:left="0" />
</w:pPr>
</w:p>
<w:p w:rsidR="370DCFF3" w:rsidP="370DCFF3" w:rsidRDefault="370DCFF3" w14:paraId="6DA0584E" w14:textId="7A419A20">
<w:pPr>
<w:pStyle w:val="Normal" />
<w:ind w:left="840" w:firstLine="0" />
</w:pPr>
<w:r w:rsidRPr="370DCFF3" w:rsidR="370DCFF3">
<w:rPr>
<w:rFonts w:ascii="Century" w:hAnsi="Century" w:eastAsia="Century" w:cs="Century" />
<w:noProof w:val="0" />
<w:color w:val="222222" />
<w:sz w:val="22" />
<w:szCs w:val="22" />
<w:lang w:eastAsia="ja-JP" />
</w:rPr>
<w:t>Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua.</w:t>
</w:r>
</w:p>
<w:p w:rsidR="370DCFF3" w:rsidP="370DCFF3" w:rsidRDefault="370DCFF3" w14:paraId="448AC37F" w14:textId="31D108F5">
<w:pPr>
<w:pStyle w:val="Normal" />
<w:ind w:left="0" />
</w:pPr>
</w:p>
<w:p w:rsidR="370DCFF3" w:rsidP="370DCFF3" w:rsidRDefault="370DCFF3" w14:paraId="015A501D" w14:textId="229A5E10">
<w:pPr>
<w:pStyle w:val="Normal" />
<w:ind w:left="840" w:firstLine="720" />
</w:pPr>
<w:r w:rsidRPr="370DCFF3" w:rsidR="370DCFF3">
<w:rPr>
<w:rFonts w:ascii="Century" w:hAnsi="Century" w:eastAsia="Century" w:cs="Century" />
<w:noProof w:val="0" />
<w:color w:val="222222" />
<w:sz w:val="22" />
<w:szCs w:val="22" />
<w:lang w:eastAsia="ja-JP" />
</w:rPr>
<w:t>Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua.</w:t>
</w:r>
</w:p>
<w:p w:rsidR="370DCFF3" w:rsidP="370DCFF3" w:rsidRDefault="370DCFF3" w14:paraId="564F799D" w14:textId="412B57E0">
<w:pPr>
<w:pStyle w:val="Normal" />
<w:ind w:left="840" w:firstLine="720" />
</w:pPr>
</w:p>
<w:p w:rsidR="370DCFF3" w:rsidP="370DCFF3" w:rsidRDefault="370DCFF3" w14:paraId="640CFBC2" w14:textId="5C0A5D68">
<w:pPr>
<w:pStyle w:val="Normal" />
<w:rPr>
<w:rFonts w:ascii="Century" w:hAnsi="Century" w:eastAsia="Century" w:cs="Century" />
<w:noProof w:val="0" />
<w:sz w:val="21" />
<w:szCs w:val="21" />
<w:lang w:eastAsia="ja-JP" />
</w:rPr>
</w:pPr>
</w:p>
<w:p w:rsidR="370DCFF3" w:rsidP="370DCFF3" w:rsidRDefault="370DCFF3" w14:paraId="4C665373" w14:textId="3E000D23">
<w:pPr>
<w:pStyle w:val="Normal" />
<w:ind w:left="1560" w:hanging="720" />
</w:pPr>
<w:r w:rsidRPr="370DCFF3" w:rsidR="370DCFF3">
<w:rPr>
<w:rFonts w:ascii="Century" w:hAnsi="Century" w:eastAsia="Century" w:cs="Century" />
<w:noProof w:val="0" />
<w:sz w:val="21" />
<w:szCs w:val="21" />
<w:lang w:eastAsia="ja-JP" />
</w:rPr>
<w:t>Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua.</w:t>
</w:r>
</w:p>
<w:sectPr>
<w:pgSz w:w="11906" w:h="16838" w:orient="portrait" />
<w:pgMar w:top="1440" w:right="1440" w:bottom="1440" w:left="1440" w:header="720" w:footer="720" w:gutter="0" />
<w:cols w:space="720" />
<w:docGrid w:type="lines" w:linePitch="360" />
</w:sectPr>
</w:body>
</w:document>

View File

@ -0,0 +1,45 @@
<?xml version="1.0" encoding="utf-8" standalone="yes"?>
<w:fonts xmlns:mc="http://schemas.openxmlformats.org/markup-compatibility/2006"
xmlns:r="http://schemas.openxmlformats.org/officeDocument/2006/relationships"
xmlns:w="http://schemas.openxmlformats.org/wordprocessingml/2006/main"
xmlns:w14="http://schemas.microsoft.com/office/word/2010/wordml"
xmlns:w15="http://schemas.microsoft.com/office/word/2012/wordml" mc:Ignorable="w14 w15">
<w:font w:name="Century">
<w:panose1 w:val="02040604050505020304" />
<w:charset w:val="00" />
<w:family w:val="roman" />
<w:pitch w:val="variable" />
<w:sig w:usb0="00000287" w:usb1="00000000" w:usb2="00000000" w:usb3="00000000" w:csb0="0000009F" w:csb1="00000000" />
</w:font>
<w:font w:name="MS Mincho">
<w:altName w:val=" 明朝" />
<w:panose1 w:val="02020609040205080304" />
<w:charset w:val="80" />
<w:family w:val="modern" />
<w:pitch w:val="fixed" />
<w:sig w:usb0="E00002FF" w:usb1="6AC7FDFB" w:usb2="08000012" w:usb3="00000000" w:csb0="0002009F" w:csb1="00000000" />
</w:font>
<w:font w:name="Times New Roman">
<w:panose1 w:val="02020603050405020304" />
<w:charset w:val="00" />
<w:family w:val="roman" />
<w:notTrueType />
<w:pitch w:val="variable" />
<w:sig w:usb0="00000003" w:usb1="00000000" w:usb2="00000000" w:usb3="00000000" w:csb0="00000001" w:csb1="00000000" />
</w:font>
<w:font w:name="MS Gothic">
<w:altName w:val=" ゴシック" />
<w:panose1 w:val="020B0609070205080204" />
<w:charset w:val="80" />
<w:family w:val="modern" />
<w:pitch w:val="fixed" />
<w:sig w:usb0="E00002FF" w:usb1="6AC7FDFB" w:usb2="08000012" w:usb3="00000000" w:csb0="0002009F" w:csb1="00000000" />
</w:font>
<w:font w:name="Arial">
<w:panose1 w:val="020B0604020202020204" />
<w:charset w:val="00" />
<w:family w:val="swiss" />
<w:pitch w:val="variable" />
<w:sig w:usb0="E0002AFF" w:usb1="C0007843" w:usb2="00000009" w:usb3="00000000" w:csb0="000001FF" w:csb1="00000000" />
</w:font>
</w:fonts>

View File

@ -0,0 +1 @@
<?xml version="1.0" encoding="utf-8" standalone="yes"?><w:settings xmlns:mc="http://schemas.openxmlformats.org/markup-compatibility/2006" xmlns:o="urn:schemas-microsoft-com:office:office" xmlns:r="http://schemas.openxmlformats.org/officeDocument/2006/relationships" xmlns:m="http://schemas.openxmlformats.org/officeDocument/2006/math" xmlns:v="urn:schemas-microsoft-com:vml" xmlns:w10="urn:schemas-microsoft-com:office:word" xmlns:w="http://schemas.openxmlformats.org/wordprocessingml/2006/main" xmlns:w14="http://schemas.microsoft.com/office/word/2010/wordml" xmlns:w15="http://schemas.microsoft.com/office/word/2012/wordml" xmlns:sl="http://schemas.openxmlformats.org/schemaLibrary/2006/main" mc:Ignorable="w14 w15"><w:trackRevisions w:val="false" /><w:zoom w:percent="100" /><w:bordersDoNotSurroundHeader /><w:bordersDoNotSurroundFooter /><w:defaultTabStop w:val="840" /><w:displayHorizontalDrawingGridEvery w:val="0" /><w:displayVerticalDrawingGridEvery w:val="2" /><w:characterSpacingControl w:val="compressPunctuation" /><w:compat><w:spaceForUL /><w:balanceSingleByteDoubleByteWidth /><w:doNotLeaveBackslashAlone /><w:ulTrailSpace /><w:doNotExpandShiftReturn /><w:adjustLineHeightInTable /><w:useFELayout /><w:compatSetting w:name="compatibilityMode" w:uri="http://schemas.microsoft.com/office/word" w:val="15" /><w:compatSetting w:name="overrideTableStyleFontSizeAndJustification" w:uri="http://schemas.microsoft.com/office/word" w:val="1" /><w:compatSetting w:name="enableOpenTypeFeatures" w:uri="http://schemas.microsoft.com/office/word" w:val="1" /><w:compatSetting w:name="doNotFlipMirrorIndents" w:uri="http://schemas.microsoft.com/office/word" w:val="1" /><w:compatSetting w:name="differentiateMultirowTableHeaders" w:uri="http://schemas.microsoft.com/office/word" w:val="1" /></w:compat><m:mathPr><m:mathFont m:val="Cambria Math" /><m:brkBin m:val="before" /><m:brkBinSub m:val="--" /><m:smallFrac m:val="0" /><m:dispDef /><m:lMargin m:val="0" /><m:rMargin m:val="0" /><m:defJc m:val="centerGroup" /><m:wrapIndent m:val="1440" /><m:intLim m:val="subSup" /><m:naryLim m:val="undOvr" /></m:mathPr><w:themeFontLang w:val="en-US" w:eastAsia="ja-JP" /><w:clrSchemeMapping w:bg1="light1" w:t1="dark1" w:bg2="light2" w:t2="dark2" w:accent1="accent1" w:accent2="accent2" w:accent3="accent3" w:accent4="accent4" w:accent5="accent5" w:accent6="accent6" w:hyperlink="hyperlink" w:followedHyperlink="followedHyperlink" /><w:shapeDefaults><o:shapedefaults v:ext="edit" spidmax="1026"><v:textbox inset="5.85pt,.7pt,5.85pt,.7pt" /></o:shapedefaults><o:shapelayout v:ext="edit"><o:idmap v:ext="edit" data="1" /></o:shapelayout></w:shapeDefaults><w:decimalSymbol w:val="." /><w:listSeparator w:val="," /><w15:chartTrackingRefBased /><w14:docId w14:val="2629B307" /><w15:docId w15:val="{08a45a55-dfcc-4396-aedc-f7a5bfb7db65}" /><w:rsids><w:rsidRoot w:val="2629B307" /><w:rsid w:val="2629B307" /><w:rsid w:val="370DCFF3" /></w:rsids></w:settings>

View File

@ -0,0 +1,428 @@
<?xml version="1.0" encoding="utf-8" standalone="yes"?>
<w:styles xmlns:wp14="http://schemas.microsoft.com/office/word/2010/wordprocessingDrawing"
xmlns:mc="http://schemas.openxmlformats.org/markup-compatibility/2006"
xmlns:r="http://schemas.openxmlformats.org/officeDocument/2006/relationships"
xmlns:w="http://schemas.openxmlformats.org/wordprocessingml/2006/main"
xmlns:w14="http://schemas.microsoft.com/office/word/2010/wordml"
xmlns:w15="http://schemas.microsoft.com/office/word/2012/wordml" mc:Ignorable="w14 w15 wp14">
<w:docDefaults>
<w:rPrDefault>
<w:rPr>
<w:rFonts w:asciiTheme="minorHAnsi" w:hAnsiTheme="minorHAnsi" w:eastAsiaTheme="minorEastAsia" w:cstheme="minorBidi" />
<w:kern w:val="2" />
<w:sz w:val="21" />
<w:szCs w:val="22" />
<w:lang w:val="en-US" w:eastAsia="ja-JP" w:bidi="ar-SA" />
</w:rPr>
</w:rPrDefault>
<w:pPrDefault />
</w:docDefaults>
<w:latentStyles w:defLockedState="0" w:defUIPriority="99" w:defSemiHidden="0" w:defUnhideWhenUsed="0" w:defQFormat="0" w:count="371">
<w:lsdException w:name="Normal" w:uiPriority="0" w:qFormat="1" />
<w:lsdException w:name="heading 1" w:uiPriority="9" w:qFormat="1" />
<w:lsdException w:name="heading 2" w:uiPriority="9" w:semiHidden="1" w:unhideWhenUsed="1" w:qFormat="1" />
<w:lsdException w:name="heading 3" w:uiPriority="9" w:semiHidden="1" w:unhideWhenUsed="1" w:qFormat="1" />
<w:lsdException w:name="heading 4" w:uiPriority="9" w:semiHidden="1" w:unhideWhenUsed="1" w:qFormat="1" />
<w:lsdException w:name="heading 5" w:uiPriority="9" w:semiHidden="1" w:unhideWhenUsed="1" w:qFormat="1" />
<w:lsdException w:name="heading 6" w:uiPriority="9" w:semiHidden="1" w:unhideWhenUsed="1" w:qFormat="1" />
<w:lsdException w:name="heading 7" w:uiPriority="9" w:semiHidden="1" w:unhideWhenUsed="1" w:qFormat="1" />
<w:lsdException w:name="heading 8" w:uiPriority="9" w:semiHidden="1" w:unhideWhenUsed="1" w:qFormat="1" />
<w:lsdException w:name="heading 9" w:uiPriority="9" w:semiHidden="1" w:unhideWhenUsed="1" w:qFormat="1" />
<w:lsdException w:name="index 1" w:semiHidden="1" w:unhideWhenUsed="1" />
<w:lsdException w:name="index 2" w:semiHidden="1" w:unhideWhenUsed="1" />
<w:lsdException w:name="index 3" w:semiHidden="1" w:unhideWhenUsed="1" />
<w:lsdException w:name="index 4" w:semiHidden="1" w:unhideWhenUsed="1" />
<w:lsdException w:name="index 5" w:semiHidden="1" w:unhideWhenUsed="1" />
<w:lsdException w:name="index 6" w:semiHidden="1" w:unhideWhenUsed="1" />
<w:lsdException w:name="index 7" w:semiHidden="1" w:unhideWhenUsed="1" />
<w:lsdException w:name="index 8" w:semiHidden="1" w:unhideWhenUsed="1" />
<w:lsdException w:name="index 9" w:semiHidden="1" w:unhideWhenUsed="1" />
<w:lsdException w:name="toc 1" w:uiPriority="39" w:semiHidden="1" w:unhideWhenUsed="1" />
<w:lsdException w:name="toc 2" w:uiPriority="39" w:semiHidden="1" w:unhideWhenUsed="1" />
<w:lsdException w:name="toc 3" w:uiPriority="39" w:semiHidden="1" w:unhideWhenUsed="1" />
<w:lsdException w:name="toc 4" w:uiPriority="39" w:semiHidden="1" w:unhideWhenUsed="1" />
<w:lsdException w:name="toc 5" w:uiPriority="39" w:semiHidden="1" w:unhideWhenUsed="1" />
<w:lsdException w:name="toc 6" w:uiPriority="39" w:semiHidden="1" w:unhideWhenUsed="1" />
<w:lsdException w:name="toc 7" w:uiPriority="39" w:semiHidden="1" w:unhideWhenUsed="1" />
<w:lsdException w:name="toc 8" w:uiPriority="39" w:semiHidden="1" w:unhideWhenUsed="1" />
<w:lsdException w:name="toc 9" w:uiPriority="39" w:semiHidden="1" w:unhideWhenUsed="1" />
<w:lsdException w:name="Normal Indent" w:semiHidden="1" w:unhideWhenUsed="1" />
<w:lsdException w:name="footnote text" w:semiHidden="1" w:unhideWhenUsed="1" />
<w:lsdException w:name="annotation text" w:semiHidden="1" w:unhideWhenUsed="1" />
<w:lsdException w:name="header" w:semiHidden="1" w:unhideWhenUsed="1" />
<w:lsdException w:name="footer" w:semiHidden="1" w:unhideWhenUsed="1" />
<w:lsdException w:name="index heading" w:semiHidden="1" w:unhideWhenUsed="1" />
<w:lsdException w:name="caption" w:uiPriority="35" w:semiHidden="1" w:unhideWhenUsed="1" w:qFormat="1" />
<w:lsdException w:name="table of figures" w:semiHidden="1" w:unhideWhenUsed="1" />
<w:lsdException w:name="envelope address" w:semiHidden="1" w:unhideWhenUsed="1" />
<w:lsdException w:name="envelope return" w:semiHidden="1" w:unhideWhenUsed="1" />
<w:lsdException w:name="footnote reference" w:semiHidden="1" w:unhideWhenUsed="1" />
<w:lsdException w:name="annotation reference" w:semiHidden="1" w:unhideWhenUsed="1" />
<w:lsdException w:name="line number" w:semiHidden="1" w:unhideWhenUsed="1" />
<w:lsdException w:name="page number" w:semiHidden="1" w:unhideWhenUsed="1" />
<w:lsdException w:name="endnote reference" w:semiHidden="1" w:unhideWhenUsed="1" />
<w:lsdException w:name="endnote text" w:semiHidden="1" w:unhideWhenUsed="1" />
<w:lsdException w:name="table of authorities" w:semiHidden="1" w:unhideWhenUsed="1" />
<w:lsdException w:name="macro" w:semiHidden="1" w:unhideWhenUsed="1" />
<w:lsdException w:name="toa heading" w:semiHidden="1" w:unhideWhenUsed="1" />
<w:lsdException w:name="List" w:semiHidden="1" w:unhideWhenUsed="1" />
<w:lsdException w:name="List Bullet" w:semiHidden="1" w:unhideWhenUsed="1" />
<w:lsdException w:name="List Number" w:semiHidden="1" w:unhideWhenUsed="1" />
<w:lsdException w:name="List 2" w:semiHidden="1" w:unhideWhenUsed="1" />
<w:lsdException w:name="List 3" w:semiHidden="1" w:unhideWhenUsed="1" />
<w:lsdException w:name="List 4" w:semiHidden="1" w:unhideWhenUsed="1" />
<w:lsdException w:name="List 5" w:semiHidden="1" w:unhideWhenUsed="1" />
<w:lsdException w:name="List Bullet 2" w:semiHidden="1" w:unhideWhenUsed="1" />
<w:lsdException w:name="List Bullet 3" w:semiHidden="1" w:unhideWhenUsed="1" />
<w:lsdException w:name="List Bullet 4" w:semiHidden="1" w:unhideWhenUsed="1" />
<w:lsdException w:name="List Bullet 5" w:semiHidden="1" w:unhideWhenUsed="1" />
<w:lsdException w:name="List Number 2" w:semiHidden="1" w:unhideWhenUsed="1" />
<w:lsdException w:name="List Number 3" w:semiHidden="1" w:unhideWhenUsed="1" />
<w:lsdException w:name="List Number 4" w:semiHidden="1" w:unhideWhenUsed="1" />
<w:lsdException w:name="List Number 5" w:semiHidden="1" w:unhideWhenUsed="1" />
<w:lsdException w:name="Title" w:uiPriority="10" w:qFormat="1" />
<w:lsdException w:name="Closing" w:semiHidden="1" w:unhideWhenUsed="1" />
<w:lsdException w:name="Signature" w:semiHidden="1" w:unhideWhenUsed="1" />
<w:lsdException w:name="Default Paragraph Font" w:uiPriority="1" w:semiHidden="1" w:unhideWhenUsed="1" />
<w:lsdException w:name="Body Text" w:semiHidden="1" w:unhideWhenUsed="1" />
<w:lsdException w:name="Body Text Indent" w:semiHidden="1" w:unhideWhenUsed="1" />
<w:lsdException w:name="List Continue" w:semiHidden="1" w:unhideWhenUsed="1" />
<w:lsdException w:name="List Continue 2" w:semiHidden="1" w:unhideWhenUsed="1" />
<w:lsdException w:name="List Continue 3" w:semiHidden="1" w:unhideWhenUsed="1" />
<w:lsdException w:name="List Continue 4" w:semiHidden="1" w:unhideWhenUsed="1" />
<w:lsdException w:name="List Continue 5" w:semiHidden="1" w:unhideWhenUsed="1" />
<w:lsdException w:name="Message Header" w:semiHidden="1" w:unhideWhenUsed="1" />
<w:lsdException w:name="Subtitle" w:uiPriority="11" w:qFormat="1" />
<w:lsdException w:name="Salutation" w:semiHidden="1" w:unhideWhenUsed="1" />
<w:lsdException w:name="Date" w:semiHidden="1" w:unhideWhenUsed="1" />
<w:lsdException w:name="Body Text First Indent" w:semiHidden="1" w:unhideWhenUsed="1" />
<w:lsdException w:name="Body Text First Indent 2" w:semiHidden="1" w:unhideWhenUsed="1" />
<w:lsdException w:name="Note Heading" w:semiHidden="1" w:unhideWhenUsed="1" />
<w:lsdException w:name="Body Text 2" w:semiHidden="1" w:unhideWhenUsed="1" />
<w:lsdException w:name="Body Text 3" w:semiHidden="1" w:unhideWhenUsed="1" />
<w:lsdException w:name="Body Text Indent 2" w:semiHidden="1" w:unhideWhenUsed="1" />
<w:lsdException w:name="Body Text Indent 3" w:semiHidden="1" w:unhideWhenUsed="1" />
<w:lsdException w:name="Block Text" w:semiHidden="1" w:unhideWhenUsed="1" />
<w:lsdException w:name="Hyperlink" w:semiHidden="1" w:unhideWhenUsed="1" />
<w:lsdException w:name="FollowedHyperlink" w:semiHidden="1" w:unhideWhenUsed="1" />
<w:lsdException w:name="Strong" w:uiPriority="22" w:qFormat="1" />
<w:lsdException w:name="Emphasis" w:uiPriority="20" w:qFormat="1" />
<w:lsdException w:name="Document Map" w:semiHidden="1" w:unhideWhenUsed="1" />
<w:lsdException w:name="Plain Text" w:semiHidden="1" w:unhideWhenUsed="1" />
<w:lsdException w:name="E-mail Signature" w:semiHidden="1" w:unhideWhenUsed="1" />
<w:lsdException w:name="HTML Top of Form" w:semiHidden="1" w:unhideWhenUsed="1" />
<w:lsdException w:name="HTML Bottom of Form" w:semiHidden="1" w:unhideWhenUsed="1" />
<w:lsdException w:name="Normal (Web)" w:semiHidden="1" w:unhideWhenUsed="1" />
<w:lsdException w:name="HTML Acronym" w:semiHidden="1" w:unhideWhenUsed="1" />
<w:lsdException w:name="HTML Address" w:semiHidden="1" w:unhideWhenUsed="1" />
<w:lsdException w:name="HTML Cite" w:semiHidden="1" w:unhideWhenUsed="1" />
<w:lsdException w:name="HTML Code" w:semiHidden="1" w:unhideWhenUsed="1" />
<w:lsdException w:name="HTML Definition" w:semiHidden="1" w:unhideWhenUsed="1" />
<w:lsdException w:name="HTML Keyboard" w:semiHidden="1" w:unhideWhenUsed="1" />
<w:lsdException w:name="HTML Preformatted" w:semiHidden="1" w:unhideWhenUsed="1" />
<w:lsdException w:name="HTML Sample" w:semiHidden="1" w:unhideWhenUsed="1" />
<w:lsdException w:name="HTML Typewriter" w:semiHidden="1" w:unhideWhenUsed="1" />
<w:lsdException w:name="HTML Variable" w:semiHidden="1" w:unhideWhenUsed="1" />
<w:lsdException w:name="Normal Table" w:semiHidden="1" w:unhideWhenUsed="1" />
<w:lsdException w:name="annotation subject" w:semiHidden="1" w:unhideWhenUsed="1" />
<w:lsdException w:name="No List" w:semiHidden="1" w:unhideWhenUsed="1" />
<w:lsdException w:name="Outline List 1" w:semiHidden="1" w:unhideWhenUsed="1" />
<w:lsdException w:name="Outline List 2" w:semiHidden="1" w:unhideWhenUsed="1" />
<w:lsdException w:name="Outline List 3" w:semiHidden="1" w:unhideWhenUsed="1" />
<w:lsdException w:name="Table Simple 1" w:semiHidden="1" w:unhideWhenUsed="1" />
<w:lsdException w:name="Table Simple 2" w:semiHidden="1" w:unhideWhenUsed="1" />
<w:lsdException w:name="Table Simple 3" w:semiHidden="1" w:unhideWhenUsed="1" />
<w:lsdException w:name="Table Classic 1" w:semiHidden="1" w:unhideWhenUsed="1" />
<w:lsdException w:name="Table Classic 2" w:semiHidden="1" w:unhideWhenUsed="1" />
<w:lsdException w:name="Table Classic 3" w:semiHidden="1" w:unhideWhenUsed="1" />
<w:lsdException w:name="Table Classic 4" w:semiHidden="1" w:unhideWhenUsed="1" />
<w:lsdException w:name="Table Colorful 1" w:semiHidden="1" w:unhideWhenUsed="1" />
<w:lsdException w:name="Table Colorful 2" w:semiHidden="1" w:unhideWhenUsed="1" />
<w:lsdException w:name="Table Colorful 3" w:semiHidden="1" w:unhideWhenUsed="1" />
<w:lsdException w:name="Table Columns 1" w:semiHidden="1" w:unhideWhenUsed="1" />
<w:lsdException w:name="Table Columns 2" w:semiHidden="1" w:unhideWhenUsed="1" />
<w:lsdException w:name="Table Columns 3" w:semiHidden="1" w:unhideWhenUsed="1" />
<w:lsdException w:name="Table Columns 4" w:semiHidden="1" w:unhideWhenUsed="1" />
<w:lsdException w:name="Table Columns 5" w:semiHidden="1" w:unhideWhenUsed="1" />
<w:lsdException w:name="Table Grid 1" w:semiHidden="1" w:unhideWhenUsed="1" />
<w:lsdException w:name="Table Grid 2" w:semiHidden="1" w:unhideWhenUsed="1" />
<w:lsdException w:name="Table Grid 3" w:semiHidden="1" w:unhideWhenUsed="1" />
<w:lsdException w:name="Table Grid 4" w:semiHidden="1" w:unhideWhenUsed="1" />
<w:lsdException w:name="Table Grid 5" w:semiHidden="1" w:unhideWhenUsed="1" />
<w:lsdException w:name="Table Grid 6" w:semiHidden="1" w:unhideWhenUsed="1" />
<w:lsdException w:name="Table Grid 7" w:semiHidden="1" w:unhideWhenUsed="1" />
<w:lsdException w:name="Table Grid 8" w:semiHidden="1" w:unhideWhenUsed="1" />
<w:lsdException w:name="Table List 1" w:semiHidden="1" w:unhideWhenUsed="1" />
<w:lsdException w:name="Table List 2" w:semiHidden="1" w:unhideWhenUsed="1" />
<w:lsdException w:name="Table List 3" w:semiHidden="1" w:unhideWhenUsed="1" />
<w:lsdException w:name="Table List 4" w:semiHidden="1" w:unhideWhenUsed="1" />
<w:lsdException w:name="Table List 5" w:semiHidden="1" w:unhideWhenUsed="1" />
<w:lsdException w:name="Table List 6" w:semiHidden="1" w:unhideWhenUsed="1" />
<w:lsdException w:name="Table List 7" w:semiHidden="1" w:unhideWhenUsed="1" />
<w:lsdException w:name="Table List 8" w:semiHidden="1" w:unhideWhenUsed="1" />
<w:lsdException w:name="Table 3D effects 1" w:semiHidden="1" w:unhideWhenUsed="1" />
<w:lsdException w:name="Table 3D effects 2" w:semiHidden="1" w:unhideWhenUsed="1" />
<w:lsdException w:name="Table 3D effects 3" w:semiHidden="1" w:unhideWhenUsed="1" />
<w:lsdException w:name="Table Contemporary" w:semiHidden="1" w:unhideWhenUsed="1" />
<w:lsdException w:name="Table Elegant" w:semiHidden="1" w:unhideWhenUsed="1" />
<w:lsdException w:name="Table Professional" w:semiHidden="1" w:unhideWhenUsed="1" />
<w:lsdException w:name="Table Subtle 1" w:semiHidden="1" w:unhideWhenUsed="1" />
<w:lsdException w:name="Table Subtle 2" w:semiHidden="1" w:unhideWhenUsed="1" />
<w:lsdException w:name="Table Web 1" w:semiHidden="1" w:unhideWhenUsed="1" />
<w:lsdException w:name="Table Web 2" w:semiHidden="1" w:unhideWhenUsed="1" />
<w:lsdException w:name="Table Web 3" w:semiHidden="1" w:unhideWhenUsed="1" />
<w:lsdException w:name="Balloon Text" w:semiHidden="1" w:unhideWhenUsed="1" />
<w:lsdException w:name="Table Grid" w:uiPriority="39" />
<w:lsdException w:name="Table Theme" w:semiHidden="1" w:unhideWhenUsed="1" />
<w:lsdException w:name="Placeholder Text" w:semiHidden="1" />
<w:lsdException w:name="No Spacing" w:uiPriority="1" w:qFormat="1" />
<w:lsdException w:name="Light Shading" w:uiPriority="60" />
<w:lsdException w:name="Light List" w:uiPriority="61" />
<w:lsdException w:name="Light Grid" w:uiPriority="62" />
<w:lsdException w:name="Medium Shading 1" w:uiPriority="63" />
<w:lsdException w:name="Medium Shading 2" w:uiPriority="64" />
<w:lsdException w:name="Medium List 1" w:uiPriority="65" />
<w:lsdException w:name="Medium List 2" w:uiPriority="66" />
<w:lsdException w:name="Medium Grid 1" w:uiPriority="67" />
<w:lsdException w:name="Medium Grid 2" w:uiPriority="68" />
<w:lsdException w:name="Medium Grid 3" w:uiPriority="69" />
<w:lsdException w:name="Dark List" w:uiPriority="70" />
<w:lsdException w:name="Colorful Shading" w:uiPriority="71" />
<w:lsdException w:name="Colorful List" w:uiPriority="72" />
<w:lsdException w:name="Colorful Grid" w:uiPriority="73" />
<w:lsdException w:name="Light Shading Accent 1" w:uiPriority="60" />
<w:lsdException w:name="Light List Accent 1" w:uiPriority="61" />
<w:lsdException w:name="Light Grid Accent 1" w:uiPriority="62" />
<w:lsdException w:name="Medium Shading 1 Accent 1" w:uiPriority="63" />
<w:lsdException w:name="Medium Shading 2 Accent 1" w:uiPriority="64" />
<w:lsdException w:name="Medium List 1 Accent 1" w:uiPriority="65" />
<w:lsdException w:name="Revision" w:semiHidden="1" />
<w:lsdException w:name="List Paragraph" w:uiPriority="34" w:qFormat="1" />
<w:lsdException w:name="Quote" w:uiPriority="29" w:qFormat="1" />
<w:lsdException w:name="Intense Quote" w:uiPriority="30" w:qFormat="1" />
<w:lsdException w:name="Medium List 2 Accent 1" w:uiPriority="66" />
<w:lsdException w:name="Medium Grid 1 Accent 1" w:uiPriority="67" />
<w:lsdException w:name="Medium Grid 2 Accent 1" w:uiPriority="68" />
<w:lsdException w:name="Medium Grid 3 Accent 1" w:uiPriority="69" />
<w:lsdException w:name="Dark List Accent 1" w:uiPriority="70" />
<w:lsdException w:name="Colorful Shading Accent 1" w:uiPriority="71" />
<w:lsdException w:name="Colorful List Accent 1" w:uiPriority="72" />
<w:lsdException w:name="Colorful Grid Accent 1" w:uiPriority="73" />
<w:lsdException w:name="Light Shading Accent 2" w:uiPriority="60" />
<w:lsdException w:name="Light List Accent 2" w:uiPriority="61" />
<w:lsdException w:name="Light Grid Accent 2" w:uiPriority="62" />
<w:lsdException w:name="Medium Shading 1 Accent 2" w:uiPriority="63" />
<w:lsdException w:name="Medium Shading 2 Accent 2" w:uiPriority="64" />
<w:lsdException w:name="Medium List 1 Accent 2" w:uiPriority="65" />
<w:lsdException w:name="Medium List 2 Accent 2" w:uiPriority="66" />
<w:lsdException w:name="Medium Grid 1 Accent 2" w:uiPriority="67" />
<w:lsdException w:name="Medium Grid 2 Accent 2" w:uiPriority="68" />
<w:lsdException w:name="Medium Grid 3 Accent 2" w:uiPriority="69" />
<w:lsdException w:name="Dark List Accent 2" w:uiPriority="70" />
<w:lsdException w:name="Colorful Shading Accent 2" w:uiPriority="71" />
<w:lsdException w:name="Colorful List Accent 2" w:uiPriority="72" />
<w:lsdException w:name="Colorful Grid Accent 2" w:uiPriority="73" />
<w:lsdException w:name="Light Shading Accent 3" w:uiPriority="60" />
<w:lsdException w:name="Light List Accent 3" w:uiPriority="61" />
<w:lsdException w:name="Light Grid Accent 3" w:uiPriority="62" />
<w:lsdException w:name="Medium Shading 1 Accent 3" w:uiPriority="63" />
<w:lsdException w:name="Medium Shading 2 Accent 3" w:uiPriority="64" />
<w:lsdException w:name="Medium List 1 Accent 3" w:uiPriority="65" />
<w:lsdException w:name="Medium List 2 Accent 3" w:uiPriority="66" />
<w:lsdException w:name="Medium Grid 1 Accent 3" w:uiPriority="67" />
<w:lsdException w:name="Medium Grid 2 Accent 3" w:uiPriority="68" />
<w:lsdException w:name="Medium Grid 3 Accent 3" w:uiPriority="69" />
<w:lsdException w:name="Dark List Accent 3" w:uiPriority="70" />
<w:lsdException w:name="Colorful Shading Accent 3" w:uiPriority="71" />
<w:lsdException w:name="Colorful List Accent 3" w:uiPriority="72" />
<w:lsdException w:name="Colorful Grid Accent 3" w:uiPriority="73" />
<w:lsdException w:name="Light Shading Accent 4" w:uiPriority="60" />
<w:lsdException w:name="Light List Accent 4" w:uiPriority="61" />
<w:lsdException w:name="Light Grid Accent 4" w:uiPriority="62" />
<w:lsdException w:name="Medium Shading 1 Accent 4" w:uiPriority="63" />
<w:lsdException w:name="Medium Shading 2 Accent 4" w:uiPriority="64" />
<w:lsdException w:name="Medium List 1 Accent 4" w:uiPriority="65" />
<w:lsdException w:name="Medium List 2 Accent 4" w:uiPriority="66" />
<w:lsdException w:name="Medium Grid 1 Accent 4" w:uiPriority="67" />
<w:lsdException w:name="Medium Grid 2 Accent 4" w:uiPriority="68" />
<w:lsdException w:name="Medium Grid 3 Accent 4" w:uiPriority="69" />
<w:lsdException w:name="Dark List Accent 4" w:uiPriority="70" />
<w:lsdException w:name="Colorful Shading Accent 4" w:uiPriority="71" />
<w:lsdException w:name="Colorful List Accent 4" w:uiPriority="72" />
<w:lsdException w:name="Colorful Grid Accent 4" w:uiPriority="73" />
<w:lsdException w:name="Light Shading Accent 5" w:uiPriority="60" />
<w:lsdException w:name="Light List Accent 5" w:uiPriority="61" />
<w:lsdException w:name="Light Grid Accent 5" w:uiPriority="62" />
<w:lsdException w:name="Medium Shading 1 Accent 5" w:uiPriority="63" />
<w:lsdException w:name="Medium Shading 2 Accent 5" w:uiPriority="64" />
<w:lsdException w:name="Medium List 1 Accent 5" w:uiPriority="65" />
<w:lsdException w:name="Medium List 2 Accent 5" w:uiPriority="66" />
<w:lsdException w:name="Medium Grid 1 Accent 5" w:uiPriority="67" />
<w:lsdException w:name="Medium Grid 2 Accent 5" w:uiPriority="68" />
<w:lsdException w:name="Medium Grid 3 Accent 5" w:uiPriority="69" />
<w:lsdException w:name="Dark List Accent 5" w:uiPriority="70" />
<w:lsdException w:name="Colorful Shading Accent 5" w:uiPriority="71" />
<w:lsdException w:name="Colorful List Accent 5" w:uiPriority="72" />
<w:lsdException w:name="Colorful Grid Accent 5" w:uiPriority="73" />
<w:lsdException w:name="Light Shading Accent 6" w:uiPriority="60" />
<w:lsdException w:name="Light List Accent 6" w:uiPriority="61" />
<w:lsdException w:name="Light Grid Accent 6" w:uiPriority="62" />
<w:lsdException w:name="Medium Shading 1 Accent 6" w:uiPriority="63" />
<w:lsdException w:name="Medium Shading 2 Accent 6" w:uiPriority="64" />
<w:lsdException w:name="Medium List 1 Accent 6" w:uiPriority="65" />
<w:lsdException w:name="Medium List 2 Accent 6" w:uiPriority="66" />
<w:lsdException w:name="Medium Grid 1 Accent 6" w:uiPriority="67" />
<w:lsdException w:name="Medium Grid 2 Accent 6" w:uiPriority="68" />
<w:lsdException w:name="Medium Grid 3 Accent 6" w:uiPriority="69" />
<w:lsdException w:name="Dark List Accent 6" w:uiPriority="70" />
<w:lsdException w:name="Colorful Shading Accent 6" w:uiPriority="71" />
<w:lsdException w:name="Colorful List Accent 6" w:uiPriority="72" />
<w:lsdException w:name="Colorful Grid Accent 6" w:uiPriority="73" />
<w:lsdException w:name="Subtle Emphasis" w:uiPriority="19" w:qFormat="1" />
<w:lsdException w:name="Intense Emphasis" w:uiPriority="21" w:qFormat="1" />
<w:lsdException w:name="Subtle Reference" w:uiPriority="31" w:qFormat="1" />
<w:lsdException w:name="Intense Reference" w:uiPriority="32" w:qFormat="1" />
<w:lsdException w:name="Book Title" w:uiPriority="33" w:qFormat="1" />
<w:lsdException w:name="Bibliography" w:uiPriority="37" w:semiHidden="1" w:unhideWhenUsed="1" />
<w:lsdException w:name="TOC Heading" w:uiPriority="39" w:semiHidden="1" w:unhideWhenUsed="1" w:qFormat="1" />
<w:lsdException w:name="Plain Table 1" w:uiPriority="41" />
<w:lsdException w:name="Plain Table 2" w:uiPriority="42" />
<w:lsdException w:name="Plain Table 3" w:uiPriority="43" />
<w:lsdException w:name="Plain Table 4" w:uiPriority="44" />
<w:lsdException w:name="Plain Table 5" w:uiPriority="45" />
<w:lsdException w:name="Grid Table Light" w:uiPriority="40" />
<w:lsdException w:name="Grid Table 1 Light" w:uiPriority="46" />
<w:lsdException w:name="Grid Table 2" w:uiPriority="47" />
<w:lsdException w:name="Grid Table 3" w:uiPriority="48" />
<w:lsdException w:name="Grid Table 4" w:uiPriority="49" />
<w:lsdException w:name="Grid Table 5 Dark" w:uiPriority="50" />
<w:lsdException w:name="Grid Table 6 Colorful" w:uiPriority="51" />
<w:lsdException w:name="Grid Table 7 Colorful" w:uiPriority="52" />
<w:lsdException w:name="Grid Table 1 Light Accent 1" w:uiPriority="46" />
<w:lsdException w:name="Grid Table 2 Accent 1" w:uiPriority="47" />
<w:lsdException w:name="Grid Table 3 Accent 1" w:uiPriority="48" />
<w:lsdException w:name="Grid Table 4 Accent 1" w:uiPriority="49" />
<w:lsdException w:name="Grid Table 5 Dark Accent 1" w:uiPriority="50" />
<w:lsdException w:name="Grid Table 6 Colorful Accent 1" w:uiPriority="51" />
<w:lsdException w:name="Grid Table 7 Colorful Accent 1" w:uiPriority="52" />
<w:lsdException w:name="Grid Table 1 Light Accent 2" w:uiPriority="46" />
<w:lsdException w:name="Grid Table 2 Accent 2" w:uiPriority="47" />
<w:lsdException w:name="Grid Table 3 Accent 2" w:uiPriority="48" />
<w:lsdException w:name="Grid Table 4 Accent 2" w:uiPriority="49" />
<w:lsdException w:name="Grid Table 5 Dark Accent 2" w:uiPriority="50" />
<w:lsdException w:name="Grid Table 6 Colorful Accent 2" w:uiPriority="51" />
<w:lsdException w:name="Grid Table 7 Colorful Accent 2" w:uiPriority="52" />
<w:lsdException w:name="Grid Table 1 Light Accent 3" w:uiPriority="46" />
<w:lsdException w:name="Grid Table 2 Accent 3" w:uiPriority="47" />
<w:lsdException w:name="Grid Table 3 Accent 3" w:uiPriority="48" />
<w:lsdException w:name="Grid Table 4 Accent 3" w:uiPriority="49" />
<w:lsdException w:name="Grid Table 5 Dark Accent 3" w:uiPriority="50" />
<w:lsdException w:name="Grid Table 6 Colorful Accent 3" w:uiPriority="51" />
<w:lsdException w:name="Grid Table 7 Colorful Accent 3" w:uiPriority="52" />
<w:lsdException w:name="Grid Table 1 Light Accent 4" w:uiPriority="46" />
<w:lsdException w:name="Grid Table 2 Accent 4" w:uiPriority="47" />
<w:lsdException w:name="Grid Table 3 Accent 4" w:uiPriority="48" />
<w:lsdException w:name="Grid Table 4 Accent 4" w:uiPriority="49" />
<w:lsdException w:name="Grid Table 5 Dark Accent 4" w:uiPriority="50" />
<w:lsdException w:name="Grid Table 6 Colorful Accent 4" w:uiPriority="51" />
<w:lsdException w:name="Grid Table 7 Colorful Accent 4" w:uiPriority="52" />
<w:lsdException w:name="Grid Table 1 Light Accent 5" w:uiPriority="46" />
<w:lsdException w:name="Grid Table 2 Accent 5" w:uiPriority="47" />
<w:lsdException w:name="Grid Table 3 Accent 5" w:uiPriority="48" />
<w:lsdException w:name="Grid Table 4 Accent 5" w:uiPriority="49" />
<w:lsdException w:name="Grid Table 5 Dark Accent 5" w:uiPriority="50" />
<w:lsdException w:name="Grid Table 6 Colorful Accent 5" w:uiPriority="51" />
<w:lsdException w:name="Grid Table 7 Colorful Accent 5" w:uiPriority="52" />
<w:lsdException w:name="Grid Table 1 Light Accent 6" w:uiPriority="46" />
<w:lsdException w:name="Grid Table 2 Accent 6" w:uiPriority="47" />
<w:lsdException w:name="Grid Table 3 Accent 6" w:uiPriority="48" />
<w:lsdException w:name="Grid Table 4 Accent 6" w:uiPriority="49" />
<w:lsdException w:name="Grid Table 5 Dark Accent 6" w:uiPriority="50" />
<w:lsdException w:name="Grid Table 6 Colorful Accent 6" w:uiPriority="51" />
<w:lsdException w:name="Grid Table 7 Colorful Accent 6" w:uiPriority="52" />
<w:lsdException w:name="List Table 1 Light" w:uiPriority="46" />
<w:lsdException w:name="List Table 2" w:uiPriority="47" />
<w:lsdException w:name="List Table 3" w:uiPriority="48" />
<w:lsdException w:name="List Table 4" w:uiPriority="49" />
<w:lsdException w:name="List Table 5 Dark" w:uiPriority="50" />
<w:lsdException w:name="List Table 6 Colorful" w:uiPriority="51" />
<w:lsdException w:name="List Table 7 Colorful" w:uiPriority="52" />
<w:lsdException w:name="List Table 1 Light Accent 1" w:uiPriority="46" />
<w:lsdException w:name="List Table 2 Accent 1" w:uiPriority="47" />
<w:lsdException w:name="List Table 3 Accent 1" w:uiPriority="48" />
<w:lsdException w:name="List Table 4 Accent 1" w:uiPriority="49" />
<w:lsdException w:name="List Table 5 Dark Accent 1" w:uiPriority="50" />
<w:lsdException w:name="List Table 6 Colorful Accent 1" w:uiPriority="51" />
<w:lsdException w:name="List Table 7 Colorful Accent 1" w:uiPriority="52" />
<w:lsdException w:name="List Table 1 Light Accent 2" w:uiPriority="46" />
<w:lsdException w:name="List Table 2 Accent 2" w:uiPriority="47" />
<w:lsdException w:name="List Table 3 Accent 2" w:uiPriority="48" />
<w:lsdException w:name="List Table 4 Accent 2" w:uiPriority="49" />
<w:lsdException w:name="List Table 5 Dark Accent 2" w:uiPriority="50" />
<w:lsdException w:name="List Table 6 Colorful Accent 2" w:uiPriority="51" />
<w:lsdException w:name="List Table 7 Colorful Accent 2" w:uiPriority="52" />
<w:lsdException w:name="List Table 1 Light Accent 3" w:uiPriority="46" />
<w:lsdException w:name="List Table 2 Accent 3" w:uiPriority="47" />
<w:lsdException w:name="List Table 3 Accent 3" w:uiPriority="48" />
<w:lsdException w:name="List Table 4 Accent 3" w:uiPriority="49" />
<w:lsdException w:name="List Table 5 Dark Accent 3" w:uiPriority="50" />
<w:lsdException w:name="List Table 6 Colorful Accent 3" w:uiPriority="51" />
<w:lsdException w:name="List Table 7 Colorful Accent 3" w:uiPriority="52" />
<w:lsdException w:name="List Table 1 Light Accent 4" w:uiPriority="46" />
<w:lsdException w:name="List Table 2 Accent 4" w:uiPriority="47" />
<w:lsdException w:name="List Table 3 Accent 4" w:uiPriority="48" />
<w:lsdException w:name="List Table 4 Accent 4" w:uiPriority="49" />
<w:lsdException w:name="List Table 5 Dark Accent 4" w:uiPriority="50" />
<w:lsdException w:name="List Table 6 Colorful Accent 4" w:uiPriority="51" />
<w:lsdException w:name="List Table 7 Colorful Accent 4" w:uiPriority="52" />
<w:lsdException w:name="List Table 1 Light Accent 5" w:uiPriority="46" />
<w:lsdException w:name="List Table 2 Accent 5" w:uiPriority="47" />
<w:lsdException w:name="List Table 3 Accent 5" w:uiPriority="48" />
<w:lsdException w:name="List Table 4 Accent 5" w:uiPriority="49" />
<w:lsdException w:name="List Table 5 Dark Accent 5" w:uiPriority="50" />
<w:lsdException w:name="List Table 6 Colorful Accent 5" w:uiPriority="51" />
<w:lsdException w:name="List Table 7 Colorful Accent 5" w:uiPriority="52" />
<w:lsdException w:name="List Table 1 Light Accent 6" w:uiPriority="46" />
<w:lsdException w:name="List Table 2 Accent 6" w:uiPriority="47" />
<w:lsdException w:name="List Table 3 Accent 6" w:uiPriority="48" />
<w:lsdException w:name="List Table 4 Accent 6" w:uiPriority="49" />
<w:lsdException w:name="List Table 5 Dark Accent 6" w:uiPriority="50" />
<w:lsdException w:name="List Table 6 Colorful Accent 6" w:uiPriority="51" />
<w:lsdException w:name="List Table 7 Colorful Accent 6" w:uiPriority="52" />
</w:latentStyles>
<w:style w:type="paragraph" w:styleId="Normal" w:default="1">
<w:name w:val="Normal" />
<w:qFormat />
<w:pPr>
<w:widowControl w:val="0" />
<w:jc w:val="both" />
</w:pPr>
</w:style>
<w:style w:type="character" w:styleId="DefaultParagraphFont" w:default="1">
<w:name w:val="Default Paragraph Font" />
<w:uiPriority w:val="1" />
<w:semiHidden />
<w:unhideWhenUsed />
</w:style>
<w:style w:type="table" w:styleId="TableNormal" w:default="1">
<w:name w:val="Normal Table" />
<w:uiPriority w:val="99" />
<w:semiHidden />
<w:unhideWhenUsed />
<w:tblPr>
<w:tblInd w:w="0" w:type="dxa" />
<w:tblCellMar>
<w:top w:w="0" w:type="dxa" />
<w:left w:w="108" w:type="dxa" />
<w:bottom w:w="0" w:type="dxa" />
<w:right w:w="108" w:type="dxa" />
</w:tblCellMar>
</w:tblPr>
</w:style>
<w:style w:type="numbering" w:styleId="NoList" w:default="1">
<w:name w:val="No List" />
<w:uiPriority w:val="99" />
<w:semiHidden />
<w:unhideWhenUsed />
</w:style>
</w:styles>

View File

@ -0,0 +1,259 @@
<?xml version="1.0" encoding="utf-8" standalone="yes"?>
<a:theme xmlns:a="http://schemas.openxmlformats.org/drawingml/2006/main" name="Office Theme">
<a:themeElements>
<a:clrScheme name="Office">
<a:dk1>
<a:sysClr val="windowText" lastClr="000000" />
</a:dk1>
<a:lt1>
<a:sysClr val="window" lastClr="FFFFFF" />
</a:lt1>
<a:dk2>
<a:srgbClr val="44546A" />
</a:dk2>
<a:lt2>
<a:srgbClr val="E7E6E6" />
</a:lt2>
<a:accent1>
<a:srgbClr val="4472C4" />
</a:accent1>
<a:accent2>
<a:srgbClr val="ED7D31" />
</a:accent2>
<a:accent3>
<a:srgbClr val="A5A5A5" />
</a:accent3>
<a:accent4>
<a:srgbClr val="FFC000" />
</a:accent4>
<a:accent5>
<a:srgbClr val="5B9BD5" />
</a:accent5>
<a:accent6>
<a:srgbClr val="70AD47" />
</a:accent6>
<a:hlink>
<a:srgbClr val="0563C1" />
</a:hlink>
<a:folHlink>
<a:srgbClr val="954F72" />
</a:folHlink>
</a:clrScheme>
<a:fontScheme name="Office">
<a:majorFont>
<a:latin typeface="Arial" panose="020F0302020204030204" />
<a:ea typeface="" />
<a:cs typeface="" />
<a:font script="Jpan" typeface=" ゴシック" />
<a:font script="Hang" typeface="맑은 고딕" />
<a:font script="Hans" typeface="宋体" />
<a:font script="Hant" typeface="新細明體" />
<a:font script="Arab" typeface="Times New Roman" />
<a:font script="Hebr" typeface="Times New Roman" />
<a:font script="Thai" typeface="Angsana New" />
<a:font script="Ethi" typeface="Nyala" />
<a:font script="Beng" typeface="Vrinda" />
<a:font script="Gujr" typeface="Shruti" />
<a:font script="Khmr" typeface="MoolBoran" />
<a:font script="Knda" typeface="Tunga" />
<a:font script="Guru" typeface="Raavi" />
<a:font script="Cans" typeface="Euphemia" />
<a:font script="Cher" typeface="Plantagenet Cherokee" />
<a:font script="Yiii" typeface="Microsoft Yi Baiti" />
<a:font script="Tibt" typeface="Microsoft Himalaya" />
<a:font script="Thaa" typeface="MV Boli" />
<a:font script="Deva" typeface="Mangal" />
<a:font script="Telu" typeface="Gautami" />
<a:font script="Taml" typeface="Latha" />
<a:font script="Syrc" typeface="Estrangelo Edessa" />
<a:font script="Orya" typeface="Kalinga" />
<a:font script="Mlym" typeface="Kartika" />
<a:font script="Laoo" typeface="DokChampa" />
<a:font script="Sinh" typeface="Iskoola Pota" />
<a:font script="Mong" typeface="Mongolian Baiti" />
<a:font script="Viet" typeface="Times New Roman" />
<a:font script="Uigh" typeface="Microsoft Uighur" />
<a:font script="Geor" typeface="Sylfaen" />
</a:majorFont>
<a:minorFont>
<a:latin typeface="Century" panose="020F0502020204030204" />
<a:ea typeface="" />
<a:cs typeface="" />
<a:font script="Jpan" typeface=" 明朝" />
<a:font script="Hang" typeface="맑은 고딕" />
<a:font script="Hans" typeface="宋体" />
<a:font script="Hant" typeface="新細明體" />
<a:font script="Arab" typeface="Arial" />
<a:font script="Hebr" typeface="Arial" />
<a:font script="Thai" typeface="Cordia New" />
<a:font script="Ethi" typeface="Nyala" />
<a:font script="Beng" typeface="Vrinda" />
<a:font script="Gujr" typeface="Shruti" />
<a:font script="Khmr" typeface="DaunPenh" />
<a:font script="Knda" typeface="Tunga" />
<a:font script="Guru" typeface="Raavi" />
<a:font script="Cans" typeface="Euphemia" />
<a:font script="Cher" typeface="Plantagenet Cherokee" />
<a:font script="Yiii" typeface="Microsoft Yi Baiti" />
<a:font script="Tibt" typeface="Microsoft Himalaya" />
<a:font script="Thaa" typeface="MV Boli" />
<a:font script="Deva" typeface="Mangal" />
<a:font script="Telu" typeface="Gautami" />
<a:font script="Taml" typeface="Latha" />
<a:font script="Syrc" typeface="Estrangelo Edessa" />
<a:font script="Orya" typeface="Kalinga" />
<a:font script="Mlym" typeface="Kartika" />
<a:font script="Laoo" typeface="DokChampa" />
<a:font script="Sinh" typeface="Iskoola Pota" />
<a:font script="Mong" typeface="Mongolian Baiti" />
<a:font script="Viet" typeface="Arial" />
<a:font script="Uigh" typeface="Microsoft Uighur" />
<a:font script="Geor" typeface="Sylfaen" />
</a:minorFont>
</a:fontScheme>
<a:fmtScheme name="Office">
<a:fillStyleLst>
<a:solidFill>
<a:schemeClr val="phClr" />
</a:solidFill>
<a:gradFill rotWithShape="1">
<a:gsLst>
<a:gs pos="0">
<a:schemeClr val="phClr">
<a:lumMod val="110000" />
<a:satMod val="105000" />
<a:tint val="67000" />
</a:schemeClr>
</a:gs>
<a:gs pos="50000">
<a:schemeClr val="phClr">
<a:lumMod val="105000" />
<a:satMod val="103000" />
<a:tint val="73000" />
</a:schemeClr>
</a:gs>
<a:gs pos="100000">
<a:schemeClr val="phClr">
<a:lumMod val="105000" />
<a:satMod val="109000" />
<a:tint val="81000" />
</a:schemeClr>
</a:gs>
</a:gsLst>
<a:lin ang="5400000" scaled="0" />
</a:gradFill>
<a:gradFill rotWithShape="1">
<a:gsLst>
<a:gs pos="0">
<a:schemeClr val="phClr">
<a:satMod val="103000" />
<a:lumMod val="102000" />
<a:tint val="94000" />
</a:schemeClr>
</a:gs>
<a:gs pos="50000">
<a:schemeClr val="phClr">
<a:satMod val="110000" />
<a:lumMod val="100000" />
<a:shade val="100000" />
</a:schemeClr>
</a:gs>
<a:gs pos="100000">
<a:schemeClr val="phClr">
<a:lumMod val="99000" />
<a:satMod val="120000" />
<a:shade val="78000" />
</a:schemeClr>
</a:gs>
</a:gsLst>
<a:lin ang="5400000" scaled="0" />
</a:gradFill>
</a:fillStyleLst>
<a:lnStyleLst>
<a:ln w="6350" cap="flat" cmpd="sng" algn="ctr">
<a:solidFill>
<a:schemeClr val="phClr" />
</a:solidFill>
<a:prstDash val="solid" />
<a:miter lim="800000" />
</a:ln>
<a:ln w="12700" cap="flat" cmpd="sng" algn="ctr">
<a:solidFill>
<a:schemeClr val="phClr" />
</a:solidFill>
<a:prstDash val="solid" />
<a:miter lim="800000" />
</a:ln>
<a:ln w="19050" cap="flat" cmpd="sng" algn="ctr">
<a:solidFill>
<a:schemeClr val="phClr" />
</a:solidFill>
<a:prstDash val="solid" />
<a:miter lim="800000" />
</a:ln>
</a:lnStyleLst>
<a:effectStyleLst>
<a:effectStyle>
<a:effectLst />
</a:effectStyle>
<a:effectStyle>
<a:effectLst />
</a:effectStyle>
<a:effectStyle>
<a:effectLst>
<a:outerShdw blurRad="57150" dist="19050" dir="5400000" algn="ctr" rotWithShape="0">
<a:srgbClr val="000000">
<a:alpha val="63000" />
</a:srgbClr>
</a:outerShdw>
</a:effectLst>
</a:effectStyle>
</a:effectStyleLst>
<a:bgFillStyleLst>
<a:solidFill>
<a:schemeClr val="phClr" />
</a:solidFill>
<a:solidFill>
<a:schemeClr val="phClr">
<a:tint val="95000" />
<a:satMod val="170000" />
</a:schemeClr>
</a:solidFill>
<a:gradFill rotWithShape="1">
<a:gsLst>
<a:gs pos="0">
<a:schemeClr val="phClr">
<a:tint val="93000" />
<a:satMod val="150000" />
<a:shade val="98000" />
<a:lumMod val="102000" />
</a:schemeClr>
</a:gs>
<a:gs pos="50000">
<a:schemeClr val="phClr">
<a:tint val="98000" />
<a:satMod val="130000" />
<a:shade val="90000" />
<a:lumMod val="103000" />
</a:schemeClr>
</a:gs>
<a:gs pos="100000">
<a:schemeClr val="phClr">
<a:shade val="63000" />
<a:satMod val="120000" />
</a:schemeClr>
</a:gs>
</a:gsLst>
<a:lin ang="5400000" scaled="0" />
</a:gradFill>
</a:bgFillStyleLst>
</a:fmtScheme>
</a:themeElements>
<a:objectDefaults />
<a:extraClrSchemeLst />
<a:extLst>
<a:ext uri="{05A4C25C-085E-4340-85A3-A5531E510DB2}">
<thm15:themeFamily xmlns:thm15="http://schemas.microsoft.com/office/thememl/2012/main" name="Office Theme" id="{62F939B6-93AF-4DB8-9C6B-D6C7DFDC589F}" vid="{4A3C46E8-61CC-4603-A589-7422A47A8E4A}" />
</a:ext>
</a:extLst>
</a:theme>

View File

@ -0,0 +1,9 @@
<?xml version="1.0" encoding="UTF-8" standalone="yes"?>
<w:webSettings xmlns:mc="http://schemas.openxmlformats.org/markup-compatibility/2006"
xmlns:r="http://schemas.openxmlformats.org/officeDocument/2006/relationships"
xmlns:w="http://schemas.openxmlformats.org/wordprocessingml/2006/main"
xmlns:w14="http://schemas.microsoft.com/office/word/2010/wordml"
xmlns:w15="http://schemas.microsoft.com/office/word/2012/wordml" mc:Ignorable="w14 w15">
<w:optimizeForBrowser/>
<w:allowPNG/>
</w:webSettings>