diff --git a/docx-core/src/documents/elements/paragraph.rs b/docx-core/src/documents/elements/paragraph.rs index 7beaaee..bea9aa6 100644 --- a/docx-core/src/documents/elements/paragraph.rs +++ b/docx-core/src/documents/elements/paragraph.rs @@ -235,6 +235,11 @@ impl Paragraph { self } + pub fn section_property(mut self, s: SectionProperty) -> Self { + self.property = self.property.section_property(s); + self + } + pub fn add_tab(mut self, t: Tab) -> Self { self.property = self.property.add_tab(t); self diff --git a/docx-core/src/documents/elements/paragraph_property.rs b/docx-core/src/documents/elements/paragraph_property.rs index 63a477d..6f9eed3 100644 --- a/docx-core/src/documents/elements/paragraph_property.rs +++ b/docx-core/src/documents/elements/paragraph_property.rs @@ -29,6 +29,8 @@ pub struct ParagraphProperty { pub widow_control: Option, #[serde(skip_serializing_if = "Option::is_none")] pub outline_lvl: Option, + #[serde(skip_serializing_if = "Option::is_none")] + pub section_property: Option, pub tabs: Vec, // read only #[serde(skip_serializing_if = "Option::is_none")] @@ -116,6 +118,11 @@ impl ParagraphProperty { self } + pub fn section_property(mut self, s: SectionProperty) -> Self { + self.section_property = Some(s); + self + } + pub fn paragraph_property_change(mut self, p: ParagraphPropertyChange) -> Self { self.paragraph_property_change = Some(p); self diff --git a/docx-core/src/reader/paragraph_property.rs b/docx-core/src/reader/paragraph_property.rs index ddbd508..76367f4 100644 --- a/docx-core/src/reader/paragraph_property.rs +++ b/docx-core/src/reader/paragraph_property.rs @@ -105,6 +105,11 @@ impl ElementReader for ParagraphProperty { p.paragraph_property_change = Some(ppr_change); } } + XMLElement::SectionProperty => { + if let Ok(sp) = SectionProperty::read(r, &attributes) { + p.section_property = Some(sp); + } + } _ => {} } } diff --git a/docx-wasm/js/json/paragraph.ts b/docx-wasm/js/json/paragraph.ts index 1da7f57..f091b0d 100644 --- a/docx-wasm/js/json/paragraph.ts +++ b/docx-wasm/js/json/paragraph.ts @@ -1,6 +1,10 @@ import { RunJSON, RunPropertyJSON } from "./run"; import { IndentJSON } from "./indent"; -import { CommentRangeStartJSON, CommentRangeEndJSON } from ".."; +import { + CommentRangeStartJSON, + CommentRangeEndJSON, + SectionPropertyJSON, +} from ".."; import { LineSpacingJSON } from "./line_spacing"; export type ParagraphChildJSON = @@ -45,6 +49,7 @@ export type ParagraphPropertyJSON = { date: string; property: ParagraphPropertyJSON; }; + sectionProperty?: SectionPropertyJSON; }; export type ParagraphJSON = { diff --git a/docx-wasm/package.json b/docx-wasm/package.json index 0ba1d06..188729f 100644 --- a/docx-wasm/package.json +++ b/docx-wasm/package.json @@ -1,6 +1,6 @@ { "name": "docx-wasm", - "version": "0.0.276-rc18", + "version": "0.0.276-rc19", "main": "dist/node/index.js", "browser": "dist/web/index.js", "author": "bokuweb ", diff --git a/docx-wasm/test/__snapshots__/index.test.js.snap b/docx-wasm/test/__snapshots__/index.test.js.snap index f10fe57..81be6a8 100644 --- a/docx-wasm/test/__snapshots__/index.test.js.snap +++ b/docx-wasm/test/__snapshots__/index.test.js.snap @@ -25431,6 +25431,61771 @@ Object { } `; +exports[`reader should read sectionProperty in ppr 1`] = ` +Object { + "comments": Object { + "comments": Array [], + }, + "commentsExtended": Object { + "children": Array [], + }, + "contentType": Object { + "custom_xml_count": 1, + "footer_count": 0, + "header_count": 1, + "types": Object { + "/_rels/.rels": "application/vnd.openxmlformats-package.relationships+xml", + "/docProps/app.xml": "application/vnd.openxmlformats-officedocument.extended-properties+xml", + "/docProps/core.xml": "application/vnd.openxmlformats-package.core-properties+xml", + "/docProps/custom.xml": "application/vnd.openxmlformats-officedocument.custom-properties+xml", + "/word/_rels/document.xml.rels": "application/vnd.openxmlformats-package.relationships+xml", + "/word/comments.xml": "application/vnd.openxmlformats-officedocument.wordprocessingml.comments+xml", + "/word/commentsExtended.xml": "application/vnd.openxmlformats-officedocument.wordprocessingml.commentsExtended+xml", + "/word/document.xml": "application/vnd.openxmlformats-officedocument.wordprocessingml.document.main+xml", + "/word/fontTable.xml": "application/vnd.openxmlformats-officedocument.wordprocessingml.fontTable+xml", + "/word/header1.xml": "application/vnd.openxmlformats-officedocument.wordprocessingml.header+xml", + "/word/numbering.xml": "application/vnd.openxmlformats-officedocument.wordprocessingml.numbering+xml", + "/word/settings.xml": "application/vnd.openxmlformats-officedocument.wordprocessingml.settings+xml", + "/word/styles.xml": "application/vnd.openxmlformats-officedocument.wordprocessingml.styles+xml", + }, + "web_extension_count": 1, + }, + "customItemProps": Array [], + "customItemRels": Array [], + "customItems": Array [], + "docProps": Object { + "app": Object {}, + "core": Object { + "config": Object { + "created": null, + "creator": null, + "description": null, + "language": null, + "lastModifiedBy": null, + "modified": null, + "revision": null, + "subject": null, + "title": null, + }, + }, + "custom": Object { + "properties": Object {}, + }, + }, + "document": Object { + "children": Array [ + Object { + "data": Object { + "children": Array [ + Object { + "data": Object { + "id": 0, + "name": "_Toc318900786", + }, + "type": "bookmarkStart", + }, + Object { + "data": Object { + "id": 1, + "name": "_Toc478901017", + }, + "type": "bookmarkStart", + }, + Object { + "data": Object { + "id": 2, + "name": "_Toc492899322", + }, + "type": "bookmarkStart", + }, + Object { + "data": Object { + "children": Array [ + Object { + "data": Object { + "preserveSpace": true, + "text": "あ", + }, + "type": "text", + }, + ], + "runProperty": Object { + "fonts": Object { + "hint": "eastAsia", + }, + }, + }, + "type": "run", + }, + ], + "hasNumbering": false, + "id": "446D5FCD", + "property": Object { + "runProperty": Object { + "fonts": Object { + "hint": "eastAsia", + }, + }, + "style": "1", + "tabs": Array [], + }, + }, + "type": "paragraph", + }, + Object { + "data": Object { + "children": Array [ + Object { + "data": Object { + "id": 3, + "name": "_Toc517255028", + }, + "type": "bookmarkStart", + }, + Object { + "data": Object { + "id": 4, + "name": "_Toc517372549", + }, + "type": "bookmarkStart", + }, + Object { + "data": Object { + "id": 5, + "name": "_Toc518637678", + }, + "type": "bookmarkStart", + }, + Object { + "data": Object { + "id": 6, + "name": "_Toc517255029", + }, + "type": "bookmarkStart", + }, + Object { + "data": Object { + "id": 7, + "name": "_Toc517372550", + }, + "type": "bookmarkStart", + }, + Object { + "data": Object { + "id": 8, + "name": "_Toc518637679", + }, + "type": "bookmarkStart", + }, + Object { + "data": Object { + "id": 9, + "name": "_Toc517255030", + }, + "type": "bookmarkStart", + }, + Object { + "data": Object { + "id": 10, + "name": "_Toc517372551", + }, + "type": "bookmarkStart", + }, + Object { + "data": Object { + "id": 11, + "name": "_Toc518637680", + }, + "type": "bookmarkStart", + }, + Object { + "data": Object { + "id": 12, + "name": "_Toc517255031", + }, + "type": "bookmarkStart", + }, + Object { + "data": Object { + "id": 13, + "name": "_Toc517372552", + }, + "type": "bookmarkStart", + }, + Object { + "data": Object { + "id": 14, + "name": "_Toc518637681", + }, + "type": "bookmarkStart", + }, + Object { + "data": Object { + "id": 15, + "name": "_Toc517255032", + }, + "type": "bookmarkStart", + }, + Object { + "data": Object { + "id": 16, + "name": "_Toc517372553", + }, + "type": "bookmarkStart", + }, + Object { + "data": Object { + "id": 17, + "name": "_Toc518637682", + }, + "type": "bookmarkStart", + }, + Object { + "data": Object { + "id": 18, + "name": "_Toc517255033", + }, + "type": "bookmarkStart", + }, + Object { + "data": Object { + "id": 19, + "name": "_Toc517372554", + }, + "type": "bookmarkStart", + }, + Object { + "data": Object { + "id": 20, + "name": "_Toc518637683", + }, + "type": "bookmarkStart", + }, + Object { + "data": Object { + "id": 21, + "name": "_Toc517255034", + }, + "type": "bookmarkStart", + }, + Object { + "data": Object { + "id": 22, + "name": "_Toc517372555", + }, + "type": "bookmarkStart", + }, + Object { + "data": Object { + "id": 23, + "name": "_Toc518637684", + }, + "type": "bookmarkStart", + }, + Object { + "data": Object { + "id": 24, + "name": "_Toc517255035", + }, + "type": "bookmarkStart", + }, + Object { + "data": Object { + "id": 25, + "name": "_Toc517372556", + }, + "type": "bookmarkStart", + }, + Object { + "data": Object { + "id": 26, + "name": "_Toc518637685", + }, + "type": "bookmarkStart", + }, + Object { + "data": Object { + "id": 27, + "name": "_Toc517255036", + }, + "type": "bookmarkStart", + }, + Object { + "data": Object { + "id": 28, + "name": "_Toc517372557", + }, + "type": "bookmarkStart", + }, + Object { + "data": Object { + "id": 29, + "name": "_Toc518637686", + }, + "type": "bookmarkStart", + }, + Object { + "data": Object { + "id": 30, + "name": "_Toc517255037", + }, + "type": "bookmarkStart", + }, + Object { + "data": Object { + "id": 31, + "name": "_Toc517372558", + }, + "type": "bookmarkStart", + }, + Object { + "data": Object { + "id": 32, + "name": "_Toc518637687", + }, + "type": "bookmarkStart", + }, + Object { + "data": Object { + "id": 33, + "name": "_Toc517255038", + }, + "type": "bookmarkStart", + }, + Object { + "data": Object { + "id": 34, + "name": "_Toc517372559", + }, + "type": "bookmarkStart", + }, + Object { + "data": Object { + "id": 35, + "name": "_Toc518637688", + }, + "type": "bookmarkStart", + }, + Object { + "data": Object { + "id": 36, + "name": "_Toc517255039", + }, + "type": "bookmarkStart", + }, + Object { + "data": Object { + "id": 37, + "name": "_Toc517372560", + }, + "type": "bookmarkStart", + }, + Object { + "data": Object { + "id": 38, + "name": "_Toc518637689", + }, + "type": "bookmarkStart", + }, + Object { + "data": Object { + "id": 39, + "name": "_Toc517255040", + }, + "type": "bookmarkStart", + }, + Object { + "data": Object { + "id": 40, + "name": "_Toc517372561", + }, + "type": "bookmarkStart", + }, + Object { + "data": Object { + "id": 41, + "name": "_Toc518637690", + }, + "type": "bookmarkStart", + }, + Object { + "data": Object { + "id": 42, + "name": "_Toc517255041", + }, + "type": "bookmarkStart", + }, + Object { + "data": Object { + "id": 43, + "name": "_Toc517372562", + }, + "type": "bookmarkStart", + }, + Object { + "data": Object { + "id": 44, + "name": "_Toc518637691", + }, + "type": "bookmarkStart", + }, + Object { + "data": Object { + "id": 45, + "name": "_Toc517255042", + }, + "type": "bookmarkStart", + }, + Object { + "data": Object { + "id": 46, + "name": "_Toc517372563", + }, + "type": "bookmarkStart", + }, + Object { + "data": Object { + "id": 47, + "name": "_Toc518637692", + }, + "type": "bookmarkStart", + }, + Object { + "data": Object { + "id": 48, + "name": "_Toc517255043", + }, + "type": "bookmarkStart", + }, + Object { + "data": Object { + "id": 49, + "name": "_Toc517372564", + }, + "type": "bookmarkStart", + }, + Object { + "data": Object { + "id": 50, + "name": "_Toc518637693", + }, + "type": "bookmarkStart", + }, + Object { + "data": Object { + "id": 51, + "name": "_Toc517255044", + }, + "type": "bookmarkStart", + }, + Object { + "data": Object { + "id": 52, + "name": "_Toc517372565", + }, + "type": "bookmarkStart", + }, + Object { + "data": Object { + "id": 53, + "name": "_Toc518637694", + }, + "type": "bookmarkStart", + }, + Object { + "data": Object { + "id": 54, + "name": "_Toc517255045", + }, + "type": "bookmarkStart", + }, + Object { + "data": Object { + "id": 55, + "name": "_Toc517372566", + }, + "type": "bookmarkStart", + }, + Object { + "data": Object { + "id": 56, + "name": "_Toc518637695", + }, + "type": "bookmarkStart", + }, + Object { + "data": Object { + "id": 57, + "name": "_Toc517255046", + }, + "type": "bookmarkStart", + }, + Object { + "data": Object { + "id": 58, + "name": "_Toc517372567", + }, + "type": "bookmarkStart", + }, + Object { + "data": Object { + "id": 59, + "name": "_Toc518637696", + }, + "type": "bookmarkStart", + }, + Object { + "data": Object { + "id": 60, + "name": "_Toc517255047", + }, + "type": "bookmarkStart", + }, + Object { + "data": Object { + "id": 61, + "name": "_Toc517372568", + }, + "type": "bookmarkStart", + }, + Object { + "data": Object { + "id": 62, + "name": "_Toc518637697", + }, + "type": "bookmarkStart", + }, + Object { + "data": Object { + "id": 63, + "name": "_Toc517255048", + }, + "type": "bookmarkStart", + }, + Object { + "data": Object { + "id": 64, + "name": "_Toc517372569", + }, + "type": "bookmarkStart", + }, + Object { + "data": Object { + "id": 65, + "name": "_Toc518637698", + }, + "type": "bookmarkStart", + }, + Object { + "data": Object { + "id": 66, + "name": "_Toc517255049", + }, + "type": "bookmarkStart", + }, + Object { + "data": Object { + "id": 67, + "name": "_Toc517372570", + }, + "type": "bookmarkStart", + }, + Object { + "data": Object { + "id": 68, + "name": "_Toc518637699", + }, + "type": "bookmarkStart", + }, + Object { + "data": Object { + "id": 69, + "name": "_Toc517255050", + }, + "type": "bookmarkStart", + }, + Object { + "data": Object { + "id": 70, + "name": "_Toc517372571", + }, + "type": "bookmarkStart", + }, + Object { + "data": Object { + "id": 71, + "name": "_Toc518637700", + }, + "type": "bookmarkStart", + }, + Object { + "data": Object { + "id": 72, + "name": "_Toc517255051", + }, + "type": "bookmarkStart", + }, + Object { + "data": Object { + "id": 73, + "name": "_Toc517372572", + }, + "type": "bookmarkStart", + }, + Object { + "data": Object { + "id": 74, + "name": "_Toc518637701", + }, + "type": "bookmarkStart", + }, + Object { + "data": Object { + "id": 75, + "name": "_Toc517255052", + }, + "type": "bookmarkStart", + }, + Object { + "data": Object { + "id": 76, + "name": "_Toc517372573", + }, + "type": "bookmarkStart", + }, + Object { + "data": Object { + "id": 77, + "name": "_Toc518637702", + }, + "type": "bookmarkStart", + }, + Object { + "data": Object { + "id": 78, + "name": "_Toc517255053", + }, + "type": "bookmarkStart", + }, + Object { + "data": Object { + "id": 79, + "name": "_Toc517372574", + }, + "type": "bookmarkStart", + }, + Object { + "data": Object { + "id": 80, + "name": "_Toc518637703", + }, + "type": "bookmarkStart", + }, + Object { + "data": Object { + "id": 81, + "name": "_Toc517255054", + }, + "type": "bookmarkStart", + }, + Object { + "data": Object { + "id": 82, + "name": "_Toc517372575", + }, + "type": "bookmarkStart", + }, + Object { + "data": Object { + "id": 83, + "name": "_Toc518637704", + }, + "type": "bookmarkStart", + }, + Object { + "data": Object { + "id": 84, + "name": "_Toc517255055", + }, + "type": "bookmarkStart", + }, + Object { + "data": Object { + "id": 85, + "name": "_Toc517372576", + }, + "type": "bookmarkStart", + }, + Object { + "data": Object { + "id": 86, + "name": "_Toc518637705", + }, + "type": "bookmarkStart", + }, + Object { + "data": Object { + "id": 87, + "name": "_Toc517255056", + }, + "type": "bookmarkStart", + }, + Object { + "data": Object { + "id": 88, + "name": "_Toc517372577", + }, + "type": "bookmarkStart", + }, + Object { + "data": Object { + "id": 89, + "name": "_Toc518637706", + }, + "type": "bookmarkStart", + }, + Object { + "data": Object { + "id": 90, + "name": "_Toc517255057", + }, + "type": "bookmarkStart", + }, + Object { + "data": Object { + "id": 91, + "name": "_Toc517372578", + }, + "type": "bookmarkStart", + }, + Object { + "data": Object { + "id": 92, + "name": "_Toc518637707", + }, + "type": "bookmarkStart", + }, + Object { + "data": Object { + "id": 93, + "name": "_Toc517255058", + }, + "type": "bookmarkStart", + }, + Object { + "data": Object { + "id": 94, + "name": "_Toc517372579", + }, + "type": "bookmarkStart", + }, + Object { + "data": Object { + "id": 95, + "name": "_Toc518637708", + }, + "type": "bookmarkStart", + }, + Object { + "data": Object { + "id": 96, + "name": "_Toc517255059", + }, + "type": "bookmarkStart", + }, + Object { + "data": Object { + "id": 97, + "name": "_Toc517372580", + }, + "type": "bookmarkStart", + }, + Object { + "data": Object { + "id": 98, + "name": "_Toc518637709", + }, + "type": "bookmarkStart", + }, + Object { + "data": Object { + "id": 99, + "name": "_Toc517255060", + }, + "type": "bookmarkStart", + }, + Object { + "data": Object { + "id": 100, + "name": "_Toc517372581", + }, + "type": "bookmarkStart", + }, + Object { + "data": Object { + "id": 101, + "name": "_Toc518637710", + }, + "type": "bookmarkStart", + }, + Object { + "data": Object { + "id": 102, + "name": "_Toc517255061", + }, + "type": "bookmarkStart", + }, + Object { + "data": Object { + "id": 103, + "name": "_Toc517372582", + }, + "type": "bookmarkStart", + }, + Object { + "data": Object { + "id": 104, + "name": "_Toc518637711", + }, + "type": "bookmarkStart", + }, + Object { + "data": Object { + "id": 105, + "name": "_Toc517255062", + }, + "type": "bookmarkStart", + }, + Object { + "data": Object { + "id": 106, + "name": "_Toc517372583", + }, + "type": "bookmarkStart", + }, + Object { + "data": Object { + "id": 107, + "name": "_Toc518637712", + }, + "type": "bookmarkStart", + }, + Object { + "data": Object { + "id": 108, + "name": "_Toc517255063", + }, + "type": "bookmarkStart", + }, + Object { + "data": Object { + "id": 109, + "name": "_Toc517372584", + }, + "type": "bookmarkStart", + }, + Object { + "data": Object { + "id": 110, + "name": "_Toc518637713", + }, + "type": "bookmarkStart", + }, + Object { + "data": Object { + "id": 111, + "name": "_Toc517255064", + }, + "type": "bookmarkStart", + }, + Object { + "data": Object { + "id": 112, + "name": "_Toc517372585", + }, + "type": "bookmarkStart", + }, + Object { + "data": Object { + "id": 113, + "name": "_Toc518637714", + }, + "type": "bookmarkStart", + }, + Object { + "data": Object { + "id": 114, + "name": "_Toc517255065", + }, + "type": "bookmarkStart", + }, + Object { + "data": Object { + "id": 115, + "name": "_Toc517372586", + }, + "type": "bookmarkStart", + }, + Object { + "data": Object { + "id": 116, + "name": "_Toc518637715", + }, + "type": "bookmarkStart", + }, + Object { + "data": Object { + "id": 117, + "name": "_Toc517255066", + }, + "type": "bookmarkStart", + }, + Object { + "data": Object { + "id": 118, + "name": "_Toc517372587", + }, + "type": "bookmarkStart", + }, + Object { + "data": Object { + "id": 119, + "name": "_Toc518637716", + }, + "type": "bookmarkStart", + }, + Object { + "data": Object { + "id": 120, + "name": "_Toc517255067", + }, + "type": "bookmarkStart", + }, + Object { + "data": Object { + "id": 121, + "name": "_Toc517372588", + }, + "type": "bookmarkStart", + }, + Object { + "data": Object { + "id": 122, + "name": "_Toc518637717", + }, + "type": "bookmarkStart", + }, + Object { + "data": Object { + "id": 123, + "name": "_Toc517255068", + }, + "type": "bookmarkStart", + }, + Object { + "data": Object { + "id": 124, + "name": "_Toc517372589", + }, + "type": "bookmarkStart", + }, + Object { + "data": Object { + "id": 125, + "name": "_Toc518637718", + }, + "type": "bookmarkStart", + }, + Object { + "data": Object { + "id": 126, + "name": "_Toc517255069", + }, + "type": "bookmarkStart", + }, + Object { + "data": Object { + "id": 127, + "name": "_Toc517372590", + }, + "type": "bookmarkStart", + }, + Object { + "data": Object { + "id": 128, + "name": "_Toc518637719", + }, + "type": "bookmarkStart", + }, + Object { + "data": Object { + "id": 129, + "name": "_Toc517255070", + }, + "type": "bookmarkStart", + }, + Object { + "data": Object { + "id": 130, + "name": "_Toc517372591", + }, + "type": "bookmarkStart", + }, + Object { + "data": Object { + "id": 131, + "name": "_Toc518637720", + }, + "type": "bookmarkStart", + }, + Object { + "data": Object { + "id": 132, + "name": "_Toc517255071", + }, + "type": "bookmarkStart", + }, + Object { + "data": Object { + "id": 133, + "name": "_Toc517372592", + }, + "type": "bookmarkStart", + }, + Object { + "data": Object { + "id": 134, + "name": "_Toc518637721", + }, + "type": "bookmarkStart", + }, + Object { + "data": Object { + "id": 135, + "name": "_Toc517255072", + }, + "type": "bookmarkStart", + }, + Object { + "data": Object { + "id": 136, + "name": "_Toc517372593", + }, + "type": "bookmarkStart", + }, + Object { + "data": Object { + "id": 137, + "name": "_Toc518637722", + }, + "type": "bookmarkStart", + }, + Object { + "data": Object { + "id": 138, + "name": "_Toc517255073", + }, + "type": "bookmarkStart", + }, + Object { + "data": Object { + "id": 139, + "name": "_Toc517372594", + }, + "type": "bookmarkStart", + }, + Object { + "data": Object { + "id": 140, + "name": "_Toc518637723", + }, + "type": "bookmarkStart", + }, + Object { + "data": Object { + "id": 141, + "name": "_Toc517255074", + }, + "type": "bookmarkStart", + }, + Object { + "data": Object { + "id": 142, + "name": "_Toc517372595", + }, + "type": "bookmarkStart", + }, + Object { + "data": Object { + "id": 143, + "name": "_Toc518637724", + }, + "type": "bookmarkStart", + }, + Object { + "data": Object { + "id": 144, + "name": "_Toc517255075", + }, + "type": "bookmarkStart", + }, + Object { + "data": Object { + "id": 145, + "name": "_Toc517372596", + }, + "type": "bookmarkStart", + }, + Object { + "data": Object { + "id": 146, + "name": "_Toc518637725", + }, + "type": "bookmarkStart", + }, + Object { + "data": Object { + "id": 147, + "name": "_Toc517255076", + }, + "type": "bookmarkStart", + }, + Object { + "data": Object { + "id": 148, + "name": "_Toc517372597", + }, + "type": "bookmarkStart", + }, + Object { + "data": Object { + "id": 149, + "name": "_Toc518637726", + }, + "type": "bookmarkStart", + }, + Object { + "data": Object { + "id": 150, + "name": "_Toc517255077", + }, + "type": "bookmarkStart", + }, + Object { + "data": Object { + "id": 151, + "name": "_Toc517372598", + }, + "type": "bookmarkStart", + }, + Object { + "data": Object { + "id": 152, + "name": "_Toc518637727", + }, + "type": "bookmarkStart", + }, + Object { + "data": Object { + "id": 153, + "name": "_Toc517255078", + }, + "type": "bookmarkStart", + }, + Object { + "data": Object { + "id": 154, + "name": "_Toc517372599", + }, + "type": "bookmarkStart", + }, + Object { + "data": Object { + "id": 155, + "name": "_Toc518637728", + }, + "type": "bookmarkStart", + }, + Object { + "data": Object { + "id": 156, + "name": "_Toc517255079", + }, + "type": "bookmarkStart", + }, + Object { + "data": Object { + "id": 157, + "name": "_Toc517372600", + }, + "type": "bookmarkStart", + }, + Object { + "data": Object { + "id": 158, + "name": "_Toc518637729", + }, + "type": "bookmarkStart", + }, + Object { + "data": Object { + "id": 159, + "name": "_Toc517255080", + }, + "type": "bookmarkStart", + }, + Object { + "data": Object { + "id": 160, + "name": "_Toc517372601", + }, + "type": "bookmarkStart", + }, + Object { + "data": Object { + "id": 161, + "name": "_Toc518637730", + }, + "type": "bookmarkStart", + }, + Object { + "data": Object { + "id": 162, + "name": "_Toc517255081", + }, + "type": "bookmarkStart", + }, + Object { + "data": Object { + "id": 163, + "name": "_Toc517372602", + }, + "type": "bookmarkStart", + }, + Object { + "data": Object { + "id": 164, + "name": "_Toc518637731", + }, + "type": "bookmarkStart", + }, + Object { + "data": Object { + "id": 165, + "name": "_Toc517255082", + }, + "type": "bookmarkStart", + }, + Object { + "data": Object { + "id": 166, + "name": "_Toc517372603", + }, + "type": "bookmarkStart", + }, + Object { + "data": Object { + "id": 167, + "name": "_Toc518637732", + }, + "type": "bookmarkStart", + }, + Object { + "data": Object { + "id": 168, + "name": "_Toc517255083", + }, + "type": "bookmarkStart", + }, + Object { + "data": Object { + "id": 169, + "name": "_Toc517372604", + }, + "type": "bookmarkStart", + }, + Object { + "data": Object { + "id": 170, + "name": "_Toc518637733", + }, + "type": "bookmarkStart", + }, + Object { + "data": Object { + "id": 171, + "name": "_Toc517255084", + }, + "type": "bookmarkStart", + }, + Object { + "data": Object { + "id": 172, + "name": "_Toc517372605", + }, + "type": "bookmarkStart", + }, + Object { + "data": Object { + "id": 173, + "name": "_Toc518637734", + }, + "type": "bookmarkStart", + }, + Object { + "data": Object { + "id": 174, + "name": "_Toc517255085", + }, + "type": "bookmarkStart", + }, + Object { + "data": Object { + "id": 175, + "name": "_Toc517372606", + }, + "type": "bookmarkStart", + }, + Object { + "data": Object { + "id": 176, + "name": "_Toc518637735", + }, + "type": "bookmarkStart", + }, + Object { + "data": Object { + "id": 177, + "name": "_Toc517255086", + }, + "type": "bookmarkStart", + }, + Object { + "data": Object { + "id": 178, + "name": "_Toc517372607", + }, + "type": "bookmarkStart", + }, + Object { + "data": Object { + "id": 179, + "name": "_Toc518637736", + }, + "type": "bookmarkStart", + }, + Object { + "data": Object { + "id": 180, + "name": "_Toc517255087", + }, + "type": "bookmarkStart", + }, + Object { + "data": Object { + "id": 181, + "name": "_Toc517372608", + }, + "type": "bookmarkStart", + }, + Object { + "data": Object { + "id": 182, + "name": "_Toc518637737", + }, + "type": "bookmarkStart", + }, + Object { + "data": Object { + "id": 183, + "name": "_Toc517255088", + }, + "type": "bookmarkStart", + }, + Object { + "data": Object { + "id": 184, + "name": "_Toc517372609", + }, + "type": "bookmarkStart", + }, + Object { + "data": Object { + "id": 185, + "name": "_Toc518637738", + }, + "type": "bookmarkStart", + }, + Object { + "data": Object { + "id": 3, + }, + "type": "bookmarkEnd", + }, + Object { + "data": Object { + "id": 4, + }, + "type": "bookmarkEnd", + }, + Object { + "data": Object { + "id": 5, + }, + "type": "bookmarkEnd", + }, + Object { + "data": Object { + "id": 6, + }, + "type": "bookmarkEnd", + }, + Object { + "data": Object { + "id": 7, + }, + "type": "bookmarkEnd", + }, + Object { + "data": Object { + "id": 8, + }, + "type": "bookmarkEnd", + }, + Object { + "data": Object { + "id": 9, + }, + "type": "bookmarkEnd", + }, + Object { + "data": Object { + "id": 10, + }, + "type": "bookmarkEnd", + }, + Object { + "data": Object { + "id": 11, + }, + "type": "bookmarkEnd", + }, + Object { + "data": Object { + "id": 12, + }, + "type": "bookmarkEnd", + }, + Object { + "data": Object { + "id": 13, + }, + "type": "bookmarkEnd", + }, + Object { + "data": Object { + "id": 14, + }, + "type": "bookmarkEnd", + }, + Object { + "data": Object { + "id": 15, + }, + "type": "bookmarkEnd", + }, + Object { + "data": Object { + "id": 16, + }, + "type": "bookmarkEnd", + }, + Object { + "data": Object { + "id": 17, + }, + "type": "bookmarkEnd", + }, + Object { + "data": Object { + "id": 18, + }, + "type": "bookmarkEnd", + }, + Object { + "data": Object { + "id": 19, + }, + "type": "bookmarkEnd", + }, + Object { + "data": Object { + "id": 20, + }, + "type": "bookmarkEnd", + }, + Object { + "data": Object { + "id": 21, + }, + "type": "bookmarkEnd", + }, + Object { + "data": Object { + "id": 22, + }, + "type": "bookmarkEnd", + }, + Object { + "data": Object { + "id": 23, + }, + "type": "bookmarkEnd", + }, + Object { + "data": Object { + "id": 24, + }, + "type": "bookmarkEnd", + }, + Object { + "data": Object { + "id": 25, + }, + "type": "bookmarkEnd", + }, + Object { + "data": Object { + "id": 26, + }, + "type": "bookmarkEnd", + }, + Object { + "data": Object { + "id": 27, + }, + "type": "bookmarkEnd", + }, + Object { + "data": Object { + "id": 28, + }, + "type": "bookmarkEnd", + }, + Object { + "data": Object { + "id": 29, + }, + "type": "bookmarkEnd", + }, + Object { + "data": Object { + "id": 30, + }, + "type": "bookmarkEnd", + }, + Object { + "data": Object { + "id": 31, + }, + "type": "bookmarkEnd", + }, + Object { + "data": Object { + "id": 32, + }, + "type": "bookmarkEnd", + }, + Object { + "data": Object { + "id": 33, + }, + "type": "bookmarkEnd", + }, + Object { + "data": Object { + "id": 34, + }, + "type": "bookmarkEnd", + }, + Object { + "data": Object { + "id": 35, + }, + "type": "bookmarkEnd", + }, + Object { + "data": Object { + "id": 36, + }, + "type": "bookmarkEnd", + }, + Object { + "data": Object { + "id": 37, + }, + "type": "bookmarkEnd", + }, + Object { + "data": Object { + "id": 38, + }, + "type": "bookmarkEnd", + }, + Object { + "data": Object { + "id": 39, + }, + "type": "bookmarkEnd", + }, + Object { + "data": Object { + "id": 40, + }, + "type": "bookmarkEnd", + }, + Object { + "data": Object { + "id": 41, + }, + "type": "bookmarkEnd", + }, + Object { + "data": Object { + "id": 42, + }, + "type": "bookmarkEnd", + }, + Object { + "data": Object { + "id": 43, + }, + "type": "bookmarkEnd", + }, + Object { + "data": Object { + "id": 44, + }, + "type": "bookmarkEnd", + }, + Object { + "data": Object { + "id": 45, + }, + "type": "bookmarkEnd", + }, + Object { + "data": Object { + "id": 46, + }, + "type": "bookmarkEnd", + }, + Object { + "data": Object { + "id": 47, + }, + "type": "bookmarkEnd", + }, + Object { + "data": Object { + "id": 48, + }, + "type": "bookmarkEnd", + }, + Object { + "data": Object { + "id": 49, + }, + "type": "bookmarkEnd", + }, + Object { + "data": Object { + "id": 50, + }, + "type": "bookmarkEnd", + }, + Object { + "data": Object { + "id": 51, + }, + "type": "bookmarkEnd", + }, + Object { + "data": Object { + "id": 52, + }, + "type": "bookmarkEnd", + }, + Object { + "data": Object { + "id": 53, + }, + "type": "bookmarkEnd", + }, + Object { + "data": Object { + "id": 54, + }, + "type": "bookmarkEnd", + }, + Object { + "data": Object { + "id": 55, + }, + "type": "bookmarkEnd", + }, + Object { + "data": Object { + "id": 56, + }, + "type": "bookmarkEnd", + }, + Object { + "data": Object { + "id": 57, + }, + "type": "bookmarkEnd", + }, + Object { + "data": Object { + "id": 58, + }, + "type": "bookmarkEnd", + }, + Object { + "data": Object { + "id": 59, + }, + "type": "bookmarkEnd", + }, + Object { + "data": Object { + "id": 60, + }, + "type": "bookmarkEnd", + }, + Object { + "data": Object { + "id": 61, + }, + "type": "bookmarkEnd", + }, + Object { + "data": Object { + "id": 62, + }, + "type": "bookmarkEnd", + }, + Object { + "data": Object { + "id": 63, + }, + "type": "bookmarkEnd", + }, + Object { + "data": Object { + "id": 64, + }, + "type": "bookmarkEnd", + }, + Object { + "data": Object { + "id": 65, + }, + "type": "bookmarkEnd", + }, + Object { + "data": Object { + "id": 66, + }, + "type": "bookmarkEnd", + }, + Object { + "data": Object { + "id": 67, + }, + "type": "bookmarkEnd", + }, + Object { + "data": Object { + "id": 68, + }, + "type": "bookmarkEnd", + }, + Object { + "data": Object { + "id": 69, + }, + "type": "bookmarkEnd", + }, + Object { + "data": Object { + "id": 70, + }, + "type": "bookmarkEnd", + }, + Object { + "data": Object { + "id": 71, + }, + "type": "bookmarkEnd", + }, + Object { + "data": Object { + "id": 72, + }, + "type": "bookmarkEnd", + }, + Object { + "data": Object { + "id": 73, + }, + "type": "bookmarkEnd", + }, + Object { + "data": Object { + "id": 74, + }, + "type": "bookmarkEnd", + }, + Object { + "data": Object { + "id": 75, + }, + "type": "bookmarkEnd", + }, + Object { + "data": Object { + "id": 76, + }, + "type": "bookmarkEnd", + }, + Object { + "data": Object { + "id": 77, + }, + "type": "bookmarkEnd", + }, + Object { + "data": Object { + "id": 78, + }, + "type": "bookmarkEnd", + }, + Object { + "data": Object { + "id": 79, + }, + "type": "bookmarkEnd", + }, + Object { + "data": Object { + "id": 80, + }, + "type": "bookmarkEnd", + }, + Object { + "data": Object { + "id": 81, + }, + "type": "bookmarkEnd", + }, + Object { + "data": Object { + "id": 82, + }, + "type": "bookmarkEnd", + }, + Object { + "data": Object { + "id": 83, + }, + "type": "bookmarkEnd", + }, + Object { + "data": Object { + "id": 84, + }, + "type": "bookmarkEnd", + }, + Object { + "data": Object { + "id": 85, + }, + "type": "bookmarkEnd", + }, + Object { + "data": Object { + "id": 86, + }, + "type": "bookmarkEnd", + }, + Object { + "data": Object { + "id": 87, + }, + "type": "bookmarkEnd", + }, + Object { + "data": Object { + "id": 88, + }, + "type": "bookmarkEnd", + }, + Object { + "data": Object { + "id": 89, + }, + "type": "bookmarkEnd", + }, + Object { + "data": Object { + "id": 90, + }, + "type": "bookmarkEnd", + }, + Object { + "data": Object { + "id": 91, + }, + "type": "bookmarkEnd", + }, + Object { + "data": Object { + "id": 92, + }, + "type": "bookmarkEnd", + }, + Object { + "data": Object { + "id": 93, + }, + "type": "bookmarkEnd", + }, + Object { + "data": Object { + "id": 94, + }, + "type": "bookmarkEnd", + }, + Object { + "data": Object { + "id": 95, + }, + "type": "bookmarkEnd", + }, + Object { + "data": Object { + "id": 96, + }, + "type": "bookmarkEnd", + }, + Object { + "data": Object { + "id": 97, + }, + "type": "bookmarkEnd", + }, + Object { + "data": Object { + "id": 98, + }, + "type": "bookmarkEnd", + }, + Object { + "data": Object { + "id": 99, + }, + "type": "bookmarkEnd", + }, + Object { + "data": Object { + "id": 100, + }, + "type": "bookmarkEnd", + }, + Object { + "data": Object { + "id": 101, + }, + "type": "bookmarkEnd", + }, + Object { + "data": Object { + "id": 102, + }, + "type": "bookmarkEnd", + }, + Object { + "data": Object { + "id": 103, + }, + "type": "bookmarkEnd", + }, + Object { + "data": Object { + "id": 104, + }, + "type": "bookmarkEnd", + }, + Object { + "data": Object { + "id": 105, + }, + "type": "bookmarkEnd", + }, + Object { + "data": Object { + "id": 106, + }, + "type": "bookmarkEnd", + }, + Object { + "data": Object { + "id": 107, + }, + "type": "bookmarkEnd", + }, + Object { + "data": Object { + "id": 108, + }, + "type": "bookmarkEnd", + }, + Object { + "data": Object { + "id": 109, + }, + "type": "bookmarkEnd", + }, + Object { + "data": Object { + "id": 110, + }, + "type": "bookmarkEnd", + }, + Object { + "data": Object { + "id": 111, + }, + "type": "bookmarkEnd", + }, + Object { + "data": Object { + "id": 112, + }, + "type": "bookmarkEnd", + }, + Object { + "data": Object { + "id": 113, + }, + "type": "bookmarkEnd", + }, + Object { + "data": Object { + "id": 114, + }, + "type": "bookmarkEnd", + }, + Object { + "data": Object { + "id": 115, + }, + "type": "bookmarkEnd", + }, + Object { + "data": Object { + "id": 116, + }, + "type": "bookmarkEnd", + }, + Object { + "data": Object { + "id": 117, + }, + "type": "bookmarkEnd", + }, + Object { + "data": Object { + "id": 118, + }, + "type": "bookmarkEnd", + }, + Object { + "data": Object { + "id": 119, + }, + "type": "bookmarkEnd", + }, + Object { + "data": Object { + "id": 120, + }, + "type": "bookmarkEnd", + }, + Object { + "data": Object { + "id": 121, + }, + "type": "bookmarkEnd", + }, + Object { + "data": Object { + "id": 122, + }, + "type": "bookmarkEnd", + }, + Object { + "data": Object { + "id": 123, + }, + "type": "bookmarkEnd", + }, + Object { + "data": Object { + "id": 124, + }, + "type": "bookmarkEnd", + }, + Object { + "data": Object { + "id": 125, + }, + "type": "bookmarkEnd", + }, + Object { + "data": Object { + "id": 126, + }, + "type": "bookmarkEnd", + }, + Object { + "data": Object { + "id": 127, + }, + "type": "bookmarkEnd", + }, + Object { + "data": Object { + "id": 128, + }, + "type": "bookmarkEnd", + }, + Object { + "data": Object { + "id": 129, + }, + "type": "bookmarkEnd", + }, + Object { + "data": Object { + "id": 130, + }, + "type": "bookmarkEnd", + }, + Object { + "data": Object { + "id": 131, + }, + "type": "bookmarkEnd", + }, + Object { + "data": Object { + "id": 132, + }, + "type": "bookmarkEnd", + }, + Object { + "data": Object { + "id": 133, + }, + "type": "bookmarkEnd", + }, + Object { + "data": Object { + "id": 134, + }, + "type": "bookmarkEnd", + }, + Object { + "data": Object { + "id": 135, + }, + "type": "bookmarkEnd", + }, + Object { + "data": Object { + "id": 136, + }, + "type": "bookmarkEnd", + }, + Object { + "data": Object { + "id": 137, + }, + "type": "bookmarkEnd", + }, + Object { + "data": Object { + "id": 138, + }, + "type": "bookmarkEnd", + }, + Object { + "data": Object { + "id": 139, + }, + "type": "bookmarkEnd", + }, + Object { + "data": Object { + "id": 140, + }, + "type": "bookmarkEnd", + }, + Object { + "data": Object { + "id": 141, + }, + "type": "bookmarkEnd", + }, + Object { + "data": Object { + "id": 142, + }, + "type": "bookmarkEnd", + }, + Object { + "data": Object { + "id": 143, + }, + "type": "bookmarkEnd", + }, + Object { + "data": Object { + "id": 144, + }, + "type": "bookmarkEnd", + }, + Object { + "data": Object { + "id": 145, + }, + "type": "bookmarkEnd", + }, + Object { + "data": Object { + "id": 146, + }, + "type": "bookmarkEnd", + }, + Object { + "data": Object { + "id": 147, + }, + "type": "bookmarkEnd", + }, + Object { + "data": Object { + "id": 148, + }, + "type": "bookmarkEnd", + }, + Object { + "data": Object { + "id": 149, + }, + "type": "bookmarkEnd", + }, + Object { + "data": Object { + "id": 150, + }, + "type": "bookmarkEnd", + }, + Object { + "data": Object { + "id": 151, + }, + "type": "bookmarkEnd", + }, + Object { + "data": Object { + "id": 152, + }, + "type": "bookmarkEnd", + }, + Object { + "data": Object { + "id": 153, + }, + "type": "bookmarkEnd", + }, + Object { + "data": Object { + "id": 154, + }, + "type": "bookmarkEnd", + }, + Object { + "data": Object { + "id": 155, + }, + "type": "bookmarkEnd", + }, + Object { + "data": Object { + "id": 156, + }, + "type": "bookmarkEnd", + }, + Object { + "data": Object { + "id": 157, + }, + "type": "bookmarkEnd", + }, + Object { + "data": Object { + "id": 158, + }, + "type": "bookmarkEnd", + }, + Object { + "data": Object { + "id": 159, + }, + "type": "bookmarkEnd", + }, + Object { + "data": Object { + "id": 160, + }, + "type": "bookmarkEnd", + }, + Object { + "data": Object { + "id": 161, + }, + "type": "bookmarkEnd", + }, + Object { + "data": Object { + "id": 162, + }, + "type": "bookmarkEnd", + }, + Object { + "data": Object { + "id": 163, + }, + "type": "bookmarkEnd", + }, + Object { + "data": Object { + "id": 164, + }, + "type": "bookmarkEnd", + }, + Object { + "data": Object { + "id": 165, + }, + "type": "bookmarkEnd", + }, + Object { + "data": Object { + "id": 166, + }, + "type": "bookmarkEnd", + }, + Object { + "data": Object { + "id": 167, + }, + "type": "bookmarkEnd", + }, + Object { + "data": Object { + "id": 168, + }, + "type": "bookmarkEnd", + }, + Object { + "data": Object { + "id": 169, + }, + "type": "bookmarkEnd", + }, + Object { + "data": Object { + "id": 170, + }, + "type": "bookmarkEnd", + }, + Object { + "data": Object { + "id": 171, + }, + "type": "bookmarkEnd", + }, + Object { + "data": Object { + "id": 172, + }, + "type": "bookmarkEnd", + }, + Object { + "data": Object { + "id": 173, + }, + "type": "bookmarkEnd", + }, + Object { + "data": Object { + "id": 174, + }, + "type": "bookmarkEnd", + }, + Object { + "data": Object { + "id": 175, + }, + "type": "bookmarkEnd", + }, + Object { + "data": Object { + "id": 176, + }, + "type": "bookmarkEnd", + }, + Object { + "data": Object { + "id": 177, + }, + "type": "bookmarkEnd", + }, + Object { + "data": Object { + "id": 178, + }, + "type": "bookmarkEnd", + }, + Object { + "data": Object { + "id": 179, + }, + "type": "bookmarkEnd", + }, + Object { + "data": Object { + "id": 180, + }, + "type": "bookmarkEnd", + }, + Object { + "data": Object { + "id": 181, + }, + "type": "bookmarkEnd", + }, + Object { + "data": Object { + "id": 182, + }, + "type": "bookmarkEnd", + }, + Object { + "data": Object { + "id": 183, + }, + "type": "bookmarkEnd", + }, + Object { + "data": Object { + "id": 184, + }, + "type": "bookmarkEnd", + }, + Object { + "data": Object { + "id": 185, + }, + "type": "bookmarkEnd", + }, + Object { + "data": Object { + "children": Array [ + Object { + "data": Object { + "preserveSpace": true, + "text": "あ", + }, + "type": "text", + }, + ], + "runProperty": Object { + "fonts": Object { + "ascii": "MS Pゴシック", + "hiAnsi": "MS Pゴシック", + "hint": "eastAsia", + }, + }, + }, + "type": "run", + }, + ], + "hasNumbering": false, + "id": "33012533", + "property": Object { + "runProperty": Object { + "fonts": Object { + "ascii": "MS Pゴシック", + "hiAnsi": "MS Pゴシック", + }, + }, + "style": "af", + "tabs": Array [], + }, + }, + "type": "paragraph", + }, + Object { + "data": Object { + "children": Array [], + "hasNumbering": false, + "id": "4DFCD451", + "property": Object { + "runProperty": Object {}, + "sectionProperty": Object { + "columns": 1, + "docGrid": Object { + "charSpace": null, + "gridType": "lines", + "linePitch": 360, + }, + "headerReference": Object { + "headerType": "default", + "id": "rId17", + }, + "pageMargin": Object { + "bottom": 2268, + "footer": 851, + "gutter": 0, + "header": 851, + "left": 1418, + "right": 1418, + "top": 2268, + }, + "pageSize": Object { + "h": 16838, + "orient": null, + "w": 11906, + }, + "space": 425, + "titlePg": false, + }, + "style": "1", + "tabs": Array [], + }, + }, + "type": "paragraph", + }, + Object { + "data": Object { + "children": Array [ + Object { + "data": Object { + "id": 186, + "name": "_Toc515381927", + }, + "type": "bookmarkStart", + }, + Object { + "data": Object { + "id": 187, + "name": "_Toc515437953", + }, + "type": "bookmarkStart", + }, + Object { + "data": Object { + "id": 188, + "name": "_Toc515555515", + }, + "type": "bookmarkStart", + }, + Object { + "data": Object { + "id": 189, + "name": "_Toc515557744", + }, + "type": "bookmarkStart", + }, + Object { + "data": Object { + "id": 190, + "name": "_Toc515639422", + }, + "type": "bookmarkStart", + }, + Object { + "data": Object { + "id": 191, + "name": "_Toc515381928", + }, + "type": "bookmarkStart", + }, + Object { + "data": Object { + "id": 192, + "name": "_Toc515437954", + }, + "type": "bookmarkStart", + }, + Object { + "data": Object { + "id": 193, + "name": "_Toc515555516", + }, + "type": "bookmarkStart", + }, + Object { + "data": Object { + "id": 194, + "name": "_Toc515557745", + }, + "type": "bookmarkStart", + }, + Object { + "data": Object { + "id": 195, + "name": "_Toc515639423", + }, + "type": "bookmarkStart", + }, + Object { + "data": Object { + "id": 196, + "name": "_Toc516069925", + }, + "type": "bookmarkStart", + }, + Object { + "data": Object { + "id": 197, + "name": "_Toc515437955", + }, + "type": "bookmarkStart", + }, + Object { + "data": Object { + "id": 198, + "name": "_Toc515555517", + }, + "type": "bookmarkStart", + }, + Object { + "data": Object { + "id": 199, + "name": "_Toc515557746", + }, + "type": "bookmarkStart", + }, + Object { + "data": Object { + "id": 200, + "name": "_Toc515639424", + }, + "type": "bookmarkStart", + }, + Object { + "data": Object { + "id": 201, + "name": "_Toc516069926", + }, + "type": "bookmarkStart", + }, + Object { + "data": Object { + "id": 202, + "name": "_Toc515437956", + }, + "type": "bookmarkStart", + }, + Object { + "data": Object { + "id": 203, + "name": "_Toc515555518", + }, + "type": "bookmarkStart", + }, + Object { + "data": Object { + "id": 204, + "name": "_Toc515557747", + }, + "type": "bookmarkStart", + }, + Object { + "data": Object { + "id": 205, + "name": "_Toc515639425", + }, + "type": "bookmarkStart", + }, + Object { + "data": Object { + "id": 206, + "name": "_Toc516069927", + }, + "type": "bookmarkStart", + }, + Object { + "data": Object { + "id": 207, + "name": "_Toc515437957", + }, + "type": "bookmarkStart", + }, + Object { + "data": Object { + "id": 208, + "name": "_Toc515555519", + }, + "type": "bookmarkStart", + }, + Object { + "data": Object { + "id": 209, + "name": "_Toc515557748", + }, + "type": "bookmarkStart", + }, + Object { + "data": Object { + "id": 210, + "name": "_Toc515639426", + }, + "type": "bookmarkStart", + }, + Object { + "data": Object { + "id": 211, + "name": "_Toc516069928", + }, + "type": "bookmarkStart", + }, + Object { + "data": Object { + "id": 212, + "name": "_Toc515437958", + }, + "type": "bookmarkStart", + }, + Object { + "data": Object { + "id": 213, + "name": "_Toc515555520", + }, + "type": "bookmarkStart", + }, + Object { + "data": Object { + "id": 214, + "name": "_Toc515557749", + }, + "type": "bookmarkStart", + }, + Object { + "data": Object { + "id": 215, + "name": "_Toc515639427", + }, + "type": "bookmarkStart", + }, + Object { + "data": Object { + "id": 216, + "name": "_Toc516069929", + }, + "type": "bookmarkStart", + }, + Object { + "data": Object { + "id": 217, + "name": "_Toc515437959", + }, + "type": "bookmarkStart", + }, + Object { + "data": Object { + "id": 218, + "name": "_Toc515555521", + }, + "type": "bookmarkStart", + }, + Object { + "data": Object { + "id": 219, + "name": "_Toc515557750", + }, + "type": "bookmarkStart", + }, + Object { + "data": Object { + "id": 220, + "name": "_Toc515639428", + }, + "type": "bookmarkStart", + }, + Object { + "data": Object { + "id": 221, + "name": "_Toc516069930", + }, + "type": "bookmarkStart", + }, + Object { + "data": Object { + "id": 0, + }, + "type": "bookmarkEnd", + }, + Object { + "data": Object { + "id": 1, + }, + "type": "bookmarkEnd", + }, + Object { + "data": Object { + "id": 2, + }, + "type": "bookmarkEnd", + }, + Object { + "data": Object { + "id": 186, + }, + "type": "bookmarkEnd", + }, + Object { + "data": Object { + "id": 187, + }, + "type": "bookmarkEnd", + }, + Object { + "data": Object { + "id": 188, + }, + "type": "bookmarkEnd", + }, + Object { + "data": Object { + "id": 189, + }, + "type": "bookmarkEnd", + }, + Object { + "data": Object { + "id": 190, + }, + "type": "bookmarkEnd", + }, + Object { + "data": Object { + "id": 191, + }, + "type": "bookmarkEnd", + }, + Object { + "data": Object { + "id": 192, + }, + "type": "bookmarkEnd", + }, + Object { + "data": Object { + "id": 193, + }, + "type": "bookmarkEnd", + }, + Object { + "data": Object { + "id": 194, + }, + "type": "bookmarkEnd", + }, + Object { + "data": Object { + "id": 195, + }, + "type": "bookmarkEnd", + }, + Object { + "data": Object { + "id": 196, + }, + "type": "bookmarkEnd", + }, + Object { + "data": Object { + "id": 197, + }, + "type": "bookmarkEnd", + }, + Object { + "data": Object { + "id": 198, + }, + "type": "bookmarkEnd", + }, + Object { + "data": Object { + "id": 199, + }, + "type": "bookmarkEnd", + }, + Object { + "data": Object { + "id": 200, + }, + "type": "bookmarkEnd", + }, + Object { + "data": Object { + "id": 201, + }, + "type": "bookmarkEnd", + }, + Object { + "data": Object { + "id": 202, + }, + "type": "bookmarkEnd", + }, + Object { + "data": Object { + "id": 203, + }, + "type": "bookmarkEnd", + }, + Object { + "data": Object { + "id": 204, + }, + "type": "bookmarkEnd", + }, + Object { + "data": Object { + "id": 205, + }, + "type": "bookmarkEnd", + }, + Object { + "data": Object { + "id": 206, + }, + "type": "bookmarkEnd", + }, + Object { + "data": Object { + "id": 207, + }, + "type": "bookmarkEnd", + }, + Object { + "data": Object { + "id": 208, + }, + "type": "bookmarkEnd", + }, + Object { + "data": Object { + "id": 209, + }, + "type": "bookmarkEnd", + }, + Object { + "data": Object { + "id": 210, + }, + "type": "bookmarkEnd", + }, + Object { + "data": Object { + "id": 211, + }, + "type": "bookmarkEnd", + }, + Object { + "data": Object { + "id": 212, + }, + "type": "bookmarkEnd", + }, + Object { + "data": Object { + "id": 213, + }, + "type": "bookmarkEnd", + }, + Object { + "data": Object { + "id": 214, + }, + "type": "bookmarkEnd", + }, + Object { + "data": Object { + "id": 215, + }, + "type": "bookmarkEnd", + }, + Object { + "data": Object { + "id": 216, + }, + "type": "bookmarkEnd", + }, + Object { + "data": Object { + "id": 217, + }, + "type": "bookmarkEnd", + }, + Object { + "data": Object { + "id": 218, + }, + "type": "bookmarkEnd", + }, + Object { + "data": Object { + "id": 219, + }, + "type": "bookmarkEnd", + }, + Object { + "data": Object { + "id": 220, + }, + "type": "bookmarkEnd", + }, + Object { + "data": Object { + "id": 221, + }, + "type": "bookmarkEnd", + }, + Object { + "data": Object { + "children": Array [ + Object { + "data": Object { + "preserveSpace": true, + "text": "う", + }, + "type": "text", + }, + ], + "runProperty": Object { + "fonts": Object { + "hint": "eastAsia", + }, + }, + }, + "type": "run", + }, + ], + "hasNumbering": false, + "id": "776A0981", + "property": Object { + "runProperty": Object {}, + "style": "1", + "tabs": Array [], + }, + }, + "type": "paragraph", + }, + Object { + "data": Object { + "children": Array [ + Object { + "data": Object { + "children": Array [ + Object { + "data": Object { + "preserveSpace": true, + "text": "a", + }, + "type": "text", + }, + ], + "runProperty": Object { + "fonts": Object { + "hint": "eastAsia", + }, + }, + }, + "type": "run", + }, + ], + "hasNumbering": false, + "id": "7CE3F2DE", + "property": Object { + "runProperty": Object {}, + "style": "NEW", + "tabs": Array [], + }, + }, + "type": "paragraph", + }, + ], + "hasNumbering": false, + "sectionProperty": Object { + "columns": 1, + "docGrid": Object { + "charSpace": null, + "gridType": "lines", + "linePitch": 360, + }, + "header": Object { + "children": Array [ + Object { + "data": Object { + "children": Array [], + "hasNumbering": false, + "id": "637A022A", + "property": Object { + "alignment": "right", + "runProperty": Object {}, + "style": "ac", + "tabs": Array [], + }, + }, + "type": "paragraph", + }, + ], + "hasNumbering": false, + }, + "headerReference": Object { + "headerType": "default", + "id": "rId18", + }, + "pageMargin": Object { + "bottom": 2268, + "footer": 851, + "gutter": 0, + "header": 851, + "left": 1418, + "right": 1418, + "top": 2268, + }, + "pageSize": Object { + "h": 16838, + "orient": null, + "w": 11906, + }, + "space": 425, + "titlePg": false, + }, + }, + "documentRels": Object { + "customXmlCount": 0, + "footerCount": 0, + "hasComments": false, + "hasNumberings": false, + "headerCount": 1, + "hyperlinks": Array [], + "images": Array [], + }, + "fontTable": Object {}, + "hyperlinks": Array [], + "images": Array [], + "media": Array [], + "numberings": Object { + "abstractNums": Array [ + Object { + "id": 0, + "levels": Array [ + Object { + "format": "decimal", + "jc": "left", + "level": 0, + "levelRestart": null, + "paragraphProperty": Object { + "indent": Object { + "end": null, + "firstLineChars": null, + "hangingChars": 200, + "specialIndent": Object { + "type": "hanging", + "val": 360, + }, + "start": 3903, + "startChars": 800, + }, + "runProperty": Object {}, + "tabs": Array [], + }, + "pstyle": "5", + "runProperty": Object {}, + "start": 1, + "suffix": "tab", + "text": "%1.", + }, + ], + "numStyleLink": null, + "styleLink": null, + }, + Object { + "id": 1, + "levels": Array [ + Object { + "format": "decimal", + "jc": "left", + "level": 0, + "levelRestart": null, + "paragraphProperty": Object { + "indent": Object { + "end": null, + "firstLineChars": null, + "hangingChars": 200, + "specialIndent": Object { + "type": "hanging", + "val": 360, + }, + "start": 1636, + "startChars": 600, + }, + "runProperty": Object {}, + "tabs": Array [], + }, + "pstyle": "4", + "runProperty": Object {}, + "start": 1, + "suffix": "tab", + "text": "%1.", + }, + ], + "numStyleLink": null, + "styleLink": null, + }, + Object { + "id": 2, + "levels": Array [ + Object { + "format": "decimal", + "jc": "left", + "level": 0, + "levelRestart": null, + "paragraphProperty": Object { + "indent": Object { + "end": null, + "firstLineChars": null, + "hangingChars": 200, + "specialIndent": Object { + "type": "hanging", + "val": 360, + }, + "start": 1211, + "startChars": 400, + }, + "runProperty": Object {}, + "tabs": Array [], + }, + "pstyle": "3", + "runProperty": Object {}, + "start": 1, + "suffix": "tab", + "text": "%1.", + }, + ], + "numStyleLink": null, + "styleLink": null, + }, + Object { + "id": 3, + "levels": Array [ + Object { + "format": "decimal", + "jc": "left", + "level": 0, + "levelRestart": null, + "paragraphProperty": Object { + "indent": Object { + "end": null, + "firstLineChars": null, + "hangingChars": 200, + "specialIndent": Object { + "type": "hanging", + "val": 360, + }, + "start": 785, + "startChars": 200, + }, + "runProperty": Object {}, + "tabs": Array [], + }, + "pstyle": "2", + "runProperty": Object {}, + "start": 1, + "suffix": "tab", + "text": "%1.", + }, + ], + "numStyleLink": null, + "styleLink": null, + }, + Object { + "id": 4, + "levels": Array [ + Object { + "format": "bullet", + "jc": "left", + "level": 0, + "levelRestart": null, + "paragraphProperty": Object { + "indent": Object { + "end": null, + "firstLineChars": null, + "hangingChars": 200, + "specialIndent": Object { + "type": "hanging", + "val": 360, + }, + "start": 2061, + "startChars": 800, + }, + "runProperty": Object {}, + "tabs": Array [], + }, + "pstyle": "50", + "runProperty": Object { + "fonts": Object { + "ascii": "Wingdings", + "hiAnsi": "Wingdings", + "hint": "default", + }, + }, + "start": 1, + "suffix": "tab", + "text": "", + }, + ], + "numStyleLink": null, + "styleLink": null, + }, + Object { + "id": 5, + "levels": Array [ + Object { + "format": "bullet", + "jc": "left", + "level": 0, + "levelRestart": null, + "paragraphProperty": Object { + "indent": Object { + "end": null, + "firstLineChars": null, + "hangingChars": 200, + "specialIndent": Object { + "type": "hanging", + "val": 360, + }, + "start": 1636, + "startChars": 600, + }, + "runProperty": Object {}, + "tabs": Array [], + }, + "pstyle": "40", + "runProperty": Object { + "fonts": Object { + "ascii": "Wingdings", + "hiAnsi": "Wingdings", + "hint": "default", + }, + }, + "start": 1, + "suffix": "tab", + "text": "", + }, + ], + "numStyleLink": null, + "styleLink": null, + }, + Object { + "id": 6, + "levels": Array [ + Object { + "format": "bullet", + "jc": "left", + "level": 0, + "levelRestart": null, + "paragraphProperty": Object { + "indent": Object { + "end": null, + "firstLineChars": null, + "hangingChars": 200, + "specialIndent": Object { + "type": "hanging", + "val": 360, + }, + "start": 1211, + "startChars": 400, + }, + "runProperty": Object {}, + "tabs": Array [], + }, + "pstyle": "30", + "runProperty": Object { + "fonts": Object { + "ascii": "Wingdings", + "hiAnsi": "Wingdings", + "hint": "default", + }, + }, + "start": 1, + "suffix": "tab", + "text": "", + }, + ], + "numStyleLink": null, + "styleLink": null, + }, + Object { + "id": 7, + "levels": Array [ + Object { + "format": "bullet", + "jc": "left", + "level": 0, + "levelRestart": null, + "paragraphProperty": Object { + "indent": Object { + "end": null, + "firstLineChars": null, + "hangingChars": 200, + "specialIndent": Object { + "type": "hanging", + "val": 360, + }, + "start": 785, + "startChars": 200, + }, + "runProperty": Object {}, + "tabs": Array [], + }, + "pstyle": "20", + "runProperty": Object { + "fonts": Object { + "ascii": "Wingdings", + "hiAnsi": "Wingdings", + "hint": "default", + }, + }, + "start": 1, + "suffix": "tab", + "text": "", + }, + ], + "numStyleLink": null, + "styleLink": null, + }, + Object { + "id": 8, + "levels": Array [ + Object { + "format": "decimal", + "jc": "left", + "level": 0, + "levelRestart": null, + "paragraphProperty": Object { + "indent": Object { + "end": null, + "firstLineChars": null, + "hangingChars": 200, + "specialIndent": Object { + "type": "hanging", + "val": 360, + }, + "start": 360, + "startChars": null, + }, + "runProperty": Object {}, + "tabs": Array [], + }, + "pstyle": "a", + "runProperty": Object {}, + "start": 1, + "suffix": "tab", + "text": "%1.", + }, + ], + "numStyleLink": null, + "styleLink": null, + }, + Object { + "id": 9, + "levels": Array [ + Object { + "format": "bullet", + "jc": "left", + "level": 0, + "levelRestart": null, + "paragraphProperty": Object { + "indent": Object { + "end": null, + "firstLineChars": null, + "hangingChars": 200, + "specialIndent": Object { + "type": "hanging", + "val": 360, + }, + "start": 360, + "startChars": null, + }, + "runProperty": Object {}, + "tabs": Array [], + }, + "pstyle": "a0", + "runProperty": Object { + "fonts": Object { + "ascii": "Wingdings", + "hiAnsi": "Wingdings", + "hint": "default", + }, + }, + "start": 1, + "suffix": "tab", + "text": "", + }, + ], + "numStyleLink": null, + "styleLink": null, + }, + Object { + "id": 10, + "levels": Array [ + Object { + "format": "decimal", + "jc": "left", + "level": 0, + "levelRestart": null, + "paragraphProperty": Object { + "runProperty": Object {}, + "tabs": Array [], + }, + "pstyle": "Bullet1", + "runProperty": Object {}, + "start": 0, + "suffix": "tab", + "text": "*", + }, + ], + "numStyleLink": null, + "styleLink": null, + }, + Object { + "id": 11, + "levels": Array [ + Object { + "format": "bullet", + "jc": "left", + "level": 0, + "levelRestart": null, + "paragraphProperty": Object { + "indent": Object { + "end": null, + "firstLineChars": null, + "hangingChars": null, + "specialIndent": Object { + "type": "hanging", + "val": 420, + }, + "start": 830, + "startChars": null, + }, + "runProperty": Object {}, + "tabs": Array [], + }, + "pstyle": null, + "runProperty": Object { + "fonts": Object { + "ascii": "Wingdings", + "hiAnsi": "Wingdings", + "hint": "default", + }, + }, + "start": 1, + "suffix": "tab", + "text": "", + }, + Object { + "format": "bullet", + "jc": "left", + "level": 1, + "levelRestart": null, + "paragraphProperty": Object { + "indent": Object { + "end": null, + "firstLineChars": null, + "hangingChars": null, + "specialIndent": Object { + "type": "hanging", + "val": 420, + }, + "start": 1250, + "startChars": null, + }, + "runProperty": Object {}, + "tabs": Array [], + }, + "pstyle": null, + "runProperty": Object { + "fonts": Object { + "ascii": "Wingdings", + "hiAnsi": "Wingdings", + "hint": "default", + }, + }, + "start": 1, + "suffix": "tab", + "text": "", + }, + Object { + "format": "bullet", + "jc": "left", + "level": 2, + "levelRestart": null, + "paragraphProperty": Object { + "indent": Object { + "end": null, + "firstLineChars": null, + "hangingChars": null, + "specialIndent": Object { + "type": "hanging", + "val": 420, + }, + "start": 1670, + "startChars": null, + }, + "runProperty": Object {}, + "tabs": Array [], + }, + "pstyle": null, + "runProperty": Object { + "fonts": Object { + "ascii": "Wingdings", + "hiAnsi": "Wingdings", + "hint": "default", + }, + }, + "start": 1, + "suffix": "tab", + "text": "", + }, + Object { + "format": "bullet", + "jc": "left", + "level": 3, + "levelRestart": null, + "paragraphProperty": Object { + "indent": Object { + "end": null, + "firstLineChars": null, + "hangingChars": null, + "specialIndent": Object { + "type": "hanging", + "val": 420, + }, + "start": 2090, + "startChars": null, + }, + "runProperty": Object {}, + "tabs": Array [], + }, + "pstyle": null, + "runProperty": Object { + "fonts": Object { + "ascii": "Wingdings", + "hiAnsi": "Wingdings", + "hint": "default", + }, + }, + "start": 1, + "suffix": "tab", + "text": "", + }, + Object { + "format": "bullet", + "jc": "left", + "level": 4, + "levelRestart": null, + "paragraphProperty": Object { + "indent": Object { + "end": null, + "firstLineChars": null, + "hangingChars": null, + "specialIndent": Object { + "type": "hanging", + "val": 420, + }, + "start": 2510, + "startChars": null, + }, + "runProperty": Object {}, + "tabs": Array [], + }, + "pstyle": null, + "runProperty": Object { + "fonts": Object { + "ascii": "Wingdings", + "hiAnsi": "Wingdings", + "hint": "default", + }, + }, + "start": 1, + "suffix": "tab", + "text": "", + }, + Object { + "format": "bullet", + "jc": "left", + "level": 5, + "levelRestart": null, + "paragraphProperty": Object { + "indent": Object { + "end": null, + "firstLineChars": null, + "hangingChars": null, + "specialIndent": Object { + "type": "hanging", + "val": 420, + }, + "start": 2930, + "startChars": null, + }, + "runProperty": Object {}, + "tabs": Array [], + }, + "pstyle": null, + "runProperty": Object { + "fonts": Object { + "ascii": "Wingdings", + "hiAnsi": "Wingdings", + "hint": "default", + }, + }, + "start": 1, + "suffix": "tab", + "text": "", + }, + Object { + "format": "bullet", + "jc": "left", + "level": 6, + "levelRestart": null, + "paragraphProperty": Object { + "indent": Object { + "end": null, + "firstLineChars": null, + "hangingChars": null, + "specialIndent": Object { + "type": "hanging", + "val": 420, + }, + "start": 3350, + "startChars": null, + }, + "runProperty": Object {}, + "tabs": Array [], + }, + "pstyle": null, + "runProperty": Object { + "fonts": Object { + "ascii": "Wingdings", + "hiAnsi": "Wingdings", + "hint": "default", + }, + }, + "start": 1, + "suffix": "tab", + "text": "", + }, + Object { + "format": "bullet", + "jc": "left", + "level": 7, + "levelRestart": null, + "paragraphProperty": Object { + "indent": Object { + "end": null, + "firstLineChars": null, + "hangingChars": null, + "specialIndent": Object { + "type": "hanging", + "val": 420, + }, + "start": 3770, + "startChars": null, + }, + "runProperty": Object {}, + "tabs": Array [], + }, + "pstyle": null, + "runProperty": Object { + "fonts": Object { + "ascii": "Wingdings", + "hiAnsi": "Wingdings", + "hint": "default", + }, + }, + "start": 1, + "suffix": "tab", + "text": "", + }, + Object { + "format": "bullet", + "jc": "left", + "level": 8, + "levelRestart": null, + "paragraphProperty": Object { + "indent": Object { + "end": null, + "firstLineChars": null, + "hangingChars": null, + "specialIndent": Object { + "type": "hanging", + "val": 420, + }, + "start": 4190, + "startChars": null, + }, + "runProperty": Object {}, + "tabs": Array [], + }, + "pstyle": null, + "runProperty": Object { + "fonts": Object { + "ascii": "Wingdings", + "hiAnsi": "Wingdings", + "hint": "default", + }, + }, + "start": 1, + "suffix": "tab", + "text": "", + }, + ], + "numStyleLink": null, + "styleLink": null, + }, + Object { + "id": 12, + "levels": Array [ + Object { + "format": "decimal", + "jc": "left", + "level": 0, + "levelRestart": null, + "paragraphProperty": Object { + "indent": Object { + "end": null, + "firstLineChars": null, + "hangingChars": null, + "specialIndent": Object { + "type": "hanging", + "val": 360, + }, + "start": 540, + "startChars": null, + }, + "runProperty": Object {}, + "tabs": Array [], + }, + "pstyle": null, + "runProperty": Object { + "fonts": Object { + "hint": "eastAsia", + }, + }, + "start": 1, + "suffix": "tab", + "text": "%1.", + }, + Object { + "format": "aiueoFullWidth", + "jc": "left", + "level": 1, + "levelRestart": null, + "paragraphProperty": Object { + "indent": Object { + "end": null, + "firstLineChars": null, + "hangingChars": null, + "specialIndent": Object { + "type": "hanging", + "val": 420, + }, + "start": 840, + "startChars": null, + }, + "runProperty": Object {}, + "tabs": Array [], + }, + "pstyle": null, + "runProperty": Object {}, + "start": 1, + "suffix": "tab", + "text": "(%2)", + }, + Object { + "format": "decimalEnclosedCircle", + "jc": "left", + "level": 2, + "levelRestart": null, + "paragraphProperty": Object { + "indent": Object { + "end": null, + "firstLineChars": null, + "hangingChars": null, + "specialIndent": Object { + "type": "hanging", + "val": 420, + }, + "start": 1260, + "startChars": null, + }, + "runProperty": Object {}, + "tabs": Array [], + }, + "pstyle": null, + "runProperty": Object {}, + "start": 1, + "suffix": "tab", + "text": "%3", + }, + Object { + "format": "decimal", + "jc": "left", + "level": 3, + "levelRestart": null, + "paragraphProperty": Object { + "indent": Object { + "end": null, + "firstLineChars": null, + "hangingChars": null, + "specialIndent": Object { + "type": "hanging", + "val": 420, + }, + "start": 1680, + "startChars": null, + }, + "runProperty": Object {}, + "tabs": Array [], + }, + "pstyle": null, + "runProperty": Object {}, + "start": 1, + "suffix": "tab", + "text": "%4.", + }, + Object { + "format": "aiueoFullWidth", + "jc": "left", + "level": 4, + "levelRestart": null, + "paragraphProperty": Object { + "indent": Object { + "end": null, + "firstLineChars": null, + "hangingChars": null, + "specialIndent": Object { + "type": "hanging", + "val": 420, + }, + "start": 2100, + "startChars": null, + }, + "runProperty": Object {}, + "tabs": Array [], + }, + "pstyle": null, + "runProperty": Object {}, + "start": 1, + "suffix": "tab", + "text": "(%5)", + }, + Object { + "format": "decimalEnclosedCircle", + "jc": "left", + "level": 5, + "levelRestart": null, + "paragraphProperty": Object { + "indent": Object { + "end": null, + "firstLineChars": null, + "hangingChars": null, + "specialIndent": Object { + "type": "hanging", + "val": 420, + }, + "start": 2520, + "startChars": null, + }, + "runProperty": Object {}, + "tabs": Array [], + }, + "pstyle": null, + "runProperty": Object {}, + "start": 1, + "suffix": "tab", + "text": "%6", + }, + Object { + "format": "decimal", + "jc": "left", + "level": 6, + "levelRestart": null, + "paragraphProperty": Object { + "indent": Object { + "end": null, + "firstLineChars": null, + "hangingChars": null, + "specialIndent": Object { + "type": "hanging", + "val": 420, + }, + "start": 2940, + "startChars": null, + }, + "runProperty": Object {}, + "tabs": Array [], + }, + "pstyle": null, + "runProperty": Object {}, + "start": 1, + "suffix": "tab", + "text": "%7.", + }, + Object { + "format": "aiueoFullWidth", + "jc": "left", + "level": 7, + "levelRestart": null, + "paragraphProperty": Object { + "indent": Object { + "end": null, + "firstLineChars": null, + "hangingChars": null, + "specialIndent": Object { + "type": "hanging", + "val": 420, + }, + "start": 3360, + "startChars": null, + }, + "runProperty": Object {}, + "tabs": Array [], + }, + "pstyle": null, + "runProperty": Object {}, + "start": 1, + "suffix": "tab", + "text": "(%8)", + }, + Object { + "format": "decimalEnclosedCircle", + "jc": "left", + "level": 8, + "levelRestart": null, + "paragraphProperty": Object { + "indent": Object { + "end": null, + "firstLineChars": null, + "hangingChars": null, + "specialIndent": Object { + "type": "hanging", + "val": 420, + }, + "start": 3780, + "startChars": null, + }, + "runProperty": Object {}, + "tabs": Array [], + }, + "pstyle": null, + "runProperty": Object {}, + "start": 1, + "suffix": "tab", + "text": "%9", + }, + ], + "numStyleLink": null, + "styleLink": null, + }, + Object { + "id": 13, + "levels": Array [ + Object { + "format": "decimal", + "jc": "left", + "level": 0, + "levelRestart": null, + "paragraphProperty": Object { + "indent": Object { + "end": null, + "firstLineChars": null, + "hangingChars": null, + "specialIndent": Object { + "type": "hanging", + "val": 360, + }, + "start": 540, + "startChars": null, + }, + "runProperty": Object {}, + "tabs": Array [], + }, + "pstyle": null, + "runProperty": Object { + "fonts": Object { + "hint": "eastAsia", + }, + }, + "start": 1, + "suffix": "tab", + "text": "%1.", + }, + Object { + "format": "aiueoFullWidth", + "jc": "left", + "level": 1, + "levelRestart": null, + "paragraphProperty": Object { + "indent": Object { + "end": null, + "firstLineChars": null, + "hangingChars": null, + "specialIndent": Object { + "type": "hanging", + "val": 420, + }, + "start": 840, + "startChars": null, + }, + "runProperty": Object {}, + "tabs": Array [], + }, + "pstyle": null, + "runProperty": Object {}, + "start": 1, + "suffix": "tab", + "text": "(%2)", + }, + Object { + "format": "decimalEnclosedCircle", + "jc": "left", + "level": 2, + "levelRestart": null, + "paragraphProperty": Object { + "indent": Object { + "end": null, + "firstLineChars": null, + "hangingChars": null, + "specialIndent": Object { + "type": "hanging", + "val": 420, + }, + "start": 1260, + "startChars": null, + }, + "runProperty": Object {}, + "tabs": Array [], + }, + "pstyle": null, + "runProperty": Object {}, + "start": 1, + "suffix": "tab", + "text": "%3", + }, + Object { + "format": "decimal", + "jc": "left", + "level": 3, + "levelRestart": null, + "paragraphProperty": Object { + "indent": Object { + "end": null, + "firstLineChars": null, + "hangingChars": null, + "specialIndent": Object { + "type": "hanging", + "val": 420, + }, + "start": 1680, + "startChars": null, + }, + "runProperty": Object {}, + "tabs": Array [], + }, + "pstyle": null, + "runProperty": Object {}, + "start": 1, + "suffix": "tab", + "text": "%4.", + }, + Object { + "format": "aiueoFullWidth", + "jc": "left", + "level": 4, + "levelRestart": null, + "paragraphProperty": Object { + "indent": Object { + "end": null, + "firstLineChars": null, + "hangingChars": null, + "specialIndent": Object { + "type": "hanging", + "val": 420, + }, + "start": 2100, + "startChars": null, + }, + "runProperty": Object {}, + "tabs": Array [], + }, + "pstyle": null, + "runProperty": Object {}, + "start": 1, + "suffix": "tab", + "text": "(%5)", + }, + Object { + "format": "decimalEnclosedCircle", + "jc": "left", + "level": 5, + "levelRestart": null, + "paragraphProperty": Object { + "indent": Object { + "end": null, + "firstLineChars": null, + "hangingChars": null, + "specialIndent": Object { + "type": "hanging", + "val": 420, + }, + "start": 2520, + "startChars": null, + }, + "runProperty": Object {}, + "tabs": Array [], + }, + "pstyle": null, + "runProperty": Object {}, + "start": 1, + "suffix": "tab", + "text": "%6", + }, + Object { + "format": "decimal", + "jc": "left", + "level": 6, + "levelRestart": null, + "paragraphProperty": Object { + "indent": Object { + "end": null, + "firstLineChars": null, + "hangingChars": null, + "specialIndent": Object { + "type": "hanging", + "val": 420, + }, + "start": 2940, + "startChars": null, + }, + "runProperty": Object {}, + "tabs": Array [], + }, + "pstyle": null, + "runProperty": Object {}, + "start": 1, + "suffix": "tab", + "text": "%7.", + }, + Object { + "format": "aiueoFullWidth", + "jc": "left", + "level": 7, + "levelRestart": null, + "paragraphProperty": Object { + "indent": Object { + "end": null, + "firstLineChars": null, + "hangingChars": null, + "specialIndent": Object { + "type": "hanging", + "val": 420, + }, + "start": 3360, + "startChars": null, + }, + "runProperty": Object {}, + "tabs": Array [], + }, + "pstyle": null, + "runProperty": Object {}, + "start": 1, + "suffix": "tab", + "text": "(%8)", + }, + Object { + "format": "decimalEnclosedCircle", + "jc": "left", + "level": 8, + "levelRestart": null, + "paragraphProperty": Object { + "indent": Object { + "end": null, + "firstLineChars": null, + "hangingChars": null, + "specialIndent": Object { + "type": "hanging", + "val": 420, + }, + "start": 3780, + "startChars": null, + }, + "runProperty": Object {}, + "tabs": Array [], + }, + "pstyle": null, + "runProperty": Object {}, + "start": 1, + "suffix": "tab", + "text": "%9", + }, + ], + "numStyleLink": null, + "styleLink": null, + }, + Object { + "id": 14, + "levels": Array [ + Object { + "format": "lowerLetter", + "jc": "left", + "level": 0, + "levelRestart": null, + "paragraphProperty": Object { + "indent": Object { + "end": null, + "firstLineChars": null, + "hangingChars": null, + "specialIndent": Object { + "type": "hanging", + "val": 454, + }, + "start": 1588, + "startChars": null, + }, + "runProperty": Object {}, + "tabs": Array [], + }, + "pstyle": null, + "runProperty": Object { + "bold": false, + "boldCs": false, + "fonts": Object { + "ascii": "Times New Roman", + "cs": "Times New Roman", + "hiAnsi": "Times New Roman", + "hint": "default", + }, + "italic": false, + "italicCs": false, + "sz": 24, + "szCs": 24, + "underline": "none", + }, + "start": 1, + "suffix": "tab", + "text": "(%1)", + }, + Object { + "format": "aiueoFullWidth", + "jc": "left", + "level": 1, + "levelRestart": null, + "paragraphProperty": Object { + "indent": Object { + "end": null, + "firstLineChars": null, + "hangingChars": null, + "specialIndent": Object { + "type": "hanging", + "val": 420, + }, + "start": 840, + "startChars": null, + }, + "runProperty": Object {}, + "tabs": Array [], + }, + "pstyle": null, + "runProperty": Object {}, + "start": 1, + "suffix": "tab", + "text": "(%2)", + }, + Object { + "format": "decimalEnclosedCircle", + "jc": "left", + "level": 2, + "levelRestart": null, + "paragraphProperty": Object { + "indent": Object { + "end": null, + "firstLineChars": null, + "hangingChars": null, + "specialIndent": Object { + "type": "hanging", + "val": 420, + }, + "start": 1260, + "startChars": null, + }, + "runProperty": Object {}, + "tabs": Array [], + }, + "pstyle": null, + "runProperty": Object {}, + "start": 1, + "suffix": "tab", + "text": "%3", + }, + Object { + "format": "decimal", + "jc": "left", + "level": 3, + "levelRestart": null, + "paragraphProperty": Object { + "indent": Object { + "end": null, + "firstLineChars": null, + "hangingChars": null, + "specialIndent": Object { + "type": "hanging", + "val": 420, + }, + "start": 1680, + "startChars": null, + }, + "runProperty": Object {}, + "tabs": Array [], + }, + "pstyle": null, + "runProperty": Object {}, + "start": 1, + "suffix": "tab", + "text": "%4.", + }, + Object { + "format": "aiueoFullWidth", + "jc": "left", + "level": 4, + "levelRestart": null, + "paragraphProperty": Object { + "indent": Object { + "end": null, + "firstLineChars": null, + "hangingChars": null, + "specialIndent": Object { + "type": "hanging", + "val": 420, + }, + "start": 2100, + "startChars": null, + }, + "runProperty": Object {}, + "tabs": Array [], + }, + "pstyle": null, + "runProperty": Object {}, + "start": 1, + "suffix": "tab", + "text": "(%5)", + }, + Object { + "format": "decimalEnclosedCircle", + "jc": "left", + "level": 5, + "levelRestart": null, + "paragraphProperty": Object { + "indent": Object { + "end": null, + "firstLineChars": null, + "hangingChars": null, + "specialIndent": Object { + "type": "hanging", + "val": 420, + }, + "start": 2520, + "startChars": null, + }, + "runProperty": Object {}, + "tabs": Array [], + }, + "pstyle": null, + "runProperty": Object {}, + "start": 1, + "suffix": "tab", + "text": "%6", + }, + Object { + "format": "decimal", + "jc": "left", + "level": 6, + "levelRestart": null, + "paragraphProperty": Object { + "indent": Object { + "end": null, + "firstLineChars": null, + "hangingChars": null, + "specialIndent": Object { + "type": "hanging", + "val": 420, + }, + "start": 2940, + "startChars": null, + }, + "runProperty": Object {}, + "tabs": Array [], + }, + "pstyle": null, + "runProperty": Object {}, + "start": 1, + "suffix": "tab", + "text": "%7.", + }, + Object { + "format": "aiueoFullWidth", + "jc": "left", + "level": 7, + "levelRestart": null, + "paragraphProperty": Object { + "indent": Object { + "end": null, + "firstLineChars": null, + "hangingChars": null, + "specialIndent": Object { + "type": "hanging", + "val": 420, + }, + "start": 3360, + "startChars": null, + }, + "runProperty": Object {}, + "tabs": Array [], + }, + "pstyle": null, + "runProperty": Object {}, + "start": 1, + "suffix": "tab", + "text": "(%8)", + }, + Object { + "format": "decimalEnclosedCircle", + "jc": "left", + "level": 8, + "levelRestart": null, + "paragraphProperty": Object { + "indent": Object { + "end": null, + "firstLineChars": null, + "hangingChars": null, + "specialIndent": Object { + "type": "hanging", + "val": 420, + }, + "start": 3780, + "startChars": null, + }, + "runProperty": Object {}, + "tabs": Array [], + }, + "pstyle": null, + "runProperty": Object {}, + "start": 1, + "suffix": "tab", + "text": "%9", + }, + ], + "numStyleLink": null, + "styleLink": null, + }, + Object { + "id": 15, + "levels": Array [ + Object { + "format": "lowerLetter", + "jc": "left", + "level": 0, + "levelRestart": null, + "paragraphProperty": Object { + "indent": Object { + "end": null, + "firstLineChars": null, + "hangingChars": null, + "specialIndent": Object { + "type": "hanging", + "val": 283, + }, + "start": 737, + "startChars": null, + }, + "runProperty": Object {}, + "tabs": Array [], + }, + "pstyle": null, + "runProperty": Object { + "fonts": Object { + "hint": "eastAsia", + }, + }, + "start": 1, + "suffix": "tab", + "text": "%1.", + }, + Object { + "format": "decimal", + "jc": "left", + "level": 1, + "levelRestart": null, + "paragraphProperty": Object { + "indent": Object { + "end": null, + "firstLineChars": null, + "hangingChars": null, + "specialIndent": Object { + "type": "hanging", + "val": 360, + }, + "start": 540, + "startChars": null, + }, + "runProperty": Object {}, + "tabs": Array [], + }, + "pstyle": null, + "runProperty": Object { + "fonts": Object { + "hint": "eastAsia", + }, + }, + "start": 1, + "suffix": "tab", + "text": "%2.", + }, + Object { + "format": "decimalEnclosedCircle", + "jc": "left", + "level": 2, + "levelRestart": null, + "paragraphProperty": Object { + "indent": Object { + "end": null, + "firstLineChars": null, + "hangingChars": null, + "specialIndent": Object { + "type": "hanging", + "val": 420, + }, + "start": 816, + "startChars": null, + }, + "runProperty": Object {}, + "tabs": Array [], + }, + "pstyle": null, + "runProperty": Object {}, + "start": 1, + "suffix": "tab", + "text": "%3", + }, + Object { + "format": "decimal", + "jc": "left", + "level": 3, + "levelRestart": null, + "paragraphProperty": Object { + "indent": Object { + "end": null, + "firstLineChars": null, + "hangingChars": null, + "specialIndent": Object { + "type": "hanging", + "val": 420, + }, + "start": 1236, + "startChars": null, + }, + "runProperty": Object {}, + "tabs": Array [], + }, + "pstyle": null, + "runProperty": Object {}, + "start": 1, + "suffix": "tab", + "text": "%4.", + }, + Object { + "format": "aiueoFullWidth", + "jc": "left", + "level": 4, + "levelRestart": null, + "paragraphProperty": Object { + "indent": Object { + "end": null, + "firstLineChars": null, + "hangingChars": null, + "specialIndent": Object { + "type": "hanging", + "val": 420, + }, + "start": 1656, + "startChars": null, + }, + "runProperty": Object {}, + "tabs": Array [], + }, + "pstyle": null, + "runProperty": Object {}, + "start": 1, + "suffix": "tab", + "text": "(%5)", + }, + Object { + "format": "decimalEnclosedCircle", + "jc": "left", + "level": 5, + "levelRestart": null, + "paragraphProperty": Object { + "indent": Object { + "end": null, + "firstLineChars": null, + "hangingChars": null, + "specialIndent": Object { + "type": "hanging", + "val": 420, + }, + "start": 2076, + "startChars": null, + }, + "runProperty": Object {}, + "tabs": Array [], + }, + "pstyle": null, + "runProperty": Object {}, + "start": 1, + "suffix": "tab", + "text": "%6", + }, + Object { + "format": "decimal", + "jc": "left", + "level": 6, + "levelRestart": null, + "paragraphProperty": Object { + "indent": Object { + "end": null, + "firstLineChars": null, + "hangingChars": null, + "specialIndent": Object { + "type": "hanging", + "val": 420, + }, + "start": 2496, + "startChars": null, + }, + "runProperty": Object {}, + "tabs": Array [], + }, + "pstyle": null, + "runProperty": Object {}, + "start": 1, + "suffix": "tab", + "text": "%7.", + }, + Object { + "format": "aiueoFullWidth", + "jc": "left", + "level": 7, + "levelRestart": null, + "paragraphProperty": Object { + "indent": Object { + "end": null, + "firstLineChars": null, + "hangingChars": null, + "specialIndent": Object { + "type": "hanging", + "val": 420, + }, + "start": 2916, + "startChars": null, + }, + "runProperty": Object {}, + "tabs": Array [], + }, + "pstyle": null, + "runProperty": Object {}, + "start": 1, + "suffix": "tab", + "text": "(%8)", + }, + Object { + "format": "decimalEnclosedCircle", + "jc": "left", + "level": 8, + "levelRestart": null, + "paragraphProperty": Object { + "indent": Object { + "end": null, + "firstLineChars": null, + "hangingChars": null, + "specialIndent": Object { + "type": "hanging", + "val": 420, + }, + "start": 3336, + "startChars": null, + }, + "runProperty": Object {}, + "tabs": Array [], + }, + "pstyle": null, + "runProperty": Object {}, + "start": 1, + "suffix": "tab", + "text": "%9", + }, + ], + "numStyleLink": null, + "styleLink": null, + }, + Object { + "id": 16, + "levels": Array [ + Object { + "format": "decimal", + "jc": "left", + "level": 0, + "levelRestart": null, + "paragraphProperty": Object { + "indent": Object { + "end": null, + "firstLineChars": null, + "hangingChars": null, + "specialIndent": Object { + "type": "hanging", + "val": 420, + }, + "start": 420, + "startChars": null, + }, + "runProperty": Object {}, + "tabs": Array [], + }, + "pstyle": null, + "runProperty": Object {}, + "start": 1, + "suffix": "tab", + "text": "%1.", + }, + Object { + "format": "aiueoFullWidth", + "jc": "left", + "level": 1, + "levelRestart": null, + "paragraphProperty": Object { + "indent": Object { + "end": null, + "firstLineChars": null, + "hangingChars": null, + "specialIndent": Object { + "type": "hanging", + "val": 420, + }, + "start": 840, + "startChars": null, + }, + "runProperty": Object {}, + "tabs": Array [], + }, + "pstyle": null, + "runProperty": Object {}, + "start": 1, + "suffix": "tab", + "text": "(%2)", + }, + Object { + "format": "decimalEnclosedCircle", + "jc": "left", + "level": 2, + "levelRestart": null, + "paragraphProperty": Object { + "indent": Object { + "end": null, + "firstLineChars": null, + "hangingChars": null, + "specialIndent": Object { + "type": "hanging", + "val": 420, + }, + "start": 1260, + "startChars": null, + }, + "runProperty": Object {}, + "tabs": Array [], + }, + "pstyle": null, + "runProperty": Object {}, + "start": 1, + "suffix": "tab", + "text": "%3", + }, + Object { + "format": "decimal", + "jc": "left", + "level": 3, + "levelRestart": null, + "paragraphProperty": Object { + "indent": Object { + "end": null, + "firstLineChars": null, + "hangingChars": null, + "specialIndent": Object { + "type": "hanging", + "val": 420, + }, + "start": 1680, + "startChars": null, + }, + "runProperty": Object {}, + "tabs": Array [], + }, + "pstyle": null, + "runProperty": Object {}, + "start": 1, + "suffix": "tab", + "text": "%4.", + }, + Object { + "format": "aiueoFullWidth", + "jc": "left", + "level": 4, + "levelRestart": null, + "paragraphProperty": Object { + "indent": Object { + "end": null, + "firstLineChars": null, + "hangingChars": null, + "specialIndent": Object { + "type": "hanging", + "val": 420, + }, + "start": 2100, + "startChars": null, + }, + "runProperty": Object {}, + "tabs": Array [], + }, + "pstyle": null, + "runProperty": Object {}, + "start": 1, + "suffix": "tab", + "text": "(%5)", + }, + Object { + "format": "decimalEnclosedCircle", + "jc": "left", + "level": 5, + "levelRestart": null, + "paragraphProperty": Object { + "indent": Object { + "end": null, + "firstLineChars": null, + "hangingChars": null, + "specialIndent": Object { + "type": "hanging", + "val": 420, + }, + "start": 2520, + "startChars": null, + }, + "runProperty": Object {}, + "tabs": Array [], + }, + "pstyle": null, + "runProperty": Object {}, + "start": 1, + "suffix": "tab", + "text": "%6", + }, + Object { + "format": "decimal", + "jc": "left", + "level": 6, + "levelRestart": null, + "paragraphProperty": Object { + "indent": Object { + "end": null, + "firstLineChars": null, + "hangingChars": null, + "specialIndent": Object { + "type": "hanging", + "val": 420, + }, + "start": 2940, + "startChars": null, + }, + "runProperty": Object {}, + "tabs": Array [], + }, + "pstyle": null, + "runProperty": Object {}, + "start": 1, + "suffix": "tab", + "text": "%7.", + }, + Object { + "format": "aiueoFullWidth", + "jc": "left", + "level": 7, + "levelRestart": null, + "paragraphProperty": Object { + "indent": Object { + "end": null, + "firstLineChars": null, + "hangingChars": null, + "specialIndent": Object { + "type": "hanging", + "val": 420, + }, + "start": 3360, + "startChars": null, + }, + "runProperty": Object {}, + "tabs": Array [], + }, + "pstyle": null, + "runProperty": Object {}, + "start": 1, + "suffix": "tab", + "text": "(%8)", + }, + Object { + "format": "decimalEnclosedCircle", + "jc": "left", + "level": 8, + "levelRestart": null, + "paragraphProperty": Object { + "indent": Object { + "end": null, + "firstLineChars": null, + "hangingChars": null, + "specialIndent": Object { + "type": "hanging", + "val": 420, + }, + "start": 3780, + "startChars": null, + }, + "runProperty": Object {}, + "tabs": Array [], + }, + "pstyle": null, + "runProperty": Object {}, + "start": 1, + "suffix": "tab", + "text": "%9", + }, + ], + "numStyleLink": null, + "styleLink": null, + }, + Object { + "id": 17, + "levels": Array [ + Object { + "format": "bullet", + "jc": "left", + "level": 0, + "levelRestart": null, + "paragraphProperty": Object { + "indent": Object { + "end": null, + "firstLineChars": null, + "hangingChars": null, + "specialIndent": Object { + "type": "hanging", + "val": 454, + }, + "start": 1305, + "startChars": null, + }, + "runProperty": Object {}, + "tabs": Array [], + }, + "pstyle": "a1", + "runProperty": Object { + "bold": false, + "boldCs": false, + "fonts": Object { + "ascii": "Wingdings 2", + "hiAnsi": "Wingdings 2", + "hint": "default", + }, + "italic": false, + "italicCs": false, + "sz": 28, + "szCs": 28, + }, + "start": 1, + "suffix": "tab", + "text": "", + }, + Object { + "format": "decimal", + "jc": "left", + "level": 1, + "levelRestart": null, + "paragraphProperty": Object { + "indent": Object { + "end": null, + "firstLineChars": null, + "hangingChars": null, + "specialIndent": Object { + "type": "hanging", + "val": 420, + }, + "start": 557, + "startChars": null, + }, + "runProperty": Object {}, + "tabs": Array [], + }, + "pstyle": null, + "runProperty": Object { + "fonts": Object { + "ascii": "Wingdings", + "hiAnsi": "Wingdings", + "hint": "default", + }, + }, + "start": 1, + "suffix": "tab", + "text": "%2.", + }, + Object { + "format": "decimalEnclosedCircle", + "jc": "left", + "level": 2, + "levelRestart": null, + "paragraphProperty": Object { + "indent": Object { + "end": null, + "firstLineChars": null, + "hangingChars": null, + "specialIndent": Object { + "type": "hanging", + "val": 2310, + }, + "start": 2867, + "startChars": null, + }, + "runProperty": Object {}, + "tabs": Array [], + }, + "pstyle": null, + "runProperty": Object { + "fonts": Object { + "hint": "eastAsia", + }, + }, + "start": 5, + "suffix": "tab", + "text": "%3", + }, + Object { + "format": "decimalEnclosedCircle", + "jc": "left", + "level": 3, + "levelRestart": null, + "paragraphProperty": Object { + "indent": Object { + "end": null, + "firstLineChars": null, + "hangingChars": null, + "specialIndent": Object { + "type": "hanging", + "val": 360, + }, + "start": 1337, + "startChars": null, + }, + "runProperty": Object {}, + "tabs": Array [], + }, + "pstyle": null, + "runProperty": Object { + "fonts": Object { + "hint": "eastAsia", + }, + }, + "start": 1, + "suffix": "tab", + "text": "%4", + }, + Object { + "format": "lowerLetter", + "jc": "left", + "level": 4, + "levelRestart": null, + "paragraphProperty": Object { + "indent": Object { + "end": null, + "firstLineChars": null, + "hangingChars": null, + "specialIndent": Object { + "type": "hanging", + "val": 360, + }, + "start": 1757, + "startChars": null, + }, + "runProperty": Object {}, + "tabs": Array [], + }, + "pstyle": null, + "runProperty": Object { + "fonts": Object { + "hint": "eastAsia", + }, + }, + "start": 2, + "suffix": "tab", + "text": "(%5)", + }, + Object { + "format": "decimalFullWidth", + "jc": "left", + "level": 5, + "levelRestart": null, + "paragraphProperty": Object { + "indent": Object { + "end": null, + "firstLineChars": null, + "hangingChars": null, + "specialIndent": Object { + "type": "hanging", + "val": 480, + }, + "start": 2297, + "startChars": null, + }, + "runProperty": Object {}, + "tabs": Array [], + }, + "pstyle": null, + "runProperty": Object { + "fonts": Object { + "hint": "eastAsia", + }, + }, + "start": 1, + "suffix": "tab", + "text": "(%6)", + }, + Object { + "format": "lowerLetter", + "jc": "left", + "level": 6, + "levelRestart": null, + "paragraphProperty": Object { + "indent": Object { + "end": null, + "firstLineChars": null, + "hangingChars": null, + "specialIndent": Object { + "type": "hanging", + "val": 360, + }, + "start": 2597, + "startChars": null, + }, + "runProperty": Object {}, + "tabs": Array [], + }, + "pstyle": null, + "runProperty": Object { + "fonts": Object { + "hint": "eastAsia", + }, + }, + "start": 1, + "suffix": "tab", + "text": "(%7)", + }, + Object { + "format": "bullet", + "jc": "left", + "level": 7, + "levelRestart": null, + "paragraphProperty": Object { + "indent": Object { + "end": null, + "firstLineChars": null, + "hangingChars": null, + "specialIndent": Object { + "type": "hanging", + "val": 420, + }, + "start": 3077, + "startChars": null, + }, + "runProperty": Object {}, + "tabs": Array [], + }, + "pstyle": null, + "runProperty": Object { + "fonts": Object { + "ascii": "Wingdings", + "hiAnsi": "Wingdings", + "hint": "default", + }, + }, + "start": 1, + "suffix": "tab", + "text": "", + }, + Object { + "format": "bullet", + "jc": "left", + "level": 8, + "levelRestart": null, + "paragraphProperty": Object { + "indent": Object { + "end": null, + "firstLineChars": null, + "hangingChars": null, + "specialIndent": Object { + "type": "hanging", + "val": 420, + }, + "start": 3497, + "startChars": null, + }, + "runProperty": Object {}, + "tabs": Array [], + }, + "pstyle": null, + "runProperty": Object { + "fonts": Object { + "ascii": "Wingdings", + "hiAnsi": "Wingdings", + "hint": "default", + }, + }, + "start": 1, + "suffix": "tab", + "text": "", + }, + ], + "numStyleLink": null, + "styleLink": null, + }, + Object { + "id": 18, + "levels": Array [ + Object { + "format": "decimal", + "jc": "left", + "level": 0, + "levelRestart": null, + "paragraphProperty": Object { + "indent": Object { + "end": null, + "firstLineChars": null, + "hangingChars": null, + "specialIndent": Object { + "type": "hanging", + "val": 360, + }, + "start": 540, + "startChars": null, + }, + "runProperty": Object {}, + "tabs": Array [], + }, + "pstyle": null, + "runProperty": Object { + "fonts": Object { + "hint": "eastAsia", + }, + }, + "start": 1, + "suffix": "tab", + "text": "%1.", + }, + Object { + "format": "aiueoFullWidth", + "jc": "left", + "level": 1, + "levelRestart": null, + "paragraphProperty": Object { + "indent": Object { + "end": null, + "firstLineChars": null, + "hangingChars": null, + "specialIndent": Object { + "type": "hanging", + "val": 420, + }, + "start": 420, + "startChars": null, + }, + "runProperty": Object {}, + "tabs": Array [], + }, + "pstyle": null, + "runProperty": Object {}, + "start": 1, + "suffix": "tab", + "text": "(%2)", + }, + Object { + "format": "decimalEnclosedCircle", + "jc": "left", + "level": 2, + "levelRestart": null, + "paragraphProperty": Object { + "indent": Object { + "end": null, + "firstLineChars": null, + "hangingChars": null, + "specialIndent": Object { + "type": "hanging", + "val": 420, + }, + "start": 840, + "startChars": null, + }, + "runProperty": Object {}, + "tabs": Array [], + }, + "pstyle": null, + "runProperty": Object {}, + "start": 1, + "suffix": "tab", + "text": "%3", + }, + Object { + "format": "decimal", + "jc": "left", + "level": 3, + "levelRestart": null, + "paragraphProperty": Object { + "indent": Object { + "end": null, + "firstLineChars": null, + "hangingChars": null, + "specialIndent": Object { + "type": "hanging", + "val": 420, + }, + "start": 1260, + "startChars": null, + }, + "runProperty": Object {}, + "tabs": Array [], + }, + "pstyle": null, + "runProperty": Object {}, + "start": 1, + "suffix": "tab", + "text": "%4.", + }, + Object { + "format": "aiueoFullWidth", + "jc": "left", + "level": 4, + "levelRestart": null, + "paragraphProperty": Object { + "indent": Object { + "end": null, + "firstLineChars": null, + "hangingChars": null, + "specialIndent": Object { + "type": "hanging", + "val": 420, + }, + "start": 1680, + "startChars": null, + }, + "runProperty": Object {}, + "tabs": Array [], + }, + "pstyle": null, + "runProperty": Object {}, + "start": 1, + "suffix": "tab", + "text": "(%5)", + }, + Object { + "format": "decimalEnclosedCircle", + "jc": "left", + "level": 5, + "levelRestart": null, + "paragraphProperty": Object { + "indent": Object { + "end": null, + "firstLineChars": null, + "hangingChars": null, + "specialIndent": Object { + "type": "hanging", + "val": 420, + }, + "start": 2100, + "startChars": null, + }, + "runProperty": Object {}, + "tabs": Array [], + }, + "pstyle": null, + "runProperty": Object {}, + "start": 1, + "suffix": "tab", + "text": "%6", + }, + Object { + "format": "decimal", + "jc": "left", + "level": 6, + "levelRestart": null, + "paragraphProperty": Object { + "indent": Object { + "end": null, + "firstLineChars": null, + "hangingChars": null, + "specialIndent": Object { + "type": "hanging", + "val": 420, + }, + "start": 2520, + "startChars": null, + }, + "runProperty": Object {}, + "tabs": Array [], + }, + "pstyle": null, + "runProperty": Object {}, + "start": 1, + "suffix": "tab", + "text": "%7.", + }, + Object { + "format": "aiueoFullWidth", + "jc": "left", + "level": 7, + "levelRestart": null, + "paragraphProperty": Object { + "indent": Object { + "end": null, + "firstLineChars": null, + "hangingChars": null, + "specialIndent": Object { + "type": "hanging", + "val": 420, + }, + "start": 2940, + "startChars": null, + }, + "runProperty": Object {}, + "tabs": Array [], + }, + "pstyle": null, + "runProperty": Object {}, + "start": 1, + "suffix": "tab", + "text": "(%8)", + }, + Object { + "format": "decimalEnclosedCircle", + "jc": "left", + "level": 8, + "levelRestart": null, + "paragraphProperty": Object { + "indent": Object { + "end": null, + "firstLineChars": null, + "hangingChars": null, + "specialIndent": Object { + "type": "hanging", + "val": 420, + }, + "start": 3360, + "startChars": null, + }, + "runProperty": Object {}, + "tabs": Array [], + }, + "pstyle": null, + "runProperty": Object {}, + "start": 1, + "suffix": "tab", + "text": "%9", + }, + ], + "numStyleLink": null, + "styleLink": null, + }, + Object { + "id": 19, + "levels": Array [ + Object { + "format": "decimal", + "jc": "left", + "level": 0, + "levelRestart": null, + "paragraphProperty": Object { + "indent": Object { + "end": null, + "firstLineChars": null, + "hangingChars": null, + "specialIndent": Object { + "type": "hanging", + "val": 360, + }, + "start": 540, + "startChars": null, + }, + "runProperty": Object {}, + "tabs": Array [], + }, + "pstyle": null, + "runProperty": Object { + "fonts": Object { + "hint": "eastAsia", + }, + }, + "start": 1, + "suffix": "tab", + "text": "%1.", + }, + Object { + "format": "aiueoFullWidth", + "jc": "left", + "level": 1, + "levelRestart": null, + "paragraphProperty": Object { + "indent": Object { + "end": null, + "firstLineChars": null, + "hangingChars": null, + "specialIndent": Object { + "type": "hanging", + "val": 420, + }, + "start": 840, + "startChars": null, + }, + "runProperty": Object {}, + "tabs": Array [], + }, + "pstyle": null, + "runProperty": Object {}, + "start": 1, + "suffix": "tab", + "text": "(%2)", + }, + Object { + "format": "decimalEnclosedCircle", + "jc": "left", + "level": 2, + "levelRestart": null, + "paragraphProperty": Object { + "indent": Object { + "end": null, + "firstLineChars": null, + "hangingChars": null, + "specialIndent": Object { + "type": "hanging", + "val": 420, + }, + "start": 1260, + "startChars": null, + }, + "runProperty": Object {}, + "tabs": Array [], + }, + "pstyle": null, + "runProperty": Object {}, + "start": 1, + "suffix": "tab", + "text": "%3", + }, + Object { + "format": "decimal", + "jc": "left", + "level": 3, + "levelRestart": null, + "paragraphProperty": Object { + "indent": Object { + "end": null, + "firstLineChars": null, + "hangingChars": null, + "specialIndent": Object { + "type": "hanging", + "val": 420, + }, + "start": 1680, + "startChars": null, + }, + "runProperty": Object {}, + "tabs": Array [], + }, + "pstyle": null, + "runProperty": Object {}, + "start": 1, + "suffix": "tab", + "text": "%4.", + }, + Object { + "format": "aiueoFullWidth", + "jc": "left", + "level": 4, + "levelRestart": null, + "paragraphProperty": Object { + "indent": Object { + "end": null, + "firstLineChars": null, + "hangingChars": null, + "specialIndent": Object { + "type": "hanging", + "val": 420, + }, + "start": 2100, + "startChars": null, + }, + "runProperty": Object {}, + "tabs": Array [], + }, + "pstyle": null, + "runProperty": Object {}, + "start": 1, + "suffix": "tab", + "text": "(%5)", + }, + Object { + "format": "decimalEnclosedCircle", + "jc": "left", + "level": 5, + "levelRestart": null, + "paragraphProperty": Object { + "indent": Object { + "end": null, + "firstLineChars": null, + "hangingChars": null, + "specialIndent": Object { + "type": "hanging", + "val": 420, + }, + "start": 2520, + "startChars": null, + }, + "runProperty": Object {}, + "tabs": Array [], + }, + "pstyle": null, + "runProperty": Object {}, + "start": 1, + "suffix": "tab", + "text": "%6", + }, + Object { + "format": "decimal", + "jc": "left", + "level": 6, + "levelRestart": null, + "paragraphProperty": Object { + "indent": Object { + "end": null, + "firstLineChars": null, + "hangingChars": null, + "specialIndent": Object { + "type": "hanging", + "val": 420, + }, + "start": 2940, + "startChars": null, + }, + "runProperty": Object {}, + "tabs": Array [], + }, + "pstyle": null, + "runProperty": Object {}, + "start": 1, + "suffix": "tab", + "text": "%7.", + }, + Object { + "format": "aiueoFullWidth", + "jc": "left", + "level": 7, + "levelRestart": null, + "paragraphProperty": Object { + "indent": Object { + "end": null, + "firstLineChars": null, + "hangingChars": null, + "specialIndent": Object { + "type": "hanging", + "val": 420, + }, + "start": 3360, + "startChars": null, + }, + "runProperty": Object {}, + "tabs": Array [], + }, + "pstyle": null, + "runProperty": Object {}, + "start": 1, + "suffix": "tab", + "text": "(%8)", + }, + Object { + "format": "decimalEnclosedCircle", + "jc": "left", + "level": 8, + "levelRestart": null, + "paragraphProperty": Object { + "indent": Object { + "end": null, + "firstLineChars": null, + "hangingChars": null, + "specialIndent": Object { + "type": "hanging", + "val": 420, + }, + "start": 3780, + "startChars": null, + }, + "runProperty": Object {}, + "tabs": Array [], + }, + "pstyle": null, + "runProperty": Object {}, + "start": 1, + "suffix": "tab", + "text": "%9", + }, + ], + "numStyleLink": null, + "styleLink": null, + }, + Object { + "id": 20, + "levels": Array [ + Object { + "format": "decimal", + "jc": "left", + "level": 0, + "levelRestart": null, + "paragraphProperty": Object { + "indent": Object { + "end": null, + "firstLineChars": null, + "hangingChars": null, + "specialIndent": Object { + "type": "hanging", + "val": 420, + }, + "start": 1020, + "startChars": null, + }, + "runProperty": Object {}, + "tabs": Array [], + }, + "pstyle": "1sentence", + "runProperty": Object { + "fonts": Object { + "hint": "eastAsia", + }, + }, + "start": 1, + "suffix": "tab", + "text": "(%1)", + }, + Object { + "format": "aiueoFullWidth", + "jc": "left", + "level": 1, + "levelRestart": null, + "paragraphProperty": Object { + "indent": Object { + "end": null, + "firstLineChars": null, + "hangingChars": null, + "specialIndent": Object { + "type": "hanging", + "val": 420, + }, + "start": 840, + "startChars": null, + }, + "runProperty": Object {}, + "tabs": Array [], + }, + "pstyle": null, + "runProperty": Object {}, + "start": 1, + "suffix": "tab", + "text": "(%2)", + }, + Object { + "format": "decimalEnclosedCircle", + "jc": "left", + "level": 2, + "levelRestart": null, + "paragraphProperty": Object { + "indent": Object { + "end": null, + "firstLineChars": null, + "hangingChars": null, + "specialIndent": Object { + "type": "hanging", + "val": 420, + }, + "start": 1260, + "startChars": null, + }, + "runProperty": Object {}, + "tabs": Array [], + }, + "pstyle": null, + "runProperty": Object {}, + "start": 1, + "suffix": "tab", + "text": "%3", + }, + Object { + "format": "decimal", + "jc": "left", + "level": 3, + "levelRestart": null, + "paragraphProperty": Object { + "indent": Object { + "end": null, + "firstLineChars": null, + "hangingChars": null, + "specialIndent": Object { + "type": "hanging", + "val": 420, + }, + "start": 1680, + "startChars": null, + }, + "runProperty": Object {}, + "tabs": Array [], + }, + "pstyle": null, + "runProperty": Object {}, + "start": 1, + "suffix": "tab", + "text": "%4.", + }, + Object { + "format": "aiueoFullWidth", + "jc": "left", + "level": 4, + "levelRestart": null, + "paragraphProperty": Object { + "indent": Object { + "end": null, + "firstLineChars": null, + "hangingChars": null, + "specialIndent": Object { + "type": "hanging", + "val": 420, + }, + "start": 2100, + "startChars": null, + }, + "runProperty": Object {}, + "tabs": Array [], + }, + "pstyle": null, + "runProperty": Object {}, + "start": 1, + "suffix": "tab", + "text": "(%5)", + }, + Object { + "format": "decimalEnclosedCircle", + "jc": "left", + "level": 5, + "levelRestart": null, + "paragraphProperty": Object { + "indent": Object { + "end": null, + "firstLineChars": null, + "hangingChars": null, + "specialIndent": Object { + "type": "hanging", + "val": 420, + }, + "start": 2520, + "startChars": null, + }, + "runProperty": Object {}, + "tabs": Array [], + }, + "pstyle": null, + "runProperty": Object {}, + "start": 1, + "suffix": "tab", + "text": "%6", + }, + Object { + "format": "decimal", + "jc": "left", + "level": 6, + "levelRestart": null, + "paragraphProperty": Object { + "indent": Object { + "end": null, + "firstLineChars": null, + "hangingChars": null, + "specialIndent": Object { + "type": "hanging", + "val": 420, + }, + "start": 2940, + "startChars": null, + }, + "runProperty": Object {}, + "tabs": Array [], + }, + "pstyle": null, + "runProperty": Object {}, + "start": 1, + "suffix": "tab", + "text": "%7.", + }, + Object { + "format": "aiueoFullWidth", + "jc": "left", + "level": 7, + "levelRestart": null, + "paragraphProperty": Object { + "indent": Object { + "end": null, + "firstLineChars": null, + "hangingChars": null, + "specialIndent": Object { + "type": "hanging", + "val": 420, + }, + "start": 3360, + "startChars": null, + }, + "runProperty": Object {}, + "tabs": Array [], + }, + "pstyle": null, + "runProperty": Object {}, + "start": 1, + "suffix": "tab", + "text": "(%8)", + }, + Object { + "format": "decimalEnclosedCircle", + "jc": "left", + "level": 8, + "levelRestart": null, + "paragraphProperty": Object { + "indent": Object { + "end": null, + "firstLineChars": null, + "hangingChars": null, + "specialIndent": Object { + "type": "hanging", + "val": 420, + }, + "start": 3780, + "startChars": null, + }, + "runProperty": Object {}, + "tabs": Array [], + }, + "pstyle": null, + "runProperty": Object {}, + "start": 1, + "suffix": "tab", + "text": "%9", + }, + ], + "numStyleLink": null, + "styleLink": null, + }, + Object { + "id": 21, + "levels": Array [ + Object { + "format": "decimal", + "jc": "left", + "level": 0, + "levelRestart": null, + "paragraphProperty": Object { + "indent": Object { + "end": null, + "firstLineChars": null, + "hangingChars": null, + "specialIndent": Object { + "type": "hanging", + "val": 360, + }, + "start": 540, + "startChars": null, + }, + "runProperty": Object {}, + "tabs": Array [], + }, + "pstyle": null, + "runProperty": Object { + "fonts": Object { + "hint": "eastAsia", + }, + }, + "start": 1, + "suffix": "tab", + "text": "%1.", + }, + Object { + "format": "decimalEnclosedCircle", + "jc": "left", + "level": 1, + "levelRestart": null, + "paragraphProperty": Object { + "indent": Object { + "end": null, + "firstLineChars": null, + "hangingChars": null, + "specialIndent": Object { + "type": "hanging", + "val": 360, + }, + "start": 360, + "startChars": null, + }, + "runProperty": Object {}, + "tabs": Array [], + }, + "pstyle": null, + "runProperty": Object { + "fonts": Object { + "hint": "eastAsia", + }, + }, + "start": 1, + "suffix": "tab", + "text": "%2", + }, + Object { + "format": "decimalEnclosedCircle", + "jc": "left", + "level": 2, + "levelRestart": null, + "paragraphProperty": Object { + "indent": Object { + "end": null, + "firstLineChars": null, + "hangingChars": null, + "specialIndent": Object { + "type": "hanging", + "val": 420, + }, + "start": 840, + "startChars": null, + }, + "runProperty": Object {}, + "tabs": Array [], + }, + "pstyle": null, + "runProperty": Object {}, + "start": 1, + "suffix": "tab", + "text": "%3", + }, + Object { + "format": "decimal", + "jc": "left", + "level": 3, + "levelRestart": null, + "paragraphProperty": Object { + "indent": Object { + "end": null, + "firstLineChars": null, + "hangingChars": null, + "specialIndent": Object { + "type": "hanging", + "val": 420, + }, + "start": 1260, + "startChars": null, + }, + "runProperty": Object {}, + "tabs": Array [], + }, + "pstyle": null, + "runProperty": Object {}, + "start": 1, + "suffix": "tab", + "text": "%4.", + }, + Object { + "format": "aiueoFullWidth", + "jc": "left", + "level": 4, + "levelRestart": null, + "paragraphProperty": Object { + "indent": Object { + "end": null, + "firstLineChars": null, + "hangingChars": null, + "specialIndent": Object { + "type": "hanging", + "val": 420, + }, + "start": 1680, + "startChars": null, + }, + "runProperty": Object {}, + "tabs": Array [], + }, + "pstyle": null, + "runProperty": Object {}, + "start": 1, + "suffix": "tab", + "text": "(%5)", + }, + Object { + "format": "decimalEnclosedCircle", + "jc": "left", + "level": 5, + "levelRestart": null, + "paragraphProperty": Object { + "indent": Object { + "end": null, + "firstLineChars": null, + "hangingChars": null, + "specialIndent": Object { + "type": "hanging", + "val": 420, + }, + "start": 2100, + "startChars": null, + }, + "runProperty": Object {}, + "tabs": Array [], + }, + "pstyle": null, + "runProperty": Object {}, + "start": 1, + "suffix": "tab", + "text": "%6", + }, + Object { + "format": "decimal", + "jc": "left", + "level": 6, + "levelRestart": null, + "paragraphProperty": Object { + "indent": Object { + "end": null, + "firstLineChars": null, + "hangingChars": null, + "specialIndent": Object { + "type": "hanging", + "val": 420, + }, + "start": 2520, + "startChars": null, + }, + "runProperty": Object {}, + "tabs": Array [], + }, + "pstyle": null, + "runProperty": Object {}, + "start": 1, + "suffix": "tab", + "text": "%7.", + }, + Object { + "format": "aiueoFullWidth", + "jc": "left", + "level": 7, + "levelRestart": null, + "paragraphProperty": Object { + "indent": Object { + "end": null, + "firstLineChars": null, + "hangingChars": null, + "specialIndent": Object { + "type": "hanging", + "val": 420, + }, + "start": 2940, + "startChars": null, + }, + "runProperty": Object {}, + "tabs": Array [], + }, + "pstyle": null, + "runProperty": Object {}, + "start": 1, + "suffix": "tab", + "text": "(%8)", + }, + Object { + "format": "decimalEnclosedCircle", + "jc": "left", + "level": 8, + "levelRestart": null, + "paragraphProperty": Object { + "indent": Object { + "end": null, + "firstLineChars": null, + "hangingChars": null, + "specialIndent": Object { + "type": "hanging", + "val": 420, + }, + "start": 3360, + "startChars": null, + }, + "runProperty": Object {}, + "tabs": Array [], + }, + "pstyle": null, + "runProperty": Object {}, + "start": 1, + "suffix": "tab", + "text": "%9", + }, + ], + "numStyleLink": null, + "styleLink": null, + }, + Object { + "id": 22, + "levels": Array [ + Object { + "format": "bullet", + "jc": "left", + "level": 0, + "levelRestart": null, + "paragraphProperty": Object { + "indent": Object { + "end": null, + "firstLineChars": null, + "hangingChars": null, + "specialIndent": Object { + "type": "hanging", + "val": 420, + }, + "start": 2126, + "startChars": null, + }, + "runProperty": Object {}, + "tabs": Array [], + }, + "pstyle": null, + "runProperty": Object { + "fonts": Object { + "ascii": "Wingdings", + "hiAnsi": "Wingdings", + "hint": "default", + }, + }, + "start": 1, + "suffix": "tab", + "text": "", + }, + Object { + "format": "bullet", + "jc": "left", + "level": 1, + "levelRestart": null, + "paragraphProperty": Object { + "indent": Object { + "end": null, + "firstLineChars": null, + "hangingChars": null, + "specialIndent": Object { + "type": "hanging", + "val": 420, + }, + "start": 2546, + "startChars": null, + }, + "runProperty": Object {}, + "tabs": Array [], + }, + "pstyle": null, + "runProperty": Object { + "fonts": Object { + "ascii": "Wingdings", + "hiAnsi": "Wingdings", + "hint": "default", + }, + }, + "start": 1, + "suffix": "tab", + "text": "", + }, + Object { + "format": "bullet", + "jc": "left", + "level": 2, + "levelRestart": null, + "paragraphProperty": Object { + "indent": Object { + "end": null, + "firstLineChars": null, + "hangingChars": null, + "specialIndent": Object { + "type": "hanging", + "val": 420, + }, + "start": 2966, + "startChars": null, + }, + "runProperty": Object {}, + "tabs": Array [], + }, + "pstyle": null, + "runProperty": Object { + "fonts": Object { + "ascii": "Wingdings", + "hiAnsi": "Wingdings", + "hint": "default", + }, + }, + "start": 1, + "suffix": "tab", + "text": "", + }, + Object { + "format": "bullet", + "jc": "left", + "level": 3, + "levelRestart": null, + "paragraphProperty": Object { + "indent": Object { + "end": null, + "firstLineChars": null, + "hangingChars": null, + "specialIndent": Object { + "type": "hanging", + "val": 420, + }, + "start": 3386, + "startChars": null, + }, + "runProperty": Object {}, + "tabs": Array [], + }, + "pstyle": null, + "runProperty": Object { + "fonts": Object { + "ascii": "Wingdings", + "hiAnsi": "Wingdings", + "hint": "default", + }, + }, + "start": 1, + "suffix": "tab", + "text": "", + }, + Object { + "format": "bullet", + "jc": "left", + "level": 4, + "levelRestart": null, + "paragraphProperty": Object { + "indent": Object { + "end": null, + "firstLineChars": null, + "hangingChars": null, + "specialIndent": Object { + "type": "hanging", + "val": 420, + }, + "start": 3806, + "startChars": null, + }, + "runProperty": Object {}, + "tabs": Array [], + }, + "pstyle": null, + "runProperty": Object { + "fonts": Object { + "ascii": "Wingdings", + "hiAnsi": "Wingdings", + "hint": "default", + }, + }, + "start": 1, + "suffix": "tab", + "text": "", + }, + Object { + "format": "bullet", + "jc": "left", + "level": 5, + "levelRestart": null, + "paragraphProperty": Object { + "indent": Object { + "end": null, + "firstLineChars": null, + "hangingChars": null, + "specialIndent": Object { + "type": "hanging", + "val": 420, + }, + "start": 4226, + "startChars": null, + }, + "runProperty": Object {}, + "tabs": Array [], + }, + "pstyle": null, + "runProperty": Object { + "fonts": Object { + "ascii": "Wingdings", + "hiAnsi": "Wingdings", + "hint": "default", + }, + }, + "start": 1, + "suffix": "tab", + "text": "", + }, + Object { + "format": "bullet", + "jc": "left", + "level": 6, + "levelRestart": null, + "paragraphProperty": Object { + "indent": Object { + "end": null, + "firstLineChars": null, + "hangingChars": null, + "specialIndent": Object { + "type": "hanging", + "val": 420, + }, + "start": 4646, + "startChars": null, + }, + "runProperty": Object {}, + "tabs": Array [], + }, + "pstyle": null, + "runProperty": Object { + "fonts": Object { + "ascii": "Wingdings", + "hiAnsi": "Wingdings", + "hint": "default", + }, + }, + "start": 1, + "suffix": "tab", + "text": "", + }, + Object { + "format": "bullet", + "jc": "left", + "level": 7, + "levelRestart": null, + "paragraphProperty": Object { + "indent": Object { + "end": null, + "firstLineChars": null, + "hangingChars": null, + "specialIndent": Object { + "type": "hanging", + "val": 420, + }, + "start": 5066, + "startChars": null, + }, + "runProperty": Object {}, + "tabs": Array [], + }, + "pstyle": null, + "runProperty": Object { + "fonts": Object { + "ascii": "Wingdings", + "hiAnsi": "Wingdings", + "hint": "default", + }, + }, + "start": 1, + "suffix": "tab", + "text": "", + }, + Object { + "format": "bullet", + "jc": "left", + "level": 8, + "levelRestart": null, + "paragraphProperty": Object { + "indent": Object { + "end": null, + "firstLineChars": null, + "hangingChars": null, + "specialIndent": Object { + "type": "hanging", + "val": 420, + }, + "start": 5486, + "startChars": null, + }, + "runProperty": Object {}, + "tabs": Array [], + }, + "pstyle": null, + "runProperty": Object { + "fonts": Object { + "ascii": "Wingdings", + "hiAnsi": "Wingdings", + "hint": "default", + }, + }, + "start": 1, + "suffix": "tab", + "text": "", + }, + ], + "numStyleLink": null, + "styleLink": null, + }, + Object { + "id": 23, + "levels": Array [ + Object { + "format": "lowerLetter", + "jc": "left", + "level": 0, + "levelRestart": null, + "paragraphProperty": Object { + "indent": Object { + "end": null, + "firstLineChars": null, + "hangingChars": null, + "specialIndent": Object { + "type": "hanging", + "val": 454, + }, + "start": 1588, + "startChars": null, + }, + "runProperty": Object {}, + "tabs": Array [], + }, + "pstyle": null, + "runProperty": Object { + "bold": false, + "boldCs": false, + "fonts": Object { + "ascii": "Times New Roman", + "cs": "Times New Roman", + "hiAnsi": "Times New Roman", + "hint": "default", + }, + "italic": false, + "italicCs": false, + "sz": 24, + "szCs": 24, + "underline": "none", + }, + "start": 1, + "suffix": "tab", + "text": "(%1)", + }, + Object { + "format": "aiueoFullWidth", + "jc": "left", + "level": 1, + "levelRestart": null, + "paragraphProperty": Object { + "indent": Object { + "end": null, + "firstLineChars": null, + "hangingChars": null, + "specialIndent": Object { + "type": "hanging", + "val": 420, + }, + "start": 840, + "startChars": null, + }, + "runProperty": Object {}, + "tabs": Array [], + }, + "pstyle": null, + "runProperty": Object {}, + "start": 1, + "suffix": "tab", + "text": "(%2)", + }, + Object { + "format": "decimalEnclosedCircle", + "jc": "left", + "level": 2, + "levelRestart": null, + "paragraphProperty": Object { + "indent": Object { + "end": null, + "firstLineChars": null, + "hangingChars": null, + "specialIndent": Object { + "type": "hanging", + "val": 420, + }, + "start": 1260, + "startChars": null, + }, + "runProperty": Object {}, + "tabs": Array [], + }, + "pstyle": null, + "runProperty": Object {}, + "start": 1, + "suffix": "tab", + "text": "%3", + }, + Object { + "format": "decimal", + "jc": "left", + "level": 3, + "levelRestart": null, + "paragraphProperty": Object { + "indent": Object { + "end": null, + "firstLineChars": null, + "hangingChars": null, + "specialIndent": Object { + "type": "hanging", + "val": 420, + }, + "start": 1680, + "startChars": null, + }, + "runProperty": Object {}, + "tabs": Array [], + }, + "pstyle": null, + "runProperty": Object {}, + "start": 1, + "suffix": "tab", + "text": "%4.", + }, + Object { + "format": "aiueoFullWidth", + "jc": "left", + "level": 4, + "levelRestart": null, + "paragraphProperty": Object { + "indent": Object { + "end": null, + "firstLineChars": null, + "hangingChars": null, + "specialIndent": Object { + "type": "hanging", + "val": 420, + }, + "start": 2100, + "startChars": null, + }, + "runProperty": Object {}, + "tabs": Array [], + }, + "pstyle": null, + "runProperty": Object {}, + "start": 1, + "suffix": "tab", + "text": "(%5)", + }, + Object { + "format": "decimalEnclosedCircle", + "jc": "left", + "level": 5, + "levelRestart": null, + "paragraphProperty": Object { + "indent": Object { + "end": null, + "firstLineChars": null, + "hangingChars": null, + "specialIndent": Object { + "type": "hanging", + "val": 420, + }, + "start": 2520, + "startChars": null, + }, + "runProperty": Object {}, + "tabs": Array [], + }, + "pstyle": null, + "runProperty": Object {}, + "start": 1, + "suffix": "tab", + "text": "%6", + }, + Object { + "format": "decimal", + "jc": "left", + "level": 6, + "levelRestart": null, + "paragraphProperty": Object { + "indent": Object { + "end": null, + "firstLineChars": null, + "hangingChars": null, + "specialIndent": Object { + "type": "hanging", + "val": 420, + }, + "start": 2940, + "startChars": null, + }, + "runProperty": Object {}, + "tabs": Array [], + }, + "pstyle": null, + "runProperty": Object {}, + "start": 1, + "suffix": "tab", + "text": "%7.", + }, + Object { + "format": "aiueoFullWidth", + "jc": "left", + "level": 7, + "levelRestart": null, + "paragraphProperty": Object { + "indent": Object { + "end": null, + "firstLineChars": null, + "hangingChars": null, + "specialIndent": Object { + "type": "hanging", + "val": 420, + }, + "start": 3360, + "startChars": null, + }, + "runProperty": Object {}, + "tabs": Array [], + }, + "pstyle": null, + "runProperty": Object {}, + "start": 1, + "suffix": "tab", + "text": "(%8)", + }, + Object { + "format": "decimalEnclosedCircle", + "jc": "left", + "level": 8, + "levelRestart": null, + "paragraphProperty": Object { + "indent": Object { + "end": null, + "firstLineChars": null, + "hangingChars": null, + "specialIndent": Object { + "type": "hanging", + "val": 420, + }, + "start": 3780, + "startChars": null, + }, + "runProperty": Object {}, + "tabs": Array [], + }, + "pstyle": null, + "runProperty": Object {}, + "start": 1, + "suffix": "tab", + "text": "%9", + }, + ], + "numStyleLink": null, + "styleLink": null, + }, + Object { + "id": 24, + "levels": Array [ + Object { + "format": "upperLetter", + "jc": "left", + "level": 0, + "levelRestart": null, + "paragraphProperty": Object { + "indent": Object { + "end": null, + "firstLineChars": null, + "hangingChars": null, + "specialIndent": Object { + "type": "hanging", + "val": 270, + }, + "start": 724, + "startChars": null, + }, + "runProperty": Object {}, + "tabs": Array [], + }, + "pstyle": null, + "runProperty": Object { + "fonts": Object { + "hint": "eastAsia", + }, + }, + "start": 1, + "suffix": "tab", + "text": "%1", + }, + Object { + "format": "aiueoFullWidth", + "jc": "left", + "level": 1, + "levelRestart": null, + "paragraphProperty": Object { + "indent": Object { + "end": null, + "firstLineChars": null, + "hangingChars": null, + "specialIndent": Object { + "type": "hanging", + "val": 420, + }, + "start": 1114, + "startChars": null, + }, + "runProperty": Object {}, + "tabs": Array [], + }, + "pstyle": null, + "runProperty": Object {}, + "start": 1, + "suffix": "tab", + "text": "(%2)", + }, + Object { + "format": "decimalEnclosedCircle", + "jc": "left", + "level": 2, + "levelRestart": null, + "paragraphProperty": Object { + "indent": Object { + "end": null, + "firstLineChars": null, + "hangingChars": null, + "specialIndent": Object { + "type": "hanging", + "val": 420, + }, + "start": 1534, + "startChars": null, + }, + "runProperty": Object {}, + "tabs": Array [], + }, + "pstyle": null, + "runProperty": Object {}, + "start": 1, + "suffix": "tab", + "text": "%3", + }, + Object { + "format": "decimal", + "jc": "left", + "level": 3, + "levelRestart": null, + "paragraphProperty": Object { + "indent": Object { + "end": null, + "firstLineChars": null, + "hangingChars": null, + "specialIndent": Object { + "type": "hanging", + "val": 420, + }, + "start": 1954, + "startChars": null, + }, + "runProperty": Object {}, + "tabs": Array [], + }, + "pstyle": null, + "runProperty": Object {}, + "start": 1, + "suffix": "tab", + "text": "%4.", + }, + Object { + "format": "aiueoFullWidth", + "jc": "left", + "level": 4, + "levelRestart": null, + "paragraphProperty": Object { + "indent": Object { + "end": null, + "firstLineChars": null, + "hangingChars": null, + "specialIndent": Object { + "type": "hanging", + "val": 420, + }, + "start": 2374, + "startChars": null, + }, + "runProperty": Object {}, + "tabs": Array [], + }, + "pstyle": null, + "runProperty": Object {}, + "start": 1, + "suffix": "tab", + "text": "(%5)", + }, + Object { + "format": "decimalEnclosedCircle", + "jc": "left", + "level": 5, + "levelRestart": null, + "paragraphProperty": Object { + "indent": Object { + "end": null, + "firstLineChars": null, + "hangingChars": null, + "specialIndent": Object { + "type": "hanging", + "val": 420, + }, + "start": 2794, + "startChars": null, + }, + "runProperty": Object {}, + "tabs": Array [], + }, + "pstyle": null, + "runProperty": Object {}, + "start": 1, + "suffix": "tab", + "text": "%6", + }, + Object { + "format": "decimal", + "jc": "left", + "level": 6, + "levelRestart": null, + "paragraphProperty": Object { + "indent": Object { + "end": null, + "firstLineChars": null, + "hangingChars": null, + "specialIndent": Object { + "type": "hanging", + "val": 420, + }, + "start": 3214, + "startChars": null, + }, + "runProperty": Object {}, + "tabs": Array [], + }, + "pstyle": null, + "runProperty": Object {}, + "start": 1, + "suffix": "tab", + "text": "%7.", + }, + Object { + "format": "aiueoFullWidth", + "jc": "left", + "level": 7, + "levelRestart": null, + "paragraphProperty": Object { + "indent": Object { + "end": null, + "firstLineChars": null, + "hangingChars": null, + "specialIndent": Object { + "type": "hanging", + "val": 420, + }, + "start": 3634, + "startChars": null, + }, + "runProperty": Object {}, + "tabs": Array [], + }, + "pstyle": null, + "runProperty": Object {}, + "start": 1, + "suffix": "tab", + "text": "(%8)", + }, + Object { + "format": "decimalEnclosedCircle", + "jc": "left", + "level": 8, + "levelRestart": null, + "paragraphProperty": Object { + "indent": Object { + "end": null, + "firstLineChars": null, + "hangingChars": null, + "specialIndent": Object { + "type": "hanging", + "val": 420, + }, + "start": 4054, + "startChars": null, + }, + "runProperty": Object {}, + "tabs": Array [], + }, + "pstyle": null, + "runProperty": Object {}, + "start": 1, + "suffix": "tab", + "text": "%9", + }, + ], + "numStyleLink": null, + "styleLink": null, + }, + Object { + "id": 25, + "levels": Array [ + Object { + "format": "decimal", + "jc": "left", + "level": 0, + "levelRestart": null, + "paragraphProperty": Object { + "indent": Object { + "end": null, + "firstLineChars": null, + "hangingChars": null, + "specialIndent": Object { + "type": "hanging", + "val": 360, + }, + "start": 540, + "startChars": null, + }, + "runProperty": Object {}, + "tabs": Array [], + }, + "pstyle": null, + "runProperty": Object { + "fonts": Object { + "hint": "eastAsia", + }, + }, + "start": 1, + "suffix": "tab", + "text": "%1.", + }, + Object { + "format": "aiueoFullWidth", + "jc": "left", + "level": 1, + "levelRestart": null, + "paragraphProperty": Object { + "indent": Object { + "end": null, + "firstLineChars": null, + "hangingChars": null, + "specialIndent": Object { + "type": "hanging", + "val": 420, + }, + "start": 1020, + "startChars": null, + }, + "runProperty": Object {}, + "tabs": Array [], + }, + "pstyle": null, + "runProperty": Object {}, + "start": 1, + "suffix": "tab", + "text": "(%2)", + }, + Object { + "format": "decimalEnclosedCircle", + "jc": "left", + "level": 2, + "levelRestart": null, + "paragraphProperty": Object { + "indent": Object { + "end": null, + "firstLineChars": null, + "hangingChars": null, + "specialIndent": Object { + "type": "hanging", + "val": 420, + }, + "start": 1440, + "startChars": null, + }, + "runProperty": Object {}, + "tabs": Array [], + }, + "pstyle": null, + "runProperty": Object {}, + "start": 1, + "suffix": "tab", + "text": "%3", + }, + Object { + "format": "decimal", + "jc": "left", + "level": 3, + "levelRestart": null, + "paragraphProperty": Object { + "indent": Object { + "end": null, + "firstLineChars": null, + "hangingChars": null, + "specialIndent": Object { + "type": "hanging", + "val": 420, + }, + "start": 1860, + "startChars": null, + }, + "runProperty": Object {}, + "tabs": Array [], + }, + "pstyle": null, + "runProperty": Object {}, + "start": 1, + "suffix": "tab", + "text": "%4.", + }, + Object { + "format": "aiueoFullWidth", + "jc": "left", + "level": 4, + "levelRestart": null, + "paragraphProperty": Object { + "indent": Object { + "end": null, + "firstLineChars": null, + "hangingChars": null, + "specialIndent": Object { + "type": "hanging", + "val": 420, + }, + "start": 2280, + "startChars": null, + }, + "runProperty": Object {}, + "tabs": Array [], + }, + "pstyle": null, + "runProperty": Object {}, + "start": 1, + "suffix": "tab", + "text": "(%5)", + }, + Object { + "format": "decimalEnclosedCircle", + "jc": "left", + "level": 5, + "levelRestart": null, + "paragraphProperty": Object { + "indent": Object { + "end": null, + "firstLineChars": null, + "hangingChars": null, + "specialIndent": Object { + "type": "hanging", + "val": 420, + }, + "start": 2700, + "startChars": null, + }, + "runProperty": Object {}, + "tabs": Array [], + }, + "pstyle": null, + "runProperty": Object {}, + "start": 1, + "suffix": "tab", + "text": "%6", + }, + Object { + "format": "decimal", + "jc": "left", + "level": 6, + "levelRestart": null, + "paragraphProperty": Object { + "indent": Object { + "end": null, + "firstLineChars": null, + "hangingChars": null, + "specialIndent": Object { + "type": "hanging", + "val": 420, + }, + "start": 3120, + "startChars": null, + }, + "runProperty": Object {}, + "tabs": Array [], + }, + "pstyle": null, + "runProperty": Object {}, + "start": 1, + "suffix": "tab", + "text": "%7.", + }, + Object { + "format": "aiueoFullWidth", + "jc": "left", + "level": 7, + "levelRestart": null, + "paragraphProperty": Object { + "indent": Object { + "end": null, + "firstLineChars": null, + "hangingChars": null, + "specialIndent": Object { + "type": "hanging", + "val": 420, + }, + "start": 3540, + "startChars": null, + }, + "runProperty": Object {}, + "tabs": Array [], + }, + "pstyle": null, + "runProperty": Object {}, + "start": 1, + "suffix": "tab", + "text": "(%8)", + }, + Object { + "format": "decimalEnclosedCircle", + "jc": "left", + "level": 8, + "levelRestart": null, + "paragraphProperty": Object { + "indent": Object { + "end": null, + "firstLineChars": null, + "hangingChars": null, + "specialIndent": Object { + "type": "hanging", + "val": 420, + }, + "start": 3960, + "startChars": null, + }, + "runProperty": Object {}, + "tabs": Array [], + }, + "pstyle": null, + "runProperty": Object {}, + "start": 1, + "suffix": "tab", + "text": "%9", + }, + ], + "numStyleLink": null, + "styleLink": null, + }, + Object { + "id": 26, + "levels": Array [ + Object { + "format": "decimal", + "jc": "left", + "level": 0, + "levelRestart": null, + "paragraphProperty": Object { + "indent": Object { + "end": null, + "firstLineChars": null, + "hangingChars": null, + "specialIndent": Object { + "type": "hanging", + "val": 360, + }, + "start": 540, + "startChars": null, + }, + "runProperty": Object {}, + "tabs": Array [], + }, + "pstyle": null, + "runProperty": Object { + "fonts": Object { + "hint": "eastAsia", + }, + }, + "start": 1, + "suffix": "tab", + "text": "%1.", + }, + Object { + "format": "aiueoFullWidth", + "jc": "left", + "level": 1, + "levelRestart": null, + "paragraphProperty": Object { + "indent": Object { + "end": null, + "firstLineChars": null, + "hangingChars": null, + "specialIndent": Object { + "type": "hanging", + "val": 420, + }, + "start": 840, + "startChars": null, + }, + "runProperty": Object {}, + "tabs": Array [], + }, + "pstyle": null, + "runProperty": Object {}, + "start": 1, + "suffix": "tab", + "text": "(%2)", + }, + Object { + "format": "decimalEnclosedCircle", + "jc": "left", + "level": 2, + "levelRestart": null, + "paragraphProperty": Object { + "indent": Object { + "end": null, + "firstLineChars": null, + "hangingChars": null, + "specialIndent": Object { + "type": "hanging", + "val": 420, + }, + "start": 1260, + "startChars": null, + }, + "runProperty": Object {}, + "tabs": Array [], + }, + "pstyle": null, + "runProperty": Object {}, + "start": 1, + "suffix": "tab", + "text": "%3", + }, + Object { + "format": "decimal", + "jc": "left", + "level": 3, + "levelRestart": null, + "paragraphProperty": Object { + "indent": Object { + "end": null, + "firstLineChars": null, + "hangingChars": null, + "specialIndent": Object { + "type": "hanging", + "val": 420, + }, + "start": 1680, + "startChars": null, + }, + "runProperty": Object {}, + "tabs": Array [], + }, + "pstyle": null, + "runProperty": Object {}, + "start": 1, + "suffix": "tab", + "text": "%4.", + }, + Object { + "format": "aiueoFullWidth", + "jc": "left", + "level": 4, + "levelRestart": null, + "paragraphProperty": Object { + "indent": Object { + "end": null, + "firstLineChars": null, + "hangingChars": null, + "specialIndent": Object { + "type": "hanging", + "val": 420, + }, + "start": 2100, + "startChars": null, + }, + "runProperty": Object {}, + "tabs": Array [], + }, + "pstyle": null, + "runProperty": Object {}, + "start": 1, + "suffix": "tab", + "text": "(%5)", + }, + Object { + "format": "decimalEnclosedCircle", + "jc": "left", + "level": 5, + "levelRestart": null, + "paragraphProperty": Object { + "indent": Object { + "end": null, + "firstLineChars": null, + "hangingChars": null, + "specialIndent": Object { + "type": "hanging", + "val": 420, + }, + "start": 2520, + "startChars": null, + }, + "runProperty": Object {}, + "tabs": Array [], + }, + "pstyle": null, + "runProperty": Object {}, + "start": 1, + "suffix": "tab", + "text": "%6", + }, + Object { + "format": "decimal", + "jc": "left", + "level": 6, + "levelRestart": null, + "paragraphProperty": Object { + "indent": Object { + "end": null, + "firstLineChars": null, + "hangingChars": null, + "specialIndent": Object { + "type": "hanging", + "val": 420, + }, + "start": 2940, + "startChars": null, + }, + "runProperty": Object {}, + "tabs": Array [], + }, + "pstyle": null, + "runProperty": Object {}, + "start": 1, + "suffix": "tab", + "text": "%7.", + }, + Object { + "format": "aiueoFullWidth", + "jc": "left", + "level": 7, + "levelRestart": null, + "paragraphProperty": Object { + "indent": Object { + "end": null, + "firstLineChars": null, + "hangingChars": null, + "specialIndent": Object { + "type": "hanging", + "val": 420, + }, + "start": 3360, + "startChars": null, + }, + "runProperty": Object {}, + "tabs": Array [], + }, + "pstyle": null, + "runProperty": Object {}, + "start": 1, + "suffix": "tab", + "text": "(%8)", + }, + Object { + "format": "decimalEnclosedCircle", + "jc": "left", + "level": 8, + "levelRestart": null, + "paragraphProperty": Object { + "indent": Object { + "end": null, + "firstLineChars": null, + "hangingChars": null, + "specialIndent": Object { + "type": "hanging", + "val": 420, + }, + "start": 3780, + "startChars": null, + }, + "runProperty": Object {}, + "tabs": Array [], + }, + "pstyle": null, + "runProperty": Object {}, + "start": 1, + "suffix": "tab", + "text": "%9", + }, + ], + "numStyleLink": null, + "styleLink": null, + }, + Object { + "id": 27, + "levels": Array [ + Object { + "format": "decimal", + "jc": "left", + "level": 0, + "levelRestart": null, + "paragraphProperty": Object { + "indent": Object { + "end": null, + "firstLineChars": null, + "hangingChars": null, + "specialIndent": Object { + "type": "hanging", + "val": 360, + }, + "start": 540, + "startChars": null, + }, + "runProperty": Object {}, + "tabs": Array [], + }, + "pstyle": null, + "runProperty": Object { + "fonts": Object { + "hint": "eastAsia", + }, + }, + "start": 1, + "suffix": "tab", + "text": "%1.", + }, + Object { + "format": "aiueoFullWidth", + "jc": "left", + "level": 1, + "levelRestart": null, + "paragraphProperty": Object { + "indent": Object { + "end": null, + "firstLineChars": null, + "hangingChars": null, + "specialIndent": Object { + "type": "hanging", + "val": 420, + }, + "start": 1020, + "startChars": null, + }, + "runProperty": Object {}, + "tabs": Array [], + }, + "pstyle": null, + "runProperty": Object {}, + "start": 1, + "suffix": "tab", + "text": "(%2)", + }, + Object { + "format": "decimalEnclosedCircle", + "jc": "left", + "level": 2, + "levelRestart": null, + "paragraphProperty": Object { + "indent": Object { + "end": null, + "firstLineChars": null, + "hangingChars": null, + "specialIndent": Object { + "type": "hanging", + "val": 420, + }, + "start": 1440, + "startChars": null, + }, + "runProperty": Object {}, + "tabs": Array [], + }, + "pstyle": null, + "runProperty": Object {}, + "start": 1, + "suffix": "tab", + "text": "%3", + }, + Object { + "format": "decimal", + "jc": "left", + "level": 3, + "levelRestart": null, + "paragraphProperty": Object { + "indent": Object { + "end": null, + "firstLineChars": null, + "hangingChars": null, + "specialIndent": Object { + "type": "hanging", + "val": 420, + }, + "start": 1860, + "startChars": null, + }, + "runProperty": Object {}, + "tabs": Array [], + }, + "pstyle": null, + "runProperty": Object {}, + "start": 1, + "suffix": "tab", + "text": "%4.", + }, + Object { + "format": "aiueoFullWidth", + "jc": "left", + "level": 4, + "levelRestart": null, + "paragraphProperty": Object { + "indent": Object { + "end": null, + "firstLineChars": null, + "hangingChars": null, + "specialIndent": Object { + "type": "hanging", + "val": 420, + }, + "start": 2280, + "startChars": null, + }, + "runProperty": Object {}, + "tabs": Array [], + }, + "pstyle": null, + "runProperty": Object {}, + "start": 1, + "suffix": "tab", + "text": "(%5)", + }, + Object { + "format": "decimalEnclosedCircle", + "jc": "left", + "level": 5, + "levelRestart": null, + "paragraphProperty": Object { + "indent": Object { + "end": null, + "firstLineChars": null, + "hangingChars": null, + "specialIndent": Object { + "type": "hanging", + "val": 420, + }, + "start": 2700, + "startChars": null, + }, + "runProperty": Object {}, + "tabs": Array [], + }, + "pstyle": null, + "runProperty": Object {}, + "start": 1, + "suffix": "tab", + "text": "%6", + }, + Object { + "format": "decimal", + "jc": "left", + "level": 6, + "levelRestart": null, + "paragraphProperty": Object { + "indent": Object { + "end": null, + "firstLineChars": null, + "hangingChars": null, + "specialIndent": Object { + "type": "hanging", + "val": 420, + }, + "start": 3120, + "startChars": null, + }, + "runProperty": Object {}, + "tabs": Array [], + }, + "pstyle": null, + "runProperty": Object {}, + "start": 1, + "suffix": "tab", + "text": "%7.", + }, + Object { + "format": "aiueoFullWidth", + "jc": "left", + "level": 7, + "levelRestart": null, + "paragraphProperty": Object { + "indent": Object { + "end": null, + "firstLineChars": null, + "hangingChars": null, + "specialIndent": Object { + "type": "hanging", + "val": 420, + }, + "start": 3540, + "startChars": null, + }, + "runProperty": Object {}, + "tabs": Array [], + }, + "pstyle": null, + "runProperty": Object {}, + "start": 1, + "suffix": "tab", + "text": "(%8)", + }, + Object { + "format": "decimalEnclosedCircle", + "jc": "left", + "level": 8, + "levelRestart": null, + "paragraphProperty": Object { + "indent": Object { + "end": null, + "firstLineChars": null, + "hangingChars": null, + "specialIndent": Object { + "type": "hanging", + "val": 420, + }, + "start": 3960, + "startChars": null, + }, + "runProperty": Object {}, + "tabs": Array [], + }, + "pstyle": null, + "runProperty": Object {}, + "start": 1, + "suffix": "tab", + "text": "%9", + }, + ], + "numStyleLink": null, + "styleLink": null, + }, + Object { + "id": 28, + "levels": Array [ + Object { + "format": "decimal", + "jc": "left", + "level": 0, + "levelRestart": null, + "paragraphProperty": Object { + "indent": Object { + "end": null, + "firstLineChars": null, + "hangingChars": null, + "specialIndent": Object { + "type": "hanging", + "val": 360, + }, + "start": 540, + "startChars": null, + }, + "runProperty": Object {}, + "tabs": Array [], + }, + "pstyle": null, + "runProperty": Object { + "fonts": Object { + "hint": "eastAsia", + }, + }, + "start": 1, + "suffix": "tab", + "text": "%1.", + }, + Object { + "format": "aiueoFullWidth", + "jc": "left", + "level": 1, + "levelRestart": null, + "paragraphProperty": Object { + "indent": Object { + "end": null, + "firstLineChars": null, + "hangingChars": null, + "specialIndent": Object { + "type": "hanging", + "val": 420, + }, + "start": 840, + "startChars": null, + }, + "runProperty": Object {}, + "tabs": Array [], + }, + "pstyle": null, + "runProperty": Object {}, + "start": 1, + "suffix": "tab", + "text": "(%2)", + }, + Object { + "format": "decimalEnclosedCircle", + "jc": "left", + "level": 2, + "levelRestart": null, + "paragraphProperty": Object { + "indent": Object { + "end": null, + "firstLineChars": null, + "hangingChars": null, + "specialIndent": Object { + "type": "hanging", + "val": 420, + }, + "start": 1260, + "startChars": null, + }, + "runProperty": Object {}, + "tabs": Array [], + }, + "pstyle": null, + "runProperty": Object {}, + "start": 1, + "suffix": "tab", + "text": "%3", + }, + Object { + "format": "decimal", + "jc": "left", + "level": 3, + "levelRestart": null, + "paragraphProperty": Object { + "indent": Object { + "end": null, + "firstLineChars": null, + "hangingChars": null, + "specialIndent": Object { + "type": "hanging", + "val": 420, + }, + "start": 1680, + "startChars": null, + }, + "runProperty": Object {}, + "tabs": Array [], + }, + "pstyle": null, + "runProperty": Object {}, + "start": 1, + "suffix": "tab", + "text": "%4.", + }, + Object { + "format": "aiueoFullWidth", + "jc": "left", + "level": 4, + "levelRestart": null, + "paragraphProperty": Object { + "indent": Object { + "end": null, + "firstLineChars": null, + "hangingChars": null, + "specialIndent": Object { + "type": "hanging", + "val": 420, + }, + "start": 2100, + "startChars": null, + }, + "runProperty": Object {}, + "tabs": Array [], + }, + "pstyle": null, + "runProperty": Object {}, + "start": 1, + "suffix": "tab", + "text": "(%5)", + }, + Object { + "format": "decimalEnclosedCircle", + "jc": "left", + "level": 5, + "levelRestart": null, + "paragraphProperty": Object { + "indent": Object { + "end": null, + "firstLineChars": null, + "hangingChars": null, + "specialIndent": Object { + "type": "hanging", + "val": 420, + }, + "start": 2520, + "startChars": null, + }, + "runProperty": Object {}, + "tabs": Array [], + }, + "pstyle": null, + "runProperty": Object {}, + "start": 1, + "suffix": "tab", + "text": "%6", + }, + Object { + "format": "decimal", + "jc": "left", + "level": 6, + "levelRestart": null, + "paragraphProperty": Object { + "indent": Object { + "end": null, + "firstLineChars": null, + "hangingChars": null, + "specialIndent": Object { + "type": "hanging", + "val": 420, + }, + "start": 2940, + "startChars": null, + }, + "runProperty": Object {}, + "tabs": Array [], + }, + "pstyle": null, + "runProperty": Object {}, + "start": 1, + "suffix": "tab", + "text": "%7.", + }, + Object { + "format": "aiueoFullWidth", + "jc": "left", + "level": 7, + "levelRestart": null, + "paragraphProperty": Object { + "indent": Object { + "end": null, + "firstLineChars": null, + "hangingChars": null, + "specialIndent": Object { + "type": "hanging", + "val": 420, + }, + "start": 3360, + "startChars": null, + }, + "runProperty": Object {}, + "tabs": Array [], + }, + "pstyle": null, + "runProperty": Object {}, + "start": 1, + "suffix": "tab", + "text": "(%8)", + }, + Object { + "format": "decimalEnclosedCircle", + "jc": "left", + "level": 8, + "levelRestart": null, + "paragraphProperty": Object { + "indent": Object { + "end": null, + "firstLineChars": null, + "hangingChars": null, + "specialIndent": Object { + "type": "hanging", + "val": 420, + }, + "start": 3780, + "startChars": null, + }, + "runProperty": Object {}, + "tabs": Array [], + }, + "pstyle": null, + "runProperty": Object {}, + "start": 1, + "suffix": "tab", + "text": "%9", + }, + ], + "numStyleLink": null, + "styleLink": null, + }, + Object { + "id": 29, + "levels": Array [ + Object { + "format": "decimal", + "jc": "left", + "level": 0, + "levelRestart": null, + "paragraphProperty": Object { + "indent": Object { + "end": null, + "firstLineChars": null, + "hangingChars": null, + "specialIndent": Object { + "type": "hanging", + "val": 360, + }, + "start": 540, + "startChars": null, + }, + "runProperty": Object {}, + "tabs": Array [], + }, + "pstyle": null, + "runProperty": Object { + "fonts": Object { + "hint": "eastAsia", + }, + }, + "start": 1, + "suffix": "tab", + "text": "%1.", + }, + Object { + "format": "lowerLetter", + "jc": "left", + "level": 1, + "levelRestart": null, + "paragraphProperty": Object { + "indent": Object { + "end": null, + "firstLineChars": null, + "hangingChars": null, + "specialIndent": Object { + "type": "hanging", + "val": 360, + }, + "start": 780, + "startChars": null, + }, + "runProperty": Object {}, + "tabs": Array [], + }, + "pstyle": null, + "runProperty": Object { + "fonts": Object { + "hint": "eastAsia", + }, + }, + "start": 1, + "suffix": "tab", + "text": "(%2)", + }, + Object { + "format": "lowerLetter", + "jc": "left", + "level": 2, + "levelRestart": null, + "paragraphProperty": Object { + "indent": Object { + "end": null, + "firstLineChars": null, + "hangingChars": null, + "specialIndent": Object { + "type": "hanging", + "val": 360, + }, + "start": 1200, + "startChars": null, + }, + "runProperty": Object {}, + "tabs": Array [], + }, + "pstyle": null, + "runProperty": Object { + "fonts": Object { + "hint": "eastAsia", + }, + }, + "start": 1, + "suffix": "tab", + "text": "(%3)", + }, + Object { + "format": "decimalEnclosedCircle", + "jc": "left", + "level": 3, + "levelRestart": null, + "paragraphProperty": Object { + "indent": Object { + "end": null, + "firstLineChars": null, + "hangingChars": null, + "specialIndent": Object { + "type": "hanging", + "val": 360, + }, + "start": 1620, + "startChars": null, + }, + "runProperty": Object {}, + "tabs": Array [], + }, + "pstyle": null, + "runProperty": Object { + "fonts": Object { + "hint": "eastAsia", + }, + }, + "start": 1, + "suffix": "tab", + "text": "%4", + }, + Object { + "format": "aiueoFullWidth", + "jc": "left", + "level": 4, + "levelRestart": null, + "paragraphProperty": Object { + "indent": Object { + "end": null, + "firstLineChars": null, + "hangingChars": null, + "specialIndent": Object { + "type": "hanging", + "val": 420, + }, + "start": 2100, + "startChars": null, + }, + "runProperty": Object {}, + "tabs": Array [], + }, + "pstyle": null, + "runProperty": Object {}, + "start": 1, + "suffix": "tab", + "text": "(%5)", + }, + Object { + "format": "decimalEnclosedCircle", + "jc": "left", + "level": 5, + "levelRestart": null, + "paragraphProperty": Object { + "indent": Object { + "end": null, + "firstLineChars": null, + "hangingChars": null, + "specialIndent": Object { + "type": "hanging", + "val": 420, + }, + "start": 2520, + "startChars": null, + }, + "runProperty": Object {}, + "tabs": Array [], + }, + "pstyle": null, + "runProperty": Object {}, + "start": 1, + "suffix": "tab", + "text": "%6", + }, + Object { + "format": "decimal", + "jc": "left", + "level": 6, + "levelRestart": null, + "paragraphProperty": Object { + "indent": Object { + "end": null, + "firstLineChars": null, + "hangingChars": null, + "specialIndent": Object { + "type": "hanging", + "val": 420, + }, + "start": 2940, + "startChars": null, + }, + "runProperty": Object {}, + "tabs": Array [], + }, + "pstyle": null, + "runProperty": Object {}, + "start": 1, + "suffix": "tab", + "text": "%7.", + }, + Object { + "format": "aiueoFullWidth", + "jc": "left", + "level": 7, + "levelRestart": null, + "paragraphProperty": Object { + "indent": Object { + "end": null, + "firstLineChars": null, + "hangingChars": null, + "specialIndent": Object { + "type": "hanging", + "val": 420, + }, + "start": 3360, + "startChars": null, + }, + "runProperty": Object {}, + "tabs": Array [], + }, + "pstyle": null, + "runProperty": Object {}, + "start": 1, + "suffix": "tab", + "text": "(%8)", + }, + Object { + "format": "decimalEnclosedCircle", + "jc": "left", + "level": 8, + "levelRestart": null, + "paragraphProperty": Object { + "indent": Object { + "end": null, + "firstLineChars": null, + "hangingChars": null, + "specialIndent": Object { + "type": "hanging", + "val": 420, + }, + "start": 3780, + "startChars": null, + }, + "runProperty": Object {}, + "tabs": Array [], + }, + "pstyle": null, + "runProperty": Object {}, + "start": 1, + "suffix": "tab", + "text": "%9", + }, + ], + "numStyleLink": null, + "styleLink": null, + }, + Object { + "id": 30, + "levels": Array [ + Object { + "format": "decimal", + "jc": "left", + "level": 0, + "levelRestart": null, + "paragraphProperty": Object { + "indent": Object { + "end": null, + "firstLineChars": null, + "hangingChars": null, + "specialIndent": Object { + "type": "hanging", + "val": 360, + }, + "start": 540, + "startChars": null, + }, + "runProperty": Object {}, + "tabs": Array [], + }, + "pstyle": null, + "runProperty": Object { + "fonts": Object { + "hint": "eastAsia", + }, + }, + "start": 1, + "suffix": "tab", + "text": "%1.", + }, + Object { + "format": "aiueoFullWidth", + "jc": "left", + "level": 1, + "levelRestart": null, + "paragraphProperty": Object { + "indent": Object { + "end": null, + "firstLineChars": null, + "hangingChars": null, + "specialIndent": Object { + "type": "hanging", + "val": 420, + }, + "start": 840, + "startChars": null, + }, + "runProperty": Object {}, + "tabs": Array [], + }, + "pstyle": null, + "runProperty": Object {}, + "start": 1, + "suffix": "tab", + "text": "(%2)", + }, + Object { + "format": "decimalEnclosedCircle", + "jc": "left", + "level": 2, + "levelRestart": null, + "paragraphProperty": Object { + "indent": Object { + "end": null, + "firstLineChars": null, + "hangingChars": null, + "specialIndent": Object { + "type": "hanging", + "val": 420, + }, + "start": 1260, + "startChars": null, + }, + "runProperty": Object {}, + "tabs": Array [], + }, + "pstyle": null, + "runProperty": Object {}, + "start": 1, + "suffix": "tab", + "text": "%3", + }, + Object { + "format": "decimal", + "jc": "left", + "level": 3, + "levelRestart": null, + "paragraphProperty": Object { + "indent": Object { + "end": null, + "firstLineChars": null, + "hangingChars": null, + "specialIndent": Object { + "type": "hanging", + "val": 420, + }, + "start": 1680, + "startChars": null, + }, + "runProperty": Object {}, + "tabs": Array [], + }, + "pstyle": null, + "runProperty": Object {}, + "start": 1, + "suffix": "tab", + "text": "%4.", + }, + Object { + "format": "aiueoFullWidth", + "jc": "left", + "level": 4, + "levelRestart": null, + "paragraphProperty": Object { + "indent": Object { + "end": null, + "firstLineChars": null, + "hangingChars": null, + "specialIndent": Object { + "type": "hanging", + "val": 420, + }, + "start": 2100, + "startChars": null, + }, + "runProperty": Object {}, + "tabs": Array [], + }, + "pstyle": null, + "runProperty": Object {}, + "start": 1, + "suffix": "tab", + "text": "(%5)", + }, + Object { + "format": "decimalEnclosedCircle", + "jc": "left", + "level": 5, + "levelRestart": null, + "paragraphProperty": Object { + "indent": Object { + "end": null, + "firstLineChars": null, + "hangingChars": null, + "specialIndent": Object { + "type": "hanging", + "val": 420, + }, + "start": 2520, + "startChars": null, + }, + "runProperty": Object {}, + "tabs": Array [], + }, + "pstyle": null, + "runProperty": Object {}, + "start": 1, + "suffix": "tab", + "text": "%6", + }, + Object { + "format": "decimal", + "jc": "left", + "level": 6, + "levelRestart": null, + "paragraphProperty": Object { + "indent": Object { + "end": null, + "firstLineChars": null, + "hangingChars": null, + "specialIndent": Object { + "type": "hanging", + "val": 420, + }, + "start": 2940, + "startChars": null, + }, + "runProperty": Object {}, + "tabs": Array [], + }, + "pstyle": null, + "runProperty": Object {}, + "start": 1, + "suffix": "tab", + "text": "%7.", + }, + Object { + "format": "aiueoFullWidth", + "jc": "left", + "level": 7, + "levelRestart": null, + "paragraphProperty": Object { + "indent": Object { + "end": null, + "firstLineChars": null, + "hangingChars": null, + "specialIndent": Object { + "type": "hanging", + "val": 420, + }, + "start": 3360, + "startChars": null, + }, + "runProperty": Object {}, + "tabs": Array [], + }, + "pstyle": null, + "runProperty": Object {}, + "start": 1, + "suffix": "tab", + "text": "(%8)", + }, + Object { + "format": "decimalEnclosedCircle", + "jc": "left", + "level": 8, + "levelRestart": null, + "paragraphProperty": Object { + "indent": Object { + "end": null, + "firstLineChars": null, + "hangingChars": null, + "specialIndent": Object { + "type": "hanging", + "val": 420, + }, + "start": 3780, + "startChars": null, + }, + "runProperty": Object {}, + "tabs": Array [], + }, + "pstyle": null, + "runProperty": Object {}, + "start": 1, + "suffix": "tab", + "text": "%9", + }, + ], + "numStyleLink": null, + "styleLink": null, + }, + Object { + "id": 31, + "levels": Array [ + Object { + "format": "decimal", + "jc": "left", + "level": 0, + "levelRestart": null, + "paragraphProperty": Object { + "indent": Object { + "end": null, + "firstLineChars": null, + "hangingChars": null, + "specialIndent": Object { + "type": "hanging", + "val": 360, + }, + "start": 540, + "startChars": null, + }, + "runProperty": Object {}, + "tabs": Array [], + }, + "pstyle": null, + "runProperty": Object { + "fonts": Object { + "hint": "eastAsia", + }, + }, + "start": 1, + "suffix": "tab", + "text": "%1.", + }, + Object { + "format": "aiueoFullWidth", + "jc": "left", + "level": 1, + "levelRestart": null, + "paragraphProperty": Object { + "indent": Object { + "end": null, + "firstLineChars": null, + "hangingChars": null, + "specialIndent": Object { + "type": "hanging", + "val": 420, + }, + "start": 840, + "startChars": null, + }, + "runProperty": Object {}, + "tabs": Array [], + }, + "pstyle": null, + "runProperty": Object {}, + "start": 1, + "suffix": "tab", + "text": "(%2)", + }, + Object { + "format": "decimalEnclosedCircle", + "jc": "left", + "level": 2, + "levelRestart": null, + "paragraphProperty": Object { + "indent": Object { + "end": null, + "firstLineChars": null, + "hangingChars": null, + "specialIndent": Object { + "type": "hanging", + "val": 420, + }, + "start": 1260, + "startChars": null, + }, + "runProperty": Object {}, + "tabs": Array [], + }, + "pstyle": null, + "runProperty": Object {}, + "start": 1, + "suffix": "tab", + "text": "%3", + }, + Object { + "format": "decimal", + "jc": "left", + "level": 3, + "levelRestart": null, + "paragraphProperty": Object { + "indent": Object { + "end": null, + "firstLineChars": null, + "hangingChars": null, + "specialIndent": Object { + "type": "hanging", + "val": 420, + }, + "start": 1680, + "startChars": null, + }, + "runProperty": Object {}, + "tabs": Array [], + }, + "pstyle": null, + "runProperty": Object {}, + "start": 1, + "suffix": "tab", + "text": "%4.", + }, + Object { + "format": "aiueoFullWidth", + "jc": "left", + "level": 4, + "levelRestart": null, + "paragraphProperty": Object { + "indent": Object { + "end": null, + "firstLineChars": null, + "hangingChars": null, + "specialIndent": Object { + "type": "hanging", + "val": 420, + }, + "start": 2100, + "startChars": null, + }, + "runProperty": Object {}, + "tabs": Array [], + }, + "pstyle": null, + "runProperty": Object {}, + "start": 1, + "suffix": "tab", + "text": "(%5)", + }, + Object { + "format": "decimalEnclosedCircle", + "jc": "left", + "level": 5, + "levelRestart": null, + "paragraphProperty": Object { + "indent": Object { + "end": null, + "firstLineChars": null, + "hangingChars": null, + "specialIndent": Object { + "type": "hanging", + "val": 420, + }, + "start": 2520, + "startChars": null, + }, + "runProperty": Object {}, + "tabs": Array [], + }, + "pstyle": null, + "runProperty": Object {}, + "start": 1, + "suffix": "tab", + "text": "%6", + }, + Object { + "format": "decimal", + "jc": "left", + "level": 6, + "levelRestart": null, + "paragraphProperty": Object { + "indent": Object { + "end": null, + "firstLineChars": null, + "hangingChars": null, + "specialIndent": Object { + "type": "hanging", + "val": 420, + }, + "start": 2940, + "startChars": null, + }, + "runProperty": Object {}, + "tabs": Array [], + }, + "pstyle": null, + "runProperty": Object {}, + "start": 1, + "suffix": "tab", + "text": "%7.", + }, + Object { + "format": "aiueoFullWidth", + "jc": "left", + "level": 7, + "levelRestart": null, + "paragraphProperty": Object { + "indent": Object { + "end": null, + "firstLineChars": null, + "hangingChars": null, + "specialIndent": Object { + "type": "hanging", + "val": 420, + }, + "start": 3360, + "startChars": null, + }, + "runProperty": Object {}, + "tabs": Array [], + }, + "pstyle": null, + "runProperty": Object {}, + "start": 1, + "suffix": "tab", + "text": "(%8)", + }, + Object { + "format": "decimalEnclosedCircle", + "jc": "left", + "level": 8, + "levelRestart": null, + "paragraphProperty": Object { + "indent": Object { + "end": null, + "firstLineChars": null, + "hangingChars": null, + "specialIndent": Object { + "type": "hanging", + "val": 420, + }, + "start": 3780, + "startChars": null, + }, + "runProperty": Object {}, + "tabs": Array [], + }, + "pstyle": null, + "runProperty": Object {}, + "start": 1, + "suffix": "tab", + "text": "%9", + }, + ], + "numStyleLink": null, + "styleLink": null, + }, + Object { + "id": 32, + "levels": Array [ + Object { + "format": "decimal", + "jc": "left", + "level": 0, + "levelRestart": null, + "paragraphProperty": Object { + "indent": Object { + "end": null, + "firstLineChars": null, + "hangingChars": null, + "specialIndent": Object { + "type": "hanging", + "val": 360, + }, + "start": 540, + "startChars": null, + }, + "runProperty": Object {}, + "tabs": Array [], + }, + "pstyle": null, + "runProperty": Object { + "fonts": Object { + "hint": "eastAsia", + }, + }, + "start": 1, + "suffix": "tab", + "text": "%1.", + }, + Object { + "format": "decimal", + "jc": "left", + "level": 1, + "levelRestart": null, + "paragraphProperty": Object { + "indent": Object { + "end": null, + "firstLineChars": null, + "hangingChars": null, + "specialIndent": Object { + "type": "hanging", + "val": 360, + }, + "start": 360, + "startChars": null, + }, + "runProperty": Object {}, + "tabs": Array [], + }, + "pstyle": null, + "runProperty": Object { + "fonts": Object { + "hint": "eastAsia", + }, + }, + "start": 1, + "suffix": "tab", + "text": "%2.", + }, + Object { + "format": "decimalEnclosedCircle", + "jc": "left", + "level": 2, + "levelRestart": null, + "paragraphProperty": Object { + "indent": Object { + "end": null, + "firstLineChars": null, + "hangingChars": null, + "specialIndent": Object { + "type": "hanging", + "val": 420, + }, + "start": 840, + "startChars": null, + }, + "runProperty": Object {}, + "tabs": Array [], + }, + "pstyle": null, + "runProperty": Object {}, + "start": 1, + "suffix": "tab", + "text": "%3", + }, + Object { + "format": "decimal", + "jc": "left", + "level": 3, + "levelRestart": null, + "paragraphProperty": Object { + "indent": Object { + "end": null, + "firstLineChars": null, + "hangingChars": null, + "specialIndent": Object { + "type": "hanging", + "val": 420, + }, + "start": 1260, + "startChars": null, + }, + "runProperty": Object {}, + "tabs": Array [], + }, + "pstyle": null, + "runProperty": Object {}, + "start": 1, + "suffix": "tab", + "text": "%4.", + }, + Object { + "format": "aiueoFullWidth", + "jc": "left", + "level": 4, + "levelRestart": null, + "paragraphProperty": Object { + "indent": Object { + "end": null, + "firstLineChars": null, + "hangingChars": null, + "specialIndent": Object { + "type": "hanging", + "val": 420, + }, + "start": 1680, + "startChars": null, + }, + "runProperty": Object {}, + "tabs": Array [], + }, + "pstyle": null, + "runProperty": Object {}, + "start": 1, + "suffix": "tab", + "text": "(%5)", + }, + Object { + "format": "decimalEnclosedCircle", + "jc": "left", + "level": 5, + "levelRestart": null, + "paragraphProperty": Object { + "indent": Object { + "end": null, + "firstLineChars": null, + "hangingChars": null, + "specialIndent": Object { + "type": "hanging", + "val": 420, + }, + "start": 2100, + "startChars": null, + }, + "runProperty": Object {}, + "tabs": Array [], + }, + "pstyle": null, + "runProperty": Object {}, + "start": 1, + "suffix": "tab", + "text": "%6", + }, + Object { + "format": "decimal", + "jc": "left", + "level": 6, + "levelRestart": null, + "paragraphProperty": Object { + "indent": Object { + "end": null, + "firstLineChars": null, + "hangingChars": null, + "specialIndent": Object { + "type": "hanging", + "val": 420, + }, + "start": 2520, + "startChars": null, + }, + "runProperty": Object {}, + "tabs": Array [], + }, + "pstyle": null, + "runProperty": Object {}, + "start": 1, + "suffix": "tab", + "text": "%7.", + }, + Object { + "format": "aiueoFullWidth", + "jc": "left", + "level": 7, + "levelRestart": null, + "paragraphProperty": Object { + "indent": Object { + "end": null, + "firstLineChars": null, + "hangingChars": null, + "specialIndent": Object { + "type": "hanging", + "val": 420, + }, + "start": 2940, + "startChars": null, + }, + "runProperty": Object {}, + "tabs": Array [], + }, + "pstyle": null, + "runProperty": Object {}, + "start": 1, + "suffix": "tab", + "text": "(%8)", + }, + Object { + "format": "decimalEnclosedCircle", + "jc": "left", + "level": 8, + "levelRestart": null, + "paragraphProperty": Object { + "indent": Object { + "end": null, + "firstLineChars": null, + "hangingChars": null, + "specialIndent": Object { + "type": "hanging", + "val": 420, + }, + "start": 3360, + "startChars": null, + }, + "runProperty": Object {}, + "tabs": Array [], + }, + "pstyle": null, + "runProperty": Object {}, + "start": 1, + "suffix": "tab", + "text": "%9", + }, + ], + "numStyleLink": null, + "styleLink": null, + }, + Object { + "id": 33, + "levels": Array [ + Object { + "format": "decimal", + "jc": "left", + "level": 0, + "levelRestart": null, + "paragraphProperty": Object { + "indent": Object { + "end": null, + "firstLineChars": null, + "hangingChars": null, + "specialIndent": Object { + "type": "hanging", + "val": 360, + }, + "start": 540, + "startChars": null, + }, + "runProperty": Object {}, + "tabs": Array [], + }, + "pstyle": null, + "runProperty": Object { + "fonts": Object { + "hint": "eastAsia", + }, + }, + "start": 1, + "suffix": "tab", + "text": "%1.", + }, + Object { + "format": "aiueoFullWidth", + "jc": "left", + "level": 1, + "levelRestart": null, + "paragraphProperty": Object { + "indent": Object { + "end": null, + "firstLineChars": null, + "hangingChars": null, + "specialIndent": Object { + "type": "hanging", + "val": 420, + }, + "start": 840, + "startChars": null, + }, + "runProperty": Object {}, + "tabs": Array [], + }, + "pstyle": null, + "runProperty": Object {}, + "start": 1, + "suffix": "tab", + "text": "(%2)", + }, + Object { + "format": "decimalEnclosedCircle", + "jc": "left", + "level": 2, + "levelRestart": null, + "paragraphProperty": Object { + "indent": Object { + "end": null, + "firstLineChars": null, + "hangingChars": null, + "specialIndent": Object { + "type": "hanging", + "val": 420, + }, + "start": 1260, + "startChars": null, + }, + "runProperty": Object {}, + "tabs": Array [], + }, + "pstyle": null, + "runProperty": Object {}, + "start": 1, + "suffix": "tab", + "text": "%3", + }, + Object { + "format": "decimal", + "jc": "left", + "level": 3, + "levelRestart": null, + "paragraphProperty": Object { + "indent": Object { + "end": null, + "firstLineChars": null, + "hangingChars": null, + "specialIndent": Object { + "type": "hanging", + "val": 420, + }, + "start": 1680, + "startChars": null, + }, + "runProperty": Object {}, + "tabs": Array [], + }, + "pstyle": null, + "runProperty": Object {}, + "start": 1, + "suffix": "tab", + "text": "%4.", + }, + Object { + "format": "aiueoFullWidth", + "jc": "left", + "level": 4, + "levelRestart": null, + "paragraphProperty": Object { + "indent": Object { + "end": null, + "firstLineChars": null, + "hangingChars": null, + "specialIndent": Object { + "type": "hanging", + "val": 420, + }, + "start": 2100, + "startChars": null, + }, + "runProperty": Object {}, + "tabs": Array [], + }, + "pstyle": null, + "runProperty": Object {}, + "start": 1, + "suffix": "tab", + "text": "(%5)", + }, + Object { + "format": "decimalEnclosedCircle", + "jc": "left", + "level": 5, + "levelRestart": null, + "paragraphProperty": Object { + "indent": Object { + "end": null, + "firstLineChars": null, + "hangingChars": null, + "specialIndent": Object { + "type": "hanging", + "val": 420, + }, + "start": 2520, + "startChars": null, + }, + "runProperty": Object {}, + "tabs": Array [], + }, + "pstyle": null, + "runProperty": Object {}, + "start": 1, + "suffix": "tab", + "text": "%6", + }, + Object { + "format": "decimal", + "jc": "left", + "level": 6, + "levelRestart": null, + "paragraphProperty": Object { + "indent": Object { + "end": null, + "firstLineChars": null, + "hangingChars": null, + "specialIndent": Object { + "type": "hanging", + "val": 420, + }, + "start": 2940, + "startChars": null, + }, + "runProperty": Object {}, + "tabs": Array [], + }, + "pstyle": null, + "runProperty": Object {}, + "start": 1, + "suffix": "tab", + "text": "%7.", + }, + Object { + "format": "aiueoFullWidth", + "jc": "left", + "level": 7, + "levelRestart": null, + "paragraphProperty": Object { + "indent": Object { + "end": null, + "firstLineChars": null, + "hangingChars": null, + "specialIndent": Object { + "type": "hanging", + "val": 420, + }, + "start": 3360, + "startChars": null, + }, + "runProperty": Object {}, + "tabs": Array [], + }, + "pstyle": null, + "runProperty": Object {}, + "start": 1, + "suffix": "tab", + "text": "(%8)", + }, + Object { + "format": "decimalEnclosedCircle", + "jc": "left", + "level": 8, + "levelRestart": null, + "paragraphProperty": Object { + "indent": Object { + "end": null, + "firstLineChars": null, + "hangingChars": null, + "specialIndent": Object { + "type": "hanging", + "val": 420, + }, + "start": 3780, + "startChars": null, + }, + "runProperty": Object {}, + "tabs": Array [], + }, + "pstyle": null, + "runProperty": Object {}, + "start": 1, + "suffix": "tab", + "text": "%9", + }, + ], + "numStyleLink": null, + "styleLink": null, + }, + Object { + "id": 34, + "levels": Array [ + Object { + "format": "decimal", + "jc": "left", + "level": 0, + "levelRestart": null, + "paragraphProperty": Object { + "indent": Object { + "end": null, + "firstLineChars": null, + "hangingChars": null, + "specialIndent": Object { + "type": "hanging", + "val": 360, + }, + "start": 540, + "startChars": null, + }, + "runProperty": Object {}, + "tabs": Array [], + }, + "pstyle": null, + "runProperty": Object { + "fonts": Object { + "hint": "eastAsia", + }, + }, + "start": 1, + "suffix": "tab", + "text": "%1.", + }, + Object { + "format": "aiueoFullWidth", + "jc": "left", + "level": 1, + "levelRestart": null, + "paragraphProperty": Object { + "indent": Object { + "end": null, + "firstLineChars": null, + "hangingChars": null, + "specialIndent": Object { + "type": "hanging", + "val": 420, + }, + "start": 420, + "startChars": null, + }, + "runProperty": Object {}, + "tabs": Array [], + }, + "pstyle": null, + "runProperty": Object {}, + "start": 1, + "suffix": "tab", + "text": "(%2)", + }, + Object { + "format": "decimalEnclosedCircle", + "jc": "left", + "level": 2, + "levelRestart": null, + "paragraphProperty": Object { + "indent": Object { + "end": null, + "firstLineChars": null, + "hangingChars": null, + "specialIndent": Object { + "type": "hanging", + "val": 420, + }, + "start": 840, + "startChars": null, + }, + "runProperty": Object {}, + "tabs": Array [], + }, + "pstyle": null, + "runProperty": Object {}, + "start": 1, + "suffix": "tab", + "text": "%3", + }, + Object { + "format": "decimal", + "jc": "left", + "level": 3, + "levelRestart": null, + "paragraphProperty": Object { + "indent": Object { + "end": null, + "firstLineChars": null, + "hangingChars": null, + "specialIndent": Object { + "type": "hanging", + "val": 420, + }, + "start": 1260, + "startChars": null, + }, + "runProperty": Object {}, + "tabs": Array [], + }, + "pstyle": null, + "runProperty": Object {}, + "start": 1, + "suffix": "tab", + "text": "%4.", + }, + Object { + "format": "aiueoFullWidth", + "jc": "left", + "level": 4, + "levelRestart": null, + "paragraphProperty": Object { + "indent": Object { + "end": null, + "firstLineChars": null, + "hangingChars": null, + "specialIndent": Object { + "type": "hanging", + "val": 420, + }, + "start": 1680, + "startChars": null, + }, + "runProperty": Object {}, + "tabs": Array [], + }, + "pstyle": null, + "runProperty": Object {}, + "start": 1, + "suffix": "tab", + "text": "(%5)", + }, + Object { + "format": "decimalEnclosedCircle", + "jc": "left", + "level": 5, + "levelRestart": null, + "paragraphProperty": Object { + "indent": Object { + "end": null, + "firstLineChars": null, + "hangingChars": null, + "specialIndent": Object { + "type": "hanging", + "val": 420, + }, + "start": 2100, + "startChars": null, + }, + "runProperty": Object {}, + "tabs": Array [], + }, + "pstyle": null, + "runProperty": Object {}, + "start": 1, + "suffix": "tab", + "text": "%6", + }, + Object { + "format": "decimal", + "jc": "left", + "level": 6, + "levelRestart": null, + "paragraphProperty": Object { + "indent": Object { + "end": null, + "firstLineChars": null, + "hangingChars": null, + "specialIndent": Object { + "type": "hanging", + "val": 420, + }, + "start": 2520, + "startChars": null, + }, + "runProperty": Object {}, + "tabs": Array [], + }, + "pstyle": null, + "runProperty": Object {}, + "start": 1, + "suffix": "tab", + "text": "%7.", + }, + Object { + "format": "aiueoFullWidth", + "jc": "left", + "level": 7, + "levelRestart": null, + "paragraphProperty": Object { + "indent": Object { + "end": null, + "firstLineChars": null, + "hangingChars": null, + "specialIndent": Object { + "type": "hanging", + "val": 420, + }, + "start": 2940, + "startChars": null, + }, + "runProperty": Object {}, + "tabs": Array [], + }, + "pstyle": null, + "runProperty": Object {}, + "start": 1, + "suffix": "tab", + "text": "(%8)", + }, + Object { + "format": "decimalEnclosedCircle", + "jc": "left", + "level": 8, + "levelRestart": null, + "paragraphProperty": Object { + "indent": Object { + "end": null, + "firstLineChars": null, + "hangingChars": null, + "specialIndent": Object { + "type": "hanging", + "val": 420, + }, + "start": 3360, + "startChars": null, + }, + "runProperty": Object {}, + "tabs": Array [], + }, + "pstyle": null, + "runProperty": Object {}, + "start": 1, + "suffix": "tab", + "text": "%9", + }, + ], + "numStyleLink": null, + "styleLink": null, + }, + Object { + "id": 35, + "levels": Array [ + Object { + "format": "lowerLetter", + "jc": "left", + "level": 0, + "levelRestart": null, + "paragraphProperty": Object { + "indent": Object { + "end": null, + "firstLineChars": null, + "hangingChars": null, + "specialIndent": Object { + "type": "hanging", + "val": 454, + }, + "start": 1588, + "startChars": null, + }, + "runProperty": Object {}, + "tabs": Array [], + }, + "pstyle": null, + "runProperty": Object { + "bold": false, + "boldCs": false, + "fonts": Object { + "ascii": "Times New Roman", + "cs": "Times New Roman", + "hiAnsi": "Times New Roman", + "hint": "default", + }, + "italic": false, + "italicCs": false, + "sz": 24, + "szCs": 24, + "underline": "none", + }, + "start": 1, + "suffix": "tab", + "text": "(%1)", + }, + Object { + "format": "aiueoFullWidth", + "jc": "left", + "level": 1, + "levelRestart": null, + "paragraphProperty": Object { + "indent": Object { + "end": null, + "firstLineChars": null, + "hangingChars": null, + "specialIndent": Object { + "type": "hanging", + "val": 420, + }, + "start": 840, + "startChars": null, + }, + "runProperty": Object {}, + "tabs": Array [], + }, + "pstyle": null, + "runProperty": Object {}, + "start": 1, + "suffix": "tab", + "text": "(%2)", + }, + Object { + "format": "decimalEnclosedCircle", + "jc": "left", + "level": 2, + "levelRestart": null, + "paragraphProperty": Object { + "indent": Object { + "end": null, + "firstLineChars": null, + "hangingChars": null, + "specialIndent": Object { + "type": "hanging", + "val": 420, + }, + "start": 1260, + "startChars": null, + }, + "runProperty": Object {}, + "tabs": Array [], + }, + "pstyle": null, + "runProperty": Object {}, + "start": 1, + "suffix": "tab", + "text": "%3", + }, + Object { + "format": "decimal", + "jc": "left", + "level": 3, + "levelRestart": null, + "paragraphProperty": Object { + "indent": Object { + "end": null, + "firstLineChars": null, + "hangingChars": null, + "specialIndent": Object { + "type": "hanging", + "val": 420, + }, + "start": 1680, + "startChars": null, + }, + "runProperty": Object {}, + "tabs": Array [], + }, + "pstyle": null, + "runProperty": Object {}, + "start": 1, + "suffix": "tab", + "text": "%4.", + }, + Object { + "format": "aiueoFullWidth", + "jc": "left", + "level": 4, + "levelRestart": null, + "paragraphProperty": Object { + "indent": Object { + "end": null, + "firstLineChars": null, + "hangingChars": null, + "specialIndent": Object { + "type": "hanging", + "val": 420, + }, + "start": 2100, + "startChars": null, + }, + "runProperty": Object {}, + "tabs": Array [], + }, + "pstyle": null, + "runProperty": Object {}, + "start": 1, + "suffix": "tab", + "text": "(%5)", + }, + Object { + "format": "decimalEnclosedCircle", + "jc": "left", + "level": 5, + "levelRestart": null, + "paragraphProperty": Object { + "indent": Object { + "end": null, + "firstLineChars": null, + "hangingChars": null, + "specialIndent": Object { + "type": "hanging", + "val": 420, + }, + "start": 2520, + "startChars": null, + }, + "runProperty": Object {}, + "tabs": Array [], + }, + "pstyle": null, + "runProperty": Object {}, + "start": 1, + "suffix": "tab", + "text": "%6", + }, + Object { + "format": "decimal", + "jc": "left", + "level": 6, + "levelRestart": null, + "paragraphProperty": Object { + "indent": Object { + "end": null, + "firstLineChars": null, + "hangingChars": null, + "specialIndent": Object { + "type": "hanging", + "val": 420, + }, + "start": 2940, + "startChars": null, + }, + "runProperty": Object {}, + "tabs": Array [], + }, + "pstyle": null, + "runProperty": Object {}, + "start": 1, + "suffix": "tab", + "text": "%7.", + }, + Object { + "format": "aiueoFullWidth", + "jc": "left", + "level": 7, + "levelRestart": null, + "paragraphProperty": Object { + "indent": Object { + "end": null, + "firstLineChars": null, + "hangingChars": null, + "specialIndent": Object { + "type": "hanging", + "val": 420, + }, + "start": 3360, + "startChars": null, + }, + "runProperty": Object {}, + "tabs": Array [], + }, + "pstyle": null, + "runProperty": Object {}, + "start": 1, + "suffix": "tab", + "text": "(%8)", + }, + Object { + "format": "decimalEnclosedCircle", + "jc": "left", + "level": 8, + "levelRestart": null, + "paragraphProperty": Object { + "indent": Object { + "end": null, + "firstLineChars": null, + "hangingChars": null, + "specialIndent": Object { + "type": "hanging", + "val": 420, + }, + "start": 3780, + "startChars": null, + }, + "runProperty": Object {}, + "tabs": Array [], + }, + "pstyle": null, + "runProperty": Object {}, + "start": 1, + "suffix": "tab", + "text": "%9", + }, + ], + "numStyleLink": null, + "styleLink": null, + }, + Object { + "id": 36, + "levels": Array [ + Object { + "format": "decimal", + "jc": "left", + "level": 0, + "levelRestart": null, + "paragraphProperty": Object { + "indent": Object { + "end": null, + "firstLineChars": null, + "hangingChars": null, + "specialIndent": Object { + "type": "hanging", + "val": 360, + }, + "start": 540, + "startChars": null, + }, + "runProperty": Object {}, + "tabs": Array [], + }, + "pstyle": null, + "runProperty": Object { + "fonts": Object { + "hint": "eastAsia", + }, + }, + "start": 1, + "suffix": "tab", + "text": "%1.", + }, + Object { + "format": "aiueoFullWidth", + "jc": "left", + "level": 1, + "levelRestart": null, + "paragraphProperty": Object { + "indent": Object { + "end": null, + "firstLineChars": null, + "hangingChars": null, + "specialIndent": Object { + "type": "hanging", + "val": 420, + }, + "start": 1020, + "startChars": null, + }, + "runProperty": Object {}, + "tabs": Array [], + }, + "pstyle": null, + "runProperty": Object {}, + "start": 1, + "suffix": "tab", + "text": "(%2)", + }, + Object { + "format": "decimalEnclosedCircle", + "jc": "left", + "level": 2, + "levelRestart": null, + "paragraphProperty": Object { + "indent": Object { + "end": null, + "firstLineChars": null, + "hangingChars": null, + "specialIndent": Object { + "type": "hanging", + "val": 420, + }, + "start": 1440, + "startChars": null, + }, + "runProperty": Object {}, + "tabs": Array [], + }, + "pstyle": null, + "runProperty": Object {}, + "start": 1, + "suffix": "tab", + "text": "%3", + }, + Object { + "format": "decimal", + "jc": "left", + "level": 3, + "levelRestart": null, + "paragraphProperty": Object { + "indent": Object { + "end": null, + "firstLineChars": null, + "hangingChars": null, + "specialIndent": Object { + "type": "hanging", + "val": 420, + }, + "start": 1860, + "startChars": null, + }, + "runProperty": Object {}, + "tabs": Array [], + }, + "pstyle": null, + "runProperty": Object {}, + "start": 1, + "suffix": "tab", + "text": "%4.", + }, + Object { + "format": "aiueoFullWidth", + "jc": "left", + "level": 4, + "levelRestart": null, + "paragraphProperty": Object { + "indent": Object { + "end": null, + "firstLineChars": null, + "hangingChars": null, + "specialIndent": Object { + "type": "hanging", + "val": 420, + }, + "start": 2280, + "startChars": null, + }, + "runProperty": Object {}, + "tabs": Array [], + }, + "pstyle": null, + "runProperty": Object {}, + "start": 1, + "suffix": "tab", + "text": "(%5)", + }, + Object { + "format": "decimalEnclosedCircle", + "jc": "left", + "level": 5, + "levelRestart": null, + "paragraphProperty": Object { + "indent": Object { + "end": null, + "firstLineChars": null, + "hangingChars": null, + "specialIndent": Object { + "type": "hanging", + "val": 420, + }, + "start": 2700, + "startChars": null, + }, + "runProperty": Object {}, + "tabs": Array [], + }, + "pstyle": null, + "runProperty": Object {}, + "start": 1, + "suffix": "tab", + "text": "%6", + }, + Object { + "format": "decimal", + "jc": "left", + "level": 6, + "levelRestart": null, + "paragraphProperty": Object { + "indent": Object { + "end": null, + "firstLineChars": null, + "hangingChars": null, + "specialIndent": Object { + "type": "hanging", + "val": 420, + }, + "start": 3120, + "startChars": null, + }, + "runProperty": Object {}, + "tabs": Array [], + }, + "pstyle": null, + "runProperty": Object {}, + "start": 1, + "suffix": "tab", + "text": "%7.", + }, + Object { + "format": "aiueoFullWidth", + "jc": "left", + "level": 7, + "levelRestart": null, + "paragraphProperty": Object { + "indent": Object { + "end": null, + "firstLineChars": null, + "hangingChars": null, + "specialIndent": Object { + "type": "hanging", + "val": 420, + }, + "start": 3540, + "startChars": null, + }, + "runProperty": Object {}, + "tabs": Array [], + }, + "pstyle": null, + "runProperty": Object {}, + "start": 1, + "suffix": "tab", + "text": "(%8)", + }, + Object { + "format": "decimalEnclosedCircle", + "jc": "left", + "level": 8, + "levelRestart": null, + "paragraphProperty": Object { + "indent": Object { + "end": null, + "firstLineChars": null, + "hangingChars": null, + "specialIndent": Object { + "type": "hanging", + "val": 420, + }, + "start": 3960, + "startChars": null, + }, + "runProperty": Object {}, + "tabs": Array [], + }, + "pstyle": null, + "runProperty": Object {}, + "start": 1, + "suffix": "tab", + "text": "%9", + }, + ], + "numStyleLink": null, + "styleLink": null, + }, + Object { + "id": 37, + "levels": Array [ + Object { + "format": "lowerLetter", + "jc": "left", + "level": 0, + "levelRestart": null, + "paragraphProperty": Object { + "indent": Object { + "end": null, + "firstLineChars": null, + "hangingChars": null, + "specialIndent": Object { + "type": "hanging", + "val": 454, + }, + "start": 1588, + "startChars": null, + }, + "runProperty": Object {}, + "tabs": Array [], + }, + "pstyle": null, + "runProperty": Object { + "bold": false, + "boldCs": false, + "fonts": Object { + "ascii": "Times New Roman", + "cs": "Times New Roman", + "hiAnsi": "Times New Roman", + "hint": "default", + }, + "italic": false, + "italicCs": false, + "sz": 24, + "szCs": 24, + "underline": "none", + }, + "start": 1, + "suffix": "tab", + "text": "(%1)", + }, + Object { + "format": "aiueoFullWidth", + "jc": "left", + "level": 1, + "levelRestart": null, + "paragraphProperty": Object { + "indent": Object { + "end": null, + "firstLineChars": null, + "hangingChars": null, + "specialIndent": Object { + "type": "hanging", + "val": 420, + }, + "start": 840, + "startChars": null, + }, + "runProperty": Object {}, + "tabs": Array [], + }, + "pstyle": null, + "runProperty": Object {}, + "start": 1, + "suffix": "tab", + "text": "(%2)", + }, + Object { + "format": "decimalEnclosedCircle", + "jc": "left", + "level": 2, + "levelRestart": null, + "paragraphProperty": Object { + "indent": Object { + "end": null, + "firstLineChars": null, + "hangingChars": null, + "specialIndent": Object { + "type": "hanging", + "val": 420, + }, + "start": 1260, + "startChars": null, + }, + "runProperty": Object {}, + "tabs": Array [], + }, + "pstyle": null, + "runProperty": Object {}, + "start": 1, + "suffix": "tab", + "text": "%3", + }, + Object { + "format": "decimal", + "jc": "left", + "level": 3, + "levelRestart": null, + "paragraphProperty": Object { + "indent": Object { + "end": null, + "firstLineChars": null, + "hangingChars": null, + "specialIndent": Object { + "type": "hanging", + "val": 420, + }, + "start": 1680, + "startChars": null, + }, + "runProperty": Object {}, + "tabs": Array [], + }, + "pstyle": null, + "runProperty": Object {}, + "start": 1, + "suffix": "tab", + "text": "%4.", + }, + Object { + "format": "aiueoFullWidth", + "jc": "left", + "level": 4, + "levelRestart": null, + "paragraphProperty": Object { + "indent": Object { + "end": null, + "firstLineChars": null, + "hangingChars": null, + "specialIndent": Object { + "type": "hanging", + "val": 420, + }, + "start": 2100, + "startChars": null, + }, + "runProperty": Object {}, + "tabs": Array [], + }, + "pstyle": null, + "runProperty": Object {}, + "start": 1, + "suffix": "tab", + "text": "(%5)", + }, + Object { + "format": "decimalEnclosedCircle", + "jc": "left", + "level": 5, + "levelRestart": null, + "paragraphProperty": Object { + "indent": Object { + "end": null, + "firstLineChars": null, + "hangingChars": null, + "specialIndent": Object { + "type": "hanging", + "val": 420, + }, + "start": 2520, + "startChars": null, + }, + "runProperty": Object {}, + "tabs": Array [], + }, + "pstyle": null, + "runProperty": Object {}, + "start": 1, + "suffix": "tab", + "text": "%6", + }, + Object { + "format": "decimal", + "jc": "left", + "level": 6, + "levelRestart": null, + "paragraphProperty": Object { + "indent": Object { + "end": null, + "firstLineChars": null, + "hangingChars": null, + "specialIndent": Object { + "type": "hanging", + "val": 420, + }, + "start": 2940, + "startChars": null, + }, + "runProperty": Object {}, + "tabs": Array [], + }, + "pstyle": null, + "runProperty": Object {}, + "start": 1, + "suffix": "tab", + "text": "%7.", + }, + Object { + "format": "aiueoFullWidth", + "jc": "left", + "level": 7, + "levelRestart": null, + "paragraphProperty": Object { + "indent": Object { + "end": null, + "firstLineChars": null, + "hangingChars": null, + "specialIndent": Object { + "type": "hanging", + "val": 420, + }, + "start": 3360, + "startChars": null, + }, + "runProperty": Object {}, + "tabs": Array [], + }, + "pstyle": null, + "runProperty": Object {}, + "start": 1, + "suffix": "tab", + "text": "(%8)", + }, + Object { + "format": "decimalEnclosedCircle", + "jc": "left", + "level": 8, + "levelRestart": null, + "paragraphProperty": Object { + "indent": Object { + "end": null, + "firstLineChars": null, + "hangingChars": null, + "specialIndent": Object { + "type": "hanging", + "val": 420, + }, + "start": 3780, + "startChars": null, + }, + "runProperty": Object {}, + "tabs": Array [], + }, + "pstyle": null, + "runProperty": Object {}, + "start": 1, + "suffix": "tab", + "text": "%9", + }, + ], + "numStyleLink": null, + "styleLink": null, + }, + Object { + "id": 38, + "levels": Array [ + Object { + "format": "bullet", + "jc": "left", + "level": 0, + "levelRestart": null, + "paragraphProperty": Object { + "indent": Object { + "end": null, + "firstLineChars": null, + "hangingChars": null, + "specialIndent": Object { + "type": "hanging", + "val": 420, + }, + "start": 2126, + "startChars": null, + }, + "runProperty": Object {}, + "tabs": Array [], + }, + "pstyle": null, + "runProperty": Object { + "fonts": Object { + "ascii": "Wingdings", + "hiAnsi": "Wingdings", + "hint": "default", + }, + }, + "start": 1, + "suffix": "tab", + "text": "", + }, + Object { + "format": "bullet", + "jc": "left", + "level": 1, + "levelRestart": null, + "paragraphProperty": Object { + "indent": Object { + "end": null, + "firstLineChars": null, + "hangingChars": null, + "specialIndent": Object { + "type": "hanging", + "val": 420, + }, + "start": 2546, + "startChars": null, + }, + "runProperty": Object {}, + "tabs": Array [], + }, + "pstyle": null, + "runProperty": Object { + "fonts": Object { + "ascii": "Wingdings", + "hiAnsi": "Wingdings", + "hint": "default", + }, + }, + "start": 1, + "suffix": "tab", + "text": "", + }, + Object { + "format": "bullet", + "jc": "left", + "level": 2, + "levelRestart": null, + "paragraphProperty": Object { + "indent": Object { + "end": null, + "firstLineChars": null, + "hangingChars": null, + "specialIndent": Object { + "type": "hanging", + "val": 420, + }, + "start": 2966, + "startChars": null, + }, + "runProperty": Object {}, + "tabs": Array [], + }, + "pstyle": null, + "runProperty": Object { + "fonts": Object { + "ascii": "Wingdings", + "hiAnsi": "Wingdings", + "hint": "default", + }, + }, + "start": 1, + "suffix": "tab", + "text": "", + }, + Object { + "format": "bullet", + "jc": "left", + "level": 3, + "levelRestart": null, + "paragraphProperty": Object { + "indent": Object { + "end": null, + "firstLineChars": null, + "hangingChars": null, + "specialIndent": Object { + "type": "hanging", + "val": 420, + }, + "start": 3386, + "startChars": null, + }, + "runProperty": Object {}, + "tabs": Array [], + }, + "pstyle": null, + "runProperty": Object { + "fonts": Object { + "ascii": "Wingdings", + "hiAnsi": "Wingdings", + "hint": "default", + }, + }, + "start": 1, + "suffix": "tab", + "text": "", + }, + Object { + "format": "bullet", + "jc": "left", + "level": 4, + "levelRestart": null, + "paragraphProperty": Object { + "indent": Object { + "end": null, + "firstLineChars": null, + "hangingChars": null, + "specialIndent": Object { + "type": "hanging", + "val": 420, + }, + "start": 3806, + "startChars": null, + }, + "runProperty": Object {}, + "tabs": Array [], + }, + "pstyle": null, + "runProperty": Object { + "fonts": Object { + "ascii": "Wingdings", + "hiAnsi": "Wingdings", + "hint": "default", + }, + }, + "start": 1, + "suffix": "tab", + "text": "", + }, + Object { + "format": "bullet", + "jc": "left", + "level": 5, + "levelRestart": null, + "paragraphProperty": Object { + "indent": Object { + "end": null, + "firstLineChars": null, + "hangingChars": null, + "specialIndent": Object { + "type": "hanging", + "val": 420, + }, + "start": 4226, + "startChars": null, + }, + "runProperty": Object {}, + "tabs": Array [], + }, + "pstyle": null, + "runProperty": Object { + "fonts": Object { + "ascii": "Wingdings", + "hiAnsi": "Wingdings", + "hint": "default", + }, + }, + "start": 1, + "suffix": "tab", + "text": "", + }, + Object { + "format": "bullet", + "jc": "left", + "level": 6, + "levelRestart": null, + "paragraphProperty": Object { + "indent": Object { + "end": null, + "firstLineChars": null, + "hangingChars": null, + "specialIndent": Object { + "type": "hanging", + "val": 420, + }, + "start": 4646, + "startChars": null, + }, + "runProperty": Object {}, + "tabs": Array [], + }, + "pstyle": null, + "runProperty": Object { + "fonts": Object { + "ascii": "Wingdings", + "hiAnsi": "Wingdings", + "hint": "default", + }, + }, + "start": 1, + "suffix": "tab", + "text": "", + }, + Object { + "format": "bullet", + "jc": "left", + "level": 7, + "levelRestart": null, + "paragraphProperty": Object { + "indent": Object { + "end": null, + "firstLineChars": null, + "hangingChars": null, + "specialIndent": Object { + "type": "hanging", + "val": 420, + }, + "start": 5066, + "startChars": null, + }, + "runProperty": Object {}, + "tabs": Array [], + }, + "pstyle": null, + "runProperty": Object { + "fonts": Object { + "ascii": "Wingdings", + "hiAnsi": "Wingdings", + "hint": "default", + }, + }, + "start": 1, + "suffix": "tab", + "text": "", + }, + Object { + "format": "bullet", + "jc": "left", + "level": 8, + "levelRestart": null, + "paragraphProperty": Object { + "indent": Object { + "end": null, + "firstLineChars": null, + "hangingChars": null, + "specialIndent": Object { + "type": "hanging", + "val": 420, + }, + "start": 5486, + "startChars": null, + }, + "runProperty": Object {}, + "tabs": Array [], + }, + "pstyle": null, + "runProperty": Object { + "fonts": Object { + "ascii": "Wingdings", + "hiAnsi": "Wingdings", + "hint": "default", + }, + }, + "start": 1, + "suffix": "tab", + "text": "", + }, + ], + "numStyleLink": null, + "styleLink": null, + }, + Object { + "id": 39, + "levels": Array [ + Object { + "format": "decimal", + "jc": "left", + "level": 0, + "levelRestart": null, + "paragraphProperty": Object { + "indent": Object { + "end": null, + "firstLineChars": null, + "hangingChars": null, + "specialIndent": Object { + "type": "hanging", + "val": 360, + }, + "start": 540, + "startChars": null, + }, + "runProperty": Object {}, + "tabs": Array [], + }, + "pstyle": null, + "runProperty": Object { + "fonts": Object { + "hint": "eastAsia", + }, + }, + "start": 1, + "suffix": "tab", + "text": "%1.", + }, + Object { + "format": "aiueoFullWidth", + "jc": "left", + "level": 1, + "levelRestart": null, + "paragraphProperty": Object { + "indent": Object { + "end": null, + "firstLineChars": null, + "hangingChars": null, + "specialIndent": Object { + "type": "hanging", + "val": 420, + }, + "start": 420, + "startChars": null, + }, + "runProperty": Object {}, + "tabs": Array [], + }, + "pstyle": null, + "runProperty": Object {}, + "start": 1, + "suffix": "tab", + "text": "(%2)", + }, + Object { + "format": "decimalEnclosedCircle", + "jc": "left", + "level": 2, + "levelRestart": null, + "paragraphProperty": Object { + "indent": Object { + "end": null, + "firstLineChars": null, + "hangingChars": null, + "specialIndent": Object { + "type": "hanging", + "val": 420, + }, + "start": 840, + "startChars": null, + }, + "runProperty": Object {}, + "tabs": Array [], + }, + "pstyle": null, + "runProperty": Object {}, + "start": 1, + "suffix": "tab", + "text": "%3", + }, + Object { + "format": "decimal", + "jc": "left", + "level": 3, + "levelRestart": null, + "paragraphProperty": Object { + "indent": Object { + "end": null, + "firstLineChars": null, + "hangingChars": null, + "specialIndent": Object { + "type": "hanging", + "val": 420, + }, + "start": 1260, + "startChars": null, + }, + "runProperty": Object {}, + "tabs": Array [], + }, + "pstyle": null, + "runProperty": Object {}, + "start": 1, + "suffix": "tab", + "text": "%4.", + }, + Object { + "format": "aiueoFullWidth", + "jc": "left", + "level": 4, + "levelRestart": null, + "paragraphProperty": Object { + "indent": Object { + "end": null, + "firstLineChars": null, + "hangingChars": null, + "specialIndent": Object { + "type": "hanging", + "val": 420, + }, + "start": 1680, + "startChars": null, + }, + "runProperty": Object {}, + "tabs": Array [], + }, + "pstyle": null, + "runProperty": Object {}, + "start": 1, + "suffix": "tab", + "text": "(%5)", + }, + Object { + "format": "decimalEnclosedCircle", + "jc": "left", + "level": 5, + "levelRestart": null, + "paragraphProperty": Object { + "indent": Object { + "end": null, + "firstLineChars": null, + "hangingChars": null, + "specialIndent": Object { + "type": "hanging", + "val": 420, + }, + "start": 2100, + "startChars": null, + }, + "runProperty": Object {}, + "tabs": Array [], + }, + "pstyle": null, + "runProperty": Object {}, + "start": 1, + "suffix": "tab", + "text": "%6", + }, + Object { + "format": "decimal", + "jc": "left", + "level": 6, + "levelRestart": null, + "paragraphProperty": Object { + "indent": Object { + "end": null, + "firstLineChars": null, + "hangingChars": null, + "specialIndent": Object { + "type": "hanging", + "val": 420, + }, + "start": 2520, + "startChars": null, + }, + "runProperty": Object {}, + "tabs": Array [], + }, + "pstyle": null, + "runProperty": Object {}, + "start": 1, + "suffix": "tab", + "text": "%7.", + }, + Object { + "format": "aiueoFullWidth", + "jc": "left", + "level": 7, + "levelRestart": null, + "paragraphProperty": Object { + "indent": Object { + "end": null, + "firstLineChars": null, + "hangingChars": null, + "specialIndent": Object { + "type": "hanging", + "val": 420, + }, + "start": 2940, + "startChars": null, + }, + "runProperty": Object {}, + "tabs": Array [], + }, + "pstyle": null, + "runProperty": Object {}, + "start": 1, + "suffix": "tab", + "text": "(%8)", + }, + Object { + "format": "decimalEnclosedCircle", + "jc": "left", + "level": 8, + "levelRestart": null, + "paragraphProperty": Object { + "indent": Object { + "end": null, + "firstLineChars": null, + "hangingChars": null, + "specialIndent": Object { + "type": "hanging", + "val": 420, + }, + "start": 3360, + "startChars": null, + }, + "runProperty": Object {}, + "tabs": Array [], + }, + "pstyle": null, + "runProperty": Object {}, + "start": 1, + "suffix": "tab", + "text": "%9", + }, + ], + "numStyleLink": null, + "styleLink": null, + }, + Object { + "id": 40, + "levels": Array [ + Object { + "format": "decimal", + "jc": "left", + "level": 0, + "levelRestart": null, + "paragraphProperty": Object { + "indent": Object { + "end": null, + "firstLineChars": null, + "hangingChars": null, + "specialIndent": Object { + "type": "hanging", + "val": 360, + }, + "start": 540, + "startChars": null, + }, + "runProperty": Object {}, + "tabs": Array [], + }, + "pstyle": null, + "runProperty": Object { + "fonts": Object { + "hint": "eastAsia", + }, + }, + "start": 1, + "suffix": "tab", + "text": "%1.", + }, + Object { + "format": "aiueoFullWidth", + "jc": "left", + "level": 1, + "levelRestart": null, + "paragraphProperty": Object { + "indent": Object { + "end": null, + "firstLineChars": null, + "hangingChars": null, + "specialIndent": Object { + "type": "hanging", + "val": 420, + }, + "start": 840, + "startChars": null, + }, + "runProperty": Object {}, + "tabs": Array [], + }, + "pstyle": null, + "runProperty": Object {}, + "start": 1, + "suffix": "tab", + "text": "(%2)", + }, + Object { + "format": "decimalEnclosedCircle", + "jc": "left", + "level": 2, + "levelRestart": null, + "paragraphProperty": Object { + "indent": Object { + "end": null, + "firstLineChars": null, + "hangingChars": null, + "specialIndent": Object { + "type": "hanging", + "val": 420, + }, + "start": 1260, + "startChars": null, + }, + "runProperty": Object {}, + "tabs": Array [], + }, + "pstyle": null, + "runProperty": Object {}, + "start": 1, + "suffix": "tab", + "text": "%3", + }, + Object { + "format": "decimal", + "jc": "left", + "level": 3, + "levelRestart": null, + "paragraphProperty": Object { + "indent": Object { + "end": null, + "firstLineChars": null, + "hangingChars": null, + "specialIndent": Object { + "type": "hanging", + "val": 420, + }, + "start": 1680, + "startChars": null, + }, + "runProperty": Object {}, + "tabs": Array [], + }, + "pstyle": null, + "runProperty": Object {}, + "start": 1, + "suffix": "tab", + "text": "%4.", + }, + Object { + "format": "aiueoFullWidth", + "jc": "left", + "level": 4, + "levelRestart": null, + "paragraphProperty": Object { + "indent": Object { + "end": null, + "firstLineChars": null, + "hangingChars": null, + "specialIndent": Object { + "type": "hanging", + "val": 420, + }, + "start": 2100, + "startChars": null, + }, + "runProperty": Object {}, + "tabs": Array [], + }, + "pstyle": null, + "runProperty": Object {}, + "start": 1, + "suffix": "tab", + "text": "(%5)", + }, + Object { + "format": "decimalEnclosedCircle", + "jc": "left", + "level": 5, + "levelRestart": null, + "paragraphProperty": Object { + "indent": Object { + "end": null, + "firstLineChars": null, + "hangingChars": null, + "specialIndent": Object { + "type": "hanging", + "val": 420, + }, + "start": 2520, + "startChars": null, + }, + "runProperty": Object {}, + "tabs": Array [], + }, + "pstyle": null, + "runProperty": Object {}, + "start": 1, + "suffix": "tab", + "text": "%6", + }, + Object { + "format": "decimal", + "jc": "left", + "level": 6, + "levelRestart": null, + "paragraphProperty": Object { + "indent": Object { + "end": null, + "firstLineChars": null, + "hangingChars": null, + "specialIndent": Object { + "type": "hanging", + "val": 420, + }, + "start": 2940, + "startChars": null, + }, + "runProperty": Object {}, + "tabs": Array [], + }, + "pstyle": null, + "runProperty": Object {}, + "start": 1, + "suffix": "tab", + "text": "%7.", + }, + Object { + "format": "aiueoFullWidth", + "jc": "left", + "level": 7, + "levelRestart": null, + "paragraphProperty": Object { + "indent": Object { + "end": null, + "firstLineChars": null, + "hangingChars": null, + "specialIndent": Object { + "type": "hanging", + "val": 420, + }, + "start": 3360, + "startChars": null, + }, + "runProperty": Object {}, + "tabs": Array [], + }, + "pstyle": null, + "runProperty": Object {}, + "start": 1, + "suffix": "tab", + "text": "(%8)", + }, + Object { + "format": "decimalEnclosedCircle", + "jc": "left", + "level": 8, + "levelRestart": null, + "paragraphProperty": Object { + "indent": Object { + "end": null, + "firstLineChars": null, + "hangingChars": null, + "specialIndent": Object { + "type": "hanging", + "val": 420, + }, + "start": 3780, + "startChars": null, + }, + "runProperty": Object {}, + "tabs": Array [], + }, + "pstyle": null, + "runProperty": Object {}, + "start": 1, + "suffix": "tab", + "text": "%9", + }, + ], + "numStyleLink": null, + "styleLink": null, + }, + Object { + "id": 41, + "levels": Array [ + Object { + "format": "lowerLetter", + "jc": "left", + "level": 0, + "levelRestart": null, + "paragraphProperty": Object { + "indent": Object { + "end": null, + "firstLineChars": null, + "hangingChars": null, + "specialIndent": Object { + "type": "hanging", + "val": 454, + }, + "start": 1588, + "startChars": null, + }, + "runProperty": Object {}, + "tabs": Array [], + }, + "pstyle": null, + "runProperty": Object { + "bold": false, + "boldCs": false, + "fonts": Object { + "ascii": "Times New Roman", + "hiAnsi": "Times New Roman", + "hint": "default", + }, + "italic": false, + "italicCs": false, + "sz": 24, + "szCs": 24, + "underline": "none", + }, + "start": 1, + "suffix": "tab", + "text": "(%1)", + }, + Object { + "format": "lowerLetter", + "jc": "left", + "level": 1, + "levelRestart": null, + "paragraphProperty": Object { + "indent": Object { + "end": null, + "firstLineChars": null, + "hangingChars": null, + "specialIndent": Object { + "type": "hanging", + "val": 454, + }, + "start": 1588, + "startChars": null, + }, + "runProperty": Object {}, + "tabs": Array [], + }, + "pstyle": null, + "runProperty": Object { + "bold": false, + "boldCs": false, + "fonts": Object { + "ascii": "Times New Roman", + "hiAnsi": "Times New Roman", + "hint": "default", + }, + "italic": false, + "italicCs": false, + "sz": 24, + "szCs": 24, + "underline": "none", + }, + "start": 1, + "suffix": "tab", + "text": "(%2)", + }, + Object { + "format": "decimal", + "jc": "left", + "level": 2, + "levelRestart": null, + "paragraphProperty": Object { + "indent": Object { + "end": null, + "firstLineChars": null, + "hangingChars": null, + "specialIndent": Object { + "type": "hanging", + "val": 555, + }, + "start": 1395, + "startChars": null, + }, + "runProperty": Object {}, + "tabs": Array [], + }, + "pstyle": null, + "runProperty": Object { + "fonts": Object { + "hint": "default", + }, + }, + "start": 1, + "suffix": "tab", + "text": "(%3)", + }, + Object { + "format": "decimal", + "jc": "left", + "level": 3, + "levelRestart": null, + "paragraphProperty": Object { + "indent": Object { + "end": null, + "firstLineChars": null, + "hangingChars": null, + "specialIndent": Object { + "type": "hanging", + "val": 420, + }, + "start": 1680, + "startChars": null, + }, + "runProperty": Object {}, + "tabs": Array [], + }, + "pstyle": null, + "runProperty": Object {}, + "start": 1, + "suffix": "tab", + "text": "%4.", + }, + Object { + "format": "aiueoFullWidth", + "jc": "left", + "level": 4, + "levelRestart": null, + "paragraphProperty": Object { + "indent": Object { + "end": null, + "firstLineChars": null, + "hangingChars": null, + "specialIndent": Object { + "type": "hanging", + "val": 420, + }, + "start": 2100, + "startChars": null, + }, + "runProperty": Object {}, + "tabs": Array [], + }, + "pstyle": null, + "runProperty": Object {}, + "start": 1, + "suffix": "tab", + "text": "(%5)", + }, + Object { + "format": "decimalFullWidth", + "jc": "left", + "level": 5, + "levelRestart": null, + "paragraphProperty": Object { + "indent": Object { + "end": null, + "firstLineChars": null, + "hangingChars": null, + "specialIndent": Object { + "type": "hanging", + "val": 360, + }, + "start": 2460, + "startChars": null, + }, + "runProperty": Object {}, + "tabs": Array [], + }, + "pstyle": null, + "runProperty": Object { + "fonts": Object { + "hint": "eastAsia", + }, + }, + "start": 2, + "suffix": "tab", + "text": "(%6)", + }, + Object { + "format": "lowerLetter", + "jc": "left", + "level": 6, + "levelRestart": null, + "paragraphProperty": Object { + "indent": Object { + "end": null, + "firstLineChars": null, + "hangingChars": null, + "specialIndent": Object { + "type": "hanging", + "val": 360, + }, + "start": 2880, + "startChars": null, + }, + "runProperty": Object {}, + "tabs": Array [], + }, + "pstyle": null, + "runProperty": Object { + "fonts": Object { + "hint": "eastAsia", + }, + }, + "start": 2, + "suffix": "tab", + "text": "(%7)", + }, + Object { + "format": "lowerLetter", + "jc": "left", + "level": 7, + "levelRestart": null, + "paragraphProperty": Object { + "indent": Object { + "end": null, + "firstLineChars": null, + "hangingChars": null, + "specialIndent": Object { + "type": "hanging", + "val": 360, + }, + "start": 3300, + "startChars": null, + }, + "runProperty": Object {}, + "tabs": Array [], + }, + "pstyle": null, + "runProperty": Object { + "fonts": Object { + "hint": "eastAsia", + }, + }, + "start": 1, + "suffix": "tab", + "text": "(%8)", + }, + Object { + "format": "decimal", + "jc": "left", + "level": 8, + "levelRestart": null, + "paragraphProperty": Object { + "indent": Object { + "end": null, + "firstLineChars": null, + "hangingChars": null, + "specialIndent": Object { + "type": "hanging", + "val": 360, + }, + "start": 3720, + "startChars": null, + }, + "runProperty": Object {}, + "tabs": Array [], + }, + "pstyle": null, + "runProperty": Object { + "fonts": Object { + "hint": "eastAsia", + }, + }, + "start": 1, + "suffix": "tab", + "text": "%9", + }, + ], + "numStyleLink": null, + "styleLink": null, + }, + Object { + "id": 42, + "levels": Array [ + Object { + "format": "bullet", + "jc": "left", + "level": 0, + "levelRestart": null, + "paragraphProperty": Object { + "indent": Object { + "end": null, + "firstLineChars": null, + "hangingChars": null, + "specialIndent": Object { + "type": "hanging", + "val": 420, + }, + "start": 2310, + "startChars": null, + }, + "runProperty": Object {}, + "tabs": Array [], + }, + "pstyle": null, + "runProperty": Object { + "fonts": Object { + "ascii": "Wingdings", + "hiAnsi": "Wingdings", + "hint": "default", + }, + }, + "start": 1, + "suffix": "tab", + "text": "", + }, + Object { + "format": "bullet", + "jc": "left", + "level": 1, + "levelRestart": null, + "paragraphProperty": Object { + "indent": Object { + "end": null, + "firstLineChars": null, + "hangingChars": null, + "specialIndent": Object { + "type": "hanging", + "val": 420, + }, + "start": 2730, + "startChars": null, + }, + "runProperty": Object {}, + "tabs": Array [], + }, + "pstyle": null, + "runProperty": Object { + "fonts": Object { + "ascii": "Wingdings", + "hiAnsi": "Wingdings", + "hint": "default", + }, + }, + "start": 1, + "suffix": "tab", + "text": "", + }, + Object { + "format": "bullet", + "jc": "left", + "level": 2, + "levelRestart": null, + "paragraphProperty": Object { + "indent": Object { + "end": null, + "firstLineChars": null, + "hangingChars": null, + "specialIndent": Object { + "type": "hanging", + "val": 420, + }, + "start": 3150, + "startChars": null, + }, + "runProperty": Object {}, + "tabs": Array [], + }, + "pstyle": null, + "runProperty": Object { + "fonts": Object { + "ascii": "Wingdings", + "hiAnsi": "Wingdings", + "hint": "default", + }, + }, + "start": 1, + "suffix": "tab", + "text": "", + }, + Object { + "format": "bullet", + "jc": "left", + "level": 3, + "levelRestart": null, + "paragraphProperty": Object { + "indent": Object { + "end": null, + "firstLineChars": null, + "hangingChars": null, + "specialIndent": Object { + "type": "hanging", + "val": 420, + }, + "start": 3570, + "startChars": null, + }, + "runProperty": Object {}, + "tabs": Array [], + }, + "pstyle": null, + "runProperty": Object { + "fonts": Object { + "ascii": "Wingdings", + "hiAnsi": "Wingdings", + "hint": "default", + }, + }, + "start": 1, + "suffix": "tab", + "text": "", + }, + Object { + "format": "bullet", + "jc": "left", + "level": 4, + "levelRestart": null, + "paragraphProperty": Object { + "indent": Object { + "end": null, + "firstLineChars": null, + "hangingChars": null, + "specialIndent": Object { + "type": "hanging", + "val": 420, + }, + "start": 3990, + "startChars": null, + }, + "runProperty": Object {}, + "tabs": Array [], + }, + "pstyle": null, + "runProperty": Object { + "fonts": Object { + "ascii": "Wingdings", + "hiAnsi": "Wingdings", + "hint": "default", + }, + }, + "start": 1, + "suffix": "tab", + "text": "", + }, + Object { + "format": "bullet", + "jc": "left", + "level": 5, + "levelRestart": null, + "paragraphProperty": Object { + "indent": Object { + "end": null, + "firstLineChars": null, + "hangingChars": null, + "specialIndent": Object { + "type": "hanging", + "val": 420, + }, + "start": 4410, + "startChars": null, + }, + "runProperty": Object {}, + "tabs": Array [], + }, + "pstyle": null, + "runProperty": Object { + "fonts": Object { + "ascii": "Wingdings", + "hiAnsi": "Wingdings", + "hint": "default", + }, + }, + "start": 1, + "suffix": "tab", + "text": "", + }, + Object { + "format": "bullet", + "jc": "left", + "level": 6, + "levelRestart": null, + "paragraphProperty": Object { + "indent": Object { + "end": null, + "firstLineChars": null, + "hangingChars": null, + "specialIndent": Object { + "type": "hanging", + "val": 420, + }, + "start": 4830, + "startChars": null, + }, + "runProperty": Object {}, + "tabs": Array [], + }, + "pstyle": null, + "runProperty": Object { + "fonts": Object { + "ascii": "Wingdings", + "hiAnsi": "Wingdings", + "hint": "default", + }, + }, + "start": 1, + "suffix": "tab", + "text": "", + }, + Object { + "format": "bullet", + "jc": "left", + "level": 7, + "levelRestart": null, + "paragraphProperty": Object { + "indent": Object { + "end": null, + "firstLineChars": null, + "hangingChars": null, + "specialIndent": Object { + "type": "hanging", + "val": 420, + }, + "start": 5250, + "startChars": null, + }, + "runProperty": Object {}, + "tabs": Array [], + }, + "pstyle": null, + "runProperty": Object { + "fonts": Object { + "ascii": "Wingdings", + "hiAnsi": "Wingdings", + "hint": "default", + }, + }, + "start": 1, + "suffix": "tab", + "text": "", + }, + Object { + "format": "bullet", + "jc": "left", + "level": 8, + "levelRestart": null, + "paragraphProperty": Object { + "indent": Object { + "end": null, + "firstLineChars": null, + "hangingChars": null, + "specialIndent": Object { + "type": "hanging", + "val": 420, + }, + "start": 5670, + "startChars": null, + }, + "runProperty": Object {}, + "tabs": Array [], + }, + "pstyle": null, + "runProperty": Object { + "fonts": Object { + "ascii": "Wingdings", + "hiAnsi": "Wingdings", + "hint": "default", + }, + }, + "start": 1, + "suffix": "tab", + "text": "", + }, + ], + "numStyleLink": null, + "styleLink": null, + }, + Object { + "id": 43, + "levels": Array [ + Object { + "format": "decimal", + "jc": "left", + "level": 0, + "levelRestart": null, + "paragraphProperty": Object { + "indent": Object { + "end": null, + "firstLineChars": null, + "hangingChars": null, + "specialIndent": Object { + "type": "hanging", + "val": 360, + }, + "start": 540, + "startChars": null, + }, + "runProperty": Object {}, + "tabs": Array [], + }, + "pstyle": null, + "runProperty": Object { + "fonts": Object { + "hint": "eastAsia", + }, + }, + "start": 1, + "suffix": "tab", + "text": "%1.", + }, + Object { + "format": "aiueoFullWidth", + "jc": "left", + "level": 1, + "levelRestart": null, + "paragraphProperty": Object { + "indent": Object { + "end": null, + "firstLineChars": null, + "hangingChars": null, + "specialIndent": Object { + "type": "hanging", + "val": 420, + }, + "start": 840, + "startChars": null, + }, + "runProperty": Object {}, + "tabs": Array [], + }, + "pstyle": null, + "runProperty": Object {}, + "start": 1, + "suffix": "tab", + "text": "(%2)", + }, + Object { + "format": "decimalEnclosedCircle", + "jc": "left", + "level": 2, + "levelRestart": null, + "paragraphProperty": Object { + "indent": Object { + "end": null, + "firstLineChars": null, + "hangingChars": null, + "specialIndent": Object { + "type": "hanging", + "val": 420, + }, + "start": 1260, + "startChars": null, + }, + "runProperty": Object {}, + "tabs": Array [], + }, + "pstyle": null, + "runProperty": Object {}, + "start": 1, + "suffix": "tab", + "text": "%3", + }, + Object { + "format": "decimal", + "jc": "left", + "level": 3, + "levelRestart": null, + "paragraphProperty": Object { + "indent": Object { + "end": null, + "firstLineChars": null, + "hangingChars": null, + "specialIndent": Object { + "type": "hanging", + "val": 420, + }, + "start": 1680, + "startChars": null, + }, + "runProperty": Object {}, + "tabs": Array [], + }, + "pstyle": null, + "runProperty": Object {}, + "start": 1, + "suffix": "tab", + "text": "%4.", + }, + Object { + "format": "aiueoFullWidth", + "jc": "left", + "level": 4, + "levelRestart": null, + "paragraphProperty": Object { + "indent": Object { + "end": null, + "firstLineChars": null, + "hangingChars": null, + "specialIndent": Object { + "type": "hanging", + "val": 420, + }, + "start": 2100, + "startChars": null, + }, + "runProperty": Object {}, + "tabs": Array [], + }, + "pstyle": null, + "runProperty": Object {}, + "start": 1, + "suffix": "tab", + "text": "(%5)", + }, + Object { + "format": "decimalEnclosedCircle", + "jc": "left", + "level": 5, + "levelRestart": null, + "paragraphProperty": Object { + "indent": Object { + "end": null, + "firstLineChars": null, + "hangingChars": null, + "specialIndent": Object { + "type": "hanging", + "val": 420, + }, + "start": 2520, + "startChars": null, + }, + "runProperty": Object {}, + "tabs": Array [], + }, + "pstyle": null, + "runProperty": Object {}, + "start": 1, + "suffix": "tab", + "text": "%6", + }, + Object { + "format": "decimal", + "jc": "left", + "level": 6, + "levelRestart": null, + "paragraphProperty": Object { + "indent": Object { + "end": null, + "firstLineChars": null, + "hangingChars": null, + "specialIndent": Object { + "type": "hanging", + "val": 420, + }, + "start": 2940, + "startChars": null, + }, + "runProperty": Object {}, + "tabs": Array [], + }, + "pstyle": null, + "runProperty": Object {}, + "start": 1, + "suffix": "tab", + "text": "%7.", + }, + Object { + "format": "aiueoFullWidth", + "jc": "left", + "level": 7, + "levelRestart": null, + "paragraphProperty": Object { + "indent": Object { + "end": null, + "firstLineChars": null, + "hangingChars": null, + "specialIndent": Object { + "type": "hanging", + "val": 420, + }, + "start": 3360, + "startChars": null, + }, + "runProperty": Object {}, + "tabs": Array [], + }, + "pstyle": null, + "runProperty": Object {}, + "start": 1, + "suffix": "tab", + "text": "(%8)", + }, + Object { + "format": "decimalEnclosedCircle", + "jc": "left", + "level": 8, + "levelRestart": null, + "paragraphProperty": Object { + "indent": Object { + "end": null, + "firstLineChars": null, + "hangingChars": null, + "specialIndent": Object { + "type": "hanging", + "val": 420, + }, + "start": 3780, + "startChars": null, + }, + "runProperty": Object {}, + "tabs": Array [], + }, + "pstyle": null, + "runProperty": Object {}, + "start": 1, + "suffix": "tab", + "text": "%9", + }, + ], + "numStyleLink": null, + "styleLink": null, + }, + Object { + "id": 44, + "levels": Array [ + Object { + "format": "decimal", + "jc": "left", + "level": 0, + "levelRestart": null, + "paragraphProperty": Object { + "indent": Object { + "end": null, + "firstLineChars": null, + "hangingChars": null, + "specialIndent": Object { + "type": "hanging", + "val": 360, + }, + "start": 540, + "startChars": null, + }, + "runProperty": Object {}, + "tabs": Array [], + }, + "pstyle": null, + "runProperty": Object { + "fonts": Object { + "hint": "eastAsia", + }, + }, + "start": 1, + "suffix": "tab", + "text": "%1.", + }, + Object { + "format": "aiueoFullWidth", + "jc": "left", + "level": 1, + "levelRestart": null, + "paragraphProperty": Object { + "indent": Object { + "end": null, + "firstLineChars": null, + "hangingChars": null, + "specialIndent": Object { + "type": "hanging", + "val": 420, + }, + "start": 1020, + "startChars": null, + }, + "runProperty": Object {}, + "tabs": Array [], + }, + "pstyle": null, + "runProperty": Object {}, + "start": 1, + "suffix": "tab", + "text": "(%2)", + }, + Object { + "format": "decimalEnclosedCircle", + "jc": "left", + "level": 2, + "levelRestart": null, + "paragraphProperty": Object { + "indent": Object { + "end": null, + "firstLineChars": null, + "hangingChars": null, + "specialIndent": Object { + "type": "hanging", + "val": 420, + }, + "start": 1440, + "startChars": null, + }, + "runProperty": Object {}, + "tabs": Array [], + }, + "pstyle": null, + "runProperty": Object {}, + "start": 1, + "suffix": "tab", + "text": "%3", + }, + Object { + "format": "decimal", + "jc": "left", + "level": 3, + "levelRestart": null, + "paragraphProperty": Object { + "indent": Object { + "end": null, + "firstLineChars": null, + "hangingChars": null, + "specialIndent": Object { + "type": "hanging", + "val": 420, + }, + "start": 1860, + "startChars": null, + }, + "runProperty": Object {}, + "tabs": Array [], + }, + "pstyle": null, + "runProperty": Object {}, + "start": 1, + "suffix": "tab", + "text": "%4.", + }, + Object { + "format": "aiueoFullWidth", + "jc": "left", + "level": 4, + "levelRestart": null, + "paragraphProperty": Object { + "indent": Object { + "end": null, + "firstLineChars": null, + "hangingChars": null, + "specialIndent": Object { + "type": "hanging", + "val": 420, + }, + "start": 2280, + "startChars": null, + }, + "runProperty": Object {}, + "tabs": Array [], + }, + "pstyle": null, + "runProperty": Object {}, + "start": 1, + "suffix": "tab", + "text": "(%5)", + }, + Object { + "format": "decimalEnclosedCircle", + "jc": "left", + "level": 5, + "levelRestart": null, + "paragraphProperty": Object { + "indent": Object { + "end": null, + "firstLineChars": null, + "hangingChars": null, + "specialIndent": Object { + "type": "hanging", + "val": 420, + }, + "start": 2700, + "startChars": null, + }, + "runProperty": Object {}, + "tabs": Array [], + }, + "pstyle": null, + "runProperty": Object {}, + "start": 1, + "suffix": "tab", + "text": "%6", + }, + Object { + "format": "decimal", + "jc": "left", + "level": 6, + "levelRestart": null, + "paragraphProperty": Object { + "indent": Object { + "end": null, + "firstLineChars": null, + "hangingChars": null, + "specialIndent": Object { + "type": "hanging", + "val": 420, + }, + "start": 3120, + "startChars": null, + }, + "runProperty": Object {}, + "tabs": Array [], + }, + "pstyle": null, + "runProperty": Object {}, + "start": 1, + "suffix": "tab", + "text": "%7.", + }, + Object { + "format": "aiueoFullWidth", + "jc": "left", + "level": 7, + "levelRestart": null, + "paragraphProperty": Object { + "indent": Object { + "end": null, + "firstLineChars": null, + "hangingChars": null, + "specialIndent": Object { + "type": "hanging", + "val": 420, + }, + "start": 3540, + "startChars": null, + }, + "runProperty": Object {}, + "tabs": Array [], + }, + "pstyle": null, + "runProperty": Object {}, + "start": 1, + "suffix": "tab", + "text": "(%8)", + }, + Object { + "format": "decimalEnclosedCircle", + "jc": "left", + "level": 8, + "levelRestart": null, + "paragraphProperty": Object { + "indent": Object { + "end": null, + "firstLineChars": null, + "hangingChars": null, + "specialIndent": Object { + "type": "hanging", + "val": 420, + }, + "start": 3960, + "startChars": null, + }, + "runProperty": Object {}, + "tabs": Array [], + }, + "pstyle": null, + "runProperty": Object {}, + "start": 1, + "suffix": "tab", + "text": "%9", + }, + ], + "numStyleLink": null, + "styleLink": null, + }, + Object { + "id": 45, + "levels": Array [ + Object { + "format": "bullet", + "jc": "left", + "level": 0, + "levelRestart": null, + "paragraphProperty": Object { + "indent": Object { + "end": null, + "firstLineChars": null, + "hangingChars": null, + "specialIndent": Object { + "type": "hanging", + "val": 454, + }, + "start": 4319, + "startChars": null, + }, + "runProperty": Object {}, + "tabs": Array [], + }, + "pstyle": null, + "runProperty": Object { + "fonts": Object { + "ascii": "Wingdings", + "hiAnsi": "Wingdings", + "hint": "default", + }, + }, + "start": 1, + "suffix": "tab", + "text": "", + }, + Object { + "format": "bullet", + "jc": "left", + "level": 1, + "levelRestart": null, + "paragraphProperty": Object { + "indent": Object { + "end": null, + "firstLineChars": null, + "hangingChars": null, + "specialIndent": Object { + "type": "hanging", + "val": 454, + }, + "start": 874, + "startChars": null, + }, + "runProperty": Object {}, + "tabs": Array [], + }, + "pstyle": null, + "runProperty": Object { + "fonts": Object { + "ascii": "Wingdings", + "hiAnsi": "Wingdings", + "hint": "default", + }, + }, + "start": 1, + "suffix": "tab", + "text": "", + }, + Object { + "format": "bullet", + "jc": "left", + "level": 2, + "levelRestart": null, + "paragraphProperty": Object { + "indent": Object { + "end": null, + "firstLineChars": null, + "hangingChars": null, + "specialIndent": Object { + "type": "hanging", + "val": 420, + }, + "start": 3991, + "startChars": null, + }, + "runProperty": Object {}, + "tabs": Array [], + }, + "pstyle": null, + "runProperty": Object { + "fonts": Object { + "ascii": "Wingdings", + "hiAnsi": "Wingdings", + "hint": "default", + }, + }, + "start": 1, + "suffix": "tab", + "text": "", + }, + Object { + "format": "bullet", + "jc": "left", + "level": 3, + "levelRestart": null, + "paragraphProperty": Object { + "indent": Object { + "end": null, + "firstLineChars": null, + "hangingChars": null, + "specialIndent": Object { + "type": "hanging", + "val": 420, + }, + "start": 4411, + "startChars": null, + }, + "runProperty": Object {}, + "tabs": Array [], + }, + "pstyle": null, + "runProperty": Object { + "fonts": Object { + "ascii": "Wingdings", + "hiAnsi": "Wingdings", + "hint": "default", + }, + }, + "start": 1, + "suffix": "tab", + "text": "", + }, + Object { + "format": "bullet", + "jc": "left", + "level": 4, + "levelRestart": null, + "paragraphProperty": Object { + "indent": Object { + "end": null, + "firstLineChars": null, + "hangingChars": null, + "specialIndent": Object { + "type": "hanging", + "val": 420, + }, + "start": 4831, + "startChars": null, + }, + "runProperty": Object {}, + "tabs": Array [], + }, + "pstyle": null, + "runProperty": Object { + "fonts": Object { + "ascii": "Wingdings", + "hiAnsi": "Wingdings", + "hint": "default", + }, + }, + "start": 1, + "suffix": "tab", + "text": "", + }, + Object { + "format": "bullet", + "jc": "left", + "level": 5, + "levelRestart": null, + "paragraphProperty": Object { + "indent": Object { + "end": null, + "firstLineChars": null, + "hangingChars": null, + "specialIndent": Object { + "type": "hanging", + "val": 420, + }, + "start": 5251, + "startChars": null, + }, + "runProperty": Object {}, + "tabs": Array [], + }, + "pstyle": null, + "runProperty": Object { + "fonts": Object { + "ascii": "Wingdings", + "hiAnsi": "Wingdings", + "hint": "default", + }, + }, + "start": 1, + "suffix": "tab", + "text": "", + }, + Object { + "format": "bullet", + "jc": "left", + "level": 6, + "levelRestart": null, + "paragraphProperty": Object { + "indent": Object { + "end": null, + "firstLineChars": null, + "hangingChars": null, + "specialIndent": Object { + "type": "hanging", + "val": 420, + }, + "start": 5671, + "startChars": null, + }, + "runProperty": Object {}, + "tabs": Array [], + }, + "pstyle": null, + "runProperty": Object { + "fonts": Object { + "ascii": "Wingdings", + "hiAnsi": "Wingdings", + "hint": "default", + }, + }, + "start": 1, + "suffix": "tab", + "text": "", + }, + Object { + "format": "bullet", + "jc": "left", + "level": 7, + "levelRestart": null, + "paragraphProperty": Object { + "indent": Object { + "end": null, + "firstLineChars": null, + "hangingChars": null, + "specialIndent": Object { + "type": "hanging", + "val": 420, + }, + "start": 6091, + "startChars": null, + }, + "runProperty": Object {}, + "tabs": Array [], + }, + "pstyle": null, + "runProperty": Object { + "fonts": Object { + "ascii": "Wingdings", + "hiAnsi": "Wingdings", + "hint": "default", + }, + }, + "start": 1, + "suffix": "tab", + "text": "", + }, + Object { + "format": "bullet", + "jc": "left", + "level": 8, + "levelRestart": null, + "paragraphProperty": Object { + "indent": Object { + "end": null, + "firstLineChars": null, + "hangingChars": null, + "specialIndent": Object { + "type": "hanging", + "val": 420, + }, + "start": 6511, + "startChars": null, + }, + "runProperty": Object {}, + "tabs": Array [], + }, + "pstyle": null, + "runProperty": Object { + "fonts": Object { + "ascii": "Wingdings", + "hiAnsi": "Wingdings", + "hint": "default", + }, + }, + "start": 1, + "suffix": "tab", + "text": "", + }, + ], + "numStyleLink": null, + "styleLink": null, + }, + Object { + "id": 46, + "levels": Array [ + Object { + "format": "bullet", + "jc": "left", + "level": 0, + "levelRestart": null, + "paragraphProperty": Object { + "indent": Object { + "end": null, + "firstLineChars": null, + "hangingChars": null, + "specialIndent": Object { + "type": "hanging", + "val": 420, + }, + "start": 2100, + "startChars": null, + }, + "runProperty": Object {}, + "tabs": Array [], + }, + "pstyle": null, + "runProperty": Object { + "fonts": Object { + "ascii": "Wingdings", + "hiAnsi": "Wingdings", + "hint": "default", + }, + }, + "start": 1, + "suffix": "tab", + "text": "", + }, + Object { + "format": "bullet", + "jc": "left", + "level": 1, + "levelRestart": null, + "paragraphProperty": Object { + "indent": Object { + "end": null, + "firstLineChars": null, + "hangingChars": null, + "specialIndent": Object { + "type": "hanging", + "val": 420, + }, + "start": 2520, + "startChars": null, + }, + "runProperty": Object {}, + "tabs": Array [], + }, + "pstyle": null, + "runProperty": Object { + "fonts": Object { + "ascii": "Wingdings", + "hiAnsi": "Wingdings", + "hint": "default", + }, + }, + "start": 1, + "suffix": "tab", + "text": "", + }, + Object { + "format": "bullet", + "jc": "left", + "level": 2, + "levelRestart": null, + "paragraphProperty": Object { + "indent": Object { + "end": null, + "firstLineChars": null, + "hangingChars": null, + "specialIndent": Object { + "type": "hanging", + "val": 420, + }, + "start": 2940, + "startChars": null, + }, + "runProperty": Object {}, + "tabs": Array [], + }, + "pstyle": null, + "runProperty": Object { + "fonts": Object { + "ascii": "Wingdings", + "hiAnsi": "Wingdings", + "hint": "default", + }, + }, + "start": 1, + "suffix": "tab", + "text": "", + }, + Object { + "format": "bullet", + "jc": "left", + "level": 3, + "levelRestart": null, + "paragraphProperty": Object { + "indent": Object { + "end": null, + "firstLineChars": null, + "hangingChars": null, + "specialIndent": Object { + "type": "hanging", + "val": 420, + }, + "start": 3360, + "startChars": null, + }, + "runProperty": Object {}, + "tabs": Array [], + }, + "pstyle": null, + "runProperty": Object { + "fonts": Object { + "ascii": "Wingdings", + "hiAnsi": "Wingdings", + "hint": "default", + }, + }, + "start": 1, + "suffix": "tab", + "text": "", + }, + Object { + "format": "bullet", + "jc": "left", + "level": 4, + "levelRestart": null, + "paragraphProperty": Object { + "indent": Object { + "end": null, + "firstLineChars": null, + "hangingChars": null, + "specialIndent": Object { + "type": "hanging", + "val": 420, + }, + "start": 3780, + "startChars": null, + }, + "runProperty": Object {}, + "tabs": Array [], + }, + "pstyle": null, + "runProperty": Object { + "fonts": Object { + "ascii": "Wingdings", + "hiAnsi": "Wingdings", + "hint": "default", + }, + }, + "start": 1, + "suffix": "tab", + "text": "", + }, + Object { + "format": "bullet", + "jc": "left", + "level": 5, + "levelRestart": null, + "paragraphProperty": Object { + "indent": Object { + "end": null, + "firstLineChars": null, + "hangingChars": null, + "specialIndent": Object { + "type": "hanging", + "val": 420, + }, + "start": 4200, + "startChars": null, + }, + "runProperty": Object {}, + "tabs": Array [], + }, + "pstyle": null, + "runProperty": Object { + "fonts": Object { + "ascii": "Wingdings", + "hiAnsi": "Wingdings", + "hint": "default", + }, + }, + "start": 1, + "suffix": "tab", + "text": "", + }, + Object { + "format": "bullet", + "jc": "left", + "level": 6, + "levelRestart": null, + "paragraphProperty": Object { + "indent": Object { + "end": null, + "firstLineChars": null, + "hangingChars": null, + "specialIndent": Object { + "type": "hanging", + "val": 420, + }, + "start": 4620, + "startChars": null, + }, + "runProperty": Object {}, + "tabs": Array [], + }, + "pstyle": null, + "runProperty": Object { + "fonts": Object { + "ascii": "Wingdings", + "hiAnsi": "Wingdings", + "hint": "default", + }, + }, + "start": 1, + "suffix": "tab", + "text": "", + }, + Object { + "format": "bullet", + "jc": "left", + "level": 7, + "levelRestart": null, + "paragraphProperty": Object { + "indent": Object { + "end": null, + "firstLineChars": null, + "hangingChars": null, + "specialIndent": Object { + "type": "hanging", + "val": 420, + }, + "start": 5040, + "startChars": null, + }, + "runProperty": Object {}, + "tabs": Array [], + }, + "pstyle": null, + "runProperty": Object { + "fonts": Object { + "ascii": "Wingdings", + "hiAnsi": "Wingdings", + "hint": "default", + }, + }, + "start": 1, + "suffix": "tab", + "text": "", + }, + Object { + "format": "bullet", + "jc": "left", + "level": 8, + "levelRestart": null, + "paragraphProperty": Object { + "indent": Object { + "end": null, + "firstLineChars": null, + "hangingChars": null, + "specialIndent": Object { + "type": "hanging", + "val": 420, + }, + "start": 5460, + "startChars": null, + }, + "runProperty": Object {}, + "tabs": Array [], + }, + "pstyle": null, + "runProperty": Object { + "fonts": Object { + "ascii": "Wingdings", + "hiAnsi": "Wingdings", + "hint": "default", + }, + }, + "start": 1, + "suffix": "tab", + "text": "", + }, + ], + "numStyleLink": null, + "styleLink": null, + }, + Object { + "id": 47, + "levels": Array [ + Object { + "format": "decimal", + "jc": "left", + "level": 0, + "levelRestart": null, + "paragraphProperty": Object { + "indent": Object { + "end": null, + "firstLineChars": null, + "hangingChars": null, + "specialIndent": Object { + "type": "hanging", + "val": 360, + }, + "start": 540, + "startChars": null, + }, + "runProperty": Object {}, + "tabs": Array [], + }, + "pstyle": null, + "runProperty": Object { + "fonts": Object { + "hint": "eastAsia", + }, + }, + "start": 1, + "suffix": "tab", + "text": "%1.", + }, + Object { + "format": "aiueoFullWidth", + "jc": "left", + "level": 1, + "levelRestart": null, + "paragraphProperty": Object { + "indent": Object { + "end": null, + "firstLineChars": null, + "hangingChars": null, + "specialIndent": Object { + "type": "hanging", + "val": 420, + }, + "start": 840, + "startChars": null, + }, + "runProperty": Object {}, + "tabs": Array [], + }, + "pstyle": null, + "runProperty": Object {}, + "start": 1, + "suffix": "tab", + "text": "(%2)", + }, + Object { + "format": "decimalEnclosedCircle", + "jc": "left", + "level": 2, + "levelRestart": null, + "paragraphProperty": Object { + "indent": Object { + "end": null, + "firstLineChars": null, + "hangingChars": null, + "specialIndent": Object { + "type": "hanging", + "val": 420, + }, + "start": 1260, + "startChars": null, + }, + "runProperty": Object {}, + "tabs": Array [], + }, + "pstyle": null, + "runProperty": Object {}, + "start": 1, + "suffix": "tab", + "text": "%3", + }, + Object { + "format": "decimal", + "jc": "left", + "level": 3, + "levelRestart": null, + "paragraphProperty": Object { + "indent": Object { + "end": null, + "firstLineChars": null, + "hangingChars": null, + "specialIndent": Object { + "type": "hanging", + "val": 420, + }, + "start": 1680, + "startChars": null, + }, + "runProperty": Object {}, + "tabs": Array [], + }, + "pstyle": null, + "runProperty": Object {}, + "start": 1, + "suffix": "tab", + "text": "%4.", + }, + Object { + "format": "aiueoFullWidth", + "jc": "left", + "level": 4, + "levelRestart": null, + "paragraphProperty": Object { + "indent": Object { + "end": null, + "firstLineChars": null, + "hangingChars": null, + "specialIndent": Object { + "type": "hanging", + "val": 420, + }, + "start": 2100, + "startChars": null, + }, + "runProperty": Object {}, + "tabs": Array [], + }, + "pstyle": null, + "runProperty": Object {}, + "start": 1, + "suffix": "tab", + "text": "(%5)", + }, + Object { + "format": "decimalEnclosedCircle", + "jc": "left", + "level": 5, + "levelRestart": null, + "paragraphProperty": Object { + "indent": Object { + "end": null, + "firstLineChars": null, + "hangingChars": null, + "specialIndent": Object { + "type": "hanging", + "val": 420, + }, + "start": 2520, + "startChars": null, + }, + "runProperty": Object {}, + "tabs": Array [], + }, + "pstyle": null, + "runProperty": Object {}, + "start": 1, + "suffix": "tab", + "text": "%6", + }, + Object { + "format": "decimal", + "jc": "left", + "level": 6, + "levelRestart": null, + "paragraphProperty": Object { + "indent": Object { + "end": null, + "firstLineChars": null, + "hangingChars": null, + "specialIndent": Object { + "type": "hanging", + "val": 420, + }, + "start": 2940, + "startChars": null, + }, + "runProperty": Object {}, + "tabs": Array [], + }, + "pstyle": null, + "runProperty": Object {}, + "start": 1, + "suffix": "tab", + "text": "%7.", + }, + Object { + "format": "aiueoFullWidth", + "jc": "left", + "level": 7, + "levelRestart": null, + "paragraphProperty": Object { + "indent": Object { + "end": null, + "firstLineChars": null, + "hangingChars": null, + "specialIndent": Object { + "type": "hanging", + "val": 420, + }, + "start": 3360, + "startChars": null, + }, + "runProperty": Object {}, + "tabs": Array [], + }, + "pstyle": null, + "runProperty": Object {}, + "start": 1, + "suffix": "tab", + "text": "(%8)", + }, + Object { + "format": "decimalEnclosedCircle", + "jc": "left", + "level": 8, + "levelRestart": null, + "paragraphProperty": Object { + "indent": Object { + "end": null, + "firstLineChars": null, + "hangingChars": null, + "specialIndent": Object { + "type": "hanging", + "val": 420, + }, + "start": 3780, + "startChars": null, + }, + "runProperty": Object {}, + "tabs": Array [], + }, + "pstyle": null, + "runProperty": Object {}, + "start": 1, + "suffix": "tab", + "text": "%9", + }, + ], + "numStyleLink": null, + "styleLink": null, + }, + Object { + "id": 48, + "levels": Array [ + Object { + "format": "decimal", + "jc": "left", + "level": 0, + "levelRestart": null, + "paragraphProperty": Object { + "indent": Object { + "end": null, + "firstLineChars": null, + "hangingChars": null, + "specialIndent": Object { + "type": "hanging", + "val": 360, + }, + "start": 540, + "startChars": null, + }, + "runProperty": Object {}, + "tabs": Array [], + }, + "pstyle": null, + "runProperty": Object { + "fonts": Object { + "hint": "eastAsia", + }, + }, + "start": 1, + "suffix": "tab", + "text": "%1.", + }, + Object { + "format": "aiueoFullWidth", + "jc": "left", + "level": 1, + "levelRestart": null, + "paragraphProperty": Object { + "indent": Object { + "end": null, + "firstLineChars": null, + "hangingChars": null, + "specialIndent": Object { + "type": "hanging", + "val": 420, + }, + "start": 840, + "startChars": null, + }, + "runProperty": Object {}, + "tabs": Array [], + }, + "pstyle": null, + "runProperty": Object {}, + "start": 1, + "suffix": "tab", + "text": "(%2)", + }, + Object { + "format": "decimalEnclosedCircle", + "jc": "left", + "level": 2, + "levelRestart": null, + "paragraphProperty": Object { + "indent": Object { + "end": null, + "firstLineChars": null, + "hangingChars": null, + "specialIndent": Object { + "type": "hanging", + "val": 420, + }, + "start": 1260, + "startChars": null, + }, + "runProperty": Object {}, + "tabs": Array [], + }, + "pstyle": null, + "runProperty": Object {}, + "start": 1, + "suffix": "tab", + "text": "%3", + }, + Object { + "format": "decimal", + "jc": "left", + "level": 3, + "levelRestart": null, + "paragraphProperty": Object { + "indent": Object { + "end": null, + "firstLineChars": null, + "hangingChars": null, + "specialIndent": Object { + "type": "hanging", + "val": 420, + }, + "start": 1680, + "startChars": null, + }, + "runProperty": Object {}, + "tabs": Array [], + }, + "pstyle": null, + "runProperty": Object {}, + "start": 1, + "suffix": "tab", + "text": "%4.", + }, + Object { + "format": "aiueoFullWidth", + "jc": "left", + "level": 4, + "levelRestart": null, + "paragraphProperty": Object { + "indent": Object { + "end": null, + "firstLineChars": null, + "hangingChars": null, + "specialIndent": Object { + "type": "hanging", + "val": 420, + }, + "start": 2100, + "startChars": null, + }, + "runProperty": Object {}, + "tabs": Array [], + }, + "pstyle": null, + "runProperty": Object {}, + "start": 1, + "suffix": "tab", + "text": "(%5)", + }, + Object { + "format": "decimalEnclosedCircle", + "jc": "left", + "level": 5, + "levelRestart": null, + "paragraphProperty": Object { + "indent": Object { + "end": null, + "firstLineChars": null, + "hangingChars": null, + "specialIndent": Object { + "type": "hanging", + "val": 420, + }, + "start": 2520, + "startChars": null, + }, + "runProperty": Object {}, + "tabs": Array [], + }, + "pstyle": null, + "runProperty": Object {}, + "start": 1, + "suffix": "tab", + "text": "%6", + }, + Object { + "format": "decimal", + "jc": "left", + "level": 6, + "levelRestart": null, + "paragraphProperty": Object { + "indent": Object { + "end": null, + "firstLineChars": null, + "hangingChars": null, + "specialIndent": Object { + "type": "hanging", + "val": 420, + }, + "start": 2940, + "startChars": null, + }, + "runProperty": Object {}, + "tabs": Array [], + }, + "pstyle": null, + "runProperty": Object {}, + "start": 1, + "suffix": "tab", + "text": "%7.", + }, + Object { + "format": "aiueoFullWidth", + "jc": "left", + "level": 7, + "levelRestart": null, + "paragraphProperty": Object { + "indent": Object { + "end": null, + "firstLineChars": null, + "hangingChars": null, + "specialIndent": Object { + "type": "hanging", + "val": 420, + }, + "start": 3360, + "startChars": null, + }, + "runProperty": Object {}, + "tabs": Array [], + }, + "pstyle": null, + "runProperty": Object {}, + "start": 1, + "suffix": "tab", + "text": "(%8)", + }, + Object { + "format": "decimalEnclosedCircle", + "jc": "left", + "level": 8, + "levelRestart": null, + "paragraphProperty": Object { + "indent": Object { + "end": null, + "firstLineChars": null, + "hangingChars": null, + "specialIndent": Object { + "type": "hanging", + "val": 420, + }, + "start": 3780, + "startChars": null, + }, + "runProperty": Object {}, + "tabs": Array [], + }, + "pstyle": null, + "runProperty": Object {}, + "start": 1, + "suffix": "tab", + "text": "%9", + }, + ], + "numStyleLink": null, + "styleLink": null, + }, + Object { + "id": 49, + "levels": Array [ + Object { + "format": "decimal", + "jc": "left", + "level": 0, + "levelRestart": null, + "paragraphProperty": Object { + "indent": Object { + "end": null, + "firstLineChars": null, + "hangingChars": null, + "specialIndent": Object { + "type": "hanging", + "val": 360, + }, + "start": 540, + "startChars": null, + }, + "runProperty": Object {}, + "tabs": Array [], + }, + "pstyle": null, + "runProperty": Object { + "fonts": Object { + "hint": "eastAsia", + }, + }, + "start": 1, + "suffix": "tab", + "text": "%1.", + }, + Object { + "format": "aiueoFullWidth", + "jc": "left", + "level": 1, + "levelRestart": null, + "paragraphProperty": Object { + "indent": Object { + "end": null, + "firstLineChars": null, + "hangingChars": null, + "specialIndent": Object { + "type": "hanging", + "val": 420, + }, + "start": 420, + "startChars": null, + }, + "runProperty": Object {}, + "tabs": Array [], + }, + "pstyle": null, + "runProperty": Object {}, + "start": 1, + "suffix": "tab", + "text": "(%2)", + }, + Object { + "format": "decimalEnclosedCircle", + "jc": "left", + "level": 2, + "levelRestart": null, + "paragraphProperty": Object { + "indent": Object { + "end": null, + "firstLineChars": null, + "hangingChars": null, + "specialIndent": Object { + "type": "hanging", + "val": 420, + }, + "start": 840, + "startChars": null, + }, + "runProperty": Object {}, + "tabs": Array [], + }, + "pstyle": null, + "runProperty": Object {}, + "start": 1, + "suffix": "tab", + "text": "%3", + }, + Object { + "format": "decimal", + "jc": "left", + "level": 3, + "levelRestart": null, + "paragraphProperty": Object { + "indent": Object { + "end": null, + "firstLineChars": null, + "hangingChars": null, + "specialIndent": Object { + "type": "hanging", + "val": 420, + }, + "start": 1260, + "startChars": null, + }, + "runProperty": Object {}, + "tabs": Array [], + }, + "pstyle": null, + "runProperty": Object {}, + "start": 1, + "suffix": "tab", + "text": "%4.", + }, + Object { + "format": "aiueoFullWidth", + "jc": "left", + "level": 4, + "levelRestart": null, + "paragraphProperty": Object { + "indent": Object { + "end": null, + "firstLineChars": null, + "hangingChars": null, + "specialIndent": Object { + "type": "hanging", + "val": 420, + }, + "start": 1680, + "startChars": null, + }, + "runProperty": Object {}, + "tabs": Array [], + }, + "pstyle": null, + "runProperty": Object {}, + "start": 1, + "suffix": "tab", + "text": "(%5)", + }, + Object { + "format": "decimalEnclosedCircle", + "jc": "left", + "level": 5, + "levelRestart": null, + "paragraphProperty": Object { + "indent": Object { + "end": null, + "firstLineChars": null, + "hangingChars": null, + "specialIndent": Object { + "type": "hanging", + "val": 420, + }, + "start": 2100, + "startChars": null, + }, + "runProperty": Object {}, + "tabs": Array [], + }, + "pstyle": null, + "runProperty": Object {}, + "start": 1, + "suffix": "tab", + "text": "%6", + }, + Object { + "format": "decimal", + "jc": "left", + "level": 6, + "levelRestart": null, + "paragraphProperty": Object { + "indent": Object { + "end": null, + "firstLineChars": null, + "hangingChars": null, + "specialIndent": Object { + "type": "hanging", + "val": 420, + }, + "start": 2520, + "startChars": null, + }, + "runProperty": Object {}, + "tabs": Array [], + }, + "pstyle": null, + "runProperty": Object {}, + "start": 1, + "suffix": "tab", + "text": "%7.", + }, + Object { + "format": "aiueoFullWidth", + "jc": "left", + "level": 7, + "levelRestart": null, + "paragraphProperty": Object { + "indent": Object { + "end": null, + "firstLineChars": null, + "hangingChars": null, + "specialIndent": Object { + "type": "hanging", + "val": 420, + }, + "start": 2940, + "startChars": null, + }, + "runProperty": Object {}, + "tabs": Array [], + }, + "pstyle": null, + "runProperty": Object {}, + "start": 1, + "suffix": "tab", + "text": "(%8)", + }, + Object { + "format": "decimalEnclosedCircle", + "jc": "left", + "level": 8, + "levelRestart": null, + "paragraphProperty": Object { + "indent": Object { + "end": null, + "firstLineChars": null, + "hangingChars": null, + "specialIndent": Object { + "type": "hanging", + "val": 420, + }, + "start": 3360, + "startChars": null, + }, + "runProperty": Object {}, + "tabs": Array [], + }, + "pstyle": null, + "runProperty": Object {}, + "start": 1, + "suffix": "tab", + "text": "%9", + }, + ], + "numStyleLink": null, + "styleLink": null, + }, + Object { + "id": 50, + "levels": Array [ + Object { + "format": "bullet", + "jc": "left", + "level": 0, + "levelRestart": null, + "paragraphProperty": Object { + "indent": Object { + "end": null, + "firstLineChars": null, + "hangingChars": null, + "specialIndent": Object { + "type": "hanging", + "val": 454, + }, + "start": 1588, + "startChars": null, + }, + "runProperty": Object {}, + "tabs": Array [], + }, + "pstyle": "a2", + "runProperty": Object { + "fonts": Object { + "ascii": "Wingdings", + "hiAnsi": "Wingdings", + "hint": "default", + }, + }, + "start": 1, + "suffix": "tab", + "text": "", + }, + Object { + "format": "bullet", + "jc": "left", + "level": 1, + "levelRestart": null, + "paragraphProperty": Object { + "indent": Object { + "end": null, + "firstLineChars": null, + "hangingChars": null, + "specialIndent": Object { + "type": "hanging", + "val": 360, + }, + "start": 780, + "startChars": null, + }, + "runProperty": Object {}, + "tabs": Array [], + }, + "pstyle": null, + "runProperty": Object { + "fonts": Object { + "ascii": "Times New Roman", + "cs": "Times New Roman", + "eastAsia": "MS P明朝", + "hiAnsi": "Times New Roman", + "hint": "default", + }, + }, + "start": 2, + "suffix": "tab", + "text": "・", + }, + Object { + "format": "bullet", + "jc": "left", + "level": 2, + "levelRestart": null, + "paragraphProperty": Object { + "indent": Object { + "end": null, + "firstLineChars": null, + "hangingChars": null, + "specialIndent": Object { + "type": "hanging", + "val": 420, + }, + "start": 1260, + "startChars": null, + }, + "runProperty": Object {}, + "tabs": Array [], + }, + "pstyle": null, + "runProperty": Object { + "fonts": Object { + "ascii": "Wingdings", + "hiAnsi": "Wingdings", + "hint": "default", + }, + }, + "start": 1, + "suffix": "tab", + "text": "", + }, + Object { + "format": "bullet", + "jc": "left", + "level": 3, + "levelRestart": null, + "paragraphProperty": Object { + "indent": Object { + "end": null, + "firstLineChars": null, + "hangingChars": null, + "specialIndent": Object { + "type": "hanging", + "val": 420, + }, + "start": 1680, + "startChars": null, + }, + "runProperty": Object {}, + "tabs": Array [], + }, + "pstyle": null, + "runProperty": Object { + "fonts": Object { + "ascii": "Wingdings", + "hiAnsi": "Wingdings", + "hint": "default", + }, + }, + "start": 1, + "suffix": "tab", + "text": "", + }, + Object { + "format": "bullet", + "jc": "left", + "level": 4, + "levelRestart": null, + "paragraphProperty": Object { + "indent": Object { + "end": null, + "firstLineChars": null, + "hangingChars": null, + "specialIndent": Object { + "type": "hanging", + "val": 420, + }, + "start": 2100, + "startChars": null, + }, + "runProperty": Object {}, + "tabs": Array [], + }, + "pstyle": null, + "runProperty": Object { + "fonts": Object { + "ascii": "Wingdings", + "hiAnsi": "Wingdings", + "hint": "default", + }, + }, + "start": 1, + "suffix": "tab", + "text": "", + }, + Object { + "format": "bullet", + "jc": "left", + "level": 5, + "levelRestart": null, + "paragraphProperty": Object { + "indent": Object { + "end": null, + "firstLineChars": null, + "hangingChars": null, + "specialIndent": Object { + "type": "hanging", + "val": 420, + }, + "start": 2520, + "startChars": null, + }, + "runProperty": Object {}, + "tabs": Array [], + }, + "pstyle": null, + "runProperty": Object { + "fonts": Object { + "ascii": "Wingdings", + "hiAnsi": "Wingdings", + "hint": "default", + }, + }, + "start": 1, + "suffix": "tab", + "text": "", + }, + Object { + "format": "bullet", + "jc": "left", + "level": 6, + "levelRestart": null, + "paragraphProperty": Object { + "indent": Object { + "end": null, + "firstLineChars": null, + "hangingChars": null, + "specialIndent": Object { + "type": "hanging", + "val": 420, + }, + "start": 2940, + "startChars": null, + }, + "runProperty": Object {}, + "tabs": Array [], + }, + "pstyle": null, + "runProperty": Object { + "fonts": Object { + "ascii": "Wingdings", + "hiAnsi": "Wingdings", + "hint": "default", + }, + }, + "start": 1, + "suffix": "tab", + "text": "", + }, + Object { + "format": "bullet", + "jc": "left", + "level": 7, + "levelRestart": null, + "paragraphProperty": Object { + "indent": Object { + "end": null, + "firstLineChars": null, + "hangingChars": null, + "specialIndent": Object { + "type": "hanging", + "val": 420, + }, + "start": 3360, + "startChars": null, + }, + "runProperty": Object {}, + "tabs": Array [], + }, + "pstyle": null, + "runProperty": Object { + "fonts": Object { + "ascii": "Wingdings", + "hiAnsi": "Wingdings", + "hint": "default", + }, + }, + "start": 1, + "suffix": "tab", + "text": "", + }, + Object { + "format": "bullet", + "jc": "left", + "level": 8, + "levelRestart": null, + "paragraphProperty": Object { + "indent": Object { + "end": null, + "firstLineChars": null, + "hangingChars": null, + "specialIndent": Object { + "type": "hanging", + "val": 420, + }, + "start": 3780, + "startChars": null, + }, + "runProperty": Object {}, + "tabs": Array [], + }, + "pstyle": null, + "runProperty": Object { + "fonts": Object { + "ascii": "Wingdings", + "hiAnsi": "Wingdings", + "hint": "default", + }, + }, + "start": 1, + "suffix": "tab", + "text": "", + }, + ], + "numStyleLink": null, + "styleLink": null, + }, + Object { + "id": 51, + "levels": Array [ + Object { + "format": "bullet", + "jc": "left", + "level": 0, + "levelRestart": null, + "paragraphProperty": Object { + "indent": Object { + "end": null, + "firstLineChars": null, + "hangingChars": null, + "specialIndent": Object { + "type": "hanging", + "val": 420, + }, + "start": 2310, + "startChars": null, + }, + "runProperty": Object {}, + "tabs": Array [], + }, + "pstyle": null, + "runProperty": Object { + "fonts": Object { + "ascii": "Wingdings", + "hiAnsi": "Wingdings", + "hint": "default", + }, + "italic": true, + "italicCs": true, + "sz": 24, + "szCs": 24, + }, + "start": 1, + "suffix": "tab", + "text": "", + }, + Object { + "format": "bullet", + "jc": "left", + "level": 1, + "levelRestart": null, + "paragraphProperty": Object { + "indent": Object { + "end": null, + "firstLineChars": null, + "hangingChars": null, + "specialIndent": Object { + "type": "hanging", + "val": 420, + }, + "start": 2730, + "startChars": null, + }, + "runProperty": Object {}, + "tabs": Array [], + }, + "pstyle": null, + "runProperty": Object { + "fonts": Object { + "ascii": "Wingdings", + "hiAnsi": "Wingdings", + "hint": "default", + }, + }, + "start": 1, + "suffix": "tab", + "text": "", + }, + Object { + "format": "bullet", + "jc": "left", + "level": 2, + "levelRestart": null, + "paragraphProperty": Object { + "indent": Object { + "end": null, + "firstLineChars": null, + "hangingChars": null, + "specialIndent": Object { + "type": "hanging", + "val": 420, + }, + "start": 3150, + "startChars": null, + }, + "runProperty": Object {}, + "tabs": Array [], + }, + "pstyle": null, + "runProperty": Object { + "fonts": Object { + "ascii": "Wingdings", + "hiAnsi": "Wingdings", + "hint": "default", + }, + }, + "start": 1, + "suffix": "tab", + "text": "", + }, + Object { + "format": "bullet", + "jc": "left", + "level": 3, + "levelRestart": null, + "paragraphProperty": Object { + "indent": Object { + "end": null, + "firstLineChars": null, + "hangingChars": null, + "specialIndent": Object { + "type": "hanging", + "val": 420, + }, + "start": 3570, + "startChars": null, + }, + "runProperty": Object {}, + "tabs": Array [], + }, + "pstyle": null, + "runProperty": Object { + "fonts": Object { + "ascii": "Wingdings", + "hiAnsi": "Wingdings", + "hint": "default", + }, + }, + "start": 1, + "suffix": "tab", + "text": "", + }, + Object { + "format": "bullet", + "jc": "left", + "level": 4, + "levelRestart": null, + "paragraphProperty": Object { + "indent": Object { + "end": null, + "firstLineChars": null, + "hangingChars": null, + "specialIndent": Object { + "type": "hanging", + "val": 420, + }, + "start": 3990, + "startChars": null, + }, + "runProperty": Object {}, + "tabs": Array [], + }, + "pstyle": null, + "runProperty": Object { + "fonts": Object { + "ascii": "Wingdings", + "hiAnsi": "Wingdings", + "hint": "default", + }, + }, + "start": 1, + "suffix": "tab", + "text": "", + }, + Object { + "format": "bullet", + "jc": "left", + "level": 5, + "levelRestart": null, + "paragraphProperty": Object { + "indent": Object { + "end": null, + "firstLineChars": null, + "hangingChars": null, + "specialIndent": Object { + "type": "hanging", + "val": 420, + }, + "start": 4410, + "startChars": null, + }, + "runProperty": Object {}, + "tabs": Array [], + }, + "pstyle": null, + "runProperty": Object { + "fonts": Object { + "ascii": "Wingdings", + "hiAnsi": "Wingdings", + "hint": "default", + }, + }, + "start": 1, + "suffix": "tab", + "text": "", + }, + Object { + "format": "bullet", + "jc": "left", + "level": 6, + "levelRestart": null, + "paragraphProperty": Object { + "indent": Object { + "end": null, + "firstLineChars": null, + "hangingChars": null, + "specialIndent": Object { + "type": "hanging", + "val": 420, + }, + "start": 4830, + "startChars": null, + }, + "runProperty": Object {}, + "tabs": Array [], + }, + "pstyle": null, + "runProperty": Object { + "fonts": Object { + "ascii": "Wingdings", + "hiAnsi": "Wingdings", + "hint": "default", + }, + }, + "start": 1, + "suffix": "tab", + "text": "", + }, + Object { + "format": "bullet", + "jc": "left", + "level": 7, + "levelRestart": null, + "paragraphProperty": Object { + "indent": Object { + "end": null, + "firstLineChars": null, + "hangingChars": null, + "specialIndent": Object { + "type": "hanging", + "val": 420, + }, + "start": 5250, + "startChars": null, + }, + "runProperty": Object {}, + "tabs": Array [], + }, + "pstyle": null, + "runProperty": Object { + "fonts": Object { + "ascii": "Wingdings", + "hiAnsi": "Wingdings", + "hint": "default", + }, + }, + "start": 1, + "suffix": "tab", + "text": "", + }, + Object { + "format": "bullet", + "jc": "left", + "level": 8, + "levelRestart": null, + "paragraphProperty": Object { + "indent": Object { + "end": null, + "firstLineChars": null, + "hangingChars": null, + "specialIndent": Object { + "type": "hanging", + "val": 420, + }, + "start": 5670, + "startChars": null, + }, + "runProperty": Object {}, + "tabs": Array [], + }, + "pstyle": null, + "runProperty": Object { + "fonts": Object { + "ascii": "Wingdings", + "hiAnsi": "Wingdings", + "hint": "default", + }, + }, + "start": 1, + "suffix": "tab", + "text": "", + }, + ], + "numStyleLink": null, + "styleLink": null, + }, + Object { + "id": 52, + "levels": Array [ + Object { + "format": "decimal", + "jc": "left", + "level": 0, + "levelRestart": null, + "paragraphProperty": Object { + "indent": Object { + "end": null, + "firstLineChars": null, + "hangingChars": null, + "specialIndent": Object { + "type": "hanging", + "val": 360, + }, + "start": 540, + "startChars": null, + }, + "runProperty": Object {}, + "tabs": Array [], + }, + "pstyle": null, + "runProperty": Object { + "fonts": Object { + "hint": "eastAsia", + }, + }, + "start": 1, + "suffix": "tab", + "text": "%1.", + }, + Object { + "format": "aiueoFullWidth", + "jc": "left", + "level": 1, + "levelRestart": null, + "paragraphProperty": Object { + "indent": Object { + "end": null, + "firstLineChars": null, + "hangingChars": null, + "specialIndent": Object { + "type": "hanging", + "val": 420, + }, + "start": 420, + "startChars": null, + }, + "runProperty": Object {}, + "tabs": Array [], + }, + "pstyle": null, + "runProperty": Object {}, + "start": 1, + "suffix": "tab", + "text": "(%2)", + }, + Object { + "format": "decimalEnclosedCircle", + "jc": "left", + "level": 2, + "levelRestart": null, + "paragraphProperty": Object { + "indent": Object { + "end": null, + "firstLineChars": null, + "hangingChars": null, + "specialIndent": Object { + "type": "hanging", + "val": 420, + }, + "start": 840, + "startChars": null, + }, + "runProperty": Object {}, + "tabs": Array [], + }, + "pstyle": null, + "runProperty": Object {}, + "start": 1, + "suffix": "tab", + "text": "%3", + }, + Object { + "format": "decimal", + "jc": "left", + "level": 3, + "levelRestart": null, + "paragraphProperty": Object { + "indent": Object { + "end": null, + "firstLineChars": null, + "hangingChars": null, + "specialIndent": Object { + "type": "hanging", + "val": 420, + }, + "start": 1260, + "startChars": null, + }, + "runProperty": Object {}, + "tabs": Array [], + }, + "pstyle": null, + "runProperty": Object {}, + "start": 1, + "suffix": "tab", + "text": "%4.", + }, + Object { + "format": "aiueoFullWidth", + "jc": "left", + "level": 4, + "levelRestart": null, + "paragraphProperty": Object { + "indent": Object { + "end": null, + "firstLineChars": null, + "hangingChars": null, + "specialIndent": Object { + "type": "hanging", + "val": 420, + }, + "start": 1680, + "startChars": null, + }, + "runProperty": Object {}, + "tabs": Array [], + }, + "pstyle": null, + "runProperty": Object {}, + "start": 1, + "suffix": "tab", + "text": "(%5)", + }, + Object { + "format": "decimalEnclosedCircle", + "jc": "left", + "level": 5, + "levelRestart": null, + "paragraphProperty": Object { + "indent": Object { + "end": null, + "firstLineChars": null, + "hangingChars": null, + "specialIndent": Object { + "type": "hanging", + "val": 420, + }, + "start": 2100, + "startChars": null, + }, + "runProperty": Object {}, + "tabs": Array [], + }, + "pstyle": null, + "runProperty": Object {}, + "start": 1, + "suffix": "tab", + "text": "%6", + }, + Object { + "format": "decimal", + "jc": "left", + "level": 6, + "levelRestart": null, + "paragraphProperty": Object { + "indent": Object { + "end": null, + "firstLineChars": null, + "hangingChars": null, + "specialIndent": Object { + "type": "hanging", + "val": 420, + }, + "start": 2520, + "startChars": null, + }, + "runProperty": Object {}, + "tabs": Array [], + }, + "pstyle": null, + "runProperty": Object {}, + "start": 1, + "suffix": "tab", + "text": "%7.", + }, + Object { + "format": "aiueoFullWidth", + "jc": "left", + "level": 7, + "levelRestart": null, + "paragraphProperty": Object { + "indent": Object { + "end": null, + "firstLineChars": null, + "hangingChars": null, + "specialIndent": Object { + "type": "hanging", + "val": 420, + }, + "start": 2940, + "startChars": null, + }, + "runProperty": Object {}, + "tabs": Array [], + }, + "pstyle": null, + "runProperty": Object {}, + "start": 1, + "suffix": "tab", + "text": "(%8)", + }, + Object { + "format": "decimalEnclosedCircle", + "jc": "left", + "level": 8, + "levelRestart": null, + "paragraphProperty": Object { + "indent": Object { + "end": null, + "firstLineChars": null, + "hangingChars": null, + "specialIndent": Object { + "type": "hanging", + "val": 420, + }, + "start": 3360, + "startChars": null, + }, + "runProperty": Object {}, + "tabs": Array [], + }, + "pstyle": null, + "runProperty": Object {}, + "start": 1, + "suffix": "tab", + "text": "%9", + }, + ], + "numStyleLink": null, + "styleLink": null, + }, + Object { + "id": 53, + "levels": Array [ + Object { + "format": "decimal", + "jc": "left", + "level": 0, + "levelRestart": null, + "paragraphProperty": Object { + "indent": Object { + "end": null, + "firstLineChars": null, + "hangingChars": null, + "specialIndent": Object { + "type": "hanging", + "val": 360, + }, + "start": 540, + "startChars": null, + }, + "runProperty": Object {}, + "tabs": Array [], + }, + "pstyle": null, + "runProperty": Object { + "fonts": Object { + "hint": "eastAsia", + }, + }, + "start": 1, + "suffix": "tab", + "text": "%1.", + }, + Object { + "format": "aiueoFullWidth", + "jc": "left", + "level": 1, + "levelRestart": null, + "paragraphProperty": Object { + "indent": Object { + "end": null, + "firstLineChars": null, + "hangingChars": null, + "specialIndent": Object { + "type": "hanging", + "val": 420, + }, + "start": 840, + "startChars": null, + }, + "runProperty": Object {}, + "tabs": Array [], + }, + "pstyle": null, + "runProperty": Object {}, + "start": 1, + "suffix": "tab", + "text": "(%2)", + }, + Object { + "format": "decimalEnclosedCircle", + "jc": "left", + "level": 2, + "levelRestart": null, + "paragraphProperty": Object { + "indent": Object { + "end": null, + "firstLineChars": null, + "hangingChars": null, + "specialIndent": Object { + "type": "hanging", + "val": 420, + }, + "start": 1260, + "startChars": null, + }, + "runProperty": Object {}, + "tabs": Array [], + }, + "pstyle": null, + "runProperty": Object {}, + "start": 1, + "suffix": "tab", + "text": "%3", + }, + Object { + "format": "decimal", + "jc": "left", + "level": 3, + "levelRestart": null, + "paragraphProperty": Object { + "indent": Object { + "end": null, + "firstLineChars": null, + "hangingChars": null, + "specialIndent": Object { + "type": "hanging", + "val": 420, + }, + "start": 1680, + "startChars": null, + }, + "runProperty": Object {}, + "tabs": Array [], + }, + "pstyle": null, + "runProperty": Object {}, + "start": 1, + "suffix": "tab", + "text": "%4.", + }, + Object { + "format": "aiueoFullWidth", + "jc": "left", + "level": 4, + "levelRestart": null, + "paragraphProperty": Object { + "indent": Object { + "end": null, + "firstLineChars": null, + "hangingChars": null, + "specialIndent": Object { + "type": "hanging", + "val": 420, + }, + "start": 2100, + "startChars": null, + }, + "runProperty": Object {}, + "tabs": Array [], + }, + "pstyle": null, + "runProperty": Object {}, + "start": 1, + "suffix": "tab", + "text": "(%5)", + }, + Object { + "format": "decimalEnclosedCircle", + "jc": "left", + "level": 5, + "levelRestart": null, + "paragraphProperty": Object { + "indent": Object { + "end": null, + "firstLineChars": null, + "hangingChars": null, + "specialIndent": Object { + "type": "hanging", + "val": 420, + }, + "start": 2520, + "startChars": null, + }, + "runProperty": Object {}, + "tabs": Array [], + }, + "pstyle": null, + "runProperty": Object {}, + "start": 1, + "suffix": "tab", + "text": "%6", + }, + Object { + "format": "decimal", + "jc": "left", + "level": 6, + "levelRestart": null, + "paragraphProperty": Object { + "indent": Object { + "end": null, + "firstLineChars": null, + "hangingChars": null, + "specialIndent": Object { + "type": "hanging", + "val": 420, + }, + "start": 2940, + "startChars": null, + }, + "runProperty": Object {}, + "tabs": Array [], + }, + "pstyle": null, + "runProperty": Object {}, + "start": 1, + "suffix": "tab", + "text": "%7.", + }, + Object { + "format": "aiueoFullWidth", + "jc": "left", + "level": 7, + "levelRestart": null, + "paragraphProperty": Object { + "indent": Object { + "end": null, + "firstLineChars": null, + "hangingChars": null, + "specialIndent": Object { + "type": "hanging", + "val": 420, + }, + "start": 3360, + "startChars": null, + }, + "runProperty": Object {}, + "tabs": Array [], + }, + "pstyle": null, + "runProperty": Object {}, + "start": 1, + "suffix": "tab", + "text": "(%8)", + }, + Object { + "format": "decimalEnclosedCircle", + "jc": "left", + "level": 8, + "levelRestart": null, + "paragraphProperty": Object { + "indent": Object { + "end": null, + "firstLineChars": null, + "hangingChars": null, + "specialIndent": Object { + "type": "hanging", + "val": 420, + }, + "start": 3780, + "startChars": null, + }, + "runProperty": Object {}, + "tabs": Array [], + }, + "pstyle": null, + "runProperty": Object {}, + "start": 1, + "suffix": "tab", + "text": "%9", + }, + ], + "numStyleLink": null, + "styleLink": null, + }, + Object { + "id": 54, + "levels": Array [ + Object { + "format": "decimal", + "jc": "left", + "level": 0, + "levelRestart": null, + "paragraphProperty": Object { + "indent": Object { + "end": null, + "firstLineChars": null, + "hangingChars": null, + "specialIndent": Object { + "type": "hanging", + "val": 360, + }, + "start": 540, + "startChars": null, + }, + "runProperty": Object {}, + "tabs": Array [], + }, + "pstyle": null, + "runProperty": Object { + "fonts": Object { + "hint": "eastAsia", + }, + }, + "start": 1, + "suffix": "tab", + "text": "%1.", + }, + Object { + "format": "aiueoFullWidth", + "jc": "left", + "level": 1, + "levelRestart": null, + "paragraphProperty": Object { + "indent": Object { + "end": null, + "firstLineChars": null, + "hangingChars": null, + "specialIndent": Object { + "type": "hanging", + "val": 420, + }, + "start": 840, + "startChars": null, + }, + "runProperty": Object {}, + "tabs": Array [], + }, + "pstyle": null, + "runProperty": Object {}, + "start": 1, + "suffix": "tab", + "text": "(%2)", + }, + Object { + "format": "decimalEnclosedCircle", + "jc": "left", + "level": 2, + "levelRestart": null, + "paragraphProperty": Object { + "indent": Object { + "end": null, + "firstLineChars": null, + "hangingChars": null, + "specialIndent": Object { + "type": "hanging", + "val": 420, + }, + "start": 1260, + "startChars": null, + }, + "runProperty": Object {}, + "tabs": Array [], + }, + "pstyle": null, + "runProperty": Object {}, + "start": 1, + "suffix": "tab", + "text": "%3", + }, + Object { + "format": "decimal", + "jc": "left", + "level": 3, + "levelRestart": null, + "paragraphProperty": Object { + "indent": Object { + "end": null, + "firstLineChars": null, + "hangingChars": null, + "specialIndent": Object { + "type": "hanging", + "val": 420, + }, + "start": 1680, + "startChars": null, + }, + "runProperty": Object {}, + "tabs": Array [], + }, + "pstyle": null, + "runProperty": Object {}, + "start": 1, + "suffix": "tab", + "text": "%4.", + }, + Object { + "format": "aiueoFullWidth", + "jc": "left", + "level": 4, + "levelRestart": null, + "paragraphProperty": Object { + "indent": Object { + "end": null, + "firstLineChars": null, + "hangingChars": null, + "specialIndent": Object { + "type": "hanging", + "val": 420, + }, + "start": 2100, + "startChars": null, + }, + "runProperty": Object {}, + "tabs": Array [], + }, + "pstyle": null, + "runProperty": Object {}, + "start": 1, + "suffix": "tab", + "text": "(%5)", + }, + Object { + "format": "decimalEnclosedCircle", + "jc": "left", + "level": 5, + "levelRestart": null, + "paragraphProperty": Object { + "indent": Object { + "end": null, + "firstLineChars": null, + "hangingChars": null, + "specialIndent": Object { + "type": "hanging", + "val": 420, + }, + "start": 2520, + "startChars": null, + }, + "runProperty": Object {}, + "tabs": Array [], + }, + "pstyle": null, + "runProperty": Object {}, + "start": 1, + "suffix": "tab", + "text": "%6", + }, + Object { + "format": "decimal", + "jc": "left", + "level": 6, + "levelRestart": null, + "paragraphProperty": Object { + "indent": Object { + "end": null, + "firstLineChars": null, + "hangingChars": null, + "specialIndent": Object { + "type": "hanging", + "val": 420, + }, + "start": 2940, + "startChars": null, + }, + "runProperty": Object {}, + "tabs": Array [], + }, + "pstyle": null, + "runProperty": Object {}, + "start": 1, + "suffix": "tab", + "text": "%7.", + }, + Object { + "format": "aiueoFullWidth", + "jc": "left", + "level": 7, + "levelRestart": null, + "paragraphProperty": Object { + "indent": Object { + "end": null, + "firstLineChars": null, + "hangingChars": null, + "specialIndent": Object { + "type": "hanging", + "val": 420, + }, + "start": 3360, + "startChars": null, + }, + "runProperty": Object {}, + "tabs": Array [], + }, + "pstyle": null, + "runProperty": Object {}, + "start": 1, + "suffix": "tab", + "text": "(%8)", + }, + Object { + "format": "decimalEnclosedCircle", + "jc": "left", + "level": 8, + "levelRestart": null, + "paragraphProperty": Object { + "indent": Object { + "end": null, + "firstLineChars": null, + "hangingChars": null, + "specialIndent": Object { + "type": "hanging", + "val": 420, + }, + "start": 3780, + "startChars": null, + }, + "runProperty": Object {}, + "tabs": Array [], + }, + "pstyle": null, + "runProperty": Object {}, + "start": 1, + "suffix": "tab", + "text": "%9", + }, + ], + "numStyleLink": null, + "styleLink": null, + }, + Object { + "id": 55, + "levels": Array [ + Object { + "format": "bullet", + "jc": "left", + "level": 0, + "levelRestart": null, + "paragraphProperty": Object { + "indent": Object { + "end": null, + "firstLineChars": null, + "hangingChars": null, + "specialIndent": Object { + "type": "hanging", + "val": 420, + }, + "start": 2203, + "startChars": null, + }, + "runProperty": Object {}, + "tabs": Array [], + }, + "pstyle": null, + "runProperty": Object { + "fonts": Object { + "ascii": "Wingdings", + "hiAnsi": "Wingdings", + "hint": "default", + }, + }, + "start": 1, + "suffix": "tab", + "text": "", + }, + Object { + "format": "bullet", + "jc": "left", + "level": 1, + "levelRestart": null, + "paragraphProperty": Object { + "indent": Object { + "end": null, + "firstLineChars": null, + "hangingChars": null, + "specialIndent": Object { + "type": "hanging", + "val": 420, + }, + "start": 2623, + "startChars": null, + }, + "runProperty": Object {}, + "tabs": Array [], + }, + "pstyle": null, + "runProperty": Object { + "fonts": Object { + "ascii": "Wingdings", + "hiAnsi": "Wingdings", + "hint": "default", + }, + }, + "start": 1, + "suffix": "tab", + "text": "", + }, + Object { + "format": "bullet", + "jc": "left", + "level": 2, + "levelRestart": null, + "paragraphProperty": Object { + "indent": Object { + "end": null, + "firstLineChars": null, + "hangingChars": null, + "specialIndent": Object { + "type": "hanging", + "val": 420, + }, + "start": 3043, + "startChars": null, + }, + "runProperty": Object {}, + "tabs": Array [], + }, + "pstyle": null, + "runProperty": Object { + "fonts": Object { + "ascii": "Wingdings", + "hiAnsi": "Wingdings", + "hint": "default", + }, + }, + "start": 1, + "suffix": "tab", + "text": "", + }, + Object { + "format": "bullet", + "jc": "left", + "level": 3, + "levelRestart": null, + "paragraphProperty": Object { + "indent": Object { + "end": null, + "firstLineChars": null, + "hangingChars": null, + "specialIndent": Object { + "type": "hanging", + "val": 420, + }, + "start": 3463, + "startChars": null, + }, + "runProperty": Object {}, + "tabs": Array [], + }, + "pstyle": null, + "runProperty": Object { + "fonts": Object { + "ascii": "Wingdings", + "hiAnsi": "Wingdings", + "hint": "default", + }, + }, + "start": 1, + "suffix": "tab", + "text": "", + }, + Object { + "format": "bullet", + "jc": "left", + "level": 4, + "levelRestart": null, + "paragraphProperty": Object { + "indent": Object { + "end": null, + "firstLineChars": null, + "hangingChars": null, + "specialIndent": Object { + "type": "hanging", + "val": 420, + }, + "start": 3883, + "startChars": null, + }, + "runProperty": Object {}, + "tabs": Array [], + }, + "pstyle": null, + "runProperty": Object { + "fonts": Object { + "ascii": "Wingdings", + "hiAnsi": "Wingdings", + "hint": "default", + }, + }, + "start": 1, + "suffix": "tab", + "text": "", + }, + Object { + "format": "bullet", + "jc": "left", + "level": 5, + "levelRestart": null, + "paragraphProperty": Object { + "indent": Object { + "end": null, + "firstLineChars": null, + "hangingChars": null, + "specialIndent": Object { + "type": "hanging", + "val": 420, + }, + "start": 4303, + "startChars": null, + }, + "runProperty": Object {}, + "tabs": Array [], + }, + "pstyle": null, + "runProperty": Object { + "fonts": Object { + "ascii": "Wingdings", + "hiAnsi": "Wingdings", + "hint": "default", + }, + }, + "start": 1, + "suffix": "tab", + "text": "", + }, + Object { + "format": "bullet", + "jc": "left", + "level": 6, + "levelRestart": null, + "paragraphProperty": Object { + "indent": Object { + "end": null, + "firstLineChars": null, + "hangingChars": null, + "specialIndent": Object { + "type": "hanging", + "val": 420, + }, + "start": 4723, + "startChars": null, + }, + "runProperty": Object {}, + "tabs": Array [], + }, + "pstyle": null, + "runProperty": Object { + "fonts": Object { + "ascii": "Wingdings", + "hiAnsi": "Wingdings", + "hint": "default", + }, + }, + "start": 1, + "suffix": "tab", + "text": "", + }, + Object { + "format": "bullet", + "jc": "left", + "level": 7, + "levelRestart": null, + "paragraphProperty": Object { + "indent": Object { + "end": null, + "firstLineChars": null, + "hangingChars": null, + "specialIndent": Object { + "type": "hanging", + "val": 420, + }, + "start": 5143, + "startChars": null, + }, + "runProperty": Object {}, + "tabs": Array [], + }, + "pstyle": null, + "runProperty": Object { + "fonts": Object { + "ascii": "Wingdings", + "hiAnsi": "Wingdings", + "hint": "default", + }, + }, + "start": 1, + "suffix": "tab", + "text": "", + }, + Object { + "format": "bullet", + "jc": "left", + "level": 8, + "levelRestart": null, + "paragraphProperty": Object { + "indent": Object { + "end": null, + "firstLineChars": null, + "hangingChars": null, + "specialIndent": Object { + "type": "hanging", + "val": 420, + }, + "start": 5563, + "startChars": null, + }, + "runProperty": Object {}, + "tabs": Array [], + }, + "pstyle": null, + "runProperty": Object { + "fonts": Object { + "ascii": "Wingdings", + "hiAnsi": "Wingdings", + "hint": "default", + }, + }, + "start": 1, + "suffix": "tab", + "text": "", + }, + ], + "numStyleLink": null, + "styleLink": null, + }, + Object { + "id": 56, + "levels": Array [ + Object { + "format": "bullet", + "jc": "left", + "level": 0, + "levelRestart": null, + "paragraphProperty": Object { + "indent": Object { + "end": null, + "firstLineChars": null, + "hangingChars": null, + "specialIndent": Object { + "type": "hanging", + "val": 454, + }, + "start": 2155, + "startChars": null, + }, + "runProperty": Object {}, + "tabs": Array [], + }, + "pstyle": "Note2", + "runProperty": Object { + "fonts": Object { + "ascii": "Wingdings 2", + "hiAnsi": "Wingdings 2", + "hint": "default", + }, + "sz": 28, + "szCs": 28, + }, + "start": 1, + "suffix": "tab", + "text": "", + }, + Object { + "format": "bullet", + "jc": "left", + "level": 1, + "levelRestart": null, + "paragraphProperty": Object { + "indent": Object { + "end": null, + "firstLineChars": null, + "hangingChars": null, + "specialIndent": Object { + "type": "hanging", + "val": 420, + }, + "start": 840, + "startChars": null, + }, + "runProperty": Object {}, + "tabs": Array [], + }, + "pstyle": null, + "runProperty": Object { + "fonts": Object { + "ascii": "Wingdings", + "hiAnsi": "Wingdings", + "hint": "default", + }, + }, + "start": 1, + "suffix": "tab", + "text": "", + }, + Object { + "format": "bullet", + "jc": "left", + "level": 2, + "levelRestart": null, + "paragraphProperty": Object { + "indent": Object { + "end": null, + "firstLineChars": null, + "hangingChars": null, + "specialIndent": Object { + "type": "hanging", + "val": 420, + }, + "start": 1260, + "startChars": null, + }, + "runProperty": Object {}, + "tabs": Array [], + }, + "pstyle": null, + "runProperty": Object { + "fonts": Object { + "ascii": "Wingdings", + "hiAnsi": "Wingdings", + "hint": "default", + }, + }, + "start": 1, + "suffix": "tab", + "text": "", + }, + Object { + "format": "bullet", + "jc": "left", + "level": 3, + "levelRestart": null, + "paragraphProperty": Object { + "indent": Object { + "end": null, + "firstLineChars": null, + "hangingChars": null, + "specialIndent": Object { + "type": "hanging", + "val": 420, + }, + "start": 1680, + "startChars": null, + }, + "runProperty": Object {}, + "tabs": Array [], + }, + "pstyle": null, + "runProperty": Object { + "fonts": Object { + "ascii": "Wingdings", + "hiAnsi": "Wingdings", + "hint": "default", + }, + }, + "start": 1, + "suffix": "tab", + "text": "", + }, + Object { + "format": "bullet", + "jc": "left", + "level": 4, + "levelRestart": null, + "paragraphProperty": Object { + "indent": Object { + "end": null, + "firstLineChars": null, + "hangingChars": null, + "specialIndent": Object { + "type": "hanging", + "val": 420, + }, + "start": 2100, + "startChars": null, + }, + "runProperty": Object {}, + "tabs": Array [], + }, + "pstyle": null, + "runProperty": Object { + "fonts": Object { + "ascii": "Wingdings", + "hiAnsi": "Wingdings", + "hint": "default", + }, + }, + "start": 1, + "suffix": "tab", + "text": "", + }, + Object { + "format": "bullet", + "jc": "left", + "level": 5, + "levelRestart": null, + "paragraphProperty": Object { + "indent": Object { + "end": null, + "firstLineChars": null, + "hangingChars": null, + "specialIndent": Object { + "type": "hanging", + "val": 420, + }, + "start": 2520, + "startChars": null, + }, + "runProperty": Object {}, + "tabs": Array [], + }, + "pstyle": null, + "runProperty": Object { + "fonts": Object { + "ascii": "Wingdings", + "hiAnsi": "Wingdings", + "hint": "default", + }, + }, + "start": 1, + "suffix": "tab", + "text": "", + }, + Object { + "format": "bullet", + "jc": "left", + "level": 6, + "levelRestart": null, + "paragraphProperty": Object { + "indent": Object { + "end": null, + "firstLineChars": null, + "hangingChars": null, + "specialIndent": Object { + "type": "hanging", + "val": 420, + }, + "start": 2940, + "startChars": null, + }, + "runProperty": Object {}, + "tabs": Array [], + }, + "pstyle": null, + "runProperty": Object { + "fonts": Object { + "ascii": "Wingdings", + "hiAnsi": "Wingdings", + "hint": "default", + }, + }, + "start": 1, + "suffix": "tab", + "text": "", + }, + Object { + "format": "bullet", + "jc": "left", + "level": 7, + "levelRestart": null, + "paragraphProperty": Object { + "indent": Object { + "end": null, + "firstLineChars": null, + "hangingChars": null, + "specialIndent": Object { + "type": "hanging", + "val": 420, + }, + "start": 3360, + "startChars": null, + }, + "runProperty": Object {}, + "tabs": Array [], + }, + "pstyle": null, + "runProperty": Object { + "fonts": Object { + "ascii": "Wingdings", + "hiAnsi": "Wingdings", + "hint": "default", + }, + }, + "start": 1, + "suffix": "tab", + "text": "", + }, + Object { + "format": "bullet", + "jc": "left", + "level": 8, + "levelRestart": null, + "paragraphProperty": Object { + "indent": Object { + "end": null, + "firstLineChars": null, + "hangingChars": null, + "specialIndent": Object { + "type": "hanging", + "val": 420, + }, + "start": 3780, + "startChars": null, + }, + "runProperty": Object {}, + "tabs": Array [], + }, + "pstyle": null, + "runProperty": Object { + "fonts": Object { + "ascii": "Wingdings", + "hiAnsi": "Wingdings", + "hint": "default", + }, + }, + "start": 1, + "suffix": "tab", + "text": "", + }, + ], + "numStyleLink": null, + "styleLink": null, + }, + Object { + "id": 57, + "levels": Array [ + Object { + "format": "bullet", + "jc": "left", + "level": 0, + "levelRestart": null, + "paragraphProperty": Object { + "indent": Object { + "end": null, + "firstLineChars": null, + "hangingChars": null, + "specialIndent": Object { + "type": "hanging", + "val": 420, + }, + "start": 2100, + "startChars": null, + }, + "runProperty": Object {}, + "tabs": Array [], + }, + "pstyle": null, + "runProperty": Object { + "fonts": Object { + "ascii": "Wingdings", + "hiAnsi": "Wingdings", + "hint": "default", + }, + }, + "start": 1, + "suffix": "tab", + "text": "", + }, + Object { + "format": "bullet", + "jc": "left", + "level": 1, + "levelRestart": null, + "paragraphProperty": Object { + "indent": Object { + "end": null, + "firstLineChars": null, + "hangingChars": null, + "specialIndent": Object { + "type": "hanging", + "val": 420, + }, + "start": 2520, + "startChars": null, + }, + "runProperty": Object {}, + "tabs": Array [], + }, + "pstyle": null, + "runProperty": Object { + "fonts": Object { + "ascii": "Wingdings", + "hiAnsi": "Wingdings", + "hint": "default", + }, + }, + "start": 1, + "suffix": "tab", + "text": "", + }, + Object { + "format": "bullet", + "jc": "left", + "level": 2, + "levelRestart": null, + "paragraphProperty": Object { + "indent": Object { + "end": null, + "firstLineChars": null, + "hangingChars": null, + "specialIndent": Object { + "type": "hanging", + "val": 420, + }, + "start": 2940, + "startChars": null, + }, + "runProperty": Object {}, + "tabs": Array [], + }, + "pstyle": null, + "runProperty": Object { + "fonts": Object { + "ascii": "Wingdings", + "hiAnsi": "Wingdings", + "hint": "default", + }, + }, + "start": 1, + "suffix": "tab", + "text": "", + }, + Object { + "format": "bullet", + "jc": "left", + "level": 3, + "levelRestart": null, + "paragraphProperty": Object { + "indent": Object { + "end": null, + "firstLineChars": null, + "hangingChars": null, + "specialIndent": Object { + "type": "hanging", + "val": 420, + }, + "start": 3360, + "startChars": null, + }, + "runProperty": Object {}, + "tabs": Array [], + }, + "pstyle": null, + "runProperty": Object { + "fonts": Object { + "ascii": "Wingdings", + "hiAnsi": "Wingdings", + "hint": "default", + }, + }, + "start": 1, + "suffix": "tab", + "text": "", + }, + Object { + "format": "bullet", + "jc": "left", + "level": 4, + "levelRestart": null, + "paragraphProperty": Object { + "indent": Object { + "end": null, + "firstLineChars": null, + "hangingChars": null, + "specialIndent": Object { + "type": "hanging", + "val": 420, + }, + "start": 3780, + "startChars": null, + }, + "runProperty": Object {}, + "tabs": Array [], + }, + "pstyle": null, + "runProperty": Object { + "fonts": Object { + "ascii": "Wingdings", + "hiAnsi": "Wingdings", + "hint": "default", + }, + }, + "start": 1, + "suffix": "tab", + "text": "", + }, + Object { + "format": "bullet", + "jc": "left", + "level": 5, + "levelRestart": null, + "paragraphProperty": Object { + "indent": Object { + "end": null, + "firstLineChars": null, + "hangingChars": null, + "specialIndent": Object { + "type": "hanging", + "val": 420, + }, + "start": 4200, + "startChars": null, + }, + "runProperty": Object {}, + "tabs": Array [], + }, + "pstyle": null, + "runProperty": Object { + "fonts": Object { + "ascii": "Wingdings", + "hiAnsi": "Wingdings", + "hint": "default", + }, + }, + "start": 1, + "suffix": "tab", + "text": "", + }, + Object { + "format": "bullet", + "jc": "left", + "level": 6, + "levelRestart": null, + "paragraphProperty": Object { + "indent": Object { + "end": null, + "firstLineChars": null, + "hangingChars": null, + "specialIndent": Object { + "type": "hanging", + "val": 420, + }, + "start": 4620, + "startChars": null, + }, + "runProperty": Object {}, + "tabs": Array [], + }, + "pstyle": null, + "runProperty": Object { + "fonts": Object { + "ascii": "Wingdings", + "hiAnsi": "Wingdings", + "hint": "default", + }, + }, + "start": 1, + "suffix": "tab", + "text": "", + }, + Object { + "format": "bullet", + "jc": "left", + "level": 7, + "levelRestart": null, + "paragraphProperty": Object { + "indent": Object { + "end": null, + "firstLineChars": null, + "hangingChars": null, + "specialIndent": Object { + "type": "hanging", + "val": 420, + }, + "start": 5040, + "startChars": null, + }, + "runProperty": Object {}, + "tabs": Array [], + }, + "pstyle": null, + "runProperty": Object { + "fonts": Object { + "ascii": "Wingdings", + "hiAnsi": "Wingdings", + "hint": "default", + }, + }, + "start": 1, + "suffix": "tab", + "text": "", + }, + Object { + "format": "bullet", + "jc": "left", + "level": 8, + "levelRestart": null, + "paragraphProperty": Object { + "indent": Object { + "end": null, + "firstLineChars": null, + "hangingChars": null, + "specialIndent": Object { + "type": "hanging", + "val": 420, + }, + "start": 5460, + "startChars": null, + }, + "runProperty": Object {}, + "tabs": Array [], + }, + "pstyle": null, + "runProperty": Object { + "fonts": Object { + "ascii": "Wingdings", + "hiAnsi": "Wingdings", + "hint": "default", + }, + }, + "start": 1, + "suffix": "tab", + "text": "", + }, + ], + "numStyleLink": null, + "styleLink": null, + }, + Object { + "id": 58, + "levels": Array [ + Object { + "format": "lowerLetter", + "jc": "left", + "level": 0, + "levelRestart": null, + "paragraphProperty": Object { + "indent": Object { + "end": null, + "firstLineChars": null, + "hangingChars": null, + "specialIndent": Object { + "type": "hanging", + "val": 420, + }, + "start": 1554, + "startChars": null, + }, + "runProperty": Object {}, + "tabs": Array [], + }, + "pstyle": null, + "runProperty": Object { + "bold": false, + "boldCs": false, + "fonts": Object { + "ascii": "Times New Roman", + "cs": "Times New Roman", + "hiAnsi": "Times New Roman", + "hint": "default", + }, + "italic": false, + "italicCs": false, + "sz": 24, + "szCs": 24, + "underline": "none", + }, + "start": 2, + "suffix": "tab", + "text": "(%1)", + }, + Object { + "format": "aiueoFullWidth", + "jc": "left", + "level": 1, + "levelRestart": null, + "paragraphProperty": Object { + "indent": Object { + "end": null, + "firstLineChars": null, + "hangingChars": null, + "specialIndent": Object { + "type": "hanging", + "val": 420, + }, + "start": 840, + "startChars": null, + }, + "runProperty": Object {}, + "tabs": Array [], + }, + "pstyle": null, + "runProperty": Object {}, + "start": 1, + "suffix": "tab", + "text": "(%2)", + }, + Object { + "format": "decimalEnclosedCircle", + "jc": "left", + "level": 2, + "levelRestart": null, + "paragraphProperty": Object { + "indent": Object { + "end": null, + "firstLineChars": null, + "hangingChars": null, + "specialIndent": Object { + "type": "hanging", + "val": 420, + }, + "start": 1260, + "startChars": null, + }, + "runProperty": Object {}, + "tabs": Array [], + }, + "pstyle": null, + "runProperty": Object {}, + "start": 1, + "suffix": "tab", + "text": "%3", + }, + Object { + "format": "decimal", + "jc": "left", + "level": 3, + "levelRestart": null, + "paragraphProperty": Object { + "indent": Object { + "end": null, + "firstLineChars": null, + "hangingChars": null, + "specialIndent": Object { + "type": "hanging", + "val": 420, + }, + "start": 1680, + "startChars": null, + }, + "runProperty": Object {}, + "tabs": Array [], + }, + "pstyle": null, + "runProperty": Object {}, + "start": 1, + "suffix": "tab", + "text": "%4.", + }, + Object { + "format": "aiueoFullWidth", + "jc": "left", + "level": 4, + "levelRestart": null, + "paragraphProperty": Object { + "indent": Object { + "end": null, + "firstLineChars": null, + "hangingChars": null, + "specialIndent": Object { + "type": "hanging", + "val": 420, + }, + "start": 2100, + "startChars": null, + }, + "runProperty": Object {}, + "tabs": Array [], + }, + "pstyle": null, + "runProperty": Object {}, + "start": 1, + "suffix": "tab", + "text": "(%5)", + }, + Object { + "format": "decimalEnclosedCircle", + "jc": "left", + "level": 5, + "levelRestart": null, + "paragraphProperty": Object { + "indent": Object { + "end": null, + "firstLineChars": null, + "hangingChars": null, + "specialIndent": Object { + "type": "hanging", + "val": 420, + }, + "start": 2520, + "startChars": null, + }, + "runProperty": Object {}, + "tabs": Array [], + }, + "pstyle": null, + "runProperty": Object {}, + "start": 1, + "suffix": "tab", + "text": "%6", + }, + Object { + "format": "decimal", + "jc": "left", + "level": 6, + "levelRestart": null, + "paragraphProperty": Object { + "indent": Object { + "end": null, + "firstLineChars": null, + "hangingChars": null, + "specialIndent": Object { + "type": "hanging", + "val": 420, + }, + "start": 2940, + "startChars": null, + }, + "runProperty": Object {}, + "tabs": Array [], + }, + "pstyle": null, + "runProperty": Object {}, + "start": 1, + "suffix": "tab", + "text": "%7.", + }, + Object { + "format": "aiueoFullWidth", + "jc": "left", + "level": 7, + "levelRestart": null, + "paragraphProperty": Object { + "indent": Object { + "end": null, + "firstLineChars": null, + "hangingChars": null, + "specialIndent": Object { + "type": "hanging", + "val": 420, + }, + "start": 3360, + "startChars": null, + }, + "runProperty": Object {}, + "tabs": Array [], + }, + "pstyle": null, + "runProperty": Object {}, + "start": 1, + "suffix": "tab", + "text": "(%8)", + }, + Object { + "format": "decimalEnclosedCircle", + "jc": "left", + "level": 8, + "levelRestart": null, + "paragraphProperty": Object { + "indent": Object { + "end": null, + "firstLineChars": null, + "hangingChars": null, + "specialIndent": Object { + "type": "hanging", + "val": 420, + }, + "start": 3780, + "startChars": null, + }, + "runProperty": Object {}, + "tabs": Array [], + }, + "pstyle": null, + "runProperty": Object {}, + "start": 1, + "suffix": "tab", + "text": "%9", + }, + ], + "numStyleLink": null, + "styleLink": null, + }, + Object { + "id": 59, + "levels": Array [ + Object { + "format": "upperLetter", + "jc": "left", + "level": 0, + "levelRestart": null, + "paragraphProperty": Object { + "indent": Object { + "end": null, + "firstLineChars": null, + "hangingChars": null, + "specialIndent": Object { + "type": "hanging", + "val": 270, + }, + "start": 724, + "startChars": null, + }, + "runProperty": Object {}, + "tabs": Array [], + }, + "pstyle": null, + "runProperty": Object { + "fonts": Object { + "hint": "eastAsia", + }, + }, + "start": 1, + "suffix": "tab", + "text": "%1", + }, + Object { + "format": "aiueoFullWidth", + "jc": "left", + "level": 1, + "levelRestart": null, + "paragraphProperty": Object { + "indent": Object { + "end": null, + "firstLineChars": null, + "hangingChars": null, + "specialIndent": Object { + "type": "hanging", + "val": 420, + }, + "start": 1114, + "startChars": null, + }, + "runProperty": Object {}, + "tabs": Array [], + }, + "pstyle": null, + "runProperty": Object {}, + "start": 1, + "suffix": "tab", + "text": "(%2)", + }, + Object { + "format": "decimalEnclosedCircle", + "jc": "left", + "level": 2, + "levelRestart": null, + "paragraphProperty": Object { + "indent": Object { + "end": null, + "firstLineChars": null, + "hangingChars": null, + "specialIndent": Object { + "type": "hanging", + "val": 420, + }, + "start": 1534, + "startChars": null, + }, + "runProperty": Object {}, + "tabs": Array [], + }, + "pstyle": null, + "runProperty": Object {}, + "start": 1, + "suffix": "tab", + "text": "%3", + }, + Object { + "format": "decimal", + "jc": "left", + "level": 3, + "levelRestart": null, + "paragraphProperty": Object { + "indent": Object { + "end": null, + "firstLineChars": null, + "hangingChars": null, + "specialIndent": Object { + "type": "hanging", + "val": 420, + }, + "start": 1954, + "startChars": null, + }, + "runProperty": Object {}, + "tabs": Array [], + }, + "pstyle": null, + "runProperty": Object {}, + "start": 1, + "suffix": "tab", + "text": "%4.", + }, + Object { + "format": "aiueoFullWidth", + "jc": "left", + "level": 4, + "levelRestart": null, + "paragraphProperty": Object { + "indent": Object { + "end": null, + "firstLineChars": null, + "hangingChars": null, + "specialIndent": Object { + "type": "hanging", + "val": 420, + }, + "start": 2374, + "startChars": null, + }, + "runProperty": Object {}, + "tabs": Array [], + }, + "pstyle": null, + "runProperty": Object {}, + "start": 1, + "suffix": "tab", + "text": "(%5)", + }, + Object { + "format": "decimalEnclosedCircle", + "jc": "left", + "level": 5, + "levelRestart": null, + "paragraphProperty": Object { + "indent": Object { + "end": null, + "firstLineChars": null, + "hangingChars": null, + "specialIndent": Object { + "type": "hanging", + "val": 420, + }, + "start": 2794, + "startChars": null, + }, + "runProperty": Object {}, + "tabs": Array [], + }, + "pstyle": null, + "runProperty": Object {}, + "start": 1, + "suffix": "tab", + "text": "%6", + }, + Object { + "format": "decimal", + "jc": "left", + "level": 6, + "levelRestart": null, + "paragraphProperty": Object { + "indent": Object { + "end": null, + "firstLineChars": null, + "hangingChars": null, + "specialIndent": Object { + "type": "hanging", + "val": 420, + }, + "start": 3214, + "startChars": null, + }, + "runProperty": Object {}, + "tabs": Array [], + }, + "pstyle": null, + "runProperty": Object {}, + "start": 1, + "suffix": "tab", + "text": "%7.", + }, + Object { + "format": "aiueoFullWidth", + "jc": "left", + "level": 7, + "levelRestart": null, + "paragraphProperty": Object { + "indent": Object { + "end": null, + "firstLineChars": null, + "hangingChars": null, + "specialIndent": Object { + "type": "hanging", + "val": 420, + }, + "start": 3634, + "startChars": null, + }, + "runProperty": Object {}, + "tabs": Array [], + }, + "pstyle": null, + "runProperty": Object {}, + "start": 1, + "suffix": "tab", + "text": "(%8)", + }, + Object { + "format": "decimalEnclosedCircle", + "jc": "left", + "level": 8, + "levelRestart": null, + "paragraphProperty": Object { + "indent": Object { + "end": null, + "firstLineChars": null, + "hangingChars": null, + "specialIndent": Object { + "type": "hanging", + "val": 420, + }, + "start": 4054, + "startChars": null, + }, + "runProperty": Object {}, + "tabs": Array [], + }, + "pstyle": null, + "runProperty": Object {}, + "start": 1, + "suffix": "tab", + "text": "%9", + }, + ], + "numStyleLink": null, + "styleLink": null, + }, + Object { + "id": 60, + "levels": Array [ + Object { + "format": "decimal", + "jc": "left", + "level": 0, + "levelRestart": null, + "paragraphProperty": Object { + "indent": Object { + "end": null, + "firstLineChars": null, + "hangingChars": null, + "specialIndent": Object { + "type": "hanging", + "val": 360, + }, + "start": 540, + "startChars": null, + }, + "runProperty": Object {}, + "tabs": Array [], + }, + "pstyle": null, + "runProperty": Object { + "fonts": Object { + "hint": "eastAsia", + }, + }, + "start": 1, + "suffix": "tab", + "text": "%1.", + }, + Object { + "format": "aiueoFullWidth", + "jc": "left", + "level": 1, + "levelRestart": null, + "paragraphProperty": Object { + "indent": Object { + "end": null, + "firstLineChars": null, + "hangingChars": null, + "specialIndent": Object { + "type": "hanging", + "val": 420, + }, + "start": 840, + "startChars": null, + }, + "runProperty": Object {}, + "tabs": Array [], + }, + "pstyle": null, + "runProperty": Object {}, + "start": 1, + "suffix": "tab", + "text": "(%2)", + }, + Object { + "format": "decimalEnclosedCircle", + "jc": "left", + "level": 2, + "levelRestart": null, + "paragraphProperty": Object { + "indent": Object { + "end": null, + "firstLineChars": null, + "hangingChars": null, + "specialIndent": Object { + "type": "hanging", + "val": 420, + }, + "start": 1260, + "startChars": null, + }, + "runProperty": Object {}, + "tabs": Array [], + }, + "pstyle": null, + "runProperty": Object {}, + "start": 1, + "suffix": "tab", + "text": "%3", + }, + Object { + "format": "decimal", + "jc": "left", + "level": 3, + "levelRestart": null, + "paragraphProperty": Object { + "indent": Object { + "end": null, + "firstLineChars": null, + "hangingChars": null, + "specialIndent": Object { + "type": "hanging", + "val": 420, + }, + "start": 1680, + "startChars": null, + }, + "runProperty": Object {}, + "tabs": Array [], + }, + "pstyle": null, + "runProperty": Object {}, + "start": 1, + "suffix": "tab", + "text": "%4.", + }, + Object { + "format": "aiueoFullWidth", + "jc": "left", + "level": 4, + "levelRestart": null, + "paragraphProperty": Object { + "indent": Object { + "end": null, + "firstLineChars": null, + "hangingChars": null, + "specialIndent": Object { + "type": "hanging", + "val": 420, + }, + "start": 2100, + "startChars": null, + }, + "runProperty": Object {}, + "tabs": Array [], + }, + "pstyle": null, + "runProperty": Object {}, + "start": 1, + "suffix": "tab", + "text": "(%5)", + }, + Object { + "format": "decimalEnclosedCircle", + "jc": "left", + "level": 5, + "levelRestart": null, + "paragraphProperty": Object { + "indent": Object { + "end": null, + "firstLineChars": null, + "hangingChars": null, + "specialIndent": Object { + "type": "hanging", + "val": 420, + }, + "start": 2520, + "startChars": null, + }, + "runProperty": Object {}, + "tabs": Array [], + }, + "pstyle": null, + "runProperty": Object {}, + "start": 1, + "suffix": "tab", + "text": "%6", + }, + Object { + "format": "decimal", + "jc": "left", + "level": 6, + "levelRestart": null, + "paragraphProperty": Object { + "indent": Object { + "end": null, + "firstLineChars": null, + "hangingChars": null, + "specialIndent": Object { + "type": "hanging", + "val": 420, + }, + "start": 2940, + "startChars": null, + }, + "runProperty": Object {}, + "tabs": Array [], + }, + "pstyle": null, + "runProperty": Object {}, + "start": 1, + "suffix": "tab", + "text": "%7.", + }, + Object { + "format": "aiueoFullWidth", + "jc": "left", + "level": 7, + "levelRestart": null, + "paragraphProperty": Object { + "indent": Object { + "end": null, + "firstLineChars": null, + "hangingChars": null, + "specialIndent": Object { + "type": "hanging", + "val": 420, + }, + "start": 3360, + "startChars": null, + }, + "runProperty": Object {}, + "tabs": Array [], + }, + "pstyle": null, + "runProperty": Object {}, + "start": 1, + "suffix": "tab", + "text": "(%8)", + }, + Object { + "format": "decimalEnclosedCircle", + "jc": "left", + "level": 8, + "levelRestart": null, + "paragraphProperty": Object { + "indent": Object { + "end": null, + "firstLineChars": null, + "hangingChars": null, + "specialIndent": Object { + "type": "hanging", + "val": 420, + }, + "start": 3780, + "startChars": null, + }, + "runProperty": Object {}, + "tabs": Array [], + }, + "pstyle": null, + "runProperty": Object {}, + "start": 1, + "suffix": "tab", + "text": "%9", + }, + ], + "numStyleLink": null, + "styleLink": null, + }, + Object { + "id": 61, + "levels": Array [ + Object { + "format": "bullet", + "jc": "left", + "level": 0, + "levelRestart": null, + "paragraphProperty": Object { + "indent": Object { + "end": null, + "firstLineChars": null, + "hangingChars": null, + "specialIndent": Object { + "type": "hanging", + "val": 454, + }, + "start": 1588, + "startChars": null, + }, + "runProperty": Object {}, + "tabs": Array [], + }, + "pstyle": "Reference", + "runProperty": Object { + "fonts": Object { + "ascii": "Wingdings", + "hiAnsi": "Wingdings", + "hint": "default", + }, + }, + "start": 1, + "suffix": "tab", + "text": "", + }, + Object { + "format": "bullet", + "jc": "left", + "level": 1, + "levelRestart": null, + "paragraphProperty": Object { + "indent": Object { + "end": null, + "firstLineChars": null, + "hangingChars": null, + "specialIndent": Object { + "type": "hanging", + "val": 420, + }, + "start": 1691, + "startChars": null, + }, + "runProperty": Object {}, + "tabs": Array [], + }, + "pstyle": null, + "runProperty": Object { + "fonts": Object { + "ascii": "Wingdings", + "hiAnsi": "Wingdings", + "hint": "default", + }, + }, + "start": 1, + "suffix": "tab", + "text": "", + }, + Object { + "format": "bullet", + "jc": "left", + "level": 2, + "levelRestart": null, + "paragraphProperty": Object { + "indent": Object { + "end": null, + "firstLineChars": null, + "hangingChars": null, + "specialIndent": Object { + "type": "hanging", + "val": 420, + }, + "start": 2111, + "startChars": null, + }, + "runProperty": Object {}, + "tabs": Array [], + }, + "pstyle": null, + "runProperty": Object { + "fonts": Object { + "ascii": "Wingdings", + "hiAnsi": "Wingdings", + "hint": "default", + }, + }, + "start": 1, + "suffix": "tab", + "text": "", + }, + Object { + "format": "bullet", + "jc": "left", + "level": 3, + "levelRestart": null, + "paragraphProperty": Object { + "indent": Object { + "end": null, + "firstLineChars": null, + "hangingChars": null, + "specialIndent": Object { + "type": "hanging", + "val": 420, + }, + "start": 2531, + "startChars": null, + }, + "runProperty": Object {}, + "tabs": Array [], + }, + "pstyle": null, + "runProperty": Object { + "fonts": Object { + "ascii": "Wingdings", + "hiAnsi": "Wingdings", + "hint": "default", + }, + }, + "start": 1, + "suffix": "tab", + "text": "", + }, + Object { + "format": "bullet", + "jc": "left", + "level": 4, + "levelRestart": null, + "paragraphProperty": Object { + "indent": Object { + "end": null, + "firstLineChars": null, + "hangingChars": null, + "specialIndent": Object { + "type": "hanging", + "val": 420, + }, + "start": 2951, + "startChars": null, + }, + "runProperty": Object {}, + "tabs": Array [], + }, + "pstyle": null, + "runProperty": Object { + "fonts": Object { + "ascii": "Wingdings", + "hiAnsi": "Wingdings", + "hint": "default", + }, + }, + "start": 1, + "suffix": "tab", + "text": "", + }, + Object { + "format": "bullet", + "jc": "left", + "level": 5, + "levelRestart": null, + "paragraphProperty": Object { + "indent": Object { + "end": null, + "firstLineChars": null, + "hangingChars": null, + "specialIndent": Object { + "type": "hanging", + "val": 420, + }, + "start": 3371, + "startChars": null, + }, + "runProperty": Object {}, + "tabs": Array [], + }, + "pstyle": null, + "runProperty": Object { + "fonts": Object { + "ascii": "Wingdings", + "hiAnsi": "Wingdings", + "hint": "default", + }, + }, + "start": 1, + "suffix": "tab", + "text": "", + }, + Object { + "format": "bullet", + "jc": "left", + "level": 6, + "levelRestart": null, + "paragraphProperty": Object { + "indent": Object { + "end": null, + "firstLineChars": null, + "hangingChars": null, + "specialIndent": Object { + "type": "hanging", + "val": 420, + }, + "start": 3791, + "startChars": null, + }, + "runProperty": Object {}, + "tabs": Array [], + }, + "pstyle": null, + "runProperty": Object { + "fonts": Object { + "ascii": "Wingdings", + "hiAnsi": "Wingdings", + "hint": "default", + }, + }, + "start": 1, + "suffix": "tab", + "text": "", + }, + Object { + "format": "bullet", + "jc": "left", + "level": 7, + "levelRestart": null, + "paragraphProperty": Object { + "indent": Object { + "end": null, + "firstLineChars": null, + "hangingChars": null, + "specialIndent": Object { + "type": "hanging", + "val": 420, + }, + "start": 4211, + "startChars": null, + }, + "runProperty": Object {}, + "tabs": Array [], + }, + "pstyle": null, + "runProperty": Object { + "fonts": Object { + "ascii": "Wingdings", + "hiAnsi": "Wingdings", + "hint": "default", + }, + }, + "start": 1, + "suffix": "tab", + "text": "", + }, + Object { + "format": "bullet", + "jc": "left", + "level": 8, + "levelRestart": null, + "paragraphProperty": Object { + "indent": Object { + "end": null, + "firstLineChars": null, + "hangingChars": null, + "specialIndent": Object { + "type": "hanging", + "val": 420, + }, + "start": 4631, + "startChars": null, + }, + "runProperty": Object {}, + "tabs": Array [], + }, + "pstyle": null, + "runProperty": Object { + "fonts": Object { + "ascii": "Wingdings", + "hiAnsi": "Wingdings", + "hint": "default", + }, + }, + "start": 1, + "suffix": "tab", + "text": "", + }, + ], + "numStyleLink": null, + "styleLink": null, + }, + Object { + "id": 62, + "levels": Array [ + Object { + "format": "bullet", + "jc": "left", + "level": 0, + "levelRestart": null, + "paragraphProperty": Object { + "indent": Object { + "end": null, + "firstLineChars": null, + "hangingChars": null, + "specialIndent": Object { + "type": "hanging", + "val": 420, + }, + "start": 2365, + "startChars": null, + }, + "runProperty": Object {}, + "tabs": Array [], + }, + "pstyle": null, + "runProperty": Object { + "fonts": Object { + "ascii": "Wingdings", + "hiAnsi": "Wingdings", + "hint": "default", + }, + "italic": true, + "italicCs": true, + "sz": 24, + "szCs": 24, + }, + "start": 1, + "suffix": "tab", + "text": "", + }, + Object { + "format": "bullet", + "jc": "left", + "level": 1, + "levelRestart": null, + "paragraphProperty": Object { + "indent": Object { + "end": null, + "firstLineChars": null, + "hangingChars": null, + "specialIndent": Object { + "type": "hanging", + "val": 420, + }, + "start": 2785, + "startChars": null, + }, + "runProperty": Object {}, + "tabs": Array [], + }, + "pstyle": null, + "runProperty": Object { + "fonts": Object { + "ascii": "Wingdings", + "hiAnsi": "Wingdings", + "hint": "default", + }, + }, + "start": 1, + "suffix": "tab", + "text": "", + }, + Object { + "format": "bullet", + "jc": "left", + "level": 2, + "levelRestart": null, + "paragraphProperty": Object { + "indent": Object { + "end": null, + "firstLineChars": null, + "hangingChars": null, + "specialIndent": Object { + "type": "hanging", + "val": 420, + }, + "start": 3205, + "startChars": null, + }, + "runProperty": Object {}, + "tabs": Array [], + }, + "pstyle": null, + "runProperty": Object { + "fonts": Object { + "ascii": "Wingdings", + "hiAnsi": "Wingdings", + "hint": "default", + }, + }, + "start": 1, + "suffix": "tab", + "text": "", + }, + Object { + "format": "bullet", + "jc": "left", + "level": 3, + "levelRestart": null, + "paragraphProperty": Object { + "indent": Object { + "end": null, + "firstLineChars": null, + "hangingChars": null, + "specialIndent": Object { + "type": "hanging", + "val": 420, + }, + "start": 3625, + "startChars": null, + }, + "runProperty": Object {}, + "tabs": Array [], + }, + "pstyle": null, + "runProperty": Object { + "fonts": Object { + "ascii": "Wingdings", + "hiAnsi": "Wingdings", + "hint": "default", + }, + }, + "start": 1, + "suffix": "tab", + "text": "", + }, + Object { + "format": "bullet", + "jc": "left", + "level": 4, + "levelRestart": null, + "paragraphProperty": Object { + "indent": Object { + "end": null, + "firstLineChars": null, + "hangingChars": null, + "specialIndent": Object { + "type": "hanging", + "val": 420, + }, + "start": 4045, + "startChars": null, + }, + "runProperty": Object {}, + "tabs": Array [], + }, + "pstyle": null, + "runProperty": Object { + "fonts": Object { + "ascii": "Wingdings", + "hiAnsi": "Wingdings", + "hint": "default", + }, + }, + "start": 1, + "suffix": "tab", + "text": "", + }, + Object { + "format": "bullet", + "jc": "left", + "level": 5, + "levelRestart": null, + "paragraphProperty": Object { + "indent": Object { + "end": null, + "firstLineChars": null, + "hangingChars": null, + "specialIndent": Object { + "type": "hanging", + "val": 420, + }, + "start": 4465, + "startChars": null, + }, + "runProperty": Object {}, + "tabs": Array [], + }, + "pstyle": null, + "runProperty": Object { + "fonts": Object { + "ascii": "Wingdings", + "hiAnsi": "Wingdings", + "hint": "default", + }, + }, + "start": 1, + "suffix": "tab", + "text": "", + }, + Object { + "format": "bullet", + "jc": "left", + "level": 6, + "levelRestart": null, + "paragraphProperty": Object { + "indent": Object { + "end": null, + "firstLineChars": null, + "hangingChars": null, + "specialIndent": Object { + "type": "hanging", + "val": 420, + }, + "start": 4885, + "startChars": null, + }, + "runProperty": Object {}, + "tabs": Array [], + }, + "pstyle": null, + "runProperty": Object { + "fonts": Object { + "ascii": "Wingdings", + "hiAnsi": "Wingdings", + "hint": "default", + }, + }, + "start": 1, + "suffix": "tab", + "text": "", + }, + Object { + "format": "bullet", + "jc": "left", + "level": 7, + "levelRestart": null, + "paragraphProperty": Object { + "indent": Object { + "end": null, + "firstLineChars": null, + "hangingChars": null, + "specialIndent": Object { + "type": "hanging", + "val": 420, + }, + "start": 5305, + "startChars": null, + }, + "runProperty": Object {}, + "tabs": Array [], + }, + "pstyle": null, + "runProperty": Object { + "fonts": Object { + "ascii": "Wingdings", + "hiAnsi": "Wingdings", + "hint": "default", + }, + }, + "start": 1, + "suffix": "tab", + "text": "", + }, + Object { + "format": "bullet", + "jc": "left", + "level": 8, + "levelRestart": null, + "paragraphProperty": Object { + "indent": Object { + "end": null, + "firstLineChars": null, + "hangingChars": null, + "specialIndent": Object { + "type": "hanging", + "val": 420, + }, + "start": 5725, + "startChars": null, + }, + "runProperty": Object {}, + "tabs": Array [], + }, + "pstyle": null, + "runProperty": Object { + "fonts": Object { + "ascii": "Wingdings", + "hiAnsi": "Wingdings", + "hint": "default", + }, + }, + "start": 1, + "suffix": "tab", + "text": "", + }, + ], + "numStyleLink": null, + "styleLink": null, + }, + Object { + "id": 63, + "levels": Array [ + Object { + "format": "decimal", + "jc": "left", + "level": 0, + "levelRestart": null, + "paragraphProperty": Object { + "indent": Object { + "end": null, + "firstLineChars": null, + "hangingChars": null, + "specialIndent": Object { + "type": "hanging", + "val": 360, + }, + "start": 540, + "startChars": null, + }, + "runProperty": Object {}, + "tabs": Array [], + }, + "pstyle": null, + "runProperty": Object { + "fonts": Object { + "hint": "eastAsia", + }, + }, + "start": 1, + "suffix": "tab", + "text": "%1.", + }, + Object { + "format": "aiueoFullWidth", + "jc": "left", + "level": 1, + "levelRestart": null, + "paragraphProperty": Object { + "indent": Object { + "end": null, + "firstLineChars": null, + "hangingChars": null, + "specialIndent": Object { + "type": "hanging", + "val": 420, + }, + "start": 1020, + "startChars": null, + }, + "runProperty": Object {}, + "tabs": Array [], + }, + "pstyle": null, + "runProperty": Object {}, + "start": 1, + "suffix": "tab", + "text": "(%2)", + }, + Object { + "format": "decimalEnclosedCircle", + "jc": "left", + "level": 2, + "levelRestart": null, + "paragraphProperty": Object { + "indent": Object { + "end": null, + "firstLineChars": null, + "hangingChars": null, + "specialIndent": Object { + "type": "hanging", + "val": 420, + }, + "start": 1440, + "startChars": null, + }, + "runProperty": Object {}, + "tabs": Array [], + }, + "pstyle": null, + "runProperty": Object {}, + "start": 1, + "suffix": "tab", + "text": "%3", + }, + Object { + "format": "decimal", + "jc": "left", + "level": 3, + "levelRestart": null, + "paragraphProperty": Object { + "indent": Object { + "end": null, + "firstLineChars": null, + "hangingChars": null, + "specialIndent": Object { + "type": "hanging", + "val": 420, + }, + "start": 1860, + "startChars": null, + }, + "runProperty": Object {}, + "tabs": Array [], + }, + "pstyle": null, + "runProperty": Object {}, + "start": 1, + "suffix": "tab", + "text": "%4.", + }, + Object { + "format": "aiueoFullWidth", + "jc": "left", + "level": 4, + "levelRestart": null, + "paragraphProperty": Object { + "indent": Object { + "end": null, + "firstLineChars": null, + "hangingChars": null, + "specialIndent": Object { + "type": "hanging", + "val": 420, + }, + "start": 2280, + "startChars": null, + }, + "runProperty": Object {}, + "tabs": Array [], + }, + "pstyle": null, + "runProperty": Object {}, + "start": 1, + "suffix": "tab", + "text": "(%5)", + }, + Object { + "format": "decimalEnclosedCircle", + "jc": "left", + "level": 5, + "levelRestart": null, + "paragraphProperty": Object { + "indent": Object { + "end": null, + "firstLineChars": null, + "hangingChars": null, + "specialIndent": Object { + "type": "hanging", + "val": 420, + }, + "start": 2700, + "startChars": null, + }, + "runProperty": Object {}, + "tabs": Array [], + }, + "pstyle": null, + "runProperty": Object {}, + "start": 1, + "suffix": "tab", + "text": "%6", + }, + Object { + "format": "decimal", + "jc": "left", + "level": 6, + "levelRestart": null, + "paragraphProperty": Object { + "indent": Object { + "end": null, + "firstLineChars": null, + "hangingChars": null, + "specialIndent": Object { + "type": "hanging", + "val": 420, + }, + "start": 3120, + "startChars": null, + }, + "runProperty": Object {}, + "tabs": Array [], + }, + "pstyle": null, + "runProperty": Object {}, + "start": 1, + "suffix": "tab", + "text": "%7.", + }, + Object { + "format": "aiueoFullWidth", + "jc": "left", + "level": 7, + "levelRestart": null, + "paragraphProperty": Object { + "indent": Object { + "end": null, + "firstLineChars": null, + "hangingChars": null, + "specialIndent": Object { + "type": "hanging", + "val": 420, + }, + "start": 3540, + "startChars": null, + }, + "runProperty": Object {}, + "tabs": Array [], + }, + "pstyle": null, + "runProperty": Object {}, + "start": 1, + "suffix": "tab", + "text": "(%8)", + }, + Object { + "format": "decimalEnclosedCircle", + "jc": "left", + "level": 8, + "levelRestart": null, + "paragraphProperty": Object { + "indent": Object { + "end": null, + "firstLineChars": null, + "hangingChars": null, + "specialIndent": Object { + "type": "hanging", + "val": 420, + }, + "start": 3960, + "startChars": null, + }, + "runProperty": Object {}, + "tabs": Array [], + }, + "pstyle": null, + "runProperty": Object {}, + "start": 1, + "suffix": "tab", + "text": "%9", + }, + ], + "numStyleLink": null, + "styleLink": null, + }, + Object { + "id": 64, + "levels": Array [ + Object { + "format": "decimalEnclosedCircle", + "jc": "left", + "level": 0, + "levelRestart": null, + "paragraphProperty": Object { + "indent": Object { + "end": null, + "firstLineChars": null, + "hangingChars": null, + "specialIndent": Object { + "type": "hanging", + "val": 270, + }, + "start": 724, + "startChars": null, + }, + "runProperty": Object {}, + "tabs": Array [], + }, + "pstyle": null, + "runProperty": Object { + "fonts": Object { + "hint": "eastAsia", + }, + }, + "start": 1, + "suffix": "tab", + "text": "%1", + }, + Object { + "format": "upperLetter", + "jc": "left", + "level": 1, + "levelRestart": null, + "paragraphProperty": Object { + "indent": Object { + "end": null, + "firstLineChars": null, + "hangingChars": null, + "specialIndent": Object { + "type": "hanging", + "val": 270, + }, + "start": -116, + "startChars": null, + }, + "runProperty": Object {}, + "tabs": Array [], + }, + "pstyle": null, + "runProperty": Object { + "fonts": Object { + "hint": "eastAsia", + }, + }, + "start": 1, + "suffix": "tab", + "text": "%2", + }, + Object { + "format": "decimalEnclosedCircle", + "jc": "left", + "level": 2, + "levelRestart": null, + "paragraphProperty": Object { + "indent": Object { + "end": null, + "firstLineChars": null, + "hangingChars": null, + "specialIndent": Object { + "type": "hanging", + "val": 420, + }, + "start": 454, + "startChars": null, + }, + "runProperty": Object {}, + "tabs": Array [], + }, + "pstyle": null, + "runProperty": Object {}, + "start": 1, + "suffix": "tab", + "text": "%3", + }, + Object { + "format": "decimal", + "jc": "left", + "level": 3, + "levelRestart": null, + "paragraphProperty": Object { + "indent": Object { + "end": null, + "firstLineChars": null, + "hangingChars": null, + "specialIndent": Object { + "type": "hanging", + "val": 420, + }, + "start": 874, + "startChars": null, + }, + "runProperty": Object {}, + "tabs": Array [], + }, + "pstyle": null, + "runProperty": Object {}, + "start": 1, + "suffix": "tab", + "text": "%4.", + }, + Object { + "format": "aiueoFullWidth", + "jc": "left", + "level": 4, + "levelRestart": null, + "paragraphProperty": Object { + "indent": Object { + "end": null, + "firstLineChars": null, + "hangingChars": null, + "specialIndent": Object { + "type": "hanging", + "val": 420, + }, + "start": 1294, + "startChars": null, + }, + "runProperty": Object {}, + "tabs": Array [], + }, + "pstyle": null, + "runProperty": Object {}, + "start": 1, + "suffix": "tab", + "text": "(%5)", + }, + Object { + "format": "decimalEnclosedCircle", + "jc": "left", + "level": 5, + "levelRestart": null, + "paragraphProperty": Object { + "indent": Object { + "end": null, + "firstLineChars": null, + "hangingChars": null, + "specialIndent": Object { + "type": "hanging", + "val": 420, + }, + "start": 1714, + "startChars": null, + }, + "runProperty": Object {}, + "tabs": Array [], + }, + "pstyle": null, + "runProperty": Object {}, + "start": 1, + "suffix": "tab", + "text": "%6", + }, + Object { + "format": "decimal", + "jc": "left", + "level": 6, + "levelRestart": null, + "paragraphProperty": Object { + "indent": Object { + "end": null, + "firstLineChars": null, + "hangingChars": null, + "specialIndent": Object { + "type": "hanging", + "val": 420, + }, + "start": 2134, + "startChars": null, + }, + "runProperty": Object {}, + "tabs": Array [], + }, + "pstyle": null, + "runProperty": Object {}, + "start": 1, + "suffix": "tab", + "text": "%7.", + }, + Object { + "format": "aiueoFullWidth", + "jc": "left", + "level": 7, + "levelRestart": null, + "paragraphProperty": Object { + "indent": Object { + "end": null, + "firstLineChars": null, + "hangingChars": null, + "specialIndent": Object { + "type": "hanging", + "val": 420, + }, + "start": 2554, + "startChars": null, + }, + "runProperty": Object {}, + "tabs": Array [], + }, + "pstyle": null, + "runProperty": Object {}, + "start": 1, + "suffix": "tab", + "text": "(%8)", + }, + Object { + "format": "decimalEnclosedCircle", + "jc": "left", + "level": 8, + "levelRestart": null, + "paragraphProperty": Object { + "indent": Object { + "end": null, + "firstLineChars": null, + "hangingChars": null, + "specialIndent": Object { + "type": "hanging", + "val": 420, + }, + "start": 2974, + "startChars": null, + }, + "runProperty": Object {}, + "tabs": Array [], + }, + "pstyle": null, + "runProperty": Object {}, + "start": 1, + "suffix": "tab", + "text": "%9", + }, + ], + "numStyleLink": null, + "styleLink": null, + }, + Object { + "id": 65, + "levels": Array [ + Object { + "format": "decimal", + "jc": "left", + "level": 0, + "levelRestart": null, + "paragraphProperty": Object { + "indent": Object { + "end": null, + "firstLineChars": null, + "hangingChars": null, + "specialIndent": Object { + "type": "hanging", + "val": 360, + }, + "start": 540, + "startChars": null, + }, + "runProperty": Object {}, + "tabs": Array [], + }, + "pstyle": null, + "runProperty": Object { + "fonts": Object { + "hint": "eastAsia", + }, + }, + "start": 1, + "suffix": "tab", + "text": "%1.", + }, + Object { + "format": "aiueoFullWidth", + "jc": "left", + "level": 1, + "levelRestart": null, + "paragraphProperty": Object { + "indent": Object { + "end": null, + "firstLineChars": null, + "hangingChars": null, + "specialIndent": Object { + "type": "hanging", + "val": 420, + }, + "start": 840, + "startChars": null, + }, + "runProperty": Object {}, + "tabs": Array [], + }, + "pstyle": null, + "runProperty": Object {}, + "start": 1, + "suffix": "tab", + "text": "(%2)", + }, + Object { + "format": "decimalEnclosedCircle", + "jc": "left", + "level": 2, + "levelRestart": null, + "paragraphProperty": Object { + "indent": Object { + "end": null, + "firstLineChars": null, + "hangingChars": null, + "specialIndent": Object { + "type": "hanging", + "val": 420, + }, + "start": 1260, + "startChars": null, + }, + "runProperty": Object {}, + "tabs": Array [], + }, + "pstyle": null, + "runProperty": Object {}, + "start": 1, + "suffix": "tab", + "text": "%3", + }, + Object { + "format": "decimal", + "jc": "left", + "level": 3, + "levelRestart": null, + "paragraphProperty": Object { + "indent": Object { + "end": null, + "firstLineChars": null, + "hangingChars": null, + "specialIndent": Object { + "type": "hanging", + "val": 420, + }, + "start": 1680, + "startChars": null, + }, + "runProperty": Object {}, + "tabs": Array [], + }, + "pstyle": null, + "runProperty": Object {}, + "start": 1, + "suffix": "tab", + "text": "%4.", + }, + Object { + "format": "aiueoFullWidth", + "jc": "left", + "level": 4, + "levelRestart": null, + "paragraphProperty": Object { + "indent": Object { + "end": null, + "firstLineChars": null, + "hangingChars": null, + "specialIndent": Object { + "type": "hanging", + "val": 420, + }, + "start": 2100, + "startChars": null, + }, + "runProperty": Object {}, + "tabs": Array [], + }, + "pstyle": null, + "runProperty": Object {}, + "start": 1, + "suffix": "tab", + "text": "(%5)", + }, + Object { + "format": "decimalEnclosedCircle", + "jc": "left", + "level": 5, + "levelRestart": null, + "paragraphProperty": Object { + "indent": Object { + "end": null, + "firstLineChars": null, + "hangingChars": null, + "specialIndent": Object { + "type": "hanging", + "val": 420, + }, + "start": 2520, + "startChars": null, + }, + "runProperty": Object {}, + "tabs": Array [], + }, + "pstyle": null, + "runProperty": Object {}, + "start": 1, + "suffix": "tab", + "text": "%6", + }, + Object { + "format": "decimal", + "jc": "left", + "level": 6, + "levelRestart": null, + "paragraphProperty": Object { + "indent": Object { + "end": null, + "firstLineChars": null, + "hangingChars": null, + "specialIndent": Object { + "type": "hanging", + "val": 420, + }, + "start": 2940, + "startChars": null, + }, + "runProperty": Object {}, + "tabs": Array [], + }, + "pstyle": null, + "runProperty": Object {}, + "start": 1, + "suffix": "tab", + "text": "%7.", + }, + Object { + "format": "aiueoFullWidth", + "jc": "left", + "level": 7, + "levelRestart": null, + "paragraphProperty": Object { + "indent": Object { + "end": null, + "firstLineChars": null, + "hangingChars": null, + "specialIndent": Object { + "type": "hanging", + "val": 420, + }, + "start": 3360, + "startChars": null, + }, + "runProperty": Object {}, + "tabs": Array [], + }, + "pstyle": null, + "runProperty": Object {}, + "start": 1, + "suffix": "tab", + "text": "(%8)", + }, + Object { + "format": "decimalEnclosedCircle", + "jc": "left", + "level": 8, + "levelRestart": null, + "paragraphProperty": Object { + "indent": Object { + "end": null, + "firstLineChars": null, + "hangingChars": null, + "specialIndent": Object { + "type": "hanging", + "val": 420, + }, + "start": 3780, + "startChars": null, + }, + "runProperty": Object {}, + "tabs": Array [], + }, + "pstyle": null, + "runProperty": Object {}, + "start": 1, + "suffix": "tab", + "text": "%9", + }, + ], + "numStyleLink": null, + "styleLink": null, + }, + Object { + "id": 66, + "levels": Array [ + Object { + "format": "bullet", + "jc": "left", + "level": 0, + "levelRestart": null, + "paragraphProperty": Object { + "indent": Object { + "end": null, + "firstLineChars": null, + "hangingChars": null, + "specialIndent": Object { + "type": "hanging", + "val": 420, + }, + "start": 2310, + "startChars": null, + }, + "runProperty": Object {}, + "tabs": Array [], + }, + "pstyle": null, + "runProperty": Object { + "fonts": Object { + "ascii": "Wingdings", + "hiAnsi": "Wingdings", + "hint": "default", + }, + }, + "start": 1, + "suffix": "tab", + "text": "", + }, + Object { + "format": "bullet", + "jc": "left", + "level": 1, + "levelRestart": null, + "paragraphProperty": Object { + "indent": Object { + "end": null, + "firstLineChars": null, + "hangingChars": null, + "specialIndent": Object { + "type": "hanging", + "val": 420, + }, + "start": 2730, + "startChars": null, + }, + "runProperty": Object {}, + "tabs": Array [], + }, + "pstyle": null, + "runProperty": Object { + "fonts": Object { + "ascii": "Wingdings", + "hiAnsi": "Wingdings", + "hint": "default", + }, + }, + "start": 1, + "suffix": "tab", + "text": "", + }, + Object { + "format": "bullet", + "jc": "left", + "level": 2, + "levelRestart": null, + "paragraphProperty": Object { + "indent": Object { + "end": null, + "firstLineChars": null, + "hangingChars": null, + "specialIndent": Object { + "type": "hanging", + "val": 420, + }, + "start": 3150, + "startChars": null, + }, + "runProperty": Object {}, + "tabs": Array [], + }, + "pstyle": null, + "runProperty": Object { + "fonts": Object { + "ascii": "Wingdings", + "hiAnsi": "Wingdings", + "hint": "default", + }, + }, + "start": 1, + "suffix": "tab", + "text": "", + }, + Object { + "format": "bullet", + "jc": "left", + "level": 3, + "levelRestart": null, + "paragraphProperty": Object { + "indent": Object { + "end": null, + "firstLineChars": null, + "hangingChars": null, + "specialIndent": Object { + "type": "hanging", + "val": 420, + }, + "start": 3570, + "startChars": null, + }, + "runProperty": Object {}, + "tabs": Array [], + }, + "pstyle": null, + "runProperty": Object { + "fonts": Object { + "ascii": "Wingdings", + "hiAnsi": "Wingdings", + "hint": "default", + }, + }, + "start": 1, + "suffix": "tab", + "text": "", + }, + Object { + "format": "bullet", + "jc": "left", + "level": 4, + "levelRestart": null, + "paragraphProperty": Object { + "indent": Object { + "end": null, + "firstLineChars": null, + "hangingChars": null, + "specialIndent": Object { + "type": "hanging", + "val": 420, + }, + "start": 3990, + "startChars": null, + }, + "runProperty": Object {}, + "tabs": Array [], + }, + "pstyle": null, + "runProperty": Object { + "fonts": Object { + "ascii": "Wingdings", + "hiAnsi": "Wingdings", + "hint": "default", + }, + }, + "start": 1, + "suffix": "tab", + "text": "", + }, + Object { + "format": "bullet", + "jc": "left", + "level": 5, + "levelRestart": null, + "paragraphProperty": Object { + "indent": Object { + "end": null, + "firstLineChars": null, + "hangingChars": null, + "specialIndent": Object { + "type": "hanging", + "val": 420, + }, + "start": 4410, + "startChars": null, + }, + "runProperty": Object {}, + "tabs": Array [], + }, + "pstyle": null, + "runProperty": Object { + "fonts": Object { + "ascii": "Wingdings", + "hiAnsi": "Wingdings", + "hint": "default", + }, + }, + "start": 1, + "suffix": "tab", + "text": "", + }, + Object { + "format": "bullet", + "jc": "left", + "level": 6, + "levelRestart": null, + "paragraphProperty": Object { + "indent": Object { + "end": null, + "firstLineChars": null, + "hangingChars": null, + "specialIndent": Object { + "type": "hanging", + "val": 420, + }, + "start": 4830, + "startChars": null, + }, + "runProperty": Object {}, + "tabs": Array [], + }, + "pstyle": null, + "runProperty": Object { + "fonts": Object { + "ascii": "Wingdings", + "hiAnsi": "Wingdings", + "hint": "default", + }, + }, + "start": 1, + "suffix": "tab", + "text": "", + }, + Object { + "format": "bullet", + "jc": "left", + "level": 7, + "levelRestart": null, + "paragraphProperty": Object { + "indent": Object { + "end": null, + "firstLineChars": null, + "hangingChars": null, + "specialIndent": Object { + "type": "hanging", + "val": 420, + }, + "start": 5250, + "startChars": null, + }, + "runProperty": Object {}, + "tabs": Array [], + }, + "pstyle": null, + "runProperty": Object { + "fonts": Object { + "ascii": "Wingdings", + "hiAnsi": "Wingdings", + "hint": "default", + }, + }, + "start": 1, + "suffix": "tab", + "text": "", + }, + Object { + "format": "bullet", + "jc": "left", + "level": 8, + "levelRestart": null, + "paragraphProperty": Object { + "indent": Object { + "end": null, + "firstLineChars": null, + "hangingChars": null, + "specialIndent": Object { + "type": "hanging", + "val": 420, + }, + "start": 5670, + "startChars": null, + }, + "runProperty": Object {}, + "tabs": Array [], + }, + "pstyle": null, + "runProperty": Object { + "fonts": Object { + "ascii": "Wingdings", + "hiAnsi": "Wingdings", + "hint": "default", + }, + }, + "start": 1, + "suffix": "tab", + "text": "", + }, + ], + "numStyleLink": null, + "styleLink": null, + }, + Object { + "id": 67, + "levels": Array [ + Object { + "format": "decimal", + "jc": "left", + "level": 0, + "levelRestart": null, + "paragraphProperty": Object { + "indent": Object { + "end": null, + "firstLineChars": null, + "hangingChars": null, + "specialIndent": Object { + "type": "hanging", + "val": 360, + }, + "start": 540, + "startChars": null, + }, + "runProperty": Object {}, + "tabs": Array [], + }, + "pstyle": null, + "runProperty": Object { + "fonts": Object { + "hint": "eastAsia", + }, + }, + "start": 1, + "suffix": "tab", + "text": "%1.", + }, + Object { + "format": "aiueoFullWidth", + "jc": "left", + "level": 1, + "levelRestart": null, + "paragraphProperty": Object { + "indent": Object { + "end": null, + "firstLineChars": null, + "hangingChars": null, + "specialIndent": Object { + "type": "hanging", + "val": 420, + }, + "start": 840, + "startChars": null, + }, + "runProperty": Object {}, + "tabs": Array [], + }, + "pstyle": null, + "runProperty": Object {}, + "start": 1, + "suffix": "tab", + "text": "(%2)", + }, + Object { + "format": "decimalEnclosedCircle", + "jc": "left", + "level": 2, + "levelRestart": null, + "paragraphProperty": Object { + "indent": Object { + "end": null, + "firstLineChars": null, + "hangingChars": null, + "specialIndent": Object { + "type": "hanging", + "val": 420, + }, + "start": 1260, + "startChars": null, + }, + "runProperty": Object {}, + "tabs": Array [], + }, + "pstyle": null, + "runProperty": Object {}, + "start": 1, + "suffix": "tab", + "text": "%3", + }, + Object { + "format": "decimal", + "jc": "left", + "level": 3, + "levelRestart": null, + "paragraphProperty": Object { + "indent": Object { + "end": null, + "firstLineChars": null, + "hangingChars": null, + "specialIndent": Object { + "type": "hanging", + "val": 420, + }, + "start": 1680, + "startChars": null, + }, + "runProperty": Object {}, + "tabs": Array [], + }, + "pstyle": null, + "runProperty": Object {}, + "start": 1, + "suffix": "tab", + "text": "%4.", + }, + Object { + "format": "aiueoFullWidth", + "jc": "left", + "level": 4, + "levelRestart": null, + "paragraphProperty": Object { + "indent": Object { + "end": null, + "firstLineChars": null, + "hangingChars": null, + "specialIndent": Object { + "type": "hanging", + "val": 420, + }, + "start": 2100, + "startChars": null, + }, + "runProperty": Object {}, + "tabs": Array [], + }, + "pstyle": null, + "runProperty": Object {}, + "start": 1, + "suffix": "tab", + "text": "(%5)", + }, + Object { + "format": "decimalEnclosedCircle", + "jc": "left", + "level": 5, + "levelRestart": null, + "paragraphProperty": Object { + "indent": Object { + "end": null, + "firstLineChars": null, + "hangingChars": null, + "specialIndent": Object { + "type": "hanging", + "val": 420, + }, + "start": 2520, + "startChars": null, + }, + "runProperty": Object {}, + "tabs": Array [], + }, + "pstyle": null, + "runProperty": Object {}, + "start": 1, + "suffix": "tab", + "text": "%6", + }, + Object { + "format": "decimal", + "jc": "left", + "level": 6, + "levelRestart": null, + "paragraphProperty": Object { + "indent": Object { + "end": null, + "firstLineChars": null, + "hangingChars": null, + "specialIndent": Object { + "type": "hanging", + "val": 420, + }, + "start": 2940, + "startChars": null, + }, + "runProperty": Object {}, + "tabs": Array [], + }, + "pstyle": null, + "runProperty": Object {}, + "start": 1, + "suffix": "tab", + "text": "%7.", + }, + Object { + "format": "aiueoFullWidth", + "jc": "left", + "level": 7, + "levelRestart": null, + "paragraphProperty": Object { + "indent": Object { + "end": null, + "firstLineChars": null, + "hangingChars": null, + "specialIndent": Object { + "type": "hanging", + "val": 420, + }, + "start": 3360, + "startChars": null, + }, + "runProperty": Object {}, + "tabs": Array [], + }, + "pstyle": null, + "runProperty": Object {}, + "start": 1, + "suffix": "tab", + "text": "(%8)", + }, + Object { + "format": "decimalEnclosedCircle", + "jc": "left", + "level": 8, + "levelRestart": null, + "paragraphProperty": Object { + "indent": Object { + "end": null, + "firstLineChars": null, + "hangingChars": null, + "specialIndent": Object { + "type": "hanging", + "val": 420, + }, + "start": 3780, + "startChars": null, + }, + "runProperty": Object {}, + "tabs": Array [], + }, + "pstyle": null, + "runProperty": Object {}, + "start": 1, + "suffix": "tab", + "text": "%9", + }, + ], + "numStyleLink": null, + "styleLink": null, + }, + Object { + "id": 68, + "levels": Array [ + Object { + "format": "bullet", + "jc": "left", + "level": 0, + "levelRestart": null, + "paragraphProperty": Object { + "indent": Object { + "end": null, + "firstLineChars": null, + "hangingChars": null, + "specialIndent": Object { + "type": "hanging", + "val": 454, + }, + "start": 454, + "startChars": null, + }, + "runProperty": Object {}, + "tabs": Array [], + }, + "pstyle": "TableBullet1", + "runProperty": Object { + "fonts": Object { + "ascii": "Wingdings", + "hiAnsi": "Wingdings", + "hint": "default", + }, + }, + "start": 0, + "suffix": "tab", + "text": "", + }, + Object { + "format": "bullet", + "jc": "left", + "level": 1, + "levelRestart": null, + "paragraphProperty": Object { + "indent": Object { + "end": null, + "firstLineChars": null, + "hangingChars": null, + "specialIndent": Object { + "type": "hanging", + "val": 420, + }, + "start": 840, + "startChars": null, + }, + "runProperty": Object {}, + "tabs": Array [], + }, + "pstyle": null, + "runProperty": Object { + "fonts": Object { + "ascii": "Wingdings", + "hiAnsi": "Wingdings", + "hint": "default", + }, + }, + "start": 1, + "suffix": "tab", + "text": "", + }, + Object { + "format": "bullet", + "jc": "left", + "level": 2, + "levelRestart": null, + "paragraphProperty": Object { + "indent": Object { + "end": null, + "firstLineChars": null, + "hangingChars": null, + "specialIndent": Object { + "type": "hanging", + "val": 420, + }, + "start": 1260, + "startChars": null, + }, + "runProperty": Object {}, + "tabs": Array [], + }, + "pstyle": null, + "runProperty": Object { + "fonts": Object { + "ascii": "Wingdings", + "hiAnsi": "Wingdings", + "hint": "default", + }, + }, + "start": 1, + "suffix": "tab", + "text": "", + }, + Object { + "format": "bullet", + "jc": "left", + "level": 3, + "levelRestart": null, + "paragraphProperty": Object { + "indent": Object { + "end": null, + "firstLineChars": null, + "hangingChars": null, + "specialIndent": Object { + "type": "hanging", + "val": 420, + }, + "start": 1680, + "startChars": null, + }, + "runProperty": Object {}, + "tabs": Array [], + }, + "pstyle": null, + "runProperty": Object { + "fonts": Object { + "ascii": "Wingdings", + "hiAnsi": "Wingdings", + "hint": "default", + }, + }, + "start": 1, + "suffix": "tab", + "text": "", + }, + Object { + "format": "bullet", + "jc": "left", + "level": 4, + "levelRestart": null, + "paragraphProperty": Object { + "indent": Object { + "end": null, + "firstLineChars": null, + "hangingChars": null, + "specialIndent": Object { + "type": "hanging", + "val": 420, + }, + "start": 2100, + "startChars": null, + }, + "runProperty": Object {}, + "tabs": Array [], + }, + "pstyle": null, + "runProperty": Object { + "fonts": Object { + "ascii": "Wingdings", + "hiAnsi": "Wingdings", + "hint": "default", + }, + }, + "start": 1, + "suffix": "tab", + "text": "", + }, + Object { + "format": "bullet", + "jc": "left", + "level": 5, + "levelRestart": null, + "paragraphProperty": Object { + "indent": Object { + "end": null, + "firstLineChars": null, + "hangingChars": null, + "specialIndent": Object { + "type": "hanging", + "val": 420, + }, + "start": 2520, + "startChars": null, + }, + "runProperty": Object {}, + "tabs": Array [], + }, + "pstyle": null, + "runProperty": Object { + "fonts": Object { + "ascii": "Wingdings", + "hiAnsi": "Wingdings", + "hint": "default", + }, + }, + "start": 1, + "suffix": "tab", + "text": "", + }, + Object { + "format": "bullet", + "jc": "left", + "level": 6, + "levelRestart": null, + "paragraphProperty": Object { + "indent": Object { + "end": null, + "firstLineChars": null, + "hangingChars": null, + "specialIndent": Object { + "type": "hanging", + "val": 420, + }, + "start": 2940, + "startChars": null, + }, + "runProperty": Object {}, + "tabs": Array [], + }, + "pstyle": null, + "runProperty": Object { + "fonts": Object { + "ascii": "Wingdings", + "hiAnsi": "Wingdings", + "hint": "default", + }, + }, + "start": 1, + "suffix": "tab", + "text": "", + }, + Object { + "format": "bullet", + "jc": "left", + "level": 7, + "levelRestart": null, + "paragraphProperty": Object { + "indent": Object { + "end": null, + "firstLineChars": null, + "hangingChars": null, + "specialIndent": Object { + "type": "hanging", + "val": 420, + }, + "start": 3360, + "startChars": null, + }, + "runProperty": Object {}, + "tabs": Array [], + }, + "pstyle": null, + "runProperty": Object { + "fonts": Object { + "ascii": "Wingdings", + "hiAnsi": "Wingdings", + "hint": "default", + }, + }, + "start": 1, + "suffix": "tab", + "text": "", + }, + Object { + "format": "bullet", + "jc": "left", + "level": 8, + "levelRestart": null, + "paragraphProperty": Object { + "indent": Object { + "end": null, + "firstLineChars": null, + "hangingChars": null, + "specialIndent": Object { + "type": "hanging", + "val": 420, + }, + "start": 3780, + "startChars": null, + }, + "runProperty": Object {}, + "tabs": Array [], + }, + "pstyle": null, + "runProperty": Object { + "fonts": Object { + "ascii": "Wingdings", + "hiAnsi": "Wingdings", + "hint": "default", + }, + }, + "start": 1, + "suffix": "tab", + "text": "", + }, + ], + "numStyleLink": null, + "styleLink": null, + }, + Object { + "id": 69, + "levels": Array [ + Object { + "format": "bullet", + "jc": "left", + "level": 0, + "levelRestart": null, + "paragraphProperty": Object { + "indent": Object { + "end": null, + "firstLineChars": null, + "hangingChars": null, + "specialIndent": Object { + "type": "hanging", + "val": 454, + }, + "start": 1588, + "startChars": null, + }, + "runProperty": Object {}, + "tabs": Array [], + }, + "pstyle": null, + "runProperty": Object { + "fonts": Object { + "ascii": "Wingdings 2", + "hiAnsi": "Wingdings 2", + "hint": "default", + }, + "sz": 28, + "szCs": 28, + }, + "start": 1, + "suffix": "tab", + "text": "", + }, + Object { + "format": "bullet", + "jc": "left", + "level": 1, + "levelRestart": null, + "paragraphProperty": Object { + "indent": Object { + "end": null, + "firstLineChars": null, + "hangingChars": null, + "specialIndent": Object { + "type": "hanging", + "val": 420, + }, + "start": 840, + "startChars": null, + }, + "runProperty": Object {}, + "tabs": Array [], + }, + "pstyle": null, + "runProperty": Object { + "fonts": Object { + "ascii": "Wingdings", + "hiAnsi": "Wingdings", + "hint": "default", + }, + }, + "start": 1, + "suffix": "tab", + "text": "", + }, + Object { + "format": "bullet", + "jc": "left", + "level": 2, + "levelRestart": null, + "paragraphProperty": Object { + "indent": Object { + "end": null, + "firstLineChars": null, + "hangingChars": null, + "specialIndent": Object { + "type": "hanging", + "val": 420, + }, + "start": 1260, + "startChars": null, + }, + "runProperty": Object {}, + "tabs": Array [], + }, + "pstyle": null, + "runProperty": Object { + "fonts": Object { + "ascii": "Wingdings", + "hiAnsi": "Wingdings", + "hint": "default", + }, + }, + "start": 1, + "suffix": "tab", + "text": "", + }, + Object { + "format": "bullet", + "jc": "left", + "level": 3, + "levelRestart": null, + "paragraphProperty": Object { + "indent": Object { + "end": null, + "firstLineChars": null, + "hangingChars": null, + "specialIndent": Object { + "type": "hanging", + "val": 420, + }, + "start": 1680, + "startChars": null, + }, + "runProperty": Object {}, + "tabs": Array [], + }, + "pstyle": null, + "runProperty": Object { + "fonts": Object { + "ascii": "Wingdings", + "hiAnsi": "Wingdings", + "hint": "default", + }, + }, + "start": 1, + "suffix": "tab", + "text": "", + }, + Object { + "format": "bullet", + "jc": "left", + "level": 4, + "levelRestart": null, + "paragraphProperty": Object { + "indent": Object { + "end": null, + "firstLineChars": null, + "hangingChars": null, + "specialIndent": Object { + "type": "hanging", + "val": 420, + }, + "start": 2100, + "startChars": null, + }, + "runProperty": Object {}, + "tabs": Array [], + }, + "pstyle": null, + "runProperty": Object { + "fonts": Object { + "ascii": "Wingdings", + "hiAnsi": "Wingdings", + "hint": "default", + }, + }, + "start": 1, + "suffix": "tab", + "text": "", + }, + Object { + "format": "bullet", + "jc": "left", + "level": 5, + "levelRestart": null, + "paragraphProperty": Object { + "indent": Object { + "end": null, + "firstLineChars": null, + "hangingChars": null, + "specialIndent": Object { + "type": "hanging", + "val": 420, + }, + "start": 2520, + "startChars": null, + }, + "runProperty": Object {}, + "tabs": Array [], + }, + "pstyle": null, + "runProperty": Object { + "fonts": Object { + "ascii": "Wingdings", + "hiAnsi": "Wingdings", + "hint": "default", + }, + }, + "start": 1, + "suffix": "tab", + "text": "", + }, + Object { + "format": "bullet", + "jc": "left", + "level": 6, + "levelRestart": null, + "paragraphProperty": Object { + "indent": Object { + "end": null, + "firstLineChars": null, + "hangingChars": null, + "specialIndent": Object { + "type": "hanging", + "val": 420, + }, + "start": 2940, + "startChars": null, + }, + "runProperty": Object {}, + "tabs": Array [], + }, + "pstyle": null, + "runProperty": Object { + "fonts": Object { + "ascii": "Wingdings", + "hiAnsi": "Wingdings", + "hint": "default", + }, + }, + "start": 1, + "suffix": "tab", + "text": "", + }, + Object { + "format": "bullet", + "jc": "left", + "level": 7, + "levelRestart": null, + "paragraphProperty": Object { + "indent": Object { + "end": null, + "firstLineChars": null, + "hangingChars": null, + "specialIndent": Object { + "type": "hanging", + "val": 420, + }, + "start": 3360, + "startChars": null, + }, + "runProperty": Object {}, + "tabs": Array [], + }, + "pstyle": null, + "runProperty": Object { + "fonts": Object { + "ascii": "Wingdings", + "hiAnsi": "Wingdings", + "hint": "default", + }, + }, + "start": 1, + "suffix": "tab", + "text": "", + }, + Object { + "format": "bullet", + "jc": "left", + "level": 8, + "levelRestart": null, + "paragraphProperty": Object { + "indent": Object { + "end": null, + "firstLineChars": null, + "hangingChars": null, + "specialIndent": Object { + "type": "hanging", + "val": 420, + }, + "start": 3780, + "startChars": null, + }, + "runProperty": Object {}, + "tabs": Array [], + }, + "pstyle": null, + "runProperty": Object { + "fonts": Object { + "ascii": "Wingdings", + "hiAnsi": "Wingdings", + "hint": "default", + }, + }, + "start": 1, + "suffix": "tab", + "text": "", + }, + ], + "numStyleLink": null, + "styleLink": null, + }, + Object { + "id": 70, + "levels": Array [ + Object { + "format": "decimal", + "jc": "left", + "level": 0, + "levelRestart": null, + "paragraphProperty": Object { + "indent": Object { + "end": null, + "firstLineChars": null, + "hangingChars": null, + "specialIndent": Object { + "type": "hanging", + "val": 360, + }, + "start": 540, + "startChars": null, + }, + "runProperty": Object {}, + "tabs": Array [], + }, + "pstyle": null, + "runProperty": Object { + "fonts": Object { + "hint": "eastAsia", + }, + }, + "start": 1, + "suffix": "tab", + "text": "%1.", + }, + Object { + "format": "aiueoFullWidth", + "jc": "left", + "level": 1, + "levelRestart": null, + "paragraphProperty": Object { + "indent": Object { + "end": null, + "firstLineChars": null, + "hangingChars": null, + "specialIndent": Object { + "type": "hanging", + "val": 420, + }, + "start": 840, + "startChars": null, + }, + "runProperty": Object {}, + "tabs": Array [], + }, + "pstyle": null, + "runProperty": Object {}, + "start": 1, + "suffix": "tab", + "text": "(%2)", + }, + Object { + "format": "decimalEnclosedCircle", + "jc": "left", + "level": 2, + "levelRestart": null, + "paragraphProperty": Object { + "indent": Object { + "end": null, + "firstLineChars": null, + "hangingChars": null, + "specialIndent": Object { + "type": "hanging", + "val": 420, + }, + "start": 1260, + "startChars": null, + }, + "runProperty": Object {}, + "tabs": Array [], + }, + "pstyle": null, + "runProperty": Object {}, + "start": 1, + "suffix": "tab", + "text": "%3", + }, + Object { + "format": "decimal", + "jc": "left", + "level": 3, + "levelRestart": null, + "paragraphProperty": Object { + "indent": Object { + "end": null, + "firstLineChars": null, + "hangingChars": null, + "specialIndent": Object { + "type": "hanging", + "val": 420, + }, + "start": 1680, + "startChars": null, + }, + "runProperty": Object {}, + "tabs": Array [], + }, + "pstyle": null, + "runProperty": Object {}, + "start": 1, + "suffix": "tab", + "text": "%4.", + }, + Object { + "format": "aiueoFullWidth", + "jc": "left", + "level": 4, + "levelRestart": null, + "paragraphProperty": Object { + "indent": Object { + "end": null, + "firstLineChars": null, + "hangingChars": null, + "specialIndent": Object { + "type": "hanging", + "val": 420, + }, + "start": 2100, + "startChars": null, + }, + "runProperty": Object {}, + "tabs": Array [], + }, + "pstyle": null, + "runProperty": Object {}, + "start": 1, + "suffix": "tab", + "text": "(%5)", + }, + Object { + "format": "decimalEnclosedCircle", + "jc": "left", + "level": 5, + "levelRestart": null, + "paragraphProperty": Object { + "indent": Object { + "end": null, + "firstLineChars": null, + "hangingChars": null, + "specialIndent": Object { + "type": "hanging", + "val": 420, + }, + "start": 2520, + "startChars": null, + }, + "runProperty": Object {}, + "tabs": Array [], + }, + "pstyle": null, + "runProperty": Object {}, + "start": 1, + "suffix": "tab", + "text": "%6", + }, + Object { + "format": "decimal", + "jc": "left", + "level": 6, + "levelRestart": null, + "paragraphProperty": Object { + "indent": Object { + "end": null, + "firstLineChars": null, + "hangingChars": null, + "specialIndent": Object { + "type": "hanging", + "val": 420, + }, + "start": 2940, + "startChars": null, + }, + "runProperty": Object {}, + "tabs": Array [], + }, + "pstyle": null, + "runProperty": Object {}, + "start": 1, + "suffix": "tab", + "text": "%7.", + }, + Object { + "format": "aiueoFullWidth", + "jc": "left", + "level": 7, + "levelRestart": null, + "paragraphProperty": Object { + "indent": Object { + "end": null, + "firstLineChars": null, + "hangingChars": null, + "specialIndent": Object { + "type": "hanging", + "val": 420, + }, + "start": 3360, + "startChars": null, + }, + "runProperty": Object {}, + "tabs": Array [], + }, + "pstyle": null, + "runProperty": Object {}, + "start": 1, + "suffix": "tab", + "text": "(%8)", + }, + Object { + "format": "decimalEnclosedCircle", + "jc": "left", + "level": 8, + "levelRestart": null, + "paragraphProperty": Object { + "indent": Object { + "end": null, + "firstLineChars": null, + "hangingChars": null, + "specialIndent": Object { + "type": "hanging", + "val": 420, + }, + "start": 3780, + "startChars": null, + }, + "runProperty": Object {}, + "tabs": Array [], + }, + "pstyle": null, + "runProperty": Object {}, + "start": 1, + "suffix": "tab", + "text": "%9", + }, + ], + "numStyleLink": null, + "styleLink": null, + }, + Object { + "id": 71, + "levels": Array [ + Object { + "format": "decimal", + "jc": "left", + "level": 0, + "levelRestart": null, + "paragraphProperty": Object { + "indent": Object { + "end": null, + "firstLineChars": null, + "hangingChars": null, + "specialIndent": Object { + "type": "hanging", + "val": 360, + }, + "start": 540, + "startChars": null, + }, + "runProperty": Object {}, + "tabs": Array [], + }, + "pstyle": null, + "runProperty": Object { + "fonts": Object { + "hint": "eastAsia", + }, + }, + "start": 1, + "suffix": "tab", + "text": "%1.", + }, + Object { + "format": "lowerLetter", + "jc": "left", + "level": 1, + "levelRestart": null, + "paragraphProperty": Object { + "indent": Object { + "end": null, + "firstLineChars": null, + "hangingChars": null, + "specialIndent": Object { + "type": "hanging", + "val": 435, + }, + "start": 855, + "startChars": null, + }, + "runProperty": Object {}, + "tabs": Array [], + }, + "pstyle": null, + "runProperty": Object { + "fonts": Object { + "hint": "eastAsia", + }, + }, + "start": 1, + "suffix": "tab", + "text": "(%2)", + }, + Object { + "format": "lowerLetter", + "jc": "left", + "level": 2, + "levelRestart": null, + "paragraphProperty": Object { + "indent": Object { + "end": null, + "firstLineChars": null, + "hangingChars": null, + "specialIndent": Object { + "type": "hanging", + "val": 360, + }, + "start": 1200, + "startChars": null, + }, + "runProperty": Object {}, + "tabs": Array [], + }, + "pstyle": null, + "runProperty": Object { + "fonts": Object { + "hint": "eastAsia", + }, + }, + "start": 1, + "suffix": "tab", + "text": "(%3)", + }, + Object { + "format": "lowerLetter", + "jc": "left", + "level": 3, + "levelRestart": null, + "paragraphProperty": Object { + "indent": Object { + "end": null, + "firstLineChars": null, + "hangingChars": null, + "specialIndent": Object { + "type": "hanging", + "val": 360, + }, + "start": 1620, + "startChars": null, + }, + "runProperty": Object {}, + "tabs": Array [], + }, + "pstyle": null, + "runProperty": Object { + "fonts": Object { + "hint": "eastAsia", + }, + }, + "start": 1, + "suffix": "tab", + "text": "(%4)", + }, + Object { + "format": "aiueoFullWidth", + "jc": "left", + "level": 4, + "levelRestart": null, + "paragraphProperty": Object { + "indent": Object { + "end": null, + "firstLineChars": null, + "hangingChars": null, + "specialIndent": Object { + "type": "hanging", + "val": 420, + }, + "start": 2100, + "startChars": null, + }, + "runProperty": Object {}, + "tabs": Array [], + }, + "pstyle": null, + "runProperty": Object {}, + "start": 1, + "suffix": "tab", + "text": "(%5)", + }, + Object { + "format": "decimalEnclosedCircle", + "jc": "left", + "level": 5, + "levelRestart": null, + "paragraphProperty": Object { + "indent": Object { + "end": null, + "firstLineChars": null, + "hangingChars": null, + "specialIndent": Object { + "type": "hanging", + "val": 420, + }, + "start": 2520, + "startChars": null, + }, + "runProperty": Object {}, + "tabs": Array [], + }, + "pstyle": null, + "runProperty": Object {}, + "start": 1, + "suffix": "tab", + "text": "%6", + }, + Object { + "format": "decimal", + "jc": "left", + "level": 6, + "levelRestart": null, + "paragraphProperty": Object { + "indent": Object { + "end": null, + "firstLineChars": null, + "hangingChars": null, + "specialIndent": Object { + "type": "hanging", + "val": 420, + }, + "start": 2940, + "startChars": null, + }, + "runProperty": Object {}, + "tabs": Array [], + }, + "pstyle": null, + "runProperty": Object {}, + "start": 1, + "suffix": "tab", + "text": "%7.", + }, + Object { + "format": "aiueoFullWidth", + "jc": "left", + "level": 7, + "levelRestart": null, + "paragraphProperty": Object { + "indent": Object { + "end": null, + "firstLineChars": null, + "hangingChars": null, + "specialIndent": Object { + "type": "hanging", + "val": 420, + }, + "start": 3360, + "startChars": null, + }, + "runProperty": Object {}, + "tabs": Array [], + }, + "pstyle": null, + "runProperty": Object {}, + "start": 1, + "suffix": "tab", + "text": "(%8)", + }, + Object { + "format": "decimalEnclosedCircle", + "jc": "left", + "level": 8, + "levelRestart": null, + "paragraphProperty": Object { + "indent": Object { + "end": null, + "firstLineChars": null, + "hangingChars": null, + "specialIndent": Object { + "type": "hanging", + "val": 420, + }, + "start": 3780, + "startChars": null, + }, + "runProperty": Object {}, + "tabs": Array [], + }, + "pstyle": null, + "runProperty": Object {}, + "start": 1, + "suffix": "tab", + "text": "%9", + }, + ], + "numStyleLink": null, + "styleLink": null, + }, + Object { + "id": 72, + "levels": Array [ + Object { + "format": "decimal", + "jc": "left", + "level": 0, + "levelRestart": null, + "paragraphProperty": Object { + "indent": Object { + "end": null, + "firstLineChars": null, + "hangingChars": null, + "specialIndent": Object { + "type": "hanging", + "val": 360, + }, + "start": 540, + "startChars": null, + }, + "runProperty": Object {}, + "tabs": Array [], + }, + "pstyle": null, + "runProperty": Object { + "fonts": Object { + "hint": "eastAsia", + }, + }, + "start": 1, + "suffix": "tab", + "text": "%1.", + }, + Object { + "format": "aiueoFullWidth", + "jc": "left", + "level": 1, + "levelRestart": null, + "paragraphProperty": Object { + "indent": Object { + "end": null, + "firstLineChars": null, + "hangingChars": null, + "specialIndent": Object { + "type": "hanging", + "val": 420, + }, + "start": 420, + "startChars": null, + }, + "runProperty": Object {}, + "tabs": Array [], + }, + "pstyle": null, + "runProperty": Object {}, + "start": 1, + "suffix": "tab", + "text": "(%2)", + }, + Object { + "format": "decimalEnclosedCircle", + "jc": "left", + "level": 2, + "levelRestart": null, + "paragraphProperty": Object { + "indent": Object { + "end": null, + "firstLineChars": null, + "hangingChars": null, + "specialIndent": Object { + "type": "hanging", + "val": 420, + }, + "start": 840, + "startChars": null, + }, + "runProperty": Object {}, + "tabs": Array [], + }, + "pstyle": null, + "runProperty": Object {}, + "start": 1, + "suffix": "tab", + "text": "%3", + }, + Object { + "format": "decimal", + "jc": "left", + "level": 3, + "levelRestart": null, + "paragraphProperty": Object { + "indent": Object { + "end": null, + "firstLineChars": null, + "hangingChars": null, + "specialIndent": Object { + "type": "hanging", + "val": 420, + }, + "start": 1260, + "startChars": null, + }, + "runProperty": Object {}, + "tabs": Array [], + }, + "pstyle": null, + "runProperty": Object {}, + "start": 1, + "suffix": "tab", + "text": "%4.", + }, + Object { + "format": "aiueoFullWidth", + "jc": "left", + "level": 4, + "levelRestart": null, + "paragraphProperty": Object { + "indent": Object { + "end": null, + "firstLineChars": null, + "hangingChars": null, + "specialIndent": Object { + "type": "hanging", + "val": 420, + }, + "start": 1680, + "startChars": null, + }, + "runProperty": Object {}, + "tabs": Array [], + }, + "pstyle": null, + "runProperty": Object {}, + "start": 1, + "suffix": "tab", + "text": "(%5)", + }, + Object { + "format": "decimalEnclosedCircle", + "jc": "left", + "level": 5, + "levelRestart": null, + "paragraphProperty": Object { + "indent": Object { + "end": null, + "firstLineChars": null, + "hangingChars": null, + "specialIndent": Object { + "type": "hanging", + "val": 420, + }, + "start": 2100, + "startChars": null, + }, + "runProperty": Object {}, + "tabs": Array [], + }, + "pstyle": null, + "runProperty": Object {}, + "start": 1, + "suffix": "tab", + "text": "%6", + }, + Object { + "format": "decimal", + "jc": "left", + "level": 6, + "levelRestart": null, + "paragraphProperty": Object { + "indent": Object { + "end": null, + "firstLineChars": null, + "hangingChars": null, + "specialIndent": Object { + "type": "hanging", + "val": 420, + }, + "start": 2520, + "startChars": null, + }, + "runProperty": Object {}, + "tabs": Array [], + }, + "pstyle": null, + "runProperty": Object {}, + "start": 1, + "suffix": "tab", + "text": "%7.", + }, + Object { + "format": "aiueoFullWidth", + "jc": "left", + "level": 7, + "levelRestart": null, + "paragraphProperty": Object { + "indent": Object { + "end": null, + "firstLineChars": null, + "hangingChars": null, + "specialIndent": Object { + "type": "hanging", + "val": 420, + }, + "start": 2940, + "startChars": null, + }, + "runProperty": Object {}, + "tabs": Array [], + }, + "pstyle": null, + "runProperty": Object {}, + "start": 1, + "suffix": "tab", + "text": "(%8)", + }, + Object { + "format": "decimalEnclosedCircle", + "jc": "left", + "level": 8, + "levelRestart": null, + "paragraphProperty": Object { + "indent": Object { + "end": null, + "firstLineChars": null, + "hangingChars": null, + "specialIndent": Object { + "type": "hanging", + "val": 420, + }, + "start": 3360, + "startChars": null, + }, + "runProperty": Object {}, + "tabs": Array [], + }, + "pstyle": null, + "runProperty": Object {}, + "start": 1, + "suffix": "tab", + "text": "%9", + }, + ], + "numStyleLink": null, + "styleLink": null, + }, + Object { + "id": 73, + "levels": Array [ + Object { + "format": "decimal", + "jc": "left", + "level": 0, + "levelRestart": null, + "paragraphProperty": Object { + "indent": Object { + "end": null, + "firstLineChars": null, + "hangingChars": null, + "specialIndent": Object { + "type": "hanging", + "val": 360, + }, + "start": 540, + "startChars": null, + }, + "runProperty": Object {}, + "tabs": Array [], + }, + "pstyle": null, + "runProperty": Object { + "fonts": Object { + "hint": "eastAsia", + }, + }, + "start": 1, + "suffix": "tab", + "text": "%1.", + }, + Object { + "format": "aiueoFullWidth", + "jc": "left", + "level": 1, + "levelRestart": null, + "paragraphProperty": Object { + "indent": Object { + "end": null, + "firstLineChars": null, + "hangingChars": null, + "specialIndent": Object { + "type": "hanging", + "val": 420, + }, + "start": 840, + "startChars": null, + }, + "runProperty": Object {}, + "tabs": Array [], + }, + "pstyle": null, + "runProperty": Object {}, + "start": 1, + "suffix": "tab", + "text": "(%2)", + }, + Object { + "format": "decimalEnclosedCircle", + "jc": "left", + "level": 2, + "levelRestart": null, + "paragraphProperty": Object { + "indent": Object { + "end": null, + "firstLineChars": null, + "hangingChars": null, + "specialIndent": Object { + "type": "hanging", + "val": 420, + }, + "start": 1260, + "startChars": null, + }, + "runProperty": Object {}, + "tabs": Array [], + }, + "pstyle": null, + "runProperty": Object {}, + "start": 1, + "suffix": "tab", + "text": "%3", + }, + Object { + "format": "decimal", + "jc": "left", + "level": 3, + "levelRestart": null, + "paragraphProperty": Object { + "indent": Object { + "end": null, + "firstLineChars": null, + "hangingChars": null, + "specialIndent": Object { + "type": "hanging", + "val": 420, + }, + "start": 1680, + "startChars": null, + }, + "runProperty": Object {}, + "tabs": Array [], + }, + "pstyle": null, + "runProperty": Object {}, + "start": 1, + "suffix": "tab", + "text": "%4.", + }, + Object { + "format": "aiueoFullWidth", + "jc": "left", + "level": 4, + "levelRestart": null, + "paragraphProperty": Object { + "indent": Object { + "end": null, + "firstLineChars": null, + "hangingChars": null, + "specialIndent": Object { + "type": "hanging", + "val": 420, + }, + "start": 2100, + "startChars": null, + }, + "runProperty": Object {}, + "tabs": Array [], + }, + "pstyle": null, + "runProperty": Object {}, + "start": 1, + "suffix": "tab", + "text": "(%5)", + }, + Object { + "format": "decimalEnclosedCircle", + "jc": "left", + "level": 5, + "levelRestart": null, + "paragraphProperty": Object { + "indent": Object { + "end": null, + "firstLineChars": null, + "hangingChars": null, + "specialIndent": Object { + "type": "hanging", + "val": 420, + }, + "start": 2520, + "startChars": null, + }, + "runProperty": Object {}, + "tabs": Array [], + }, + "pstyle": null, + "runProperty": Object {}, + "start": 1, + "suffix": "tab", + "text": "%6", + }, + Object { + "format": "decimal", + "jc": "left", + "level": 6, + "levelRestart": null, + "paragraphProperty": Object { + "indent": Object { + "end": null, + "firstLineChars": null, + "hangingChars": null, + "specialIndent": Object { + "type": "hanging", + "val": 420, + }, + "start": 2940, + "startChars": null, + }, + "runProperty": Object {}, + "tabs": Array [], + }, + "pstyle": null, + "runProperty": Object {}, + "start": 1, + "suffix": "tab", + "text": "%7.", + }, + Object { + "format": "aiueoFullWidth", + "jc": "left", + "level": 7, + "levelRestart": null, + "paragraphProperty": Object { + "indent": Object { + "end": null, + "firstLineChars": null, + "hangingChars": null, + "specialIndent": Object { + "type": "hanging", + "val": 420, + }, + "start": 3360, + "startChars": null, + }, + "runProperty": Object {}, + "tabs": Array [], + }, + "pstyle": null, + "runProperty": Object {}, + "start": 1, + "suffix": "tab", + "text": "(%8)", + }, + Object { + "format": "decimalEnclosedCircle", + "jc": "left", + "level": 8, + "levelRestart": null, + "paragraphProperty": Object { + "indent": Object { + "end": null, + "firstLineChars": null, + "hangingChars": null, + "specialIndent": Object { + "type": "hanging", + "val": 420, + }, + "start": 3780, + "startChars": null, + }, + "runProperty": Object {}, + "tabs": Array [], + }, + "pstyle": null, + "runProperty": Object {}, + "start": 1, + "suffix": "tab", + "text": "%9", + }, + ], + "numStyleLink": null, + "styleLink": null, + }, + Object { + "id": 74, + "levels": Array [ + Object { + "format": "decimal", + "jc": "left", + "level": 0, + "levelRestart": null, + "paragraphProperty": Object { + "indent": Object { + "end": null, + "firstLineChars": null, + "hangingChars": null, + "specialIndent": Object { + "type": "hanging", + "val": 360, + }, + "start": 540, + "startChars": null, + }, + "runProperty": Object {}, + "tabs": Array [], + }, + "pstyle": null, + "runProperty": Object { + "fonts": Object { + "hint": "eastAsia", + }, + }, + "start": 1, + "suffix": "tab", + "text": "%1.", + }, + Object { + "format": "aiueoFullWidth", + "jc": "left", + "level": 1, + "levelRestart": null, + "paragraphProperty": Object { + "indent": Object { + "end": null, + "firstLineChars": null, + "hangingChars": null, + "specialIndent": Object { + "type": "hanging", + "val": 420, + }, + "start": 840, + "startChars": null, + }, + "runProperty": Object {}, + "tabs": Array [], + }, + "pstyle": null, + "runProperty": Object {}, + "start": 1, + "suffix": "tab", + "text": "(%2)", + }, + Object { + "format": "decimalEnclosedCircle", + "jc": "left", + "level": 2, + "levelRestart": null, + "paragraphProperty": Object { + "indent": Object { + "end": null, + "firstLineChars": null, + "hangingChars": null, + "specialIndent": Object { + "type": "hanging", + "val": 420, + }, + "start": 1260, + "startChars": null, + }, + "runProperty": Object {}, + "tabs": Array [], + }, + "pstyle": null, + "runProperty": Object {}, + "start": 1, + "suffix": "tab", + "text": "%3", + }, + Object { + "format": "decimal", + "jc": "left", + "level": 3, + "levelRestart": null, + "paragraphProperty": Object { + "indent": Object { + "end": null, + "firstLineChars": null, + "hangingChars": null, + "specialIndent": Object { + "type": "hanging", + "val": 420, + }, + "start": 1680, + "startChars": null, + }, + "runProperty": Object {}, + "tabs": Array [], + }, + "pstyle": null, + "runProperty": Object {}, + "start": 1, + "suffix": "tab", + "text": "%4.", + }, + Object { + "format": "aiueoFullWidth", + "jc": "left", + "level": 4, + "levelRestart": null, + "paragraphProperty": Object { + "indent": Object { + "end": null, + "firstLineChars": null, + "hangingChars": null, + "specialIndent": Object { + "type": "hanging", + "val": 420, + }, + "start": 2100, + "startChars": null, + }, + "runProperty": Object {}, + "tabs": Array [], + }, + "pstyle": null, + "runProperty": Object {}, + "start": 1, + "suffix": "tab", + "text": "(%5)", + }, + Object { + "format": "decimalEnclosedCircle", + "jc": "left", + "level": 5, + "levelRestart": null, + "paragraphProperty": Object { + "indent": Object { + "end": null, + "firstLineChars": null, + "hangingChars": null, + "specialIndent": Object { + "type": "hanging", + "val": 420, + }, + "start": 2520, + "startChars": null, + }, + "runProperty": Object {}, + "tabs": Array [], + }, + "pstyle": null, + "runProperty": Object {}, + "start": 1, + "suffix": "tab", + "text": "%6", + }, + Object { + "format": "decimal", + "jc": "left", + "level": 6, + "levelRestart": null, + "paragraphProperty": Object { + "indent": Object { + "end": null, + "firstLineChars": null, + "hangingChars": null, + "specialIndent": Object { + "type": "hanging", + "val": 420, + }, + "start": 2940, + "startChars": null, + }, + "runProperty": Object {}, + "tabs": Array [], + }, + "pstyle": null, + "runProperty": Object {}, + "start": 1, + "suffix": "tab", + "text": "%7.", + }, + Object { + "format": "aiueoFullWidth", + "jc": "left", + "level": 7, + "levelRestart": null, + "paragraphProperty": Object { + "indent": Object { + "end": null, + "firstLineChars": null, + "hangingChars": null, + "specialIndent": Object { + "type": "hanging", + "val": 420, + }, + "start": 3360, + "startChars": null, + }, + "runProperty": Object {}, + "tabs": Array [], + }, + "pstyle": null, + "runProperty": Object {}, + "start": 1, + "suffix": "tab", + "text": "(%8)", + }, + Object { + "format": "decimalEnclosedCircle", + "jc": "left", + "level": 8, + "levelRestart": null, + "paragraphProperty": Object { + "indent": Object { + "end": null, + "firstLineChars": null, + "hangingChars": null, + "specialIndent": Object { + "type": "hanging", + "val": 420, + }, + "start": 3780, + "startChars": null, + }, + "runProperty": Object {}, + "tabs": Array [], + }, + "pstyle": null, + "runProperty": Object {}, + "start": 1, + "suffix": "tab", + "text": "%9", + }, + ], + "numStyleLink": null, + "styleLink": null, + }, + Object { + "id": 75, + "levels": Array [ + Object { + "format": "decimal", + "jc": "left", + "level": 0, + "levelRestart": null, + "paragraphProperty": Object { + "indent": Object { + "end": null, + "firstLineChars": null, + "hangingChars": null, + "specialIndent": Object { + "type": "hanging", + "val": 360, + }, + "start": 540, + "startChars": null, + }, + "runProperty": Object {}, + "tabs": Array [], + }, + "pstyle": null, + "runProperty": Object { + "fonts": Object { + "hint": "eastAsia", + }, + }, + "start": 1, + "suffix": "tab", + "text": "%1.", + }, + Object { + "format": "aiueoFullWidth", + "jc": "left", + "level": 1, + "levelRestart": null, + "paragraphProperty": Object { + "indent": Object { + "end": null, + "firstLineChars": null, + "hangingChars": null, + "specialIndent": Object { + "type": "hanging", + "val": 420, + }, + "start": 840, + "startChars": null, + }, + "runProperty": Object {}, + "tabs": Array [], + }, + "pstyle": null, + "runProperty": Object {}, + "start": 1, + "suffix": "tab", + "text": "(%2)", + }, + Object { + "format": "decimalEnclosedCircle", + "jc": "left", + "level": 2, + "levelRestart": null, + "paragraphProperty": Object { + "indent": Object { + "end": null, + "firstLineChars": null, + "hangingChars": null, + "specialIndent": Object { + "type": "hanging", + "val": 420, + }, + "start": 1260, + "startChars": null, + }, + "runProperty": Object {}, + "tabs": Array [], + }, + "pstyle": null, + "runProperty": Object {}, + "start": 1, + "suffix": "tab", + "text": "%3", + }, + Object { + "format": "decimal", + "jc": "left", + "level": 3, + "levelRestart": null, + "paragraphProperty": Object { + "indent": Object { + "end": null, + "firstLineChars": null, + "hangingChars": null, + "specialIndent": Object { + "type": "hanging", + "val": 420, + }, + "start": 1680, + "startChars": null, + }, + "runProperty": Object {}, + "tabs": Array [], + }, + "pstyle": null, + "runProperty": Object {}, + "start": 1, + "suffix": "tab", + "text": "%4.", + }, + Object { + "format": "aiueoFullWidth", + "jc": "left", + "level": 4, + "levelRestart": null, + "paragraphProperty": Object { + "indent": Object { + "end": null, + "firstLineChars": null, + "hangingChars": null, + "specialIndent": Object { + "type": "hanging", + "val": 420, + }, + "start": 2100, + "startChars": null, + }, + "runProperty": Object {}, + "tabs": Array [], + }, + "pstyle": null, + "runProperty": Object {}, + "start": 1, + "suffix": "tab", + "text": "(%5)", + }, + Object { + "format": "decimalEnclosedCircle", + "jc": "left", + "level": 5, + "levelRestart": null, + "paragraphProperty": Object { + "indent": Object { + "end": null, + "firstLineChars": null, + "hangingChars": null, + "specialIndent": Object { + "type": "hanging", + "val": 420, + }, + "start": 2520, + "startChars": null, + }, + "runProperty": Object {}, + "tabs": Array [], + }, + "pstyle": null, + "runProperty": Object {}, + "start": 1, + "suffix": "tab", + "text": "%6", + }, + Object { + "format": "decimal", + "jc": "left", + "level": 6, + "levelRestart": null, + "paragraphProperty": Object { + "indent": Object { + "end": null, + "firstLineChars": null, + "hangingChars": null, + "specialIndent": Object { + "type": "hanging", + "val": 420, + }, + "start": 2940, + "startChars": null, + }, + "runProperty": Object {}, + "tabs": Array [], + }, + "pstyle": null, + "runProperty": Object {}, + "start": 1, + "suffix": "tab", + "text": "%7.", + }, + Object { + "format": "aiueoFullWidth", + "jc": "left", + "level": 7, + "levelRestart": null, + "paragraphProperty": Object { + "indent": Object { + "end": null, + "firstLineChars": null, + "hangingChars": null, + "specialIndent": Object { + "type": "hanging", + "val": 420, + }, + "start": 3360, + "startChars": null, + }, + "runProperty": Object {}, + "tabs": Array [], + }, + "pstyle": null, + "runProperty": Object {}, + "start": 1, + "suffix": "tab", + "text": "(%8)", + }, + Object { + "format": "decimalEnclosedCircle", + "jc": "left", + "level": 8, + "levelRestart": null, + "paragraphProperty": Object { + "indent": Object { + "end": null, + "firstLineChars": null, + "hangingChars": null, + "specialIndent": Object { + "type": "hanging", + "val": 420, + }, + "start": 3780, + "startChars": null, + }, + "runProperty": Object {}, + "tabs": Array [], + }, + "pstyle": null, + "runProperty": Object {}, + "start": 1, + "suffix": "tab", + "text": "%9", + }, + ], + "numStyleLink": null, + "styleLink": null, + }, + Object { + "id": 76, + "levels": Array [ + Object { + "format": "decimal", + "jc": "left", + "level": 0, + "levelRestart": null, + "paragraphProperty": Object { + "indent": Object { + "end": null, + "firstLineChars": null, + "hangingChars": null, + "specialIndent": Object { + "type": "hanging", + "val": 360, + }, + "start": 540, + "startChars": null, + }, + "runProperty": Object {}, + "tabs": Array [], + }, + "pstyle": null, + "runProperty": Object { + "fonts": Object { + "hint": "eastAsia", + }, + }, + "start": 1, + "suffix": "tab", + "text": "%1.", + }, + Object { + "format": "aiueoFullWidth", + "jc": "left", + "level": 1, + "levelRestart": null, + "paragraphProperty": Object { + "indent": Object { + "end": null, + "firstLineChars": null, + "hangingChars": null, + "specialIndent": Object { + "type": "hanging", + "val": 420, + }, + "start": 840, + "startChars": null, + }, + "runProperty": Object {}, + "tabs": Array [], + }, + "pstyle": null, + "runProperty": Object {}, + "start": 1, + "suffix": "tab", + "text": "(%2)", + }, + Object { + "format": "decimalEnclosedCircle", + "jc": "left", + "level": 2, + "levelRestart": null, + "paragraphProperty": Object { + "indent": Object { + "end": null, + "firstLineChars": null, + "hangingChars": null, + "specialIndent": Object { + "type": "hanging", + "val": 420, + }, + "start": 1260, + "startChars": null, + }, + "runProperty": Object {}, + "tabs": Array [], + }, + "pstyle": null, + "runProperty": Object {}, + "start": 1, + "suffix": "tab", + "text": "%3", + }, + Object { + "format": "decimal", + "jc": "left", + "level": 3, + "levelRestart": null, + "paragraphProperty": Object { + "indent": Object { + "end": null, + "firstLineChars": null, + "hangingChars": null, + "specialIndent": Object { + "type": "hanging", + "val": 420, + }, + "start": 1680, + "startChars": null, + }, + "runProperty": Object {}, + "tabs": Array [], + }, + "pstyle": null, + "runProperty": Object {}, + "start": 1, + "suffix": "tab", + "text": "%4.", + }, + Object { + "format": "aiueoFullWidth", + "jc": "left", + "level": 4, + "levelRestart": null, + "paragraphProperty": Object { + "indent": Object { + "end": null, + "firstLineChars": null, + "hangingChars": null, + "specialIndent": Object { + "type": "hanging", + "val": 420, + }, + "start": 2100, + "startChars": null, + }, + "runProperty": Object {}, + "tabs": Array [], + }, + "pstyle": null, + "runProperty": Object {}, + "start": 1, + "suffix": "tab", + "text": "(%5)", + }, + Object { + "format": "decimalEnclosedCircle", + "jc": "left", + "level": 5, + "levelRestart": null, + "paragraphProperty": Object { + "indent": Object { + "end": null, + "firstLineChars": null, + "hangingChars": null, + "specialIndent": Object { + "type": "hanging", + "val": 420, + }, + "start": 2520, + "startChars": null, + }, + "runProperty": Object {}, + "tabs": Array [], + }, + "pstyle": null, + "runProperty": Object {}, + "start": 1, + "suffix": "tab", + "text": "%6", + }, + Object { + "format": "decimal", + "jc": "left", + "level": 6, + "levelRestart": null, + "paragraphProperty": Object { + "indent": Object { + "end": null, + "firstLineChars": null, + "hangingChars": null, + "specialIndent": Object { + "type": "hanging", + "val": 420, + }, + "start": 2940, + "startChars": null, + }, + "runProperty": Object {}, + "tabs": Array [], + }, + "pstyle": null, + "runProperty": Object {}, + "start": 1, + "suffix": "tab", + "text": "%7.", + }, + Object { + "format": "aiueoFullWidth", + "jc": "left", + "level": 7, + "levelRestart": null, + "paragraphProperty": Object { + "indent": Object { + "end": null, + "firstLineChars": null, + "hangingChars": null, + "specialIndent": Object { + "type": "hanging", + "val": 420, + }, + "start": 3360, + "startChars": null, + }, + "runProperty": Object {}, + "tabs": Array [], + }, + "pstyle": null, + "runProperty": Object {}, + "start": 1, + "suffix": "tab", + "text": "(%8)", + }, + Object { + "format": "decimalEnclosedCircle", + "jc": "left", + "level": 8, + "levelRestart": null, + "paragraphProperty": Object { + "indent": Object { + "end": null, + "firstLineChars": null, + "hangingChars": null, + "specialIndent": Object { + "type": "hanging", + "val": 420, + }, + "start": 3780, + "startChars": null, + }, + "runProperty": Object {}, + "tabs": Array [], + }, + "pstyle": null, + "runProperty": Object {}, + "start": 1, + "suffix": "tab", + "text": "%9", + }, + ], + "numStyleLink": null, + "styleLink": null, + }, + Object { + "id": 77, + "levels": Array [ + Object { + "format": "bullet", + "jc": "left", + "level": 0, + "levelRestart": null, + "paragraphProperty": Object { + "indent": Object { + "end": null, + "firstLineChars": null, + "hangingChars": null, + "specialIndent": Object { + "type": "hanging", + "val": 453, + }, + "start": 2041, + "startChars": null, + }, + "runProperty": Object {}, + "tabs": Array [], + }, + "pstyle": "a3", + "runProperty": Object { + "fonts": Object { + "ascii": "Wingdings", + "hiAnsi": "Wingdings", + "hint": "default", + }, + }, + "start": 1, + "suffix": "tab", + "text": "", + }, + Object { + "format": "bullet", + "jc": "left", + "level": 1, + "levelRestart": null, + "paragraphProperty": Object { + "indent": Object { + "end": null, + "firstLineChars": null, + "hangingChars": null, + "specialIndent": Object { + "type": "hanging", + "val": 420, + }, + "start": 1554, + "startChars": null, + }, + "runProperty": Object {}, + "tabs": Array [], + }, + "pstyle": null, + "runProperty": Object { + "fonts": Object { + "ascii": "Wingdings", + "hiAnsi": "Wingdings", + "hint": "default", + }, + }, + "start": 1, + "suffix": "tab", + "text": "", + }, + Object { + "format": "bullet", + "jc": "left", + "level": 2, + "levelRestart": null, + "paragraphProperty": Object { + "indent": Object { + "end": null, + "firstLineChars": null, + "hangingChars": null, + "specialIndent": Object { + "type": "hanging", + "val": 420, + }, + "start": 1260, + "startChars": null, + }, + "runProperty": Object {}, + "tabs": Array [], + }, + "pstyle": null, + "runProperty": Object { + "fonts": Object { + "ascii": "Wingdings", + "hiAnsi": "Wingdings", + "hint": "default", + }, + }, + "start": 1, + "suffix": "tab", + "text": "", + }, + Object { + "format": "bullet", + "jc": "left", + "level": 3, + "levelRestart": null, + "paragraphProperty": Object { + "indent": Object { + "end": null, + "firstLineChars": null, + "hangingChars": null, + "specialIndent": Object { + "type": "hanging", + "val": 420, + }, + "start": 1680, + "startChars": null, + }, + "runProperty": Object {}, + "tabs": Array [], + }, + "pstyle": null, + "runProperty": Object { + "fonts": Object { + "ascii": "Wingdings", + "hiAnsi": "Wingdings", + "hint": "default", + }, + }, + "start": 1, + "suffix": "tab", + "text": "", + }, + Object { + "format": "bullet", + "jc": "left", + "level": 4, + "levelRestart": null, + "paragraphProperty": Object { + "indent": Object { + "end": null, + "firstLineChars": null, + "hangingChars": null, + "specialIndent": Object { + "type": "hanging", + "val": 420, + }, + "start": 2100, + "startChars": null, + }, + "runProperty": Object {}, + "tabs": Array [], + }, + "pstyle": null, + "runProperty": Object { + "fonts": Object { + "ascii": "Wingdings", + "hiAnsi": "Wingdings", + "hint": "default", + }, + }, + "start": 1, + "suffix": "tab", + "text": "", + }, + Object { + "format": "bullet", + "jc": "left", + "level": 5, + "levelRestart": null, + "paragraphProperty": Object { + "indent": Object { + "end": null, + "firstLineChars": null, + "hangingChars": null, + "specialIndent": Object { + "type": "hanging", + "val": 420, + }, + "start": 2520, + "startChars": null, + }, + "runProperty": Object {}, + "tabs": Array [], + }, + "pstyle": null, + "runProperty": Object { + "fonts": Object { + "ascii": "Wingdings", + "hiAnsi": "Wingdings", + "hint": "default", + }, + }, + "start": 1, + "suffix": "tab", + "text": "", + }, + Object { + "format": "bullet", + "jc": "left", + "level": 6, + "levelRestart": null, + "paragraphProperty": Object { + "indent": Object { + "end": null, + "firstLineChars": null, + "hangingChars": null, + "specialIndent": Object { + "type": "hanging", + "val": 420, + }, + "start": 2940, + "startChars": null, + }, + "runProperty": Object {}, + "tabs": Array [], + }, + "pstyle": null, + "runProperty": Object { + "fonts": Object { + "ascii": "Wingdings", + "hiAnsi": "Wingdings", + "hint": "default", + }, + }, + "start": 1, + "suffix": "tab", + "text": "", + }, + Object { + "format": "bullet", + "jc": "left", + "level": 7, + "levelRestart": null, + "paragraphProperty": Object { + "indent": Object { + "end": null, + "firstLineChars": null, + "hangingChars": null, + "specialIndent": Object { + "type": "hanging", + "val": 420, + }, + "start": 3360, + "startChars": null, + }, + "runProperty": Object {}, + "tabs": Array [], + }, + "pstyle": null, + "runProperty": Object { + "fonts": Object { + "ascii": "Wingdings", + "hiAnsi": "Wingdings", + "hint": "default", + }, + }, + "start": 1, + "suffix": "tab", + "text": "", + }, + Object { + "format": "bullet", + "jc": "left", + "level": 8, + "levelRestart": null, + "paragraphProperty": Object { + "indent": Object { + "end": null, + "firstLineChars": null, + "hangingChars": null, + "specialIndent": Object { + "type": "hanging", + "val": 420, + }, + "start": 3780, + "startChars": null, + }, + "runProperty": Object {}, + "tabs": Array [], + }, + "pstyle": null, + "runProperty": Object { + "fonts": Object { + "ascii": "Wingdings", + "hiAnsi": "Wingdings", + "hint": "default", + }, + }, + "start": 1, + "suffix": "tab", + "text": "", + }, + ], + "numStyleLink": null, + "styleLink": null, + }, + Object { + "id": 78, + "levels": Array [ + Object { + "format": "lowerLetter", + "jc": "left", + "level": 0, + "levelRestart": null, + "paragraphProperty": Object { + "indent": Object { + "end": null, + "firstLineChars": null, + "hangingChars": null, + "specialIndent": Object { + "type": "hanging", + "val": 454, + }, + "start": 1588, + "startChars": null, + }, + "runProperty": Object {}, + "tabs": Array [], + }, + "pstyle": null, + "runProperty": Object { + "bold": false, + "boldCs": false, + "fonts": Object { + "ascii": "Times New Roman", + "cs": "Times New Roman", + "hiAnsi": "Times New Roman", + "hint": "default", + }, + "italic": false, + "italicCs": false, + "sz": 24, + "szCs": 24, + "underline": "none", + }, + "start": 1, + "suffix": "tab", + "text": "(%1)", + }, + Object { + "format": "aiueoFullWidth", + "jc": "left", + "level": 1, + "levelRestart": null, + "paragraphProperty": Object { + "indent": Object { + "end": null, + "firstLineChars": null, + "hangingChars": null, + "specialIndent": Object { + "type": "hanging", + "val": 420, + }, + "start": 840, + "startChars": null, + }, + "runProperty": Object {}, + "tabs": Array [], + }, + "pstyle": null, + "runProperty": Object {}, + "start": 1, + "suffix": "tab", + "text": "(%2)", + }, + Object { + "format": "decimalEnclosedCircle", + "jc": "left", + "level": 2, + "levelRestart": null, + "paragraphProperty": Object { + "indent": Object { + "end": null, + "firstLineChars": null, + "hangingChars": null, + "specialIndent": Object { + "type": "hanging", + "val": 420, + }, + "start": 1260, + "startChars": null, + }, + "runProperty": Object {}, + "tabs": Array [], + }, + "pstyle": null, + "runProperty": Object {}, + "start": 1, + "suffix": "tab", + "text": "%3", + }, + Object { + "format": "decimal", + "jc": "left", + "level": 3, + "levelRestart": null, + "paragraphProperty": Object { + "indent": Object { + "end": null, + "firstLineChars": null, + "hangingChars": null, + "specialIndent": Object { + "type": "hanging", + "val": 420, + }, + "start": 1680, + "startChars": null, + }, + "runProperty": Object {}, + "tabs": Array [], + }, + "pstyle": null, + "runProperty": Object {}, + "start": 1, + "suffix": "tab", + "text": "%4.", + }, + Object { + "format": "aiueoFullWidth", + "jc": "left", + "level": 4, + "levelRestart": null, + "paragraphProperty": Object { + "indent": Object { + "end": null, + "firstLineChars": null, + "hangingChars": null, + "specialIndent": Object { + "type": "hanging", + "val": 420, + }, + "start": 2100, + "startChars": null, + }, + "runProperty": Object {}, + "tabs": Array [], + }, + "pstyle": null, + "runProperty": Object {}, + "start": 1, + "suffix": "tab", + "text": "(%5)", + }, + Object { + "format": "decimalEnclosedCircle", + "jc": "left", + "level": 5, + "levelRestart": null, + "paragraphProperty": Object { + "indent": Object { + "end": null, + "firstLineChars": null, + "hangingChars": null, + "specialIndent": Object { + "type": "hanging", + "val": 420, + }, + "start": 2520, + "startChars": null, + }, + "runProperty": Object {}, + "tabs": Array [], + }, + "pstyle": null, + "runProperty": Object {}, + "start": 1, + "suffix": "tab", + "text": "%6", + }, + Object { + "format": "decimal", + "jc": "left", + "level": 6, + "levelRestart": null, + "paragraphProperty": Object { + "indent": Object { + "end": null, + "firstLineChars": null, + "hangingChars": null, + "specialIndent": Object { + "type": "hanging", + "val": 420, + }, + "start": 2940, + "startChars": null, + }, + "runProperty": Object {}, + "tabs": Array [], + }, + "pstyle": null, + "runProperty": Object {}, + "start": 1, + "suffix": "tab", + "text": "%7.", + }, + Object { + "format": "aiueoFullWidth", + "jc": "left", + "level": 7, + "levelRestart": null, + "paragraphProperty": Object { + "indent": Object { + "end": null, + "firstLineChars": null, + "hangingChars": null, + "specialIndent": Object { + "type": "hanging", + "val": 420, + }, + "start": 3360, + "startChars": null, + }, + "runProperty": Object {}, + "tabs": Array [], + }, + "pstyle": null, + "runProperty": Object {}, + "start": 1, + "suffix": "tab", + "text": "(%8)", + }, + Object { + "format": "decimalEnclosedCircle", + "jc": "left", + "level": 8, + "levelRestart": null, + "paragraphProperty": Object { + "indent": Object { + "end": null, + "firstLineChars": null, + "hangingChars": null, + "specialIndent": Object { + "type": "hanging", + "val": 420, + }, + "start": 3780, + "startChars": null, + }, + "runProperty": Object {}, + "tabs": Array [], + }, + "pstyle": null, + "runProperty": Object {}, + "start": 1, + "suffix": "tab", + "text": "%9", + }, + ], + "numStyleLink": null, + "styleLink": null, + }, + Object { + "id": 79, + "levels": Array [ + Object { + "format": "bullet", + "jc": "left", + "level": 0, + "levelRestart": null, + "paragraphProperty": Object { + "indent": Object { + "end": null, + "firstLineChars": null, + "hangingChars": null, + "specialIndent": Object { + "type": "hanging", + "val": 454, + }, + "start": 2013, + "startChars": null, + }, + "runProperty": Object {}, + "tabs": Array [], + }, + "pstyle": "21", + "runProperty": Object { + "fonts": Object { + "ascii": "Wingdings", + "hiAnsi": "Wingdings", + "hint": "default", + }, + "sz": 24, + "szCs": 24, + }, + "start": 1, + "suffix": "tab", + "text": "", + }, + Object { + "format": "bullet", + "jc": "left", + "level": 1, + "levelRestart": null, + "paragraphProperty": Object { + "indent": Object { + "end": null, + "firstLineChars": null, + "hangingChars": null, + "specialIndent": Object { + "type": "hanging", + "val": 454, + }, + "start": 1588, + "startChars": null, + }, + "runProperty": Object {}, + "tabs": Array [], + }, + "pstyle": null, + "runProperty": Object { + "bold": false, + "boldCs": false, + "fonts": Object { + "ascii": "Wingdings", + "hiAnsi": "Wingdings", + "hint": "default", + }, + "italic": false, + "italicCs": false, + "sz": 24, + "szCs": 24, + }, + "start": 1, + "suffix": "tab", + "text": "", + }, + Object { + "format": "bullet", + "jc": "left", + "level": 2, + "levelRestart": null, + "paragraphProperty": Object { + "indent": Object { + "end": null, + "firstLineChars": null, + "hangingChars": null, + "specialIndent": Object { + "type": "hanging", + "val": 420, + }, + "start": 1260, + "startChars": null, + }, + "runProperty": Object {}, + "tabs": Array [], + }, + "pstyle": null, + "runProperty": Object { + "fonts": Object { + "ascii": "Wingdings", + "hiAnsi": "Wingdings", + "hint": "default", + }, + }, + "start": 1, + "suffix": "tab", + "text": "", + }, + Object { + "format": "bullet", + "jc": "left", + "level": 3, + "levelRestart": null, + "paragraphProperty": Object { + "indent": Object { + "end": null, + "firstLineChars": null, + "hangingChars": null, + "specialIndent": Object { + "type": "hanging", + "val": 420, + }, + "start": 1680, + "startChars": null, + }, + "runProperty": Object {}, + "tabs": Array [], + }, + "pstyle": null, + "runProperty": Object { + "fonts": Object { + "ascii": "Wingdings", + "hiAnsi": "Wingdings", + "hint": "default", + }, + }, + "start": 1, + "suffix": "tab", + "text": "", + }, + Object { + "format": "bullet", + "jc": "left", + "level": 4, + "levelRestart": null, + "paragraphProperty": Object { + "indent": Object { + "end": null, + "firstLineChars": null, + "hangingChars": null, + "specialIndent": Object { + "type": "hanging", + "val": 420, + }, + "start": 2100, + "startChars": null, + }, + "runProperty": Object {}, + "tabs": Array [], + }, + "pstyle": null, + "runProperty": Object { + "fonts": Object { + "ascii": "Wingdings", + "hiAnsi": "Wingdings", + "hint": "default", + }, + }, + "start": 1, + "suffix": "tab", + "text": "", + }, + Object { + "format": "bullet", + "jc": "left", + "level": 5, + "levelRestart": null, + "paragraphProperty": Object { + "indent": Object { + "end": null, + "firstLineChars": null, + "hangingChars": null, + "specialIndent": Object { + "type": "hanging", + "val": 420, + }, + "start": 2520, + "startChars": null, + }, + "runProperty": Object {}, + "tabs": Array [], + }, + "pstyle": null, + "runProperty": Object { + "fonts": Object { + "ascii": "Wingdings", + "hiAnsi": "Wingdings", + "hint": "default", + }, + }, + "start": 1, + "suffix": "tab", + "text": "", + }, + Object { + "format": "bullet", + "jc": "left", + "level": 6, + "levelRestart": null, + "paragraphProperty": Object { + "indent": Object { + "end": null, + "firstLineChars": null, + "hangingChars": null, + "specialIndent": Object { + "type": "hanging", + "val": 420, + }, + "start": 2940, + "startChars": null, + }, + "runProperty": Object {}, + "tabs": Array [], + }, + "pstyle": null, + "runProperty": Object { + "fonts": Object { + "ascii": "Wingdings", + "hiAnsi": "Wingdings", + "hint": "default", + }, + }, + "start": 1, + "suffix": "tab", + "text": "", + }, + Object { + "format": "bullet", + "jc": "left", + "level": 7, + "levelRestart": null, + "paragraphProperty": Object { + "indent": Object { + "end": null, + "firstLineChars": null, + "hangingChars": null, + "specialIndent": Object { + "type": "hanging", + "val": 420, + }, + "start": 3360, + "startChars": null, + }, + "runProperty": Object {}, + "tabs": Array [], + }, + "pstyle": null, + "runProperty": Object { + "fonts": Object { + "ascii": "Wingdings", + "hiAnsi": "Wingdings", + "hint": "default", + }, + }, + "start": 1, + "suffix": "tab", + "text": "", + }, + Object { + "format": "bullet", + "jc": "left", + "level": 8, + "levelRestart": null, + "paragraphProperty": Object { + "indent": Object { + "end": null, + "firstLineChars": null, + "hangingChars": null, + "specialIndent": Object { + "type": "hanging", + "val": 420, + }, + "start": 3780, + "startChars": null, + }, + "runProperty": Object {}, + "tabs": Array [], + }, + "pstyle": null, + "runProperty": Object { + "fonts": Object { + "ascii": "Wingdings", + "hiAnsi": "Wingdings", + "hint": "default", + }, + }, + "start": 1, + "suffix": "tab", + "text": "", + }, + ], + "numStyleLink": null, + "styleLink": null, + }, + Object { + "id": 80, + "levels": Array [ + Object { + "format": "decimal", + "jc": "left", + "level": 0, + "levelRestart": null, + "paragraphProperty": Object { + "indent": Object { + "end": null, + "firstLineChars": null, + "hangingChars": null, + "specialIndent": Object { + "type": "hanging", + "val": 360, + }, + "start": 540, + "startChars": null, + }, + "runProperty": Object {}, + "tabs": Array [], + }, + "pstyle": null, + "runProperty": Object { + "fonts": Object { + "hint": "eastAsia", + }, + }, + "start": 1, + "suffix": "tab", + "text": "%1.", + }, + Object { + "format": "lowerLetter", + "jc": "left", + "level": 1, + "levelRestart": null, + "paragraphProperty": Object { + "indent": Object { + "end": null, + "firstLineChars": null, + "hangingChars": null, + "specialIndent": Object { + "type": "hanging", + "val": 420, + }, + "start": 840, + "startChars": null, + }, + "runProperty": Object {}, + "tabs": Array [], + }, + "pstyle": null, + "runProperty": Object { + "fonts": Object { + "hint": "eastAsia", + }, + }, + "start": 1, + "suffix": "tab", + "text": "(%2)", + }, + Object { + "format": "lowerLetter", + "jc": "left", + "level": 2, + "levelRestart": null, + "paragraphProperty": Object { + "indent": Object { + "end": null, + "firstLineChars": null, + "hangingChars": null, + "specialIndent": Object { + "type": "hanging", + "val": 360, + }, + "start": 1200, + "startChars": null, + }, + "runProperty": Object {}, + "tabs": Array [], + }, + "pstyle": null, + "runProperty": Object { + "fonts": Object { + "ascii": "MS P明朝", + "hint": "eastAsia", + }, + }, + "start": 1, + "suffix": "tab", + "text": "(%3)", + }, + Object { + "format": "lowerLetter", + "jc": "left", + "level": 3, + "levelRestart": null, + "paragraphProperty": Object { + "indent": Object { + "end": null, + "firstLineChars": null, + "hangingChars": null, + "specialIndent": Object { + "type": "hanging", + "val": 360, + }, + "start": 1620, + "startChars": null, + }, + "runProperty": Object {}, + "tabs": Array [], + }, + "pstyle": null, + "runProperty": Object { + "fonts": Object { + "hint": "eastAsia", + }, + }, + "start": 1, + "suffix": "tab", + "text": "(%4)", + }, + Object { + "format": "decimalEnclosedCircle", + "jc": "left", + "level": 4, + "levelRestart": null, + "paragraphProperty": Object { + "indent": Object { + "end": null, + "firstLineChars": null, + "hangingChars": null, + "specialIndent": Object { + "type": "hanging", + "val": 360, + }, + "start": 2040, + "startChars": null, + }, + "runProperty": Object {}, + "tabs": Array [], + }, + "pstyle": null, + "runProperty": Object { + "fonts": Object { + "hint": "eastAsia", + }, + }, + "start": 1, + "suffix": "tab", + "text": "%5", + }, + Object { + "format": "decimalEnclosedCircle", + "jc": "left", + "level": 5, + "levelRestart": null, + "paragraphProperty": Object { + "indent": Object { + "end": null, + "firstLineChars": null, + "hangingChars": null, + "specialIndent": Object { + "type": "hanging", + "val": 420, + }, + "start": 2520, + "startChars": null, + }, + "runProperty": Object {}, + "tabs": Array [], + }, + "pstyle": null, + "runProperty": Object {}, + "start": 1, + "suffix": "tab", + "text": "%6", + }, + Object { + "format": "decimal", + "jc": "left", + "level": 6, + "levelRestart": null, + "paragraphProperty": Object { + "indent": Object { + "end": null, + "firstLineChars": null, + "hangingChars": null, + "specialIndent": Object { + "type": "hanging", + "val": 420, + }, + "start": 2940, + "startChars": null, + }, + "runProperty": Object {}, + "tabs": Array [], + }, + "pstyle": null, + "runProperty": Object {}, + "start": 1, + "suffix": "tab", + "text": "%7.", + }, + Object { + "format": "aiueoFullWidth", + "jc": "left", + "level": 7, + "levelRestart": null, + "paragraphProperty": Object { + "indent": Object { + "end": null, + "firstLineChars": null, + "hangingChars": null, + "specialIndent": Object { + "type": "hanging", + "val": 420, + }, + "start": 3360, + "startChars": null, + }, + "runProperty": Object {}, + "tabs": Array [], + }, + "pstyle": null, + "runProperty": Object {}, + "start": 1, + "suffix": "tab", + "text": "(%8)", + }, + Object { + "format": "decimalEnclosedCircle", + "jc": "left", + "level": 8, + "levelRestart": null, + "paragraphProperty": Object { + "indent": Object { + "end": null, + "firstLineChars": null, + "hangingChars": null, + "specialIndent": Object { + "type": "hanging", + "val": 420, + }, + "start": 3780, + "startChars": null, + }, + "runProperty": Object {}, + "tabs": Array [], + }, + "pstyle": null, + "runProperty": Object {}, + "start": 1, + "suffix": "tab", + "text": "%9", + }, + ], + "numStyleLink": null, + "styleLink": null, + }, + Object { + "id": 81, + "levels": Array [ + Object { + "format": "lowerLetter", + "jc": "left", + "level": 0, + "levelRestart": null, + "paragraphProperty": Object { + "indent": Object { + "end": null, + "firstLineChars": null, + "hangingChars": null, + "specialIndent": Object { + "type": "hanging", + "val": 420, + }, + "start": 2310, + "startChars": null, + }, + "runProperty": Object {}, + "tabs": Array [], + }, + "pstyle": null, + "runProperty": Object { + "bold": false, + "boldCs": false, + "fonts": Object { + "ascii": "Times New Roman", + "cs": "Times New Roman", + "hiAnsi": "Times New Roman", + "hint": "default", + }, + "italic": false, + "italicCs": false, + "sz": 24, + "szCs": 24, + "underline": "none", + }, + "start": 1, + "suffix": "tab", + "text": "(%1)", + }, + Object { + "format": "aiueoFullWidth", + "jc": "left", + "level": 1, + "levelRestart": null, + "paragraphProperty": Object { + "indent": Object { + "end": null, + "firstLineChars": null, + "hangingChars": null, + "specialIndent": Object { + "type": "hanging", + "val": 420, + }, + "start": 2730, + "startChars": null, + }, + "runProperty": Object {}, + "tabs": Array [], + }, + "pstyle": null, + "runProperty": Object {}, + "start": 1, + "suffix": "tab", + "text": "(%2)", + }, + Object { + "format": "decimalEnclosedCircle", + "jc": "left", + "level": 2, + "levelRestart": null, + "paragraphProperty": Object { + "indent": Object { + "end": null, + "firstLineChars": null, + "hangingChars": null, + "specialIndent": Object { + "type": "hanging", + "val": 420, + }, + "start": 3150, + "startChars": null, + }, + "runProperty": Object {}, + "tabs": Array [], + }, + "pstyle": null, + "runProperty": Object {}, + "start": 1, + "suffix": "tab", + "text": "%3", + }, + Object { + "format": "decimal", + "jc": "left", + "level": 3, + "levelRestart": null, + "paragraphProperty": Object { + "indent": Object { + "end": null, + "firstLineChars": null, + "hangingChars": null, + "specialIndent": Object { + "type": "hanging", + "val": 420, + }, + "start": 3570, + "startChars": null, + }, + "runProperty": Object {}, + "tabs": Array [], + }, + "pstyle": null, + "runProperty": Object {}, + "start": 1, + "suffix": "tab", + "text": "%4.", + }, + Object { + "format": "aiueoFullWidth", + "jc": "left", + "level": 4, + "levelRestart": null, + "paragraphProperty": Object { + "indent": Object { + "end": null, + "firstLineChars": null, + "hangingChars": null, + "specialIndent": Object { + "type": "hanging", + "val": 420, + }, + "start": 3990, + "startChars": null, + }, + "runProperty": Object {}, + "tabs": Array [], + }, + "pstyle": null, + "runProperty": Object {}, + "start": 1, + "suffix": "tab", + "text": "(%5)", + }, + Object { + "format": "decimalEnclosedCircle", + "jc": "left", + "level": 5, + "levelRestart": null, + "paragraphProperty": Object { + "indent": Object { + "end": null, + "firstLineChars": null, + "hangingChars": null, + "specialIndent": Object { + "type": "hanging", + "val": 420, + }, + "start": 4410, + "startChars": null, + }, + "runProperty": Object {}, + "tabs": Array [], + }, + "pstyle": null, + "runProperty": Object {}, + "start": 1, + "suffix": "tab", + "text": "%6", + }, + Object { + "format": "decimal", + "jc": "left", + "level": 6, + "levelRestart": null, + "paragraphProperty": Object { + "indent": Object { + "end": null, + "firstLineChars": null, + "hangingChars": null, + "specialIndent": Object { + "type": "hanging", + "val": 420, + }, + "start": 4830, + "startChars": null, + }, + "runProperty": Object {}, + "tabs": Array [], + }, + "pstyle": null, + "runProperty": Object {}, + "start": 1, + "suffix": "tab", + "text": "%7.", + }, + Object { + "format": "aiueoFullWidth", + "jc": "left", + "level": 7, + "levelRestart": null, + "paragraphProperty": Object { + "indent": Object { + "end": null, + "firstLineChars": null, + "hangingChars": null, + "specialIndent": Object { + "type": "hanging", + "val": 420, + }, + "start": 5250, + "startChars": null, + }, + "runProperty": Object {}, + "tabs": Array [], + }, + "pstyle": null, + "runProperty": Object {}, + "start": 1, + "suffix": "tab", + "text": "(%8)", + }, + Object { + "format": "decimalEnclosedCircle", + "jc": "left", + "level": 8, + "levelRestart": null, + "paragraphProperty": Object { + "indent": Object { + "end": null, + "firstLineChars": null, + "hangingChars": null, + "specialIndent": Object { + "type": "hanging", + "val": 420, + }, + "start": 5670, + "startChars": null, + }, + "runProperty": Object {}, + "tabs": Array [], + }, + "pstyle": null, + "runProperty": Object {}, + "start": 1, + "suffix": "tab", + "text": "%9", + }, + ], + "numStyleLink": null, + "styleLink": null, + }, + Object { + "id": 82, + "levels": Array [ + Object { + "format": "decimal", + "jc": "left", + "level": 0, + "levelRestart": null, + "paragraphProperty": Object { + "indent": Object { + "end": null, + "firstLineChars": null, + "hangingChars": null, + "specialIndent": Object { + "type": "hanging", + "val": 360, + }, + "start": 540, + "startChars": null, + }, + "runProperty": Object {}, + "tabs": Array [], + }, + "pstyle": null, + "runProperty": Object { + "fonts": Object { + "hint": "eastAsia", + }, + }, + "start": 1, + "suffix": "tab", + "text": "%1.", + }, + Object { + "format": "aiueoFullWidth", + "jc": "left", + "level": 1, + "levelRestart": null, + "paragraphProperty": Object { + "indent": Object { + "end": null, + "firstLineChars": null, + "hangingChars": null, + "specialIndent": Object { + "type": "hanging", + "val": 420, + }, + "start": 1020, + "startChars": null, + }, + "runProperty": Object {}, + "tabs": Array [], + }, + "pstyle": null, + "runProperty": Object {}, + "start": 1, + "suffix": "tab", + "text": "(%2)", + }, + Object { + "format": "decimalEnclosedCircle", + "jc": "left", + "level": 2, + "levelRestart": null, + "paragraphProperty": Object { + "indent": Object { + "end": null, + "firstLineChars": null, + "hangingChars": null, + "specialIndent": Object { + "type": "hanging", + "val": 420, + }, + "start": 1440, + "startChars": null, + }, + "runProperty": Object {}, + "tabs": Array [], + }, + "pstyle": null, + "runProperty": Object {}, + "start": 1, + "suffix": "tab", + "text": "%3", + }, + Object { + "format": "decimal", + "jc": "left", + "level": 3, + "levelRestart": null, + "paragraphProperty": Object { + "indent": Object { + "end": null, + "firstLineChars": null, + "hangingChars": null, + "specialIndent": Object { + "type": "hanging", + "val": 420, + }, + "start": 1860, + "startChars": null, + }, + "runProperty": Object {}, + "tabs": Array [], + }, + "pstyle": null, + "runProperty": Object {}, + "start": 1, + "suffix": "tab", + "text": "%4.", + }, + Object { + "format": "aiueoFullWidth", + "jc": "left", + "level": 4, + "levelRestart": null, + "paragraphProperty": Object { + "indent": Object { + "end": null, + "firstLineChars": null, + "hangingChars": null, + "specialIndent": Object { + "type": "hanging", + "val": 420, + }, + "start": 2280, + "startChars": null, + }, + "runProperty": Object {}, + "tabs": Array [], + }, + "pstyle": null, + "runProperty": Object {}, + "start": 1, + "suffix": "tab", + "text": "(%5)", + }, + Object { + "format": "decimalEnclosedCircle", + "jc": "left", + "level": 5, + "levelRestart": null, + "paragraphProperty": Object { + "indent": Object { + "end": null, + "firstLineChars": null, + "hangingChars": null, + "specialIndent": Object { + "type": "hanging", + "val": 420, + }, + "start": 2700, + "startChars": null, + }, + "runProperty": Object {}, + "tabs": Array [], + }, + "pstyle": null, + "runProperty": Object {}, + "start": 1, + "suffix": "tab", + "text": "%6", + }, + Object { + "format": "decimal", + "jc": "left", + "level": 6, + "levelRestart": null, + "paragraphProperty": Object { + "indent": Object { + "end": null, + "firstLineChars": null, + "hangingChars": null, + "specialIndent": Object { + "type": "hanging", + "val": 420, + }, + "start": 3120, + "startChars": null, + }, + "runProperty": Object {}, + "tabs": Array [], + }, + "pstyle": null, + "runProperty": Object {}, + "start": 1, + "suffix": "tab", + "text": "%7.", + }, + Object { + "format": "aiueoFullWidth", + "jc": "left", + "level": 7, + "levelRestart": null, + "paragraphProperty": Object { + "indent": Object { + "end": null, + "firstLineChars": null, + "hangingChars": null, + "specialIndent": Object { + "type": "hanging", + "val": 420, + }, + "start": 3540, + "startChars": null, + }, + "runProperty": Object {}, + "tabs": Array [], + }, + "pstyle": null, + "runProperty": Object {}, + "start": 1, + "suffix": "tab", + "text": "(%8)", + }, + Object { + "format": "decimalEnclosedCircle", + "jc": "left", + "level": 8, + "levelRestart": null, + "paragraphProperty": Object { + "indent": Object { + "end": null, + "firstLineChars": null, + "hangingChars": null, + "specialIndent": Object { + "type": "hanging", + "val": 420, + }, + "start": 3960, + "startChars": null, + }, + "runProperty": Object {}, + "tabs": Array [], + }, + "pstyle": null, + "runProperty": Object {}, + "start": 1, + "suffix": "tab", + "text": "%9", + }, + ], + "numStyleLink": null, + "styleLink": null, + }, + Object { + "id": 83, + "levels": Array [ + Object { + "format": "bullet", + "jc": "left", + "level": 0, + "levelRestart": null, + "paragraphProperty": Object { + "indent": Object { + "end": null, + "firstLineChars": null, + "hangingChars": null, + "specialIndent": Object { + "type": "hanging", + "val": 420, + }, + "start": 420, + "startChars": null, + }, + "runProperty": Object {}, + "tabs": Array [], + }, + "pstyle": null, + "runProperty": Object { + "fonts": Object { + "ascii": "Wingdings", + "hiAnsi": "Wingdings", + "hint": "default", + }, + "italic": true, + "italicCs": true, + "sz": 24, + "szCs": 24, + }, + "start": 1, + "suffix": "tab", + "text": "", + }, + Object { + "format": "bullet", + "jc": "left", + "level": 1, + "levelRestart": null, + "paragraphProperty": Object { + "indent": Object { + "end": null, + "firstLineChars": null, + "hangingChars": null, + "specialIndent": Object { + "type": "hanging", + "val": 420, + }, + "start": 840, + "startChars": null, + }, + "runProperty": Object {}, + "tabs": Array [], + }, + "pstyle": null, + "runProperty": Object { + "fonts": Object { + "ascii": "Wingdings", + "hiAnsi": "Wingdings", + "hint": "default", + }, + }, + "start": 1, + "suffix": "tab", + "text": "", + }, + Object { + "format": "bullet", + "jc": "left", + "level": 2, + "levelRestart": null, + "paragraphProperty": Object { + "indent": Object { + "end": null, + "firstLineChars": null, + "hangingChars": null, + "specialIndent": Object { + "type": "hanging", + "val": 420, + }, + "start": 1260, + "startChars": null, + }, + "runProperty": Object {}, + "tabs": Array [], + }, + "pstyle": null, + "runProperty": Object { + "fonts": Object { + "ascii": "Wingdings", + "hiAnsi": "Wingdings", + "hint": "default", + }, + }, + "start": 1, + "suffix": "tab", + "text": "", + }, + Object { + "format": "bullet", + "jc": "left", + "level": 3, + "levelRestart": null, + "paragraphProperty": Object { + "indent": Object { + "end": null, + "firstLineChars": null, + "hangingChars": null, + "specialIndent": Object { + "type": "hanging", + "val": 420, + }, + "start": 1680, + "startChars": null, + }, + "runProperty": Object {}, + "tabs": Array [], + }, + "pstyle": null, + "runProperty": Object { + "fonts": Object { + "ascii": "Wingdings", + "hiAnsi": "Wingdings", + "hint": "default", + }, + }, + "start": 1, + "suffix": "tab", + "text": "", + }, + Object { + "format": "bullet", + "jc": "left", + "level": 4, + "levelRestart": null, + "paragraphProperty": Object { + "indent": Object { + "end": null, + "firstLineChars": null, + "hangingChars": null, + "specialIndent": Object { + "type": "hanging", + "val": 420, + }, + "start": 2100, + "startChars": null, + }, + "runProperty": Object {}, + "tabs": Array [], + }, + "pstyle": null, + "runProperty": Object { + "fonts": Object { + "ascii": "Wingdings", + "hiAnsi": "Wingdings", + "hint": "default", + }, + }, + "start": 1, + "suffix": "tab", + "text": "", + }, + Object { + "format": "bullet", + "jc": "left", + "level": 5, + "levelRestart": null, + "paragraphProperty": Object { + "indent": Object { + "end": null, + "firstLineChars": null, + "hangingChars": null, + "specialIndent": Object { + "type": "hanging", + "val": 420, + }, + "start": 2520, + "startChars": null, + }, + "runProperty": Object {}, + "tabs": Array [], + }, + "pstyle": null, + "runProperty": Object { + "fonts": Object { + "ascii": "Wingdings", + "hiAnsi": "Wingdings", + "hint": "default", + }, + }, + "start": 1, + "suffix": "tab", + "text": "", + }, + Object { + "format": "bullet", + "jc": "left", + "level": 6, + "levelRestart": null, + "paragraphProperty": Object { + "indent": Object { + "end": null, + "firstLineChars": null, + "hangingChars": null, + "specialIndent": Object { + "type": "hanging", + "val": 420, + }, + "start": 2940, + "startChars": null, + }, + "runProperty": Object {}, + "tabs": Array [], + }, + "pstyle": null, + "runProperty": Object { + "fonts": Object { + "ascii": "Wingdings", + "hiAnsi": "Wingdings", + "hint": "default", + }, + }, + "start": 1, + "suffix": "tab", + "text": "", + }, + Object { + "format": "bullet", + "jc": "left", + "level": 7, + "levelRestart": null, + "paragraphProperty": Object { + "indent": Object { + "end": null, + "firstLineChars": null, + "hangingChars": null, + "specialIndent": Object { + "type": "hanging", + "val": 420, + }, + "start": 3360, + "startChars": null, + }, + "runProperty": Object {}, + "tabs": Array [], + }, + "pstyle": null, + "runProperty": Object { + "fonts": Object { + "ascii": "Wingdings", + "hiAnsi": "Wingdings", + "hint": "default", + }, + }, + "start": 1, + "suffix": "tab", + "text": "", + }, + Object { + "format": "bullet", + "jc": "left", + "level": 8, + "levelRestart": null, + "paragraphProperty": Object { + "indent": Object { + "end": null, + "firstLineChars": null, + "hangingChars": null, + "specialIndent": Object { + "type": "hanging", + "val": 420, + }, + "start": 3780, + "startChars": null, + }, + "runProperty": Object {}, + "tabs": Array [], + }, + "pstyle": null, + "runProperty": Object { + "fonts": Object { + "ascii": "Wingdings", + "hiAnsi": "Wingdings", + "hint": "default", + }, + }, + "start": 1, + "suffix": "tab", + "text": "", + }, + ], + "numStyleLink": null, + "styleLink": null, + }, + Object { + "id": 84, + "levels": Array [ + Object { + "format": "bullet", + "jc": "left", + "level": 0, + "levelRestart": null, + "paragraphProperty": Object { + "indent": Object { + "end": null, + "firstLineChars": null, + "hangingChars": null, + "specialIndent": Object { + "type": "hanging", + "val": 453, + }, + "start": 2041, + "startChars": null, + }, + "runProperty": Object {}, + "tabs": Array [], + }, + "pstyle": "NounPhrase2", + "runProperty": Object { + "color": "auto", + "fonts": Object { + "ascii": "Symbol", + "hiAnsi": "Symbol", + "hint": "default", + }, + "sz": 21, + "szCs": 21, + }, + "start": 1, + "suffix": "tab", + "text": "", + }, + Object { + "format": "bullet", + "jc": "left", + "level": 1, + "levelRestart": null, + "paragraphProperty": Object { + "indent": Object { + "end": null, + "firstLineChars": null, + "hangingChars": null, + "specialIndent": Object { + "type": "hanging", + "val": 420, + }, + "start": 840, + "startChars": null, + }, + "runProperty": Object {}, + "tabs": Array [], + }, + "pstyle": null, + "runProperty": Object { + "fonts": Object { + "ascii": "Wingdings", + "hiAnsi": "Wingdings", + "hint": "default", + }, + }, + "start": 1, + "suffix": "tab", + "text": "", + }, + Object { + "format": "bullet", + "jc": "left", + "level": 2, + "levelRestart": null, + "paragraphProperty": Object { + "indent": Object { + "end": null, + "firstLineChars": null, + "hangingChars": null, + "specialIndent": Object { + "type": "hanging", + "val": 420, + }, + "start": 1260, + "startChars": null, + }, + "runProperty": Object {}, + "tabs": Array [], + }, + "pstyle": null, + "runProperty": Object { + "fonts": Object { + "ascii": "Wingdings", + "hiAnsi": "Wingdings", + "hint": "default", + }, + }, + "start": 1, + "suffix": "tab", + "text": "", + }, + Object { + "format": "bullet", + "jc": "left", + "level": 3, + "levelRestart": null, + "paragraphProperty": Object { + "indent": Object { + "end": null, + "firstLineChars": null, + "hangingChars": null, + "specialIndent": Object { + "type": "hanging", + "val": 420, + }, + "start": 1680, + "startChars": null, + }, + "runProperty": Object {}, + "tabs": Array [], + }, + "pstyle": null, + "runProperty": Object { + "fonts": Object { + "ascii": "Wingdings", + "hiAnsi": "Wingdings", + "hint": "default", + }, + }, + "start": 1, + "suffix": "tab", + "text": "", + }, + Object { + "format": "bullet", + "jc": "left", + "level": 4, + "levelRestart": null, + "paragraphProperty": Object { + "indent": Object { + "end": null, + "firstLineChars": null, + "hangingChars": null, + "specialIndent": Object { + "type": "hanging", + "val": 420, + }, + "start": 2100, + "startChars": null, + }, + "runProperty": Object {}, + "tabs": Array [], + }, + "pstyle": null, + "runProperty": Object { + "fonts": Object { + "ascii": "Wingdings", + "hiAnsi": "Wingdings", + "hint": "default", + }, + }, + "start": 1, + "suffix": "tab", + "text": "", + }, + Object { + "format": "bullet", + "jc": "left", + "level": 5, + "levelRestart": null, + "paragraphProperty": Object { + "indent": Object { + "end": null, + "firstLineChars": null, + "hangingChars": null, + "specialIndent": Object { + "type": "hanging", + "val": 420, + }, + "start": 2520, + "startChars": null, + }, + "runProperty": Object {}, + "tabs": Array [], + }, + "pstyle": null, + "runProperty": Object { + "fonts": Object { + "ascii": "Wingdings", + "hiAnsi": "Wingdings", + "hint": "default", + }, + }, + "start": 1, + "suffix": "tab", + "text": "", + }, + Object { + "format": "bullet", + "jc": "left", + "level": 6, + "levelRestart": null, + "paragraphProperty": Object { + "indent": Object { + "end": null, + "firstLineChars": null, + "hangingChars": null, + "specialIndent": Object { + "type": "hanging", + "val": 420, + }, + "start": 2940, + "startChars": null, + }, + "runProperty": Object {}, + "tabs": Array [], + }, + "pstyle": null, + "runProperty": Object { + "fonts": Object { + "ascii": "Wingdings", + "hiAnsi": "Wingdings", + "hint": "default", + }, + }, + "start": 1, + "suffix": "tab", + "text": "", + }, + Object { + "format": "bullet", + "jc": "left", + "level": 7, + "levelRestart": null, + "paragraphProperty": Object { + "indent": Object { + "end": null, + "firstLineChars": null, + "hangingChars": null, + "specialIndent": Object { + "type": "hanging", + "val": 420, + }, + "start": 3360, + "startChars": null, + }, + "runProperty": Object {}, + "tabs": Array [], + }, + "pstyle": null, + "runProperty": Object { + "fonts": Object { + "ascii": "Wingdings", + "hiAnsi": "Wingdings", + "hint": "default", + }, + }, + "start": 1, + "suffix": "tab", + "text": "", + }, + Object { + "format": "bullet", + "jc": "left", + "level": 8, + "levelRestart": null, + "paragraphProperty": Object { + "indent": Object { + "end": null, + "firstLineChars": null, + "hangingChars": null, + "specialIndent": Object { + "type": "hanging", + "val": 420, + }, + "start": 3780, + "startChars": null, + }, + "runProperty": Object {}, + "tabs": Array [], + }, + "pstyle": null, + "runProperty": Object { + "fonts": Object { + "ascii": "Wingdings", + "hiAnsi": "Wingdings", + "hint": "default", + }, + }, + "start": 1, + "suffix": "tab", + "text": "", + }, + ], + "numStyleLink": null, + "styleLink": null, + }, + Object { + "id": 85, + "levels": Array [ + Object { + "format": "upperLetter", + "jc": "left", + "level": 0, + "levelRestart": null, + "paragraphProperty": Object { + "indent": Object { + "end": null, + "firstLineChars": null, + "hangingChars": null, + "specialIndent": Object { + "type": "hanging", + "val": 270, + }, + "start": 724, + "startChars": null, + }, + "runProperty": Object {}, + "tabs": Array [], + }, + "pstyle": null, + "runProperty": Object { + "fonts": Object { + "hint": "eastAsia", + }, + }, + "start": 1, + "suffix": "tab", + "text": "%1", + }, + Object { + "format": "aiueoFullWidth", + "jc": "left", + "level": 1, + "levelRestart": null, + "paragraphProperty": Object { + "indent": Object { + "end": null, + "firstLineChars": null, + "hangingChars": null, + "specialIndent": Object { + "type": "hanging", + "val": 420, + }, + "start": 1114, + "startChars": null, + }, + "runProperty": Object {}, + "tabs": Array [], + }, + "pstyle": null, + "runProperty": Object {}, + "start": 1, + "suffix": "tab", + "text": "(%2)", + }, + Object { + "format": "decimalEnclosedCircle", + "jc": "left", + "level": 2, + "levelRestart": null, + "paragraphProperty": Object { + "indent": Object { + "end": null, + "firstLineChars": null, + "hangingChars": null, + "specialIndent": Object { + "type": "hanging", + "val": 420, + }, + "start": 1534, + "startChars": null, + }, + "runProperty": Object {}, + "tabs": Array [], + }, + "pstyle": null, + "runProperty": Object {}, + "start": 1, + "suffix": "tab", + "text": "%3", + }, + Object { + "format": "decimal", + "jc": "left", + "level": 3, + "levelRestart": null, + "paragraphProperty": Object { + "indent": Object { + "end": null, + "firstLineChars": null, + "hangingChars": null, + "specialIndent": Object { + "type": "hanging", + "val": 420, + }, + "start": 1954, + "startChars": null, + }, + "runProperty": Object {}, + "tabs": Array [], + }, + "pstyle": null, + "runProperty": Object {}, + "start": 1, + "suffix": "tab", + "text": "%4.", + }, + Object { + "format": "aiueoFullWidth", + "jc": "left", + "level": 4, + "levelRestart": null, + "paragraphProperty": Object { + "indent": Object { + "end": null, + "firstLineChars": null, + "hangingChars": null, + "specialIndent": Object { + "type": "hanging", + "val": 420, + }, + "start": 2374, + "startChars": null, + }, + "runProperty": Object {}, + "tabs": Array [], + }, + "pstyle": null, + "runProperty": Object {}, + "start": 1, + "suffix": "tab", + "text": "(%5)", + }, + Object { + "format": "decimalEnclosedCircle", + "jc": "left", + "level": 5, + "levelRestart": null, + "paragraphProperty": Object { + "indent": Object { + "end": null, + "firstLineChars": null, + "hangingChars": null, + "specialIndent": Object { + "type": "hanging", + "val": 420, + }, + "start": 2794, + "startChars": null, + }, + "runProperty": Object {}, + "tabs": Array [], + }, + "pstyle": null, + "runProperty": Object {}, + "start": 1, + "suffix": "tab", + "text": "%6", + }, + Object { + "format": "decimal", + "jc": "left", + "level": 6, + "levelRestart": null, + "paragraphProperty": Object { + "indent": Object { + "end": null, + "firstLineChars": null, + "hangingChars": null, + "specialIndent": Object { + "type": "hanging", + "val": 420, + }, + "start": 3214, + "startChars": null, + }, + "runProperty": Object {}, + "tabs": Array [], + }, + "pstyle": null, + "runProperty": Object {}, + "start": 1, + "suffix": "tab", + "text": "%7.", + }, + Object { + "format": "aiueoFullWidth", + "jc": "left", + "level": 7, + "levelRestart": null, + "paragraphProperty": Object { + "indent": Object { + "end": null, + "firstLineChars": null, + "hangingChars": null, + "specialIndent": Object { + "type": "hanging", + "val": 420, + }, + "start": 3634, + "startChars": null, + }, + "runProperty": Object {}, + "tabs": Array [], + }, + "pstyle": null, + "runProperty": Object {}, + "start": 1, + "suffix": "tab", + "text": "(%8)", + }, + Object { + "format": "decimalEnclosedCircle", + "jc": "left", + "level": 8, + "levelRestart": null, + "paragraphProperty": Object { + "indent": Object { + "end": null, + "firstLineChars": null, + "hangingChars": null, + "specialIndent": Object { + "type": "hanging", + "val": 420, + }, + "start": 4054, + "startChars": null, + }, + "runProperty": Object {}, + "tabs": Array [], + }, + "pstyle": null, + "runProperty": Object {}, + "start": 1, + "suffix": "tab", + "text": "%9", + }, + ], + "numStyleLink": null, + "styleLink": null, + }, + Object { + "id": 86, + "levels": Array [ + Object { + "format": "decimal", + "jc": "left", + "level": 0, + "levelRestart": null, + "paragraphProperty": Object { + "indent": Object { + "end": null, + "firstLineChars": null, + "hangingChars": null, + "specialIndent": Object { + "type": "hanging", + "val": 360, + }, + "start": 540, + "startChars": null, + }, + "runProperty": Object {}, + "tabs": Array [], + }, + "pstyle": null, + "runProperty": Object { + "fonts": Object { + "hint": "eastAsia", + }, + }, + "start": 1, + "suffix": "tab", + "text": "%1.", + }, + Object { + "format": "aiueoFullWidth", + "jc": "left", + "level": 1, + "levelRestart": null, + "paragraphProperty": Object { + "indent": Object { + "end": null, + "firstLineChars": null, + "hangingChars": null, + "specialIndent": Object { + "type": "hanging", + "val": 420, + }, + "start": 840, + "startChars": null, + }, + "runProperty": Object {}, + "tabs": Array [], + }, + "pstyle": null, + "runProperty": Object {}, + "start": 1, + "suffix": "tab", + "text": "(%2)", + }, + Object { + "format": "decimalEnclosedCircle", + "jc": "left", + "level": 2, + "levelRestart": null, + "paragraphProperty": Object { + "indent": Object { + "end": null, + "firstLineChars": null, + "hangingChars": null, + "specialIndent": Object { + "type": "hanging", + "val": 420, + }, + "start": 1260, + "startChars": null, + }, + "runProperty": Object {}, + "tabs": Array [], + }, + "pstyle": null, + "runProperty": Object {}, + "start": 1, + "suffix": "tab", + "text": "%3", + }, + Object { + "format": "decimal", + "jc": "left", + "level": 3, + "levelRestart": null, + "paragraphProperty": Object { + "indent": Object { + "end": null, + "firstLineChars": null, + "hangingChars": null, + "specialIndent": Object { + "type": "hanging", + "val": 420, + }, + "start": 1680, + "startChars": null, + }, + "runProperty": Object {}, + "tabs": Array [], + }, + "pstyle": null, + "runProperty": Object {}, + "start": 1, + "suffix": "tab", + "text": "%4.", + }, + Object { + "format": "aiueoFullWidth", + "jc": "left", + "level": 4, + "levelRestart": null, + "paragraphProperty": Object { + "indent": Object { + "end": null, + "firstLineChars": null, + "hangingChars": null, + "specialIndent": Object { + "type": "hanging", + "val": 420, + }, + "start": 2100, + "startChars": null, + }, + "runProperty": Object {}, + "tabs": Array [], + }, + "pstyle": null, + "runProperty": Object {}, + "start": 1, + "suffix": "tab", + "text": "(%5)", + }, + Object { + "format": "decimalEnclosedCircle", + "jc": "left", + "level": 5, + "levelRestart": null, + "paragraphProperty": Object { + "indent": Object { + "end": null, + "firstLineChars": null, + "hangingChars": null, + "specialIndent": Object { + "type": "hanging", + "val": 420, + }, + "start": 2520, + "startChars": null, + }, + "runProperty": Object {}, + "tabs": Array [], + }, + "pstyle": null, + "runProperty": Object {}, + "start": 1, + "suffix": "tab", + "text": "%6", + }, + Object { + "format": "decimal", + "jc": "left", + "level": 6, + "levelRestart": null, + "paragraphProperty": Object { + "indent": Object { + "end": null, + "firstLineChars": null, + "hangingChars": null, + "specialIndent": Object { + "type": "hanging", + "val": 420, + }, + "start": 2940, + "startChars": null, + }, + "runProperty": Object {}, + "tabs": Array [], + }, + "pstyle": null, + "runProperty": Object {}, + "start": 1, + "suffix": "tab", + "text": "%7.", + }, + Object { + "format": "aiueoFullWidth", + "jc": "left", + "level": 7, + "levelRestart": null, + "paragraphProperty": Object { + "indent": Object { + "end": null, + "firstLineChars": null, + "hangingChars": null, + "specialIndent": Object { + "type": "hanging", + "val": 420, + }, + "start": 3360, + "startChars": null, + }, + "runProperty": Object {}, + "tabs": Array [], + }, + "pstyle": null, + "runProperty": Object {}, + "start": 1, + "suffix": "tab", + "text": "(%8)", + }, + Object { + "format": "decimalEnclosedCircle", + "jc": "left", + "level": 8, + "levelRestart": null, + "paragraphProperty": Object { + "indent": Object { + "end": null, + "firstLineChars": null, + "hangingChars": null, + "specialIndent": Object { + "type": "hanging", + "val": 420, + }, + "start": 3780, + "startChars": null, + }, + "runProperty": Object {}, + "tabs": Array [], + }, + "pstyle": null, + "runProperty": Object {}, + "start": 1, + "suffix": "tab", + "text": "%9", + }, + ], + "numStyleLink": null, + "styleLink": null, + }, + Object { + "id": 87, + "levels": Array [ + Object { + "format": "decimal", + "jc": "left", + "level": 0, + "levelRestart": null, + "paragraphProperty": Object { + "indent": Object { + "end": null, + "firstLineChars": null, + "hangingChars": null, + "specialIndent": Object { + "type": "hanging", + "val": 360, + }, + "start": 540, + "startChars": null, + }, + "runProperty": Object {}, + "tabs": Array [], + }, + "pstyle": null, + "runProperty": Object { + "fonts": Object { + "hint": "eastAsia", + }, + }, + "start": 1, + "suffix": "tab", + "text": "%1.", + }, + Object { + "format": "decimalEnclosedCircle", + "jc": "left", + "level": 1, + "levelRestart": null, + "paragraphProperty": Object { + "indent": Object { + "end": null, + "firstLineChars": null, + "hangingChars": null, + "specialIndent": Object { + "type": "hanging", + "val": 360, + }, + "start": 780, + "startChars": null, + }, + "runProperty": Object {}, + "tabs": Array [], + }, + "pstyle": null, + "runProperty": Object { + "fonts": Object { + "hint": "eastAsia", + }, + }, + "start": 1, + "suffix": "tab", + "text": "%2", + }, + Object { + "format": "decimalEnclosedCircle", + "jc": "left", + "level": 2, + "levelRestart": null, + "paragraphProperty": Object { + "indent": Object { + "end": null, + "firstLineChars": null, + "hangingChars": null, + "specialIndent": Object { + "type": "hanging", + "val": 420, + }, + "start": 1260, + "startChars": null, + }, + "runProperty": Object {}, + "tabs": Array [], + }, + "pstyle": null, + "runProperty": Object {}, + "start": 1, + "suffix": "tab", + "text": "%3", + }, + Object { + "format": "decimal", + "jc": "left", + "level": 3, + "levelRestart": null, + "paragraphProperty": Object { + "indent": Object { + "end": null, + "firstLineChars": null, + "hangingChars": null, + "specialIndent": Object { + "type": "hanging", + "val": 420, + }, + "start": 1680, + "startChars": null, + }, + "runProperty": Object {}, + "tabs": Array [], + }, + "pstyle": null, + "runProperty": Object {}, + "start": 1, + "suffix": "tab", + "text": "%4.", + }, + Object { + "format": "aiueoFullWidth", + "jc": "left", + "level": 4, + "levelRestart": null, + "paragraphProperty": Object { + "indent": Object { + "end": null, + "firstLineChars": null, + "hangingChars": null, + "specialIndent": Object { + "type": "hanging", + "val": 420, + }, + "start": 2100, + "startChars": null, + }, + "runProperty": Object {}, + "tabs": Array [], + }, + "pstyle": null, + "runProperty": Object {}, + "start": 1, + "suffix": "tab", + "text": "(%5)", + }, + Object { + "format": "decimalEnclosedCircle", + "jc": "left", + "level": 5, + "levelRestart": null, + "paragraphProperty": Object { + "indent": Object { + "end": null, + "firstLineChars": null, + "hangingChars": null, + "specialIndent": Object { + "type": "hanging", + "val": 420, + }, + "start": 2520, + "startChars": null, + }, + "runProperty": Object {}, + "tabs": Array [], + }, + "pstyle": null, + "runProperty": Object {}, + "start": 1, + "suffix": "tab", + "text": "%6", + }, + Object { + "format": "decimal", + "jc": "left", + "level": 6, + "levelRestart": null, + "paragraphProperty": Object { + "indent": Object { + "end": null, + "firstLineChars": null, + "hangingChars": null, + "specialIndent": Object { + "type": "hanging", + "val": 420, + }, + "start": 2940, + "startChars": null, + }, + "runProperty": Object {}, + "tabs": Array [], + }, + "pstyle": null, + "runProperty": Object {}, + "start": 1, + "suffix": "tab", + "text": "%7.", + }, + Object { + "format": "aiueoFullWidth", + "jc": "left", + "level": 7, + "levelRestart": null, + "paragraphProperty": Object { + "indent": Object { + "end": null, + "firstLineChars": null, + "hangingChars": null, + "specialIndent": Object { + "type": "hanging", + "val": 420, + }, + "start": 3360, + "startChars": null, + }, + "runProperty": Object {}, + "tabs": Array [], + }, + "pstyle": null, + "runProperty": Object {}, + "start": 1, + "suffix": "tab", + "text": "(%8)", + }, + Object { + "format": "decimalEnclosedCircle", + "jc": "left", + "level": 8, + "levelRestart": null, + "paragraphProperty": Object { + "indent": Object { + "end": null, + "firstLineChars": null, + "hangingChars": null, + "specialIndent": Object { + "type": "hanging", + "val": 420, + }, + "start": 3780, + "startChars": null, + }, + "runProperty": Object {}, + "tabs": Array [], + }, + "pstyle": null, + "runProperty": Object {}, + "start": 1, + "suffix": "tab", + "text": "%9", + }, + ], + "numStyleLink": null, + "styleLink": null, + }, + Object { + "id": 88, + "levels": Array [ + Object { + "format": "decimal", + "jc": "left", + "level": 0, + "levelRestart": null, + "paragraphProperty": Object { + "indent": Object { + "end": null, + "firstLineChars": null, + "hangingChars": null, + "specialIndent": Object { + "type": "hanging", + "val": 360, + }, + "start": 540, + "startChars": null, + }, + "runProperty": Object {}, + "tabs": Array [], + }, + "pstyle": null, + "runProperty": Object { + "fonts": Object { + "hint": "eastAsia", + }, + }, + "start": 1, + "suffix": "tab", + "text": "%1.", + }, + Object { + "format": "aiueoFullWidth", + "jc": "left", + "level": 1, + "levelRestart": null, + "paragraphProperty": Object { + "indent": Object { + "end": null, + "firstLineChars": null, + "hangingChars": null, + "specialIndent": Object { + "type": "hanging", + "val": 420, + }, + "start": 420, + "startChars": null, + }, + "runProperty": Object {}, + "tabs": Array [], + }, + "pstyle": null, + "runProperty": Object {}, + "start": 1, + "suffix": "tab", + "text": "(%2)", + }, + Object { + "format": "decimalEnclosedCircle", + "jc": "left", + "level": 2, + "levelRestart": null, + "paragraphProperty": Object { + "indent": Object { + "end": null, + "firstLineChars": null, + "hangingChars": null, + "specialIndent": Object { + "type": "hanging", + "val": 420, + }, + "start": 840, + "startChars": null, + }, + "runProperty": Object {}, + "tabs": Array [], + }, + "pstyle": null, + "runProperty": Object {}, + "start": 1, + "suffix": "tab", + "text": "%3", + }, + Object { + "format": "decimal", + "jc": "left", + "level": 3, + "levelRestart": null, + "paragraphProperty": Object { + "indent": Object { + "end": null, + "firstLineChars": null, + "hangingChars": null, + "specialIndent": Object { + "type": "hanging", + "val": 420, + }, + "start": 1260, + "startChars": null, + }, + "runProperty": Object {}, + "tabs": Array [], + }, + "pstyle": null, + "runProperty": Object {}, + "start": 1, + "suffix": "tab", + "text": "%4.", + }, + Object { + "format": "aiueoFullWidth", + "jc": "left", + "level": 4, + "levelRestart": null, + "paragraphProperty": Object { + "indent": Object { + "end": null, + "firstLineChars": null, + "hangingChars": null, + "specialIndent": Object { + "type": "hanging", + "val": 420, + }, + "start": 1680, + "startChars": null, + }, + "runProperty": Object {}, + "tabs": Array [], + }, + "pstyle": null, + "runProperty": Object {}, + "start": 1, + "suffix": "tab", + "text": "(%5)", + }, + Object { + "format": "decimalEnclosedCircle", + "jc": "left", + "level": 5, + "levelRestart": null, + "paragraphProperty": Object { + "indent": Object { + "end": null, + "firstLineChars": null, + "hangingChars": null, + "specialIndent": Object { + "type": "hanging", + "val": 420, + }, + "start": 2100, + "startChars": null, + }, + "runProperty": Object {}, + "tabs": Array [], + }, + "pstyle": null, + "runProperty": Object {}, + "start": 1, + "suffix": "tab", + "text": "%6", + }, + Object { + "format": "decimal", + "jc": "left", + "level": 6, + "levelRestart": null, + "paragraphProperty": Object { + "indent": Object { + "end": null, + "firstLineChars": null, + "hangingChars": null, + "specialIndent": Object { + "type": "hanging", + "val": 420, + }, + "start": 2520, + "startChars": null, + }, + "runProperty": Object {}, + "tabs": Array [], + }, + "pstyle": null, + "runProperty": Object {}, + "start": 1, + "suffix": "tab", + "text": "%7.", + }, + Object { + "format": "aiueoFullWidth", + "jc": "left", + "level": 7, + "levelRestart": null, + "paragraphProperty": Object { + "indent": Object { + "end": null, + "firstLineChars": null, + "hangingChars": null, + "specialIndent": Object { + "type": "hanging", + "val": 420, + }, + "start": 2940, + "startChars": null, + }, + "runProperty": Object {}, + "tabs": Array [], + }, + "pstyle": null, + "runProperty": Object {}, + "start": 1, + "suffix": "tab", + "text": "(%8)", + }, + Object { + "format": "decimalEnclosedCircle", + "jc": "left", + "level": 8, + "levelRestart": null, + "paragraphProperty": Object { + "indent": Object { + "end": null, + "firstLineChars": null, + "hangingChars": null, + "specialIndent": Object { + "type": "hanging", + "val": 420, + }, + "start": 3360, + "startChars": null, + }, + "runProperty": Object {}, + "tabs": Array [], + }, + "pstyle": null, + "runProperty": Object {}, + "start": 1, + "suffix": "tab", + "text": "%9", + }, + ], + "numStyleLink": null, + "styleLink": null, + }, + Object { + "id": 89, + "levels": Array [ + Object { + "format": "decimal", + "jc": "left", + "level": 0, + "levelRestart": null, + "paragraphProperty": Object { + "indent": Object { + "end": null, + "firstLineChars": null, + "hangingChars": null, + "specialIndent": Object { + "type": "hanging", + "val": 360, + }, + "start": 540, + "startChars": null, + }, + "runProperty": Object {}, + "tabs": Array [], + }, + "pstyle": null, + "runProperty": Object { + "fonts": Object { + "hint": "eastAsia", + }, + }, + "start": 1, + "suffix": "tab", + "text": "%1.", + }, + Object { + "format": "aiueoFullWidth", + "jc": "left", + "level": 1, + "levelRestart": null, + "paragraphProperty": Object { + "indent": Object { + "end": null, + "firstLineChars": null, + "hangingChars": null, + "specialIndent": Object { + "type": "hanging", + "val": 420, + }, + "start": 420, + "startChars": null, + }, + "runProperty": Object {}, + "tabs": Array [], + }, + "pstyle": null, + "runProperty": Object {}, + "start": 1, + "suffix": "tab", + "text": "(%2)", + }, + Object { + "format": "decimalEnclosedCircle", + "jc": "left", + "level": 2, + "levelRestart": null, + "paragraphProperty": Object { + "indent": Object { + "end": null, + "firstLineChars": null, + "hangingChars": null, + "specialIndent": Object { + "type": "hanging", + "val": 420, + }, + "start": 840, + "startChars": null, + }, + "runProperty": Object {}, + "tabs": Array [], + }, + "pstyle": null, + "runProperty": Object {}, + "start": 1, + "suffix": "tab", + "text": "%3", + }, + Object { + "format": "decimal", + "jc": "left", + "level": 3, + "levelRestart": null, + "paragraphProperty": Object { + "indent": Object { + "end": null, + "firstLineChars": null, + "hangingChars": null, + "specialIndent": Object { + "type": "hanging", + "val": 420, + }, + "start": 1260, + "startChars": null, + }, + "runProperty": Object {}, + "tabs": Array [], + }, + "pstyle": null, + "runProperty": Object {}, + "start": 1, + "suffix": "tab", + "text": "%4.", + }, + Object { + "format": "aiueoFullWidth", + "jc": "left", + "level": 4, + "levelRestart": null, + "paragraphProperty": Object { + "indent": Object { + "end": null, + "firstLineChars": null, + "hangingChars": null, + "specialIndent": Object { + "type": "hanging", + "val": 420, + }, + "start": 1680, + "startChars": null, + }, + "runProperty": Object {}, + "tabs": Array [], + }, + "pstyle": null, + "runProperty": Object {}, + "start": 1, + "suffix": "tab", + "text": "(%5)", + }, + Object { + "format": "decimalEnclosedCircle", + "jc": "left", + "level": 5, + "levelRestart": null, + "paragraphProperty": Object { + "indent": Object { + "end": null, + "firstLineChars": null, + "hangingChars": null, + "specialIndent": Object { + "type": "hanging", + "val": 420, + }, + "start": 2100, + "startChars": null, + }, + "runProperty": Object {}, + "tabs": Array [], + }, + "pstyle": null, + "runProperty": Object {}, + "start": 1, + "suffix": "tab", + "text": "%6", + }, + Object { + "format": "decimal", + "jc": "left", + "level": 6, + "levelRestart": null, + "paragraphProperty": Object { + "indent": Object { + "end": null, + "firstLineChars": null, + "hangingChars": null, + "specialIndent": Object { + "type": "hanging", + "val": 420, + }, + "start": 2520, + "startChars": null, + }, + "runProperty": Object {}, + "tabs": Array [], + }, + "pstyle": null, + "runProperty": Object {}, + "start": 1, + "suffix": "tab", + "text": "%7.", + }, + Object { + "format": "aiueoFullWidth", + "jc": "left", + "level": 7, + "levelRestart": null, + "paragraphProperty": Object { + "indent": Object { + "end": null, + "firstLineChars": null, + "hangingChars": null, + "specialIndent": Object { + "type": "hanging", + "val": 420, + }, + "start": 2940, + "startChars": null, + }, + "runProperty": Object {}, + "tabs": Array [], + }, + "pstyle": null, + "runProperty": Object {}, + "start": 1, + "suffix": "tab", + "text": "(%8)", + }, + Object { + "format": "decimalEnclosedCircle", + "jc": "left", + "level": 8, + "levelRestart": null, + "paragraphProperty": Object { + "indent": Object { + "end": null, + "firstLineChars": null, + "hangingChars": null, + "specialIndent": Object { + "type": "hanging", + "val": 420, + }, + "start": 3360, + "startChars": null, + }, + "runProperty": Object {}, + "tabs": Array [], + }, + "pstyle": null, + "runProperty": Object {}, + "start": 1, + "suffix": "tab", + "text": "%9", + }, + ], + "numStyleLink": null, + "styleLink": null, + }, + Object { + "id": 90, + "levels": Array [ + Object { + "format": "decimal", + "jc": "left", + "level": 0, + "levelRestart": null, + "paragraphProperty": Object { + "indent": Object { + "end": null, + "firstLineChars": null, + "hangingChars": null, + "specialIndent": Object { + "type": "hanging", + "val": 360, + }, + "start": 540, + "startChars": null, + }, + "runProperty": Object {}, + "tabs": Array [], + }, + "pstyle": null, + "runProperty": Object { + "fonts": Object { + "hint": "eastAsia", + }, + }, + "start": 1, + "suffix": "tab", + "text": "%1.", + }, + Object { + "format": "aiueoFullWidth", + "jc": "left", + "level": 1, + "levelRestart": null, + "paragraphProperty": Object { + "indent": Object { + "end": null, + "firstLineChars": null, + "hangingChars": null, + "specialIndent": Object { + "type": "hanging", + "val": 420, + }, + "start": 1020, + "startChars": null, + }, + "runProperty": Object {}, + "tabs": Array [], + }, + "pstyle": null, + "runProperty": Object {}, + "start": 1, + "suffix": "tab", + "text": "(%2)", + }, + Object { + "format": "decimalEnclosedCircle", + "jc": "left", + "level": 2, + "levelRestart": null, + "paragraphProperty": Object { + "indent": Object { + "end": null, + "firstLineChars": null, + "hangingChars": null, + "specialIndent": Object { + "type": "hanging", + "val": 420, + }, + "start": 1440, + "startChars": null, + }, + "runProperty": Object {}, + "tabs": Array [], + }, + "pstyle": null, + "runProperty": Object {}, + "start": 1, + "suffix": "tab", + "text": "%3", + }, + Object { + "format": "decimal", + "jc": "left", + "level": 3, + "levelRestart": null, + "paragraphProperty": Object { + "indent": Object { + "end": null, + "firstLineChars": null, + "hangingChars": null, + "specialIndent": Object { + "type": "hanging", + "val": 420, + }, + "start": 1860, + "startChars": null, + }, + "runProperty": Object {}, + "tabs": Array [], + }, + "pstyle": null, + "runProperty": Object {}, + "start": 1, + "suffix": "tab", + "text": "%4.", + }, + Object { + "format": "aiueoFullWidth", + "jc": "left", + "level": 4, + "levelRestart": null, + "paragraphProperty": Object { + "indent": Object { + "end": null, + "firstLineChars": null, + "hangingChars": null, + "specialIndent": Object { + "type": "hanging", + "val": 420, + }, + "start": 2280, + "startChars": null, + }, + "runProperty": Object {}, + "tabs": Array [], + }, + "pstyle": null, + "runProperty": Object {}, + "start": 1, + "suffix": "tab", + "text": "(%5)", + }, + Object { + "format": "decimalEnclosedCircle", + "jc": "left", + "level": 5, + "levelRestart": null, + "paragraphProperty": Object { + "indent": Object { + "end": null, + "firstLineChars": null, + "hangingChars": null, + "specialIndent": Object { + "type": "hanging", + "val": 420, + }, + "start": 2700, + "startChars": null, + }, + "runProperty": Object {}, + "tabs": Array [], + }, + "pstyle": null, + "runProperty": Object {}, + "start": 1, + "suffix": "tab", + "text": "%6", + }, + Object { + "format": "decimal", + "jc": "left", + "level": 6, + "levelRestart": null, + "paragraphProperty": Object { + "indent": Object { + "end": null, + "firstLineChars": null, + "hangingChars": null, + "specialIndent": Object { + "type": "hanging", + "val": 420, + }, + "start": 3120, + "startChars": null, + }, + "runProperty": Object {}, + "tabs": Array [], + }, + "pstyle": null, + "runProperty": Object {}, + "start": 1, + "suffix": "tab", + "text": "%7.", + }, + Object { + "format": "aiueoFullWidth", + "jc": "left", + "level": 7, + "levelRestart": null, + "paragraphProperty": Object { + "indent": Object { + "end": null, + "firstLineChars": null, + "hangingChars": null, + "specialIndent": Object { + "type": "hanging", + "val": 420, + }, + "start": 3540, + "startChars": null, + }, + "runProperty": Object {}, + "tabs": Array [], + }, + "pstyle": null, + "runProperty": Object {}, + "start": 1, + "suffix": "tab", + "text": "(%8)", + }, + Object { + "format": "decimalEnclosedCircle", + "jc": "left", + "level": 8, + "levelRestart": null, + "paragraphProperty": Object { + "indent": Object { + "end": null, + "firstLineChars": null, + "hangingChars": null, + "specialIndent": Object { + "type": "hanging", + "val": 420, + }, + "start": 3960, + "startChars": null, + }, + "runProperty": Object {}, + "tabs": Array [], + }, + "pstyle": null, + "runProperty": Object {}, + "start": 1, + "suffix": "tab", + "text": "%9", + }, + ], + "numStyleLink": null, + "styleLink": null, + }, + Object { + "id": 91, + "levels": Array [ + Object { + "format": "bullet", + "jc": "left", + "level": 0, + "levelRestart": null, + "paragraphProperty": Object { + "indent": Object { + "end": null, + "firstLineChars": null, + "hangingChars": null, + "specialIndent": Object { + "type": "hanging", + "val": 453, + }, + "start": 2041, + "startChars": null, + }, + "runProperty": Object {}, + "tabs": Array [], + }, + "pstyle": "Nounphrase", + "runProperty": Object { + "fonts": Object { + "ascii": "Wingdings", + "hiAnsi": "Wingdings", + "hint": "default", + }, + }, + "start": 1, + "suffix": "tab", + "text": "", + }, + Object { + "format": "bullet", + "jc": "left", + "level": 1, + "levelRestart": null, + "paragraphProperty": Object { + "indent": Object { + "end": null, + "firstLineChars": null, + "hangingChars": null, + "specialIndent": Object { + "type": "hanging", + "val": 420, + }, + "start": 840, + "startChars": null, + }, + "runProperty": Object {}, + "tabs": Array [], + }, + "pstyle": null, + "runProperty": Object { + "fonts": Object { + "ascii": "Wingdings", + "hiAnsi": "Wingdings", + "hint": "default", + }, + }, + "start": 1, + "suffix": "tab", + "text": "", + }, + Object { + "format": "bullet", + "jc": "left", + "level": 2, + "levelRestart": null, + "paragraphProperty": Object { + "indent": Object { + "end": null, + "firstLineChars": null, + "hangingChars": null, + "specialIndent": Object { + "type": "hanging", + "val": 420, + }, + "start": 1260, + "startChars": null, + }, + "runProperty": Object {}, + "tabs": Array [], + }, + "pstyle": null, + "runProperty": Object { + "fonts": Object { + "ascii": "Wingdings", + "hiAnsi": "Wingdings", + "hint": "default", + }, + }, + "start": 1, + "suffix": "tab", + "text": "", + }, + Object { + "format": "bullet", + "jc": "left", + "level": 3, + "levelRestart": null, + "paragraphProperty": Object { + "indent": Object { + "end": null, + "firstLineChars": null, + "hangingChars": null, + "specialIndent": Object { + "type": "hanging", + "val": 420, + }, + "start": 1680, + "startChars": null, + }, + "runProperty": Object {}, + "tabs": Array [], + }, + "pstyle": null, + "runProperty": Object { + "fonts": Object { + "ascii": "Wingdings", + "hiAnsi": "Wingdings", + "hint": "default", + }, + }, + "start": 1, + "suffix": "tab", + "text": "", + }, + Object { + "format": "bullet", + "jc": "left", + "level": 4, + "levelRestart": null, + "paragraphProperty": Object { + "indent": Object { + "end": null, + "firstLineChars": null, + "hangingChars": null, + "specialIndent": Object { + "type": "hanging", + "val": 420, + }, + "start": 2100, + "startChars": null, + }, + "runProperty": Object {}, + "tabs": Array [], + }, + "pstyle": null, + "runProperty": Object { + "fonts": Object { + "ascii": "Wingdings", + "hiAnsi": "Wingdings", + "hint": "default", + }, + }, + "start": 1, + "suffix": "tab", + "text": "", + }, + Object { + "format": "bullet", + "jc": "left", + "level": 5, + "levelRestart": null, + "paragraphProperty": Object { + "indent": Object { + "end": null, + "firstLineChars": null, + "hangingChars": null, + "specialIndent": Object { + "type": "hanging", + "val": 420, + }, + "start": 2520, + "startChars": null, + }, + "runProperty": Object {}, + "tabs": Array [], + }, + "pstyle": null, + "runProperty": Object { + "fonts": Object { + "ascii": "Wingdings", + "hiAnsi": "Wingdings", + "hint": "default", + }, + }, + "start": 1, + "suffix": "tab", + "text": "", + }, + Object { + "format": "bullet", + "jc": "left", + "level": 6, + "levelRestart": null, + "paragraphProperty": Object { + "indent": Object { + "end": null, + "firstLineChars": null, + "hangingChars": null, + "specialIndent": Object { + "type": "hanging", + "val": 420, + }, + "start": 2940, + "startChars": null, + }, + "runProperty": Object {}, + "tabs": Array [], + }, + "pstyle": null, + "runProperty": Object { + "fonts": Object { + "ascii": "Wingdings", + "hiAnsi": "Wingdings", + "hint": "default", + }, + }, + "start": 1, + "suffix": "tab", + "text": "", + }, + Object { + "format": "bullet", + "jc": "left", + "level": 7, + "levelRestart": null, + "paragraphProperty": Object { + "indent": Object { + "end": null, + "firstLineChars": null, + "hangingChars": null, + "specialIndent": Object { + "type": "hanging", + "val": 420, + }, + "start": 3360, + "startChars": null, + }, + "runProperty": Object {}, + "tabs": Array [], + }, + "pstyle": null, + "runProperty": Object { + "fonts": Object { + "ascii": "Wingdings", + "hiAnsi": "Wingdings", + "hint": "default", + }, + }, + "start": 1, + "suffix": "tab", + "text": "", + }, + Object { + "format": "bullet", + "jc": "left", + "level": 8, + "levelRestart": null, + "paragraphProperty": Object { + "indent": Object { + "end": null, + "firstLineChars": null, + "hangingChars": null, + "specialIndent": Object { + "type": "hanging", + "val": 420, + }, + "start": 3780, + "startChars": null, + }, + "runProperty": Object {}, + "tabs": Array [], + }, + "pstyle": null, + "runProperty": Object { + "fonts": Object { + "ascii": "Wingdings", + "hiAnsi": "Wingdings", + "hint": "default", + }, + }, + "start": 1, + "suffix": "tab", + "text": "", + }, + ], + "numStyleLink": null, + "styleLink": null, + }, + Object { + "id": 92, + "levels": Array [ + Object { + "format": "lowerLetter", + "jc": "left", + "level": 0, + "levelRestart": null, + "paragraphProperty": Object { + "indent": Object { + "end": null, + "firstLineChars": null, + "hangingChars": null, + "specialIndent": Object { + "type": "hanging", + "val": 454, + }, + "start": 1588, + "startChars": null, + }, + "runProperty": Object {}, + "tabs": Array [], + }, + "pstyle": null, + "runProperty": Object { + "fonts": Object { + "ascii": "Times New Roman", + "hiAnsi": "Times New Roman", + "hint": "default", + }, + "sz": 24, + "szCs": 24, + }, + "start": 1, + "suffix": "tab", + "text": "(%1)", + }, + Object { + "format": "aiueoFullWidth", + "jc": "left", + "level": 1, + "levelRestart": null, + "paragraphProperty": Object { + "indent": Object { + "end": null, + "firstLineChars": null, + "hangingChars": null, + "specialIndent": Object { + "type": "hanging", + "val": 420, + }, + "start": 840, + "startChars": null, + }, + "runProperty": Object {}, + "tabs": Array [], + }, + "pstyle": null, + "runProperty": Object {}, + "start": 1, + "suffix": "tab", + "text": "(%2)", + }, + Object { + "format": "decimalEnclosedCircle", + "jc": "left", + "level": 2, + "levelRestart": null, + "paragraphProperty": Object { + "indent": Object { + "end": null, + "firstLineChars": null, + "hangingChars": null, + "specialIndent": Object { + "type": "hanging", + "val": 420, + }, + "start": 1260, + "startChars": null, + }, + "runProperty": Object {}, + "tabs": Array [], + }, + "pstyle": null, + "runProperty": Object {}, + "start": 1, + "suffix": "tab", + "text": "%3", + }, + Object { + "format": "decimal", + "jc": "left", + "level": 3, + "levelRestart": null, + "paragraphProperty": Object { + "indent": Object { + "end": null, + "firstLineChars": null, + "hangingChars": null, + "specialIndent": Object { + "type": "hanging", + "val": 420, + }, + "start": 1680, + "startChars": null, + }, + "runProperty": Object {}, + "tabs": Array [], + }, + "pstyle": null, + "runProperty": Object {}, + "start": 1, + "suffix": "tab", + "text": "%4.", + }, + Object { + "format": "aiueoFullWidth", + "jc": "left", + "level": 4, + "levelRestart": null, + "paragraphProperty": Object { + "indent": Object { + "end": null, + "firstLineChars": null, + "hangingChars": null, + "specialIndent": Object { + "type": "hanging", + "val": 420, + }, + "start": 2100, + "startChars": null, + }, + "runProperty": Object {}, + "tabs": Array [], + }, + "pstyle": null, + "runProperty": Object {}, + "start": 1, + "suffix": "tab", + "text": "(%5)", + }, + Object { + "format": "decimalEnclosedCircle", + "jc": "left", + "level": 5, + "levelRestart": null, + "paragraphProperty": Object { + "indent": Object { + "end": null, + "firstLineChars": null, + "hangingChars": null, + "specialIndent": Object { + "type": "hanging", + "val": 420, + }, + "start": 2520, + "startChars": null, + }, + "runProperty": Object {}, + "tabs": Array [], + }, + "pstyle": null, + "runProperty": Object {}, + "start": 1, + "suffix": "tab", + "text": "%6", + }, + Object { + "format": "decimal", + "jc": "left", + "level": 6, + "levelRestart": null, + "paragraphProperty": Object { + "indent": Object { + "end": null, + "firstLineChars": null, + "hangingChars": null, + "specialIndent": Object { + "type": "hanging", + "val": 420, + }, + "start": 2940, + "startChars": null, + }, + "runProperty": Object {}, + "tabs": Array [], + }, + "pstyle": null, + "runProperty": Object {}, + "start": 1, + "suffix": "tab", + "text": "%7.", + }, + Object { + "format": "aiueoFullWidth", + "jc": "left", + "level": 7, + "levelRestart": null, + "paragraphProperty": Object { + "indent": Object { + "end": null, + "firstLineChars": null, + "hangingChars": null, + "specialIndent": Object { + "type": "hanging", + "val": 420, + }, + "start": 3360, + "startChars": null, + }, + "runProperty": Object {}, + "tabs": Array [], + }, + "pstyle": null, + "runProperty": Object {}, + "start": 1, + "suffix": "tab", + "text": "(%8)", + }, + Object { + "format": "decimalEnclosedCircle", + "jc": "left", + "level": 8, + "levelRestart": null, + "paragraphProperty": Object { + "indent": Object { + "end": null, + "firstLineChars": null, + "hangingChars": null, + "specialIndent": Object { + "type": "hanging", + "val": 420, + }, + "start": 3780, + "startChars": null, + }, + "runProperty": Object {}, + "tabs": Array [], + }, + "pstyle": null, + "runProperty": Object {}, + "start": 1, + "suffix": "tab", + "text": "%9", + }, + ], + "numStyleLink": null, + "styleLink": null, + }, + Object { + "id": 93, + "levels": Array [ + Object { + "format": "decimal", + "jc": "left", + "level": 0, + "levelRestart": null, + "paragraphProperty": Object { + "indent": Object { + "end": null, + "firstLineChars": null, + "hangingChars": null, + "specialIndent": Object { + "type": "hanging", + "val": 454, + }, + "start": 1588, + "startChars": null, + }, + "runProperty": Object {}, + "tabs": Array [], + }, + "pstyle": null, + "runProperty": Object {}, + "start": 1, + "suffix": "tab", + "text": "(%1)", + }, + Object { + "format": "lowerLetter", + "jc": "left", + "level": 1, + "levelRestart": null, + "paragraphProperty": Object { + "indent": Object { + "end": null, + "firstLineChars": null, + "hangingChars": null, + "specialIndent": Object { + "type": "hanging", + "val": 454, + }, + "start": 1588, + "startChars": null, + }, + "runProperty": Object {}, + "tabs": Array [], + }, + "pstyle": null, + "runProperty": Object { + "bold": false, + "boldCs": false, + "fonts": Object { + "ascii": "Times New Roman", + "hiAnsi": "Times New Roman", + "hint": "default", + }, + "italic": false, + "italicCs": false, + "sz": 24, + "szCs": 24, + "underline": "none", + }, + "start": 1, + "suffix": "tab", + "text": "(%2)", + }, + Object { + "format": "decimal", + "jc": "left", + "level": 2, + "levelRestart": null, + "paragraphProperty": Object { + "indent": Object { + "end": null, + "firstLineChars": null, + "hangingChars": null, + "specialIndent": Object { + "type": "hanging", + "val": 555, + }, + "start": 1395, + "startChars": null, + }, + "runProperty": Object {}, + "tabs": Array [], + }, + "pstyle": null, + "runProperty": Object { + "fonts": Object { + "hint": "default", + }, + }, + "start": 1, + "suffix": "tab", + "text": "(%3)", + }, + Object { + "format": "lowerLetter", + "jc": "left", + "level": 3, + "levelRestart": null, + "paragraphProperty": Object { + "indent": Object { + "end": null, + "firstLineChars": null, + "hangingChars": null, + "specialIndent": Object { + "type": "hanging", + "val": 360, + }, + "start": 1620, + "startChars": null, + }, + "runProperty": Object {}, + "tabs": Array [], + }, + "pstyle": null, + "runProperty": Object { + "fonts": Object { + "hint": "eastAsia", + }, + }, + "start": 1, + "suffix": "tab", + "text": "(%4)", + }, + Object { + "format": "bullet", + "jc": "left", + "level": 4, + "levelRestart": null, + "paragraphProperty": Object { + "indent": Object { + "end": null, + "firstLineChars": null, + "hangingChars": null, + "specialIndent": Object { + "type": "hanging", + "val": 360, + }, + "start": 2040, + "startChars": null, + }, + "runProperty": Object {}, + "tabs": Array [], + }, + "pstyle": null, + "runProperty": Object { + "fonts": Object { + "ascii": "Times New Roman", + "cs": "Times New Roman", + "eastAsia": "MS P明朝", + "hiAnsi": "Times New Roman", + "hint": "default", + }, + }, + "start": 1, + "suffix": "tab", + "text": "・", + }, + Object { + "format": "decimalEnclosedCircle", + "jc": "left", + "level": 5, + "levelRestart": null, + "paragraphProperty": Object { + "indent": Object { + "end": null, + "firstLineChars": null, + "hangingChars": null, + "specialIndent": Object { + "type": "hanging", + "val": 420, + }, + "start": 2520, + "startChars": null, + }, + "runProperty": Object {}, + "tabs": Array [], + }, + "pstyle": null, + "runProperty": Object {}, + "start": 1, + "suffix": "tab", + "text": "%6", + }, + Object { + "format": "decimal", + "jc": "left", + "level": 6, + "levelRestart": null, + "paragraphProperty": Object { + "indent": Object { + "end": null, + "firstLineChars": null, + "hangingChars": null, + "specialIndent": Object { + "type": "hanging", + "val": 420, + }, + "start": 2940, + "startChars": null, + }, + "runProperty": Object {}, + "tabs": Array [], + }, + "pstyle": null, + "runProperty": Object {}, + "start": 1, + "suffix": "tab", + "text": "%7.", + }, + Object { + "format": "aiueoFullWidth", + "jc": "left", + "level": 7, + "levelRestart": null, + "paragraphProperty": Object { + "indent": Object { + "end": null, + "firstLineChars": null, + "hangingChars": null, + "specialIndent": Object { + "type": "hanging", + "val": 420, + }, + "start": 3360, + "startChars": null, + }, + "runProperty": Object {}, + "tabs": Array [], + }, + "pstyle": null, + "runProperty": Object {}, + "start": 1, + "suffix": "tab", + "text": "(%8)", + }, + Object { + "format": "decimalEnclosedCircle", + "jc": "left", + "level": 8, + "levelRestart": null, + "paragraphProperty": Object { + "indent": Object { + "end": null, + "firstLineChars": null, + "hangingChars": null, + "specialIndent": Object { + "type": "hanging", + "val": 420, + }, + "start": 3780, + "startChars": null, + }, + "runProperty": Object {}, + "tabs": Array [], + }, + "pstyle": null, + "runProperty": Object {}, + "start": 1, + "suffix": "tab", + "text": "%9", + }, + ], + "numStyleLink": null, + "styleLink": null, + }, + Object { + "id": 94, + "levels": Array [ + Object { + "format": "decimal", + "jc": "left", + "level": 0, + "levelRestart": null, + "paragraphProperty": Object { + "indent": Object { + "end": null, + "firstLineChars": null, + "hangingChars": null, + "specialIndent": Object { + "type": "hanging", + "val": 360, + }, + "start": 540, + "startChars": null, + }, + "runProperty": Object {}, + "tabs": Array [], + }, + "pstyle": null, + "runProperty": Object { + "fonts": Object { + "hint": "eastAsia", + }, + }, + "start": 1, + "suffix": "tab", + "text": "%1.", + }, + Object { + "format": "aiueoFullWidth", + "jc": "left", + "level": 1, + "levelRestart": null, + "paragraphProperty": Object { + "indent": Object { + "end": null, + "firstLineChars": null, + "hangingChars": null, + "specialIndent": Object { + "type": "hanging", + "val": 420, + }, + "start": 420, + "startChars": null, + }, + "runProperty": Object {}, + "tabs": Array [], + }, + "pstyle": null, + "runProperty": Object {}, + "start": 1, + "suffix": "tab", + "text": "(%2)", + }, + Object { + "format": "decimalEnclosedCircle", + "jc": "left", + "level": 2, + "levelRestart": null, + "paragraphProperty": Object { + "indent": Object { + "end": null, + "firstLineChars": null, + "hangingChars": null, + "specialIndent": Object { + "type": "hanging", + "val": 420, + }, + "start": 840, + "startChars": null, + }, + "runProperty": Object {}, + "tabs": Array [], + }, + "pstyle": null, + "runProperty": Object {}, + "start": 1, + "suffix": "tab", + "text": "%3", + }, + Object { + "format": "decimal", + "jc": "left", + "level": 3, + "levelRestart": null, + "paragraphProperty": Object { + "indent": Object { + "end": null, + "firstLineChars": null, + "hangingChars": null, + "specialIndent": Object { + "type": "hanging", + "val": 420, + }, + "start": 1260, + "startChars": null, + }, + "runProperty": Object {}, + "tabs": Array [], + }, + "pstyle": null, + "runProperty": Object {}, + "start": 1, + "suffix": "tab", + "text": "%4.", + }, + Object { + "format": "aiueoFullWidth", + "jc": "left", + "level": 4, + "levelRestart": null, + "paragraphProperty": Object { + "indent": Object { + "end": null, + "firstLineChars": null, + "hangingChars": null, + "specialIndent": Object { + "type": "hanging", + "val": 420, + }, + "start": 1680, + "startChars": null, + }, + "runProperty": Object {}, + "tabs": Array [], + }, + "pstyle": null, + "runProperty": Object {}, + "start": 1, + "suffix": "tab", + "text": "(%5)", + }, + Object { + "format": "decimalEnclosedCircle", + "jc": "left", + "level": 5, + "levelRestart": null, + "paragraphProperty": Object { + "indent": Object { + "end": null, + "firstLineChars": null, + "hangingChars": null, + "specialIndent": Object { + "type": "hanging", + "val": 420, + }, + "start": 2100, + "startChars": null, + }, + "runProperty": Object {}, + "tabs": Array [], + }, + "pstyle": null, + "runProperty": Object {}, + "start": 1, + "suffix": "tab", + "text": "%6", + }, + Object { + "format": "decimal", + "jc": "left", + "level": 6, + "levelRestart": null, + "paragraphProperty": Object { + "indent": Object { + "end": null, + "firstLineChars": null, + "hangingChars": null, + "specialIndent": Object { + "type": "hanging", + "val": 420, + }, + "start": 2520, + "startChars": null, + }, + "runProperty": Object {}, + "tabs": Array [], + }, + "pstyle": null, + "runProperty": Object {}, + "start": 1, + "suffix": "tab", + "text": "%7.", + }, + Object { + "format": "aiueoFullWidth", + "jc": "left", + "level": 7, + "levelRestart": null, + "paragraphProperty": Object { + "indent": Object { + "end": null, + "firstLineChars": null, + "hangingChars": null, + "specialIndent": Object { + "type": "hanging", + "val": 420, + }, + "start": 2940, + "startChars": null, + }, + "runProperty": Object {}, + "tabs": Array [], + }, + "pstyle": null, + "runProperty": Object {}, + "start": 1, + "suffix": "tab", + "text": "(%8)", + }, + Object { + "format": "decimalEnclosedCircle", + "jc": "left", + "level": 8, + "levelRestart": null, + "paragraphProperty": Object { + "indent": Object { + "end": null, + "firstLineChars": null, + "hangingChars": null, + "specialIndent": Object { + "type": "hanging", + "val": 420, + }, + "start": 3360, + "startChars": null, + }, + "runProperty": Object {}, + "tabs": Array [], + }, + "pstyle": null, + "runProperty": Object {}, + "start": 1, + "suffix": "tab", + "text": "%9", + }, + ], + "numStyleLink": null, + "styleLink": null, + }, + Object { + "id": 95, + "levels": Array [ + Object { + "format": "lowerLetter", + "jc": "left", + "level": 0, + "levelRestart": null, + "paragraphProperty": Object { + "indent": Object { + "end": null, + "firstLineChars": null, + "hangingChars": null, + "specialIndent": Object { + "type": "hanging", + "val": 454, + }, + "start": 1588, + "startChars": null, + }, + "runProperty": Object {}, + "tabs": Array [], + }, + "pstyle": null, + "runProperty": Object { + "fonts": Object { + "ascii": "Times New Roman", + "hiAnsi": "Times New Roman", + "hint": "default", + }, + "sz": 24, + "szCs": 24, + }, + "start": 1, + "suffix": "tab", + "text": "(%1)", + }, + Object { + "format": "aiueoFullWidth", + "jc": "left", + "level": 1, + "levelRestart": null, + "paragraphProperty": Object { + "indent": Object { + "end": null, + "firstLineChars": null, + "hangingChars": null, + "specialIndent": Object { + "type": "hanging", + "val": 420, + }, + "start": 840, + "startChars": null, + }, + "runProperty": Object {}, + "tabs": Array [], + }, + "pstyle": null, + "runProperty": Object {}, + "start": 1, + "suffix": "tab", + "text": "(%2)", + }, + Object { + "format": "decimalEnclosedCircle", + "jc": "left", + "level": 2, + "levelRestart": null, + "paragraphProperty": Object { + "indent": Object { + "end": null, + "firstLineChars": null, + "hangingChars": null, + "specialIndent": Object { + "type": "hanging", + "val": 420, + }, + "start": 1260, + "startChars": null, + }, + "runProperty": Object {}, + "tabs": Array [], + }, + "pstyle": null, + "runProperty": Object {}, + "start": 1, + "suffix": "tab", + "text": "%3", + }, + Object { + "format": "decimal", + "jc": "left", + "level": 3, + "levelRestart": null, + "paragraphProperty": Object { + "indent": Object { + "end": null, + "firstLineChars": null, + "hangingChars": null, + "specialIndent": Object { + "type": "hanging", + "val": 420, + }, + "start": 1680, + "startChars": null, + }, + "runProperty": Object {}, + "tabs": Array [], + }, + "pstyle": null, + "runProperty": Object {}, + "start": 1, + "suffix": "tab", + "text": "%4.", + }, + Object { + "format": "aiueoFullWidth", + "jc": "left", + "level": 4, + "levelRestart": null, + "paragraphProperty": Object { + "indent": Object { + "end": null, + "firstLineChars": null, + "hangingChars": null, + "specialIndent": Object { + "type": "hanging", + "val": 420, + }, + "start": 2100, + "startChars": null, + }, + "runProperty": Object {}, + "tabs": Array [], + }, + "pstyle": null, + "runProperty": Object {}, + "start": 1, + "suffix": "tab", + "text": "(%5)", + }, + Object { + "format": "decimalEnclosedCircle", + "jc": "left", + "level": 5, + "levelRestart": null, + "paragraphProperty": Object { + "indent": Object { + "end": null, + "firstLineChars": null, + "hangingChars": null, + "specialIndent": Object { + "type": "hanging", + "val": 420, + }, + "start": 2520, + "startChars": null, + }, + "runProperty": Object {}, + "tabs": Array [], + }, + "pstyle": null, + "runProperty": Object {}, + "start": 1, + "suffix": "tab", + "text": "%6", + }, + Object { + "format": "decimal", + "jc": "left", + "level": 6, + "levelRestart": null, + "paragraphProperty": Object { + "indent": Object { + "end": null, + "firstLineChars": null, + "hangingChars": null, + "specialIndent": Object { + "type": "hanging", + "val": 420, + }, + "start": 2940, + "startChars": null, + }, + "runProperty": Object {}, + "tabs": Array [], + }, + "pstyle": null, + "runProperty": Object {}, + "start": 1, + "suffix": "tab", + "text": "%7.", + }, + Object { + "format": "aiueoFullWidth", + "jc": "left", + "level": 7, + "levelRestart": null, + "paragraphProperty": Object { + "indent": Object { + "end": null, + "firstLineChars": null, + "hangingChars": null, + "specialIndent": Object { + "type": "hanging", + "val": 420, + }, + "start": 3360, + "startChars": null, + }, + "runProperty": Object {}, + "tabs": Array [], + }, + "pstyle": null, + "runProperty": Object {}, + "start": 1, + "suffix": "tab", + "text": "(%8)", + }, + Object { + "format": "decimalEnclosedCircle", + "jc": "left", + "level": 8, + "levelRestart": null, + "paragraphProperty": Object { + "indent": Object { + "end": null, + "firstLineChars": null, + "hangingChars": null, + "specialIndent": Object { + "type": "hanging", + "val": 420, + }, + "start": 3780, + "startChars": null, + }, + "runProperty": Object {}, + "tabs": Array [], + }, + "pstyle": null, + "runProperty": Object {}, + "start": 1, + "suffix": "tab", + "text": "%9", + }, + ], + "numStyleLink": null, + "styleLink": null, + }, + Object { + "id": 96, + "levels": Array [ + Object { + "format": "bullet", + "jc": "left", + "level": 0, + "levelRestart": null, + "paragraphProperty": Object { + "indent": Object { + "end": null, + "firstLineChars": null, + "hangingChars": null, + "specialIndent": Object { + "type": "hanging", + "val": 420, + }, + "start": 2310, + "startChars": null, + }, + "runProperty": Object {}, + "tabs": Array [], + }, + "pstyle": null, + "runProperty": Object { + "fonts": Object { + "ascii": "Wingdings", + "hiAnsi": "Wingdings", + "hint": "default", + }, + }, + "start": 1, + "suffix": "tab", + "text": "", + }, + Object { + "format": "bullet", + "jc": "left", + "level": 1, + "levelRestart": null, + "paragraphProperty": Object { + "indent": Object { + "end": null, + "firstLineChars": null, + "hangingChars": null, + "specialIndent": Object { + "type": "hanging", + "val": 420, + }, + "start": 840, + "startChars": null, + }, + "runProperty": Object {}, + "tabs": Array [], + }, + "pstyle": null, + "runProperty": Object { + "fonts": Object { + "ascii": "Wingdings", + "hiAnsi": "Wingdings", + "hint": "default", + }, + }, + "start": 1, + "suffix": "tab", + "text": "", + }, + Object { + "format": "bullet", + "jc": "left", + "level": 2, + "levelRestart": null, + "paragraphProperty": Object { + "indent": Object { + "end": null, + "firstLineChars": null, + "hangingChars": null, + "specialIndent": Object { + "type": "hanging", + "val": 420, + }, + "start": 562, + "startChars": null, + }, + "runProperty": Object {}, + "tabs": Array [], + }, + "pstyle": null, + "runProperty": Object { + "fonts": Object { + "ascii": "Wingdings", + "hiAnsi": "Wingdings", + "hint": "default", + }, + "italic": true, + "italicCs": true, + "sz": 24, + "szCs": 24, + }, + "start": 1, + "suffix": "tab", + "text": "", + }, + Object { + "format": "bullet", + "jc": "left", + "level": 3, + "levelRestart": null, + "paragraphProperty": Object { + "indent": Object { + "end": null, + "firstLineChars": null, + "hangingChars": null, + "specialIndent": Object { + "type": "hanging", + "val": 420, + }, + "start": 1680, + "startChars": null, + }, + "runProperty": Object {}, + "tabs": Array [], + }, + "pstyle": null, + "runProperty": Object { + "fonts": Object { + "ascii": "Wingdings", + "hiAnsi": "Wingdings", + "hint": "default", + }, + }, + "start": 1, + "suffix": "tab", + "text": "", + }, + Object { + "format": "bullet", + "jc": "left", + "level": 4, + "levelRestart": null, + "paragraphProperty": Object { + "indent": Object { + "end": null, + "firstLineChars": null, + "hangingChars": null, + "specialIndent": Object { + "type": "hanging", + "val": 420, + }, + "start": 2100, + "startChars": null, + }, + "runProperty": Object {}, + "tabs": Array [], + }, + "pstyle": null, + "runProperty": Object { + "fonts": Object { + "ascii": "Wingdings", + "hiAnsi": "Wingdings", + "hint": "default", + }, + }, + "start": 1, + "suffix": "tab", + "text": "", + }, + Object { + "format": "bullet", + "jc": "left", + "level": 5, + "levelRestart": null, + "paragraphProperty": Object { + "indent": Object { + "end": null, + "firstLineChars": null, + "hangingChars": null, + "specialIndent": Object { + "type": "hanging", + "val": 420, + }, + "start": 2520, + "startChars": null, + }, + "runProperty": Object {}, + "tabs": Array [], + }, + "pstyle": null, + "runProperty": Object { + "fonts": Object { + "ascii": "Wingdings", + "hiAnsi": "Wingdings", + "hint": "default", + }, + }, + "start": 1, + "suffix": "tab", + "text": "", + }, + Object { + "format": "bullet", + "jc": "left", + "level": 6, + "levelRestart": null, + "paragraphProperty": Object { + "indent": Object { + "end": null, + "firstLineChars": null, + "hangingChars": null, + "specialIndent": Object { + "type": "hanging", + "val": 420, + }, + "start": 2940, + "startChars": null, + }, + "runProperty": Object {}, + "tabs": Array [], + }, + "pstyle": null, + "runProperty": Object { + "fonts": Object { + "ascii": "Wingdings", + "hiAnsi": "Wingdings", + "hint": "default", + }, + }, + "start": 1, + "suffix": "tab", + "text": "", + }, + Object { + "format": "bullet", + "jc": "left", + "level": 7, + "levelRestart": null, + "paragraphProperty": Object { + "indent": Object { + "end": null, + "firstLineChars": null, + "hangingChars": null, + "specialIndent": Object { + "type": "hanging", + "val": 420, + }, + "start": 3360, + "startChars": null, + }, + "runProperty": Object {}, + "tabs": Array [], + }, + "pstyle": null, + "runProperty": Object { + "fonts": Object { + "ascii": "Wingdings", + "hiAnsi": "Wingdings", + "hint": "default", + }, + }, + "start": 1, + "suffix": "tab", + "text": "", + }, + Object { + "format": "bullet", + "jc": "left", + "level": 8, + "levelRestart": null, + "paragraphProperty": Object { + "indent": Object { + "end": null, + "firstLineChars": null, + "hangingChars": null, + "specialIndent": Object { + "type": "hanging", + "val": 420, + }, + "start": 3780, + "startChars": null, + }, + "runProperty": Object {}, + "tabs": Array [], + }, + "pstyle": null, + "runProperty": Object { + "fonts": Object { + "ascii": "Wingdings", + "hiAnsi": "Wingdings", + "hint": "default", + }, + }, + "start": 1, + "suffix": "tab", + "text": "", + }, + ], + "numStyleLink": null, + "styleLink": null, + }, + Object { + "id": 97, + "levels": Array [ + Object { + "format": "decimal", + "jc": "left", + "level": 0, + "levelRestart": null, + "paragraphProperty": Object { + "indent": Object { + "end": null, + "firstLineChars": null, + "hangingChars": null, + "specialIndent": Object { + "type": "hanging", + "val": 453, + }, + "start": 2041, + "startChars": null, + }, + "runProperty": Object {}, + "tabs": Array [], + }, + "pstyle": "a4", + "runProperty": Object { + "bold": false, + "boldCs": false, + "fonts": Object { + "ascii": "Times New Roman", + "hiAnsi": "Times New Roman", + "hint": "default", + }, + "italic": false, + "italicCs": false, + "sz": 21, + "szCs": 21, + "underline": "none", + }, + "start": 1, + "suffix": "tab", + "text": "(%1)", + }, + Object { + "format": "aiueoFullWidth", + "jc": "left", + "level": 1, + "levelRestart": null, + "paragraphProperty": Object { + "indent": Object { + "end": null, + "firstLineChars": null, + "hangingChars": null, + "specialIndent": Object { + "type": "hanging", + "val": 420, + }, + "start": 840, + "startChars": null, + }, + "runProperty": Object {}, + "tabs": Array [], + }, + "pstyle": null, + "runProperty": Object {}, + "start": 1, + "suffix": "tab", + "text": "(%2)", + }, + Object { + "format": "decimalEnclosedCircle", + "jc": "left", + "level": 2, + "levelRestart": null, + "paragraphProperty": Object { + "indent": Object { + "end": null, + "firstLineChars": null, + "hangingChars": null, + "specialIndent": Object { + "type": "hanging", + "val": 420, + }, + "start": 1260, + "startChars": null, + }, + "runProperty": Object {}, + "tabs": Array [], + }, + "pstyle": null, + "runProperty": Object {}, + "start": 1, + "suffix": "tab", + "text": "%3", + }, + Object { + "format": "decimal", + "jc": "left", + "level": 3, + "levelRestart": null, + "paragraphProperty": Object { + "indent": Object { + "end": null, + "firstLineChars": null, + "hangingChars": null, + "specialIndent": Object { + "type": "hanging", + "val": 420, + }, + "start": 1680, + "startChars": null, + }, + "runProperty": Object {}, + "tabs": Array [], + }, + "pstyle": null, + "runProperty": Object {}, + "start": 1, + "suffix": "tab", + "text": "%4.", + }, + Object { + "format": "aiueoFullWidth", + "jc": "left", + "level": 4, + "levelRestart": null, + "paragraphProperty": Object { + "indent": Object { + "end": null, + "firstLineChars": null, + "hangingChars": null, + "specialIndent": Object { + "type": "hanging", + "val": 420, + }, + "start": 2100, + "startChars": null, + }, + "runProperty": Object {}, + "tabs": Array [], + }, + "pstyle": null, + "runProperty": Object {}, + "start": 1, + "suffix": "tab", + "text": "(%5)", + }, + Object { + "format": "decimalEnclosedCircle", + "jc": "left", + "level": 5, + "levelRestart": null, + "paragraphProperty": Object { + "indent": Object { + "end": null, + "firstLineChars": null, + "hangingChars": null, + "specialIndent": Object { + "type": "hanging", + "val": 420, + }, + "start": 2520, + "startChars": null, + }, + "runProperty": Object {}, + "tabs": Array [], + }, + "pstyle": null, + "runProperty": Object {}, + "start": 1, + "suffix": "tab", + "text": "%6", + }, + Object { + "format": "decimal", + "jc": "left", + "level": 6, + "levelRestart": null, + "paragraphProperty": Object { + "indent": Object { + "end": null, + "firstLineChars": null, + "hangingChars": null, + "specialIndent": Object { + "type": "hanging", + "val": 420, + }, + "start": 2940, + "startChars": null, + }, + "runProperty": Object {}, + "tabs": Array [], + }, + "pstyle": null, + "runProperty": Object {}, + "start": 1, + "suffix": "tab", + "text": "%7.", + }, + Object { + "format": "aiueoFullWidth", + "jc": "left", + "level": 7, + "levelRestart": null, + "paragraphProperty": Object { + "indent": Object { + "end": null, + "firstLineChars": null, + "hangingChars": null, + "specialIndent": Object { + "type": "hanging", + "val": 420, + }, + "start": 3360, + "startChars": null, + }, + "runProperty": Object {}, + "tabs": Array [], + }, + "pstyle": null, + "runProperty": Object {}, + "start": 1, + "suffix": "tab", + "text": "(%8)", + }, + Object { + "format": "decimalEnclosedCircle", + "jc": "left", + "level": 8, + "levelRestart": null, + "paragraphProperty": Object { + "indent": Object { + "end": null, + "firstLineChars": null, + "hangingChars": null, + "specialIndent": Object { + "type": "hanging", + "val": 420, + }, + "start": 3780, + "startChars": null, + }, + "runProperty": Object {}, + "tabs": Array [], + }, + "pstyle": null, + "runProperty": Object {}, + "start": 1, + "suffix": "tab", + "text": "%9", + }, + ], + "numStyleLink": null, + "styleLink": null, + }, + Object { + "id": 98, + "levels": Array [ + Object { + "format": "decimal", + "jc": "left", + "level": 0, + "levelRestart": null, + "paragraphProperty": Object { + "indent": Object { + "end": null, + "firstLineChars": null, + "hangingChars": null, + "specialIndent": Object { + "type": "hanging", + "val": 360, + }, + "start": 540, + "startChars": null, + }, + "runProperty": Object {}, + "tabs": Array [], + }, + "pstyle": null, + "runProperty": Object { + "fonts": Object { + "hint": "eastAsia", + }, + }, + "start": 1, + "suffix": "tab", + "text": "%1.", + }, + Object { + "format": "aiueoFullWidth", + "jc": "left", + "level": 1, + "levelRestart": null, + "paragraphProperty": Object { + "indent": Object { + "end": null, + "firstLineChars": null, + "hangingChars": null, + "specialIndent": Object { + "type": "hanging", + "val": 420, + }, + "start": 420, + "startChars": null, + }, + "runProperty": Object {}, + "tabs": Array [], + }, + "pstyle": null, + "runProperty": Object {}, + "start": 1, + "suffix": "tab", + "text": "(%2)", + }, + Object { + "format": "decimalEnclosedCircle", + "jc": "left", + "level": 2, + "levelRestart": null, + "paragraphProperty": Object { + "indent": Object { + "end": null, + "firstLineChars": null, + "hangingChars": null, + "specialIndent": Object { + "type": "hanging", + "val": 420, + }, + "start": 840, + "startChars": null, + }, + "runProperty": Object {}, + "tabs": Array [], + }, + "pstyle": null, + "runProperty": Object {}, + "start": 1, + "suffix": "tab", + "text": "%3", + }, + Object { + "format": "decimal", + "jc": "left", + "level": 3, + "levelRestart": null, + "paragraphProperty": Object { + "indent": Object { + "end": null, + "firstLineChars": null, + "hangingChars": null, + "specialIndent": Object { + "type": "hanging", + "val": 420, + }, + "start": 1260, + "startChars": null, + }, + "runProperty": Object {}, + "tabs": Array [], + }, + "pstyle": null, + "runProperty": Object {}, + "start": 1, + "suffix": "tab", + "text": "%4.", + }, + Object { + "format": "aiueoFullWidth", + "jc": "left", + "level": 4, + "levelRestart": null, + "paragraphProperty": Object { + "indent": Object { + "end": null, + "firstLineChars": null, + "hangingChars": null, + "specialIndent": Object { + "type": "hanging", + "val": 420, + }, + "start": 1680, + "startChars": null, + }, + "runProperty": Object {}, + "tabs": Array [], + }, + "pstyle": null, + "runProperty": Object {}, + "start": 1, + "suffix": "tab", + "text": "(%5)", + }, + Object { + "format": "decimalEnclosedCircle", + "jc": "left", + "level": 5, + "levelRestart": null, + "paragraphProperty": Object { + "indent": Object { + "end": null, + "firstLineChars": null, + "hangingChars": null, + "specialIndent": Object { + "type": "hanging", + "val": 420, + }, + "start": 2100, + "startChars": null, + }, + "runProperty": Object {}, + "tabs": Array [], + }, + "pstyle": null, + "runProperty": Object {}, + "start": 1, + "suffix": "tab", + "text": "%6", + }, + Object { + "format": "decimal", + "jc": "left", + "level": 6, + "levelRestart": null, + "paragraphProperty": Object { + "indent": Object { + "end": null, + "firstLineChars": null, + "hangingChars": null, + "specialIndent": Object { + "type": "hanging", + "val": 420, + }, + "start": 2520, + "startChars": null, + }, + "runProperty": Object {}, + "tabs": Array [], + }, + "pstyle": null, + "runProperty": Object {}, + "start": 1, + "suffix": "tab", + "text": "%7.", + }, + Object { + "format": "aiueoFullWidth", + "jc": "left", + "level": 7, + "levelRestart": null, + "paragraphProperty": Object { + "indent": Object { + "end": null, + "firstLineChars": null, + "hangingChars": null, + "specialIndent": Object { + "type": "hanging", + "val": 420, + }, + "start": 2940, + "startChars": null, + }, + "runProperty": Object {}, + "tabs": Array [], + }, + "pstyle": null, + "runProperty": Object {}, + "start": 1, + "suffix": "tab", + "text": "(%8)", + }, + Object { + "format": "decimalEnclosedCircle", + "jc": "left", + "level": 8, + "levelRestart": null, + "paragraphProperty": Object { + "indent": Object { + "end": null, + "firstLineChars": null, + "hangingChars": null, + "specialIndent": Object { + "type": "hanging", + "val": 420, + }, + "start": 3360, + "startChars": null, + }, + "runProperty": Object {}, + "tabs": Array [], + }, + "pstyle": null, + "runProperty": Object {}, + "start": 1, + "suffix": "tab", + "text": "%9", + }, + ], + "numStyleLink": null, + "styleLink": null, + }, + Object { + "id": 99, + "levels": Array [ + Object { + "format": "lowerLetter", + "jc": "left", + "level": 0, + "levelRestart": null, + "paragraphProperty": Object { + "indent": Object { + "end": null, + "firstLineChars": null, + "hangingChars": null, + "specialIndent": Object { + "type": "hanging", + "val": 454, + }, + "start": 1588, + "startChars": null, + }, + "runProperty": Object {}, + "tabs": Array [], + }, + "pstyle": null, + "runProperty": Object { + "bold": false, + "boldCs": false, + "fonts": Object { + "ascii": "Times New Roman", + "cs": "Times New Roman", + "hiAnsi": "Times New Roman", + "hint": "default", + }, + "italic": false, + "italicCs": false, + "sz": 24, + "szCs": 24, + "underline": "none", + }, + "start": 2, + "suffix": "tab", + "text": "(%1)", + }, + Object { + "format": "aiueoFullWidth", + "jc": "left", + "level": 1, + "levelRestart": null, + "paragraphProperty": Object { + "indent": Object { + "end": null, + "firstLineChars": null, + "hangingChars": null, + "specialIndent": Object { + "type": "hanging", + "val": 420, + }, + "start": 840, + "startChars": null, + }, + "runProperty": Object {}, + "tabs": Array [], + }, + "pstyle": null, + "runProperty": Object {}, + "start": 1, + "suffix": "tab", + "text": "(%2)", + }, + Object { + "format": "decimalEnclosedCircle", + "jc": "left", + "level": 2, + "levelRestart": null, + "paragraphProperty": Object { + "indent": Object { + "end": null, + "firstLineChars": null, + "hangingChars": null, + "specialIndent": Object { + "type": "hanging", + "val": 420, + }, + "start": 1260, + "startChars": null, + }, + "runProperty": Object {}, + "tabs": Array [], + }, + "pstyle": null, + "runProperty": Object {}, + "start": 1, + "suffix": "tab", + "text": "%3", + }, + Object { + "format": "decimal", + "jc": "left", + "level": 3, + "levelRestart": null, + "paragraphProperty": Object { + "indent": Object { + "end": null, + "firstLineChars": null, + "hangingChars": null, + "specialIndent": Object { + "type": "hanging", + "val": 420, + }, + "start": 1680, + "startChars": null, + }, + "runProperty": Object {}, + "tabs": Array [], + }, + "pstyle": null, + "runProperty": Object {}, + "start": 1, + "suffix": "tab", + "text": "%4.", + }, + Object { + "format": "aiueoFullWidth", + "jc": "left", + "level": 4, + "levelRestart": null, + "paragraphProperty": Object { + "indent": Object { + "end": null, + "firstLineChars": null, + "hangingChars": null, + "specialIndent": Object { + "type": "hanging", + "val": 420, + }, + "start": 2100, + "startChars": null, + }, + "runProperty": Object {}, + "tabs": Array [], + }, + "pstyle": null, + "runProperty": Object {}, + "start": 1, + "suffix": "tab", + "text": "(%5)", + }, + Object { + "format": "decimalEnclosedCircle", + "jc": "left", + "level": 5, + "levelRestart": null, + "paragraphProperty": Object { + "indent": Object { + "end": null, + "firstLineChars": null, + "hangingChars": null, + "specialIndent": Object { + "type": "hanging", + "val": 420, + }, + "start": 2520, + "startChars": null, + }, + "runProperty": Object {}, + "tabs": Array [], + }, + "pstyle": null, + "runProperty": Object {}, + "start": 1, + "suffix": "tab", + "text": "%6", + }, + Object { + "format": "decimal", + "jc": "left", + "level": 6, + "levelRestart": null, + "paragraphProperty": Object { + "indent": Object { + "end": null, + "firstLineChars": null, + "hangingChars": null, + "specialIndent": Object { + "type": "hanging", + "val": 420, + }, + "start": 2940, + "startChars": null, + }, + "runProperty": Object {}, + "tabs": Array [], + }, + "pstyle": null, + "runProperty": Object {}, + "start": 1, + "suffix": "tab", + "text": "%7.", + }, + Object { + "format": "aiueoFullWidth", + "jc": "left", + "level": 7, + "levelRestart": null, + "paragraphProperty": Object { + "indent": Object { + "end": null, + "firstLineChars": null, + "hangingChars": null, + "specialIndent": Object { + "type": "hanging", + "val": 420, + }, + "start": 3360, + "startChars": null, + }, + "runProperty": Object {}, + "tabs": Array [], + }, + "pstyle": null, + "runProperty": Object {}, + "start": 1, + "suffix": "tab", + "text": "(%8)", + }, + Object { + "format": "decimalEnclosedCircle", + "jc": "left", + "level": 8, + "levelRestart": null, + "paragraphProperty": Object { + "indent": Object { + "end": null, + "firstLineChars": null, + "hangingChars": null, + "specialIndent": Object { + "type": "hanging", + "val": 420, + }, + "start": 3780, + "startChars": null, + }, + "runProperty": Object {}, + "tabs": Array [], + }, + "pstyle": null, + "runProperty": Object {}, + "start": 1, + "suffix": "tab", + "text": "%9", + }, + ], + "numStyleLink": null, + "styleLink": null, + }, + Object { + "id": 100, + "levels": Array [ + Object { + "format": "decimal", + "jc": "left", + "level": 0, + "levelRestart": null, + "paragraphProperty": Object { + "indent": Object { + "end": null, + "firstLineChars": null, + "hangingChars": null, + "specialIndent": Object { + "type": "hanging", + "val": 360, + }, + "start": 540, + "startChars": null, + }, + "runProperty": Object {}, + "tabs": Array [], + }, + "pstyle": null, + "runProperty": Object { + "fonts": Object { + "hint": "eastAsia", + }, + }, + "start": 1, + "suffix": "tab", + "text": "%1.", + }, + Object { + "format": "bullet", + "jc": "left", + "level": 1, + "levelRestart": null, + "paragraphProperty": Object { + "indent": Object { + "end": null, + "firstLineChars": null, + "hangingChars": null, + "specialIndent": Object { + "type": "hanging", + "val": 360, + }, + "start": 780, + "startChars": null, + }, + "runProperty": Object {}, + "tabs": Array [], + }, + "pstyle": null, + "runProperty": Object { + "fonts": Object { + "ascii": "MS 明朝", + "cs": "Times New Roman", + "eastAsia": "MS 明朝", + "hiAnsi": "Century", + "hint": "eastAsia", + }, + }, + "start": 4, + "suffix": "tab", + "text": "※", + }, + Object { + "format": "decimalEnclosedCircle", + "jc": "left", + "level": 2, + "levelRestart": null, + "paragraphProperty": Object { + "indent": Object { + "end": null, + "firstLineChars": null, + "hangingChars": null, + "specialIndent": Object { + "type": "hanging", + "val": 420, + }, + "start": 1260, + "startChars": null, + }, + "runProperty": Object {}, + "tabs": Array [], + }, + "pstyle": null, + "runProperty": Object {}, + "start": 1, + "suffix": "tab", + "text": "%3", + }, + Object { + "format": "bullet", + "jc": "left", + "level": 3, + "levelRestart": null, + "paragraphProperty": Object { + "indent": Object { + "end": null, + "firstLineChars": null, + "hangingChars": null, + "specialIndent": Object { + "type": "hanging", + "val": 360, + }, + "start": 1620, + "startChars": null, + }, + "runProperty": Object {}, + "tabs": Array [], + }, + "pstyle": null, + "runProperty": Object { + "fonts": Object { + "ascii": "Times New Roman", + "cs": "Times New Roman", + "eastAsia": "MS P明朝", + "hiAnsi": "Times New Roman", + "hint": "default", + }, + }, + "start": 2, + "suffix": "tab", + "text": "★", + }, + Object { + "format": "lowerLetter", + "jc": "left", + "level": 4, + "levelRestart": null, + "paragraphProperty": Object { + "indent": Object { + "end": null, + "firstLineChars": null, + "hangingChars": null, + "specialIndent": Object { + "type": "hanging", + "val": 450, + }, + "start": 2130, + "startChars": null, + }, + "runProperty": Object {}, + "tabs": Array [], + }, + "pstyle": null, + "runProperty": Object { + "fonts": Object { + "hint": "eastAsia", + }, + }, + "start": 1, + "suffix": "tab", + "text": "(%5)", + }, + Object { + "format": "decimalEnclosedCircle", + "jc": "left", + "level": 5, + "levelRestart": null, + "paragraphProperty": Object { + "indent": Object { + "end": null, + "firstLineChars": null, + "hangingChars": null, + "specialIndent": Object { + "type": "hanging", + "val": 420, + }, + "start": 2520, + "startChars": null, + }, + "runProperty": Object {}, + "tabs": Array [], + }, + "pstyle": null, + "runProperty": Object {}, + "start": 1, + "suffix": "tab", + "text": "%6", + }, + Object { + "format": "decimal", + "jc": "left", + "level": 6, + "levelRestart": null, + "paragraphProperty": Object { + "indent": Object { + "end": null, + "firstLineChars": null, + "hangingChars": null, + "specialIndent": Object { + "type": "hanging", + "val": 420, + }, + "start": 2940, + "startChars": null, + }, + "runProperty": Object {}, + "tabs": Array [], + }, + "pstyle": null, + "runProperty": Object {}, + "start": 1, + "suffix": "tab", + "text": "%7.", + }, + Object { + "format": "aiueoFullWidth", + "jc": "left", + "level": 7, + "levelRestart": null, + "paragraphProperty": Object { + "indent": Object { + "end": null, + "firstLineChars": null, + "hangingChars": null, + "specialIndent": Object { + "type": "hanging", + "val": 420, + }, + "start": 3360, + "startChars": null, + }, + "runProperty": Object {}, + "tabs": Array [], + }, + "pstyle": null, + "runProperty": Object {}, + "start": 1, + "suffix": "tab", + "text": "(%8)", + }, + Object { + "format": "decimalEnclosedCircle", + "jc": "left", + "level": 8, + "levelRestart": null, + "paragraphProperty": Object { + "indent": Object { + "end": null, + "firstLineChars": null, + "hangingChars": null, + "specialIndent": Object { + "type": "hanging", + "val": 420, + }, + "start": 3780, + "startChars": null, + }, + "runProperty": Object {}, + "tabs": Array [], + }, + "pstyle": null, + "runProperty": Object {}, + "start": 1, + "suffix": "tab", + "text": "%9", + }, + ], + "numStyleLink": null, + "styleLink": null, + }, + Object { + "id": 101, + "levels": Array [ + Object { + "format": "upperLetter", + "jc": "left", + "level": 0, + "levelRestart": null, + "paragraphProperty": Object { + "indent": Object { + "end": null, + "firstLineChars": null, + "hangingChars": null, + "specialIndent": Object { + "type": "hanging", + "val": 360, + }, + "start": 540, + "startChars": null, + }, + "runProperty": Object {}, + "tabs": Array [], + }, + "pstyle": null, + "runProperty": Object { + "fonts": Object { + "hint": "eastAsia", + }, + }, + "start": 1, + "suffix": "tab", + "text": "%1", + }, + Object { + "format": "aiueoFullWidth", + "jc": "left", + "level": 1, + "levelRestart": null, + "paragraphProperty": Object { + "indent": Object { + "end": null, + "firstLineChars": null, + "hangingChars": null, + "specialIndent": Object { + "type": "hanging", + "val": 420, + }, + "start": 840, + "startChars": null, + }, + "runProperty": Object {}, + "tabs": Array [], + }, + "pstyle": null, + "runProperty": Object {}, + "start": 1, + "suffix": "tab", + "text": "(%2)", + }, + Object { + "format": "decimalEnclosedCircle", + "jc": "left", + "level": 2, + "levelRestart": null, + "paragraphProperty": Object { + "indent": Object { + "end": null, + "firstLineChars": null, + "hangingChars": null, + "specialIndent": Object { + "type": "hanging", + "val": 420, + }, + "start": 1260, + "startChars": null, + }, + "runProperty": Object {}, + "tabs": Array [], + }, + "pstyle": null, + "runProperty": Object {}, + "start": 1, + "suffix": "tab", + "text": "%3", + }, + Object { + "format": "decimal", + "jc": "left", + "level": 3, + "levelRestart": null, + "paragraphProperty": Object { + "indent": Object { + "end": null, + "firstLineChars": null, + "hangingChars": null, + "specialIndent": Object { + "type": "hanging", + "val": 420, + }, + "start": 1680, + "startChars": null, + }, + "runProperty": Object {}, + "tabs": Array [], + }, + "pstyle": null, + "runProperty": Object {}, + "start": 1, + "suffix": "tab", + "text": "%4.", + }, + Object { + "format": "aiueoFullWidth", + "jc": "left", + "level": 4, + "levelRestart": null, + "paragraphProperty": Object { + "indent": Object { + "end": null, + "firstLineChars": null, + "hangingChars": null, + "specialIndent": Object { + "type": "hanging", + "val": 420, + }, + "start": 2100, + "startChars": null, + }, + "runProperty": Object {}, + "tabs": Array [], + }, + "pstyle": null, + "runProperty": Object {}, + "start": 1, + "suffix": "tab", + "text": "(%5)", + }, + Object { + "format": "decimalEnclosedCircle", + "jc": "left", + "level": 5, + "levelRestart": null, + "paragraphProperty": Object { + "indent": Object { + "end": null, + "firstLineChars": null, + "hangingChars": null, + "specialIndent": Object { + "type": "hanging", + "val": 420, + }, + "start": 2520, + "startChars": null, + }, + "runProperty": Object {}, + "tabs": Array [], + }, + "pstyle": null, + "runProperty": Object {}, + "start": 1, + "suffix": "tab", + "text": "%6", + }, + Object { + "format": "decimal", + "jc": "left", + "level": 6, + "levelRestart": null, + "paragraphProperty": Object { + "indent": Object { + "end": null, + "firstLineChars": null, + "hangingChars": null, + "specialIndent": Object { + "type": "hanging", + "val": 420, + }, + "start": 2940, + "startChars": null, + }, + "runProperty": Object {}, + "tabs": Array [], + }, + "pstyle": null, + "runProperty": Object {}, + "start": 1, + "suffix": "tab", + "text": "%7.", + }, + Object { + "format": "aiueoFullWidth", + "jc": "left", + "level": 7, + "levelRestart": null, + "paragraphProperty": Object { + "indent": Object { + "end": null, + "firstLineChars": null, + "hangingChars": null, + "specialIndent": Object { + "type": "hanging", + "val": 420, + }, + "start": 3360, + "startChars": null, + }, + "runProperty": Object {}, + "tabs": Array [], + }, + "pstyle": null, + "runProperty": Object {}, + "start": 1, + "suffix": "tab", + "text": "(%8)", + }, + Object { + "format": "decimalEnclosedCircle", + "jc": "left", + "level": 8, + "levelRestart": null, + "paragraphProperty": Object { + "indent": Object { + "end": null, + "firstLineChars": null, + "hangingChars": null, + "specialIndent": Object { + "type": "hanging", + "val": 420, + }, + "start": 3780, + "startChars": null, + }, + "runProperty": Object {}, + "tabs": Array [], + }, + "pstyle": null, + "runProperty": Object {}, + "start": 1, + "suffix": "tab", + "text": "%9", + }, + ], + "numStyleLink": null, + "styleLink": null, + }, + Object { + "id": 102, + "levels": Array [ + Object { + "format": "decimal", + "jc": "left", + "level": 0, + "levelRestart": null, + "paragraphProperty": Object { + "indent": Object { + "end": null, + "firstLineChars": null, + "hangingChars": null, + "specialIndent": Object { + "type": "hanging", + "val": 360, + }, + "start": 540, + "startChars": null, + }, + "runProperty": Object {}, + "tabs": Array [], + }, + "pstyle": null, + "runProperty": Object { + "fonts": Object { + "hint": "eastAsia", + }, + }, + "start": 1, + "suffix": "tab", + "text": "%1.", + }, + Object { + "format": "aiueoFullWidth", + "jc": "left", + "level": 1, + "levelRestart": null, + "paragraphProperty": Object { + "indent": Object { + "end": null, + "firstLineChars": null, + "hangingChars": null, + "specialIndent": Object { + "type": "hanging", + "val": 420, + }, + "start": 420, + "startChars": null, + }, + "runProperty": Object {}, + "tabs": Array [], + }, + "pstyle": null, + "runProperty": Object {}, + "start": 1, + "suffix": "tab", + "text": "(%2)", + }, + Object { + "format": "decimalEnclosedCircle", + "jc": "left", + "level": 2, + "levelRestart": null, + "paragraphProperty": Object { + "indent": Object { + "end": null, + "firstLineChars": null, + "hangingChars": null, + "specialIndent": Object { + "type": "hanging", + "val": 420, + }, + "start": 840, + "startChars": null, + }, + "runProperty": Object {}, + "tabs": Array [], + }, + "pstyle": null, + "runProperty": Object {}, + "start": 1, + "suffix": "tab", + "text": "%3", + }, + Object { + "format": "decimal", + "jc": "left", + "level": 3, + "levelRestart": null, + "paragraphProperty": Object { + "indent": Object { + "end": null, + "firstLineChars": null, + "hangingChars": null, + "specialIndent": Object { + "type": "hanging", + "val": 420, + }, + "start": 1260, + "startChars": null, + }, + "runProperty": Object {}, + "tabs": Array [], + }, + "pstyle": null, + "runProperty": Object {}, + "start": 1, + "suffix": "tab", + "text": "%4.", + }, + Object { + "format": "aiueoFullWidth", + "jc": "left", + "level": 4, + "levelRestart": null, + "paragraphProperty": Object { + "indent": Object { + "end": null, + "firstLineChars": null, + "hangingChars": null, + "specialIndent": Object { + "type": "hanging", + "val": 420, + }, + "start": 1680, + "startChars": null, + }, + "runProperty": Object {}, + "tabs": Array [], + }, + "pstyle": null, + "runProperty": Object {}, + "start": 1, + "suffix": "tab", + "text": "(%5)", + }, + Object { + "format": "decimalEnclosedCircle", + "jc": "left", + "level": 5, + "levelRestart": null, + "paragraphProperty": Object { + "indent": Object { + "end": null, + "firstLineChars": null, + "hangingChars": null, + "specialIndent": Object { + "type": "hanging", + "val": 420, + }, + "start": 2100, + "startChars": null, + }, + "runProperty": Object {}, + "tabs": Array [], + }, + "pstyle": null, + "runProperty": Object {}, + "start": 1, + "suffix": "tab", + "text": "%6", + }, + Object { + "format": "decimal", + "jc": "left", + "level": 6, + "levelRestart": null, + "paragraphProperty": Object { + "indent": Object { + "end": null, + "firstLineChars": null, + "hangingChars": null, + "specialIndent": Object { + "type": "hanging", + "val": 420, + }, + "start": 2520, + "startChars": null, + }, + "runProperty": Object {}, + "tabs": Array [], + }, + "pstyle": null, + "runProperty": Object {}, + "start": 1, + "suffix": "tab", + "text": "%7.", + }, + Object { + "format": "aiueoFullWidth", + "jc": "left", + "level": 7, + "levelRestart": null, + "paragraphProperty": Object { + "indent": Object { + "end": null, + "firstLineChars": null, + "hangingChars": null, + "specialIndent": Object { + "type": "hanging", + "val": 420, + }, + "start": 2940, + "startChars": null, + }, + "runProperty": Object {}, + "tabs": Array [], + }, + "pstyle": null, + "runProperty": Object {}, + "start": 1, + "suffix": "tab", + "text": "(%8)", + }, + Object { + "format": "decimalEnclosedCircle", + "jc": "left", + "level": 8, + "levelRestart": null, + "paragraphProperty": Object { + "indent": Object { + "end": null, + "firstLineChars": null, + "hangingChars": null, + "specialIndent": Object { + "type": "hanging", + "val": 420, + }, + "start": 3360, + "startChars": null, + }, + "runProperty": Object {}, + "tabs": Array [], + }, + "pstyle": null, + "runProperty": Object {}, + "start": 1, + "suffix": "tab", + "text": "%9", + }, + ], + "numStyleLink": null, + "styleLink": null, + }, + Object { + "id": 103, + "levels": Array [ + Object { + "format": "lowerLetter", + "jc": "left", + "level": 0, + "levelRestart": null, + "paragraphProperty": Object { + "indent": Object { + "end": null, + "firstLineChars": null, + "hangingChars": null, + "specialIndent": Object { + "type": "hanging", + "val": 454, + }, + "start": 1588, + "startChars": null, + }, + "runProperty": Object {}, + "tabs": Array [], + }, + "pstyle": null, + "runProperty": Object { + "bold": false, + "boldCs": false, + "fonts": Object { + "ascii": "Times New Roman", + "cs": "Times New Roman", + "hiAnsi": "Times New Roman", + "hint": "default", + }, + "italic": false, + "italicCs": false, + "sz": 24, + "szCs": 24, + "underline": "none", + }, + "start": 1, + "suffix": "tab", + "text": "(%1)", + }, + Object { + "format": "aiueoFullWidth", + "jc": "left", + "level": 1, + "levelRestart": null, + "paragraphProperty": Object { + "indent": Object { + "end": null, + "firstLineChars": null, + "hangingChars": null, + "specialIndent": Object { + "type": "hanging", + "val": 420, + }, + "start": 840, + "startChars": null, + }, + "runProperty": Object {}, + "tabs": Array [], + }, + "pstyle": null, + "runProperty": Object {}, + "start": 1, + "suffix": "tab", + "text": "(%2)", + }, + Object { + "format": "decimalEnclosedCircle", + "jc": "left", + "level": 2, + "levelRestart": null, + "paragraphProperty": Object { + "indent": Object { + "end": null, + "firstLineChars": null, + "hangingChars": null, + "specialIndent": Object { + "type": "hanging", + "val": 420, + }, + "start": 1260, + "startChars": null, + }, + "runProperty": Object {}, + "tabs": Array [], + }, + "pstyle": null, + "runProperty": Object {}, + "start": 1, + "suffix": "tab", + "text": "%3", + }, + Object { + "format": "decimal", + "jc": "left", + "level": 3, + "levelRestart": null, + "paragraphProperty": Object { + "indent": Object { + "end": null, + "firstLineChars": null, + "hangingChars": null, + "specialIndent": Object { + "type": "hanging", + "val": 420, + }, + "start": 1680, + "startChars": null, + }, + "runProperty": Object {}, + "tabs": Array [], + }, + "pstyle": null, + "runProperty": Object {}, + "start": 1, + "suffix": "tab", + "text": "%4.", + }, + Object { + "format": "aiueoFullWidth", + "jc": "left", + "level": 4, + "levelRestart": null, + "paragraphProperty": Object { + "indent": Object { + "end": null, + "firstLineChars": null, + "hangingChars": null, + "specialIndent": Object { + "type": "hanging", + "val": 420, + }, + "start": 2100, + "startChars": null, + }, + "runProperty": Object {}, + "tabs": Array [], + }, + "pstyle": null, + "runProperty": Object {}, + "start": 1, + "suffix": "tab", + "text": "(%5)", + }, + Object { + "format": "decimalEnclosedCircle", + "jc": "left", + "level": 5, + "levelRestart": null, + "paragraphProperty": Object { + "indent": Object { + "end": null, + "firstLineChars": null, + "hangingChars": null, + "specialIndent": Object { + "type": "hanging", + "val": 420, + }, + "start": 2520, + "startChars": null, + }, + "runProperty": Object {}, + "tabs": Array [], + }, + "pstyle": null, + "runProperty": Object {}, + "start": 1, + "suffix": "tab", + "text": "%6", + }, + Object { + "format": "decimal", + "jc": "left", + "level": 6, + "levelRestart": null, + "paragraphProperty": Object { + "indent": Object { + "end": null, + "firstLineChars": null, + "hangingChars": null, + "specialIndent": Object { + "type": "hanging", + "val": 420, + }, + "start": 2940, + "startChars": null, + }, + "runProperty": Object {}, + "tabs": Array [], + }, + "pstyle": null, + "runProperty": Object {}, + "start": 1, + "suffix": "tab", + "text": "%7.", + }, + Object { + "format": "aiueoFullWidth", + "jc": "left", + "level": 7, + "levelRestart": null, + "paragraphProperty": Object { + "indent": Object { + "end": null, + "firstLineChars": null, + "hangingChars": null, + "specialIndent": Object { + "type": "hanging", + "val": 420, + }, + "start": 3360, + "startChars": null, + }, + "runProperty": Object {}, + "tabs": Array [], + }, + "pstyle": null, + "runProperty": Object {}, + "start": 1, + "suffix": "tab", + "text": "(%8)", + }, + Object { + "format": "decimalEnclosedCircle", + "jc": "left", + "level": 8, + "levelRestart": null, + "paragraphProperty": Object { + "indent": Object { + "end": null, + "firstLineChars": null, + "hangingChars": null, + "specialIndent": Object { + "type": "hanging", + "val": 420, + }, + "start": 3780, + "startChars": null, + }, + "runProperty": Object {}, + "tabs": Array [], + }, + "pstyle": null, + "runProperty": Object {}, + "start": 1, + "suffix": "tab", + "text": "%9", + }, + ], + "numStyleLink": null, + "styleLink": null, + }, + Object { + "id": 104, + "levels": Array [ + Object { + "format": "lowerLetter", + "jc": "left", + "level": 0, + "levelRestart": null, + "paragraphProperty": Object { + "indent": Object { + "end": null, + "firstLineChars": null, + "hangingChars": null, + "specialIndent": Object { + "type": "hanging", + "val": 454, + }, + "start": 1588, + "startChars": null, + }, + "runProperty": Object {}, + "tabs": Array [], + }, + "pstyle": null, + "runProperty": Object { + "fonts": Object { + "ascii": "Times New Roman", + "hiAnsi": "Times New Roman", + "hint": "default", + }, + "sz": 24, + "szCs": 24, + }, + "start": 1, + "suffix": "tab", + "text": "(%1)", + }, + Object { + "format": "aiueoFullWidth", + "jc": "left", + "level": 1, + "levelRestart": null, + "paragraphProperty": Object { + "indent": Object { + "end": null, + "firstLineChars": null, + "hangingChars": null, + "specialIndent": Object { + "type": "hanging", + "val": 420, + }, + "start": 840, + "startChars": null, + }, + "runProperty": Object {}, + "tabs": Array [], + }, + "pstyle": null, + "runProperty": Object {}, + "start": 1, + "suffix": "tab", + "text": "(%2)", + }, + Object { + "format": "decimalEnclosedCircle", + "jc": "left", + "level": 2, + "levelRestart": null, + "paragraphProperty": Object { + "indent": Object { + "end": null, + "firstLineChars": null, + "hangingChars": null, + "specialIndent": Object { + "type": "hanging", + "val": 420, + }, + "start": 1260, + "startChars": null, + }, + "runProperty": Object {}, + "tabs": Array [], + }, + "pstyle": null, + "runProperty": Object {}, + "start": 1, + "suffix": "tab", + "text": "%3", + }, + Object { + "format": "decimal", + "jc": "left", + "level": 3, + "levelRestart": null, + "paragraphProperty": Object { + "indent": Object { + "end": null, + "firstLineChars": null, + "hangingChars": null, + "specialIndent": Object { + "type": "hanging", + "val": 420, + }, + "start": 1680, + "startChars": null, + }, + "runProperty": Object {}, + "tabs": Array [], + }, + "pstyle": null, + "runProperty": Object {}, + "start": 1, + "suffix": "tab", + "text": "%4.", + }, + Object { + "format": "aiueoFullWidth", + "jc": "left", + "level": 4, + "levelRestart": null, + "paragraphProperty": Object { + "indent": Object { + "end": null, + "firstLineChars": null, + "hangingChars": null, + "specialIndent": Object { + "type": "hanging", + "val": 420, + }, + "start": 2100, + "startChars": null, + }, + "runProperty": Object {}, + "tabs": Array [], + }, + "pstyle": null, + "runProperty": Object {}, + "start": 1, + "suffix": "tab", + "text": "(%5)", + }, + Object { + "format": "decimalEnclosedCircle", + "jc": "left", + "level": 5, + "levelRestart": null, + "paragraphProperty": Object { + "indent": Object { + "end": null, + "firstLineChars": null, + "hangingChars": null, + "specialIndent": Object { + "type": "hanging", + "val": 420, + }, + "start": 2520, + "startChars": null, + }, + "runProperty": Object {}, + "tabs": Array [], + }, + "pstyle": null, + "runProperty": Object {}, + "start": 1, + "suffix": "tab", + "text": "%6", + }, + Object { + "format": "decimal", + "jc": "left", + "level": 6, + "levelRestart": null, + "paragraphProperty": Object { + "indent": Object { + "end": null, + "firstLineChars": null, + "hangingChars": null, + "specialIndent": Object { + "type": "hanging", + "val": 420, + }, + "start": 2940, + "startChars": null, + }, + "runProperty": Object {}, + "tabs": Array [], + }, + "pstyle": null, + "runProperty": Object {}, + "start": 1, + "suffix": "tab", + "text": "%7.", + }, + Object { + "format": "aiueoFullWidth", + "jc": "left", + "level": 7, + "levelRestart": null, + "paragraphProperty": Object { + "indent": Object { + "end": null, + "firstLineChars": null, + "hangingChars": null, + "specialIndent": Object { + "type": "hanging", + "val": 420, + }, + "start": 3360, + "startChars": null, + }, + "runProperty": Object {}, + "tabs": Array [], + }, + "pstyle": null, + "runProperty": Object {}, + "start": 1, + "suffix": "tab", + "text": "(%8)", + }, + Object { + "format": "decimalEnclosedCircle", + "jc": "left", + "level": 8, + "levelRestart": null, + "paragraphProperty": Object { + "indent": Object { + "end": null, + "firstLineChars": null, + "hangingChars": null, + "specialIndent": Object { + "type": "hanging", + "val": 420, + }, + "start": 3780, + "startChars": null, + }, + "runProperty": Object {}, + "tabs": Array [], + }, + "pstyle": null, + "runProperty": Object {}, + "start": 1, + "suffix": "tab", + "text": "%9", + }, + ], + "numStyleLink": null, + "styleLink": null, + }, + Object { + "id": 105, + "levels": Array [ + Object { + "format": "lowerLetter", + "jc": "left", + "level": 0, + "levelRestart": null, + "paragraphProperty": Object { + "indent": Object { + "end": null, + "firstLineChars": null, + "hangingChars": null, + "specialIndent": Object { + "type": "hanging", + "val": 420, + }, + "start": 420, + "startChars": null, + }, + "runProperty": Object {}, + "tabs": Array [], + }, + "pstyle": null, + "runProperty": Object { + "bold": false, + "boldCs": false, + "fonts": Object { + "ascii": "Times New Roman", + "cs": "Times New Roman", + "hiAnsi": "Times New Roman", + "hint": "default", + }, + "italic": false, + "italicCs": false, + "sz": 24, + "szCs": 24, + "underline": "none", + }, + "start": 1, + "suffix": "tab", + "text": "(%1)", + }, + Object { + "format": "aiueoFullWidth", + "jc": "left", + "level": 1, + "levelRestart": null, + "paragraphProperty": Object { + "indent": Object { + "end": null, + "firstLineChars": null, + "hangingChars": null, + "specialIndent": Object { + "type": "hanging", + "val": 420, + }, + "start": 840, + "startChars": null, + }, + "runProperty": Object {}, + "tabs": Array [], + }, + "pstyle": null, + "runProperty": Object {}, + "start": 1, + "suffix": "tab", + "text": "(%2)", + }, + Object { + "format": "decimalEnclosedCircle", + "jc": "left", + "level": 2, + "levelRestart": null, + "paragraphProperty": Object { + "indent": Object { + "end": null, + "firstLineChars": null, + "hangingChars": null, + "specialIndent": Object { + "type": "hanging", + "val": 420, + }, + "start": 1260, + "startChars": null, + }, + "runProperty": Object {}, + "tabs": Array [], + }, + "pstyle": null, + "runProperty": Object {}, + "start": 1, + "suffix": "tab", + "text": "%3", + }, + Object { + "format": "decimal", + "jc": "left", + "level": 3, + "levelRestart": null, + "paragraphProperty": Object { + "indent": Object { + "end": null, + "firstLineChars": null, + "hangingChars": null, + "specialIndent": Object { + "type": "hanging", + "val": 420, + }, + "start": 1680, + "startChars": null, + }, + "runProperty": Object {}, + "tabs": Array [], + }, + "pstyle": null, + "runProperty": Object {}, + "start": 1, + "suffix": "tab", + "text": "%4.", + }, + Object { + "format": "aiueoFullWidth", + "jc": "left", + "level": 4, + "levelRestart": null, + "paragraphProperty": Object { + "indent": Object { + "end": null, + "firstLineChars": null, + "hangingChars": null, + "specialIndent": Object { + "type": "hanging", + "val": 420, + }, + "start": 2100, + "startChars": null, + }, + "runProperty": Object {}, + "tabs": Array [], + }, + "pstyle": null, + "runProperty": Object {}, + "start": 1, + "suffix": "tab", + "text": "(%5)", + }, + Object { + "format": "decimalEnclosedCircle", + "jc": "left", + "level": 5, + "levelRestart": null, + "paragraphProperty": Object { + "indent": Object { + "end": null, + "firstLineChars": null, + "hangingChars": null, + "specialIndent": Object { + "type": "hanging", + "val": 420, + }, + "start": 2520, + "startChars": null, + }, + "runProperty": Object {}, + "tabs": Array [], + }, + "pstyle": null, + "runProperty": Object {}, + "start": 1, + "suffix": "tab", + "text": "%6", + }, + Object { + "format": "decimal", + "jc": "left", + "level": 6, + "levelRestart": null, + "paragraphProperty": Object { + "indent": Object { + "end": null, + "firstLineChars": null, + "hangingChars": null, + "specialIndent": Object { + "type": "hanging", + "val": 420, + }, + "start": 2940, + "startChars": null, + }, + "runProperty": Object {}, + "tabs": Array [], + }, + "pstyle": null, + "runProperty": Object {}, + "start": 1, + "suffix": "tab", + "text": "%7.", + }, + Object { + "format": "aiueoFullWidth", + "jc": "left", + "level": 7, + "levelRestart": null, + "paragraphProperty": Object { + "indent": Object { + "end": null, + "firstLineChars": null, + "hangingChars": null, + "specialIndent": Object { + "type": "hanging", + "val": 420, + }, + "start": 3360, + "startChars": null, + }, + "runProperty": Object {}, + "tabs": Array [], + }, + "pstyle": null, + "runProperty": Object {}, + "start": 1, + "suffix": "tab", + "text": "(%8)", + }, + Object { + "format": "decimalEnclosedCircle", + "jc": "left", + "level": 8, + "levelRestart": null, + "paragraphProperty": Object { + "indent": Object { + "end": null, + "firstLineChars": null, + "hangingChars": null, + "specialIndent": Object { + "type": "hanging", + "val": 420, + }, + "start": 3780, + "startChars": null, + }, + "runProperty": Object {}, + "tabs": Array [], + }, + "pstyle": null, + "runProperty": Object {}, + "start": 1, + "suffix": "tab", + "text": "%9", + }, + ], + "numStyleLink": null, + "styleLink": null, + }, + Object { + "id": 106, + "levels": Array [ + Object { + "format": "bullet", + "jc": "left", + "level": 0, + "levelRestart": null, + "paragraphProperty": Object { + "indent": Object { + "end": null, + "firstLineChars": null, + "hangingChars": null, + "specialIndent": Object { + "type": "hanging", + "val": 420, + }, + "start": 2541, + "startChars": null, + }, + "runProperty": Object {}, + "tabs": Array [], + }, + "pstyle": null, + "runProperty": Object { + "bold": false, + "boldCs": false, + "fonts": Object { + "ascii": "Wingdings", + "hiAnsi": "Wingdings", + "hint": "default", + }, + "italic": false, + "italicCs": false, + "sz": 24, + "szCs": 24, + }, + "start": 1, + "suffix": "tab", + "text": "", + }, + Object { + "format": "bullet", + "jc": "left", + "level": 1, + "levelRestart": null, + "paragraphProperty": Object { + "indent": Object { + "end": null, + "firstLineChars": null, + "hangingChars": null, + "specialIndent": Object { + "type": "hanging", + "val": 420, + }, + "start": 2961, + "startChars": null, + }, + "runProperty": Object {}, + "tabs": Array [], + }, + "pstyle": null, + "runProperty": Object { + "fonts": Object { + "ascii": "Wingdings", + "hiAnsi": "Wingdings", + "hint": "default", + }, + }, + "start": 1, + "suffix": "tab", + "text": "", + }, + Object { + "format": "bullet", + "jc": "left", + "level": 2, + "levelRestart": null, + "paragraphProperty": Object { + "indent": Object { + "end": null, + "firstLineChars": null, + "hangingChars": null, + "specialIndent": Object { + "type": "hanging", + "val": 420, + }, + "start": 3381, + "startChars": null, + }, + "runProperty": Object {}, + "tabs": Array [], + }, + "pstyle": null, + "runProperty": Object { + "fonts": Object { + "ascii": "Wingdings", + "hiAnsi": "Wingdings", + "hint": "default", + }, + }, + "start": 1, + "suffix": "tab", + "text": "", + }, + Object { + "format": "bullet", + "jc": "left", + "level": 3, + "levelRestart": null, + "paragraphProperty": Object { + "indent": Object { + "end": null, + "firstLineChars": null, + "hangingChars": null, + "specialIndent": Object { + "type": "hanging", + "val": 420, + }, + "start": 3801, + "startChars": null, + }, + "runProperty": Object {}, + "tabs": Array [], + }, + "pstyle": null, + "runProperty": Object { + "fonts": Object { + "ascii": "Wingdings", + "hiAnsi": "Wingdings", + "hint": "default", + }, + }, + "start": 1, + "suffix": "tab", + "text": "", + }, + Object { + "format": "bullet", + "jc": "left", + "level": 4, + "levelRestart": null, + "paragraphProperty": Object { + "indent": Object { + "end": null, + "firstLineChars": null, + "hangingChars": null, + "specialIndent": Object { + "type": "hanging", + "val": 420, + }, + "start": 4221, + "startChars": null, + }, + "runProperty": Object {}, + "tabs": Array [], + }, + "pstyle": null, + "runProperty": Object { + "fonts": Object { + "ascii": "Wingdings", + "hiAnsi": "Wingdings", + "hint": "default", + }, + }, + "start": 1, + "suffix": "tab", + "text": "", + }, + Object { + "format": "bullet", + "jc": "left", + "level": 5, + "levelRestart": null, + "paragraphProperty": Object { + "indent": Object { + "end": null, + "firstLineChars": null, + "hangingChars": null, + "specialIndent": Object { + "type": "hanging", + "val": 420, + }, + "start": 4641, + "startChars": null, + }, + "runProperty": Object {}, + "tabs": Array [], + }, + "pstyle": null, + "runProperty": Object { + "fonts": Object { + "ascii": "Wingdings", + "hiAnsi": "Wingdings", + "hint": "default", + }, + }, + "start": 1, + "suffix": "tab", + "text": "", + }, + Object { + "format": "bullet", + "jc": "left", + "level": 6, + "levelRestart": null, + "paragraphProperty": Object { + "indent": Object { + "end": null, + "firstLineChars": null, + "hangingChars": null, + "specialIndent": Object { + "type": "hanging", + "val": 420, + }, + "start": 5061, + "startChars": null, + }, + "runProperty": Object {}, + "tabs": Array [], + }, + "pstyle": null, + "runProperty": Object { + "fonts": Object { + "ascii": "Wingdings", + "hiAnsi": "Wingdings", + "hint": "default", + }, + }, + "start": 1, + "suffix": "tab", + "text": "", + }, + Object { + "format": "bullet", + "jc": "left", + "level": 7, + "levelRestart": null, + "paragraphProperty": Object { + "indent": Object { + "end": null, + "firstLineChars": null, + "hangingChars": null, + "specialIndent": Object { + "type": "hanging", + "val": 420, + }, + "start": 5481, + "startChars": null, + }, + "runProperty": Object {}, + "tabs": Array [], + }, + "pstyle": null, + "runProperty": Object { + "fonts": Object { + "ascii": "Wingdings", + "hiAnsi": "Wingdings", + "hint": "default", + }, + }, + "start": 1, + "suffix": "tab", + "text": "", + }, + Object { + "format": "bullet", + "jc": "left", + "level": 8, + "levelRestart": null, + "paragraphProperty": Object { + "indent": Object { + "end": null, + "firstLineChars": null, + "hangingChars": null, + "specialIndent": Object { + "type": "hanging", + "val": 420, + }, + "start": 5901, + "startChars": null, + }, + "runProperty": Object {}, + "tabs": Array [], + }, + "pstyle": null, + "runProperty": Object { + "fonts": Object { + "ascii": "Wingdings", + "hiAnsi": "Wingdings", + "hint": "default", + }, + }, + "start": 1, + "suffix": "tab", + "text": "", + }, + ], + "numStyleLink": null, + "styleLink": null, + }, + Object { + "id": 107, + "levels": Array [ + Object { + "format": "bullet", + "jc": "left", + "level": 0, + "levelRestart": null, + "paragraphProperty": Object { + "indent": Object { + "end": null, + "firstLineChars": null, + "hangingChars": null, + "specialIndent": Object { + "type": "hanging", + "val": 453, + }, + "start": 2041, + "startChars": null, + }, + "runProperty": Object {}, + "tabs": Array [], + }, + "pstyle": "Bullet2", + "runProperty": Object { + "fonts": Object { + "ascii": "Wingdings", + "hiAnsi": "Wingdings", + "hint": "default", + }, + "sz": 21, + "szCs": 21, + }, + "start": 1, + "suffix": "tab", + "text": "", + }, + Object { + "format": "bullet", + "jc": "left", + "level": 1, + "levelRestart": null, + "paragraphProperty": Object { + "indent": Object { + "end": null, + "firstLineChars": null, + "hangingChars": null, + "specialIndent": Object { + "type": "hanging", + "val": 420, + }, + "start": 840, + "startChars": null, + }, + "runProperty": Object {}, + "tabs": Array [], + }, + "pstyle": null, + "runProperty": Object { + "fonts": Object { + "ascii": "Wingdings", + "hiAnsi": "Wingdings", + "hint": "default", + }, + }, + "start": 1, + "suffix": "tab", + "text": "", + }, + Object { + "format": "bullet", + "jc": "left", + "level": 2, + "levelRestart": null, + "paragraphProperty": Object { + "indent": Object { + "end": null, + "firstLineChars": null, + "hangingChars": null, + "specialIndent": Object { + "type": "hanging", + "val": 420, + }, + "start": 1260, + "startChars": null, + }, + "runProperty": Object {}, + "tabs": Array [], + }, + "pstyle": null, + "runProperty": Object { + "fonts": Object { + "ascii": "Wingdings", + "hiAnsi": "Wingdings", + "hint": "default", + }, + }, + "start": 1, + "suffix": "tab", + "text": "", + }, + Object { + "format": "bullet", + "jc": "left", + "level": 3, + "levelRestart": null, + "paragraphProperty": Object { + "indent": Object { + "end": null, + "firstLineChars": null, + "hangingChars": null, + "specialIndent": Object { + "type": "hanging", + "val": 420, + }, + "start": 1680, + "startChars": null, + }, + "runProperty": Object {}, + "tabs": Array [], + }, + "pstyle": null, + "runProperty": Object { + "fonts": Object { + "ascii": "Wingdings", + "hiAnsi": "Wingdings", + "hint": "default", + }, + }, + "start": 1, + "suffix": "tab", + "text": "", + }, + Object { + "format": "bullet", + "jc": "left", + "level": 4, + "levelRestart": null, + "paragraphProperty": Object { + "indent": Object { + "end": null, + "firstLineChars": null, + "hangingChars": null, + "specialIndent": Object { + "type": "hanging", + "val": 420, + }, + "start": 2100, + "startChars": null, + }, + "runProperty": Object {}, + "tabs": Array [], + }, + "pstyle": null, + "runProperty": Object { + "fonts": Object { + "ascii": "Wingdings", + "hiAnsi": "Wingdings", + "hint": "default", + }, + }, + "start": 1, + "suffix": "tab", + "text": "", + }, + Object { + "format": "bullet", + "jc": "left", + "level": 5, + "levelRestart": null, + "paragraphProperty": Object { + "indent": Object { + "end": null, + "firstLineChars": null, + "hangingChars": null, + "specialIndent": Object { + "type": "hanging", + "val": 420, + }, + "start": 2520, + "startChars": null, + }, + "runProperty": Object {}, + "tabs": Array [], + }, + "pstyle": null, + "runProperty": Object { + "fonts": Object { + "ascii": "Wingdings", + "hiAnsi": "Wingdings", + "hint": "default", + }, + }, + "start": 1, + "suffix": "tab", + "text": "", + }, + Object { + "format": "bullet", + "jc": "left", + "level": 6, + "levelRestart": null, + "paragraphProperty": Object { + "indent": Object { + "end": null, + "firstLineChars": null, + "hangingChars": null, + "specialIndent": Object { + "type": "hanging", + "val": 420, + }, + "start": 2940, + "startChars": null, + }, + "runProperty": Object {}, + "tabs": Array [], + }, + "pstyle": null, + "runProperty": Object { + "fonts": Object { + "ascii": "Wingdings", + "hiAnsi": "Wingdings", + "hint": "default", + }, + }, + "start": 1, + "suffix": "tab", + "text": "", + }, + Object { + "format": "bullet", + "jc": "left", + "level": 7, + "levelRestart": null, + "paragraphProperty": Object { + "indent": Object { + "end": null, + "firstLineChars": null, + "hangingChars": null, + "specialIndent": Object { + "type": "hanging", + "val": 420, + }, + "start": 3360, + "startChars": null, + }, + "runProperty": Object {}, + "tabs": Array [], + }, + "pstyle": null, + "runProperty": Object { + "fonts": Object { + "ascii": "Wingdings", + "hiAnsi": "Wingdings", + "hint": "default", + }, + }, + "start": 1, + "suffix": "tab", + "text": "", + }, + Object { + "format": "bullet", + "jc": "left", + "level": 8, + "levelRestart": null, + "paragraphProperty": Object { + "indent": Object { + "end": null, + "firstLineChars": null, + "hangingChars": null, + "specialIndent": Object { + "type": "hanging", + "val": 420, + }, + "start": 3780, + "startChars": null, + }, + "runProperty": Object {}, + "tabs": Array [], + }, + "pstyle": null, + "runProperty": Object { + "fonts": Object { + "ascii": "Wingdings", + "hiAnsi": "Wingdings", + "hint": "default", + }, + }, + "start": 1, + "suffix": "tab", + "text": "", + }, + ], + "numStyleLink": null, + "styleLink": null, + }, + Object { + "id": 108, + "levels": Array [ + Object { + "format": "bullet", + "jc": "left", + "level": 0, + "levelRestart": null, + "paragraphProperty": Object { + "indent": Object { + "end": null, + "firstLineChars": null, + "hangingChars": null, + "specialIndent": Object { + "type": "hanging", + "val": 420, + }, + "start": 2126, + "startChars": null, + }, + "runProperty": Object {}, + "tabs": Array [], + }, + "pstyle": null, + "runProperty": Object { + "fonts": Object { + "ascii": "Wingdings", + "hiAnsi": "Wingdings", + "hint": "default", + }, + }, + "start": 1, + "suffix": "tab", + "text": "", + }, + Object { + "format": "bullet", + "jc": "left", + "level": 1, + "levelRestart": null, + "paragraphProperty": Object { + "indent": Object { + "end": null, + "firstLineChars": null, + "hangingChars": null, + "specialIndent": Object { + "type": "hanging", + "val": 420, + }, + "start": 2546, + "startChars": null, + }, + "runProperty": Object {}, + "tabs": Array [], + }, + "pstyle": null, + "runProperty": Object { + "fonts": Object { + "ascii": "Wingdings", + "hiAnsi": "Wingdings", + "hint": "default", + }, + }, + "start": 1, + "suffix": "tab", + "text": "", + }, + Object { + "format": "bullet", + "jc": "left", + "level": 2, + "levelRestart": null, + "paragraphProperty": Object { + "indent": Object { + "end": null, + "firstLineChars": null, + "hangingChars": null, + "specialIndent": Object { + "type": "hanging", + "val": 420, + }, + "start": 2966, + "startChars": null, + }, + "runProperty": Object {}, + "tabs": Array [], + }, + "pstyle": null, + "runProperty": Object { + "fonts": Object { + "ascii": "Wingdings", + "hiAnsi": "Wingdings", + "hint": "default", + }, + }, + "start": 1, + "suffix": "tab", + "text": "", + }, + Object { + "format": "bullet", + "jc": "left", + "level": 3, + "levelRestart": null, + "paragraphProperty": Object { + "indent": Object { + "end": null, + "firstLineChars": null, + "hangingChars": null, + "specialIndent": Object { + "type": "hanging", + "val": 420, + }, + "start": 3386, + "startChars": null, + }, + "runProperty": Object {}, + "tabs": Array [], + }, + "pstyle": null, + "runProperty": Object { + "fonts": Object { + "ascii": "Wingdings", + "hiAnsi": "Wingdings", + "hint": "default", + }, + }, + "start": 1, + "suffix": "tab", + "text": "", + }, + Object { + "format": "bullet", + "jc": "left", + "level": 4, + "levelRestart": null, + "paragraphProperty": Object { + "indent": Object { + "end": null, + "firstLineChars": null, + "hangingChars": null, + "specialIndent": Object { + "type": "hanging", + "val": 420, + }, + "start": 3806, + "startChars": null, + }, + "runProperty": Object {}, + "tabs": Array [], + }, + "pstyle": null, + "runProperty": Object { + "fonts": Object { + "ascii": "Wingdings", + "hiAnsi": "Wingdings", + "hint": "default", + }, + }, + "start": 1, + "suffix": "tab", + "text": "", + }, + Object { + "format": "bullet", + "jc": "left", + "level": 5, + "levelRestart": null, + "paragraphProperty": Object { + "indent": Object { + "end": null, + "firstLineChars": null, + "hangingChars": null, + "specialIndent": Object { + "type": "hanging", + "val": 420, + }, + "start": 4226, + "startChars": null, + }, + "runProperty": Object {}, + "tabs": Array [], + }, + "pstyle": null, + "runProperty": Object { + "fonts": Object { + "ascii": "Wingdings", + "hiAnsi": "Wingdings", + "hint": "default", + }, + }, + "start": 1, + "suffix": "tab", + "text": "", + }, + Object { + "format": "bullet", + "jc": "left", + "level": 6, + "levelRestart": null, + "paragraphProperty": Object { + "indent": Object { + "end": null, + "firstLineChars": null, + "hangingChars": null, + "specialIndent": Object { + "type": "hanging", + "val": 420, + }, + "start": 4646, + "startChars": null, + }, + "runProperty": Object {}, + "tabs": Array [], + }, + "pstyle": null, + "runProperty": Object { + "fonts": Object { + "ascii": "Wingdings", + "hiAnsi": "Wingdings", + "hint": "default", + }, + }, + "start": 1, + "suffix": "tab", + "text": "", + }, + Object { + "format": "bullet", + "jc": "left", + "level": 7, + "levelRestart": null, + "paragraphProperty": Object { + "indent": Object { + "end": null, + "firstLineChars": null, + "hangingChars": null, + "specialIndent": Object { + "type": "hanging", + "val": 420, + }, + "start": 5066, + "startChars": null, + }, + "runProperty": Object {}, + "tabs": Array [], + }, + "pstyle": null, + "runProperty": Object { + "fonts": Object { + "ascii": "Wingdings", + "hiAnsi": "Wingdings", + "hint": "default", + }, + }, + "start": 1, + "suffix": "tab", + "text": "", + }, + Object { + "format": "bullet", + "jc": "left", + "level": 8, + "levelRestart": null, + "paragraphProperty": Object { + "indent": Object { + "end": null, + "firstLineChars": null, + "hangingChars": null, + "specialIndent": Object { + "type": "hanging", + "val": 420, + }, + "start": 5486, + "startChars": null, + }, + "runProperty": Object {}, + "tabs": Array [], + }, + "pstyle": null, + "runProperty": Object { + "fonts": Object { + "ascii": "Wingdings", + "hiAnsi": "Wingdings", + "hint": "default", + }, + }, + "start": 1, + "suffix": "tab", + "text": "", + }, + ], + "numStyleLink": null, + "styleLink": null, + }, + Object { + "id": 109, + "levels": Array [ + Object { + "format": "upperLetter", + "jc": "left", + "level": 0, + "levelRestart": null, + "paragraphProperty": Object { + "indent": Object { + "end": null, + "firstLineChars": null, + "hangingChars": null, + "specialIndent": Object { + "type": "hanging", + "val": 270, + }, + "start": 724, + "startChars": null, + }, + "runProperty": Object {}, + "tabs": Array [], + }, + "pstyle": null, + "runProperty": Object { + "fonts": Object { + "hint": "eastAsia", + }, + }, + "start": 1, + "suffix": "tab", + "text": "%1", + }, + Object { + "format": "aiueoFullWidth", + "jc": "left", + "level": 1, + "levelRestart": null, + "paragraphProperty": Object { + "indent": Object { + "end": null, + "firstLineChars": null, + "hangingChars": null, + "specialIndent": Object { + "type": "hanging", + "val": 420, + }, + "start": 1114, + "startChars": null, + }, + "runProperty": Object {}, + "tabs": Array [], + }, + "pstyle": null, + "runProperty": Object {}, + "start": 1, + "suffix": "tab", + "text": "(%2)", + }, + Object { + "format": "decimalEnclosedCircle", + "jc": "left", + "level": 2, + "levelRestart": null, + "paragraphProperty": Object { + "indent": Object { + "end": null, + "firstLineChars": null, + "hangingChars": null, + "specialIndent": Object { + "type": "hanging", + "val": 420, + }, + "start": 1534, + "startChars": null, + }, + "runProperty": Object {}, + "tabs": Array [], + }, + "pstyle": null, + "runProperty": Object {}, + "start": 1, + "suffix": "tab", + "text": "%3", + }, + Object { + "format": "decimal", + "jc": "left", + "level": 3, + "levelRestart": null, + "paragraphProperty": Object { + "indent": Object { + "end": null, + "firstLineChars": null, + "hangingChars": null, + "specialIndent": Object { + "type": "hanging", + "val": 420, + }, + "start": 1954, + "startChars": null, + }, + "runProperty": Object {}, + "tabs": Array [], + }, + "pstyle": null, + "runProperty": Object {}, + "start": 1, + "suffix": "tab", + "text": "%4.", + }, + Object { + "format": "aiueoFullWidth", + "jc": "left", + "level": 4, + "levelRestart": null, + "paragraphProperty": Object { + "indent": Object { + "end": null, + "firstLineChars": null, + "hangingChars": null, + "specialIndent": Object { + "type": "hanging", + "val": 420, + }, + "start": 2374, + "startChars": null, + }, + "runProperty": Object {}, + "tabs": Array [], + }, + "pstyle": null, + "runProperty": Object {}, + "start": 1, + "suffix": "tab", + "text": "(%5)", + }, + Object { + "format": "decimalEnclosedCircle", + "jc": "left", + "level": 5, + "levelRestart": null, + "paragraphProperty": Object { + "indent": Object { + "end": null, + "firstLineChars": null, + "hangingChars": null, + "specialIndent": Object { + "type": "hanging", + "val": 420, + }, + "start": 2794, + "startChars": null, + }, + "runProperty": Object {}, + "tabs": Array [], + }, + "pstyle": null, + "runProperty": Object {}, + "start": 1, + "suffix": "tab", + "text": "%6", + }, + Object { + "format": "decimal", + "jc": "left", + "level": 6, + "levelRestart": null, + "paragraphProperty": Object { + "indent": Object { + "end": null, + "firstLineChars": null, + "hangingChars": null, + "specialIndent": Object { + "type": "hanging", + "val": 420, + }, + "start": 3214, + "startChars": null, + }, + "runProperty": Object {}, + "tabs": Array [], + }, + "pstyle": null, + "runProperty": Object {}, + "start": 1, + "suffix": "tab", + "text": "%7.", + }, + Object { + "format": "aiueoFullWidth", + "jc": "left", + "level": 7, + "levelRestart": null, + "paragraphProperty": Object { + "indent": Object { + "end": null, + "firstLineChars": null, + "hangingChars": null, + "specialIndent": Object { + "type": "hanging", + "val": 420, + }, + "start": 3634, + "startChars": null, + }, + "runProperty": Object {}, + "tabs": Array [], + }, + "pstyle": null, + "runProperty": Object {}, + "start": 1, + "suffix": "tab", + "text": "(%8)", + }, + Object { + "format": "decimalEnclosedCircle", + "jc": "left", + "level": 8, + "levelRestart": null, + "paragraphProperty": Object { + "indent": Object { + "end": null, + "firstLineChars": null, + "hangingChars": null, + "specialIndent": Object { + "type": "hanging", + "val": 420, + }, + "start": 4054, + "startChars": null, + }, + "runProperty": Object {}, + "tabs": Array [], + }, + "pstyle": null, + "runProperty": Object {}, + "start": 1, + "suffix": "tab", + "text": "%9", + }, + ], + "numStyleLink": null, + "styleLink": null, + }, + Object { + "id": 110, + "levels": Array [ + Object { + "format": "decimal", + "jc": "left", + "level": 0, + "levelRestart": null, + "paragraphProperty": Object { + "indent": Object { + "end": null, + "firstLineChars": null, + "hangingChars": null, + "specialIndent": Object { + "type": "hanging", + "val": 360, + }, + "start": 540, + "startChars": null, + }, + "runProperty": Object {}, + "tabs": Array [], + }, + "pstyle": null, + "runProperty": Object { + "fonts": Object { + "hint": "eastAsia", + }, + }, + "start": 1, + "suffix": "tab", + "text": "%1.", + }, + Object { + "format": "aiueoFullWidth", + "jc": "left", + "level": 1, + "levelRestart": null, + "paragraphProperty": Object { + "indent": Object { + "end": null, + "firstLineChars": null, + "hangingChars": null, + "specialIndent": Object { + "type": "hanging", + "val": 420, + }, + "start": 1020, + "startChars": null, + }, + "runProperty": Object {}, + "tabs": Array [], + }, + "pstyle": null, + "runProperty": Object {}, + "start": 1, + "suffix": "tab", + "text": "(%2)", + }, + Object { + "format": "decimalEnclosedCircle", + "jc": "left", + "level": 2, + "levelRestart": null, + "paragraphProperty": Object { + "indent": Object { + "end": null, + "firstLineChars": null, + "hangingChars": null, + "specialIndent": Object { + "type": "hanging", + "val": 420, + }, + "start": 1440, + "startChars": null, + }, + "runProperty": Object {}, + "tabs": Array [], + }, + "pstyle": null, + "runProperty": Object {}, + "start": 1, + "suffix": "tab", + "text": "%3", + }, + Object { + "format": "decimal", + "jc": "left", + "level": 3, + "levelRestart": null, + "paragraphProperty": Object { + "indent": Object { + "end": null, + "firstLineChars": null, + "hangingChars": null, + "specialIndent": Object { + "type": "hanging", + "val": 420, + }, + "start": 1860, + "startChars": null, + }, + "runProperty": Object {}, + "tabs": Array [], + }, + "pstyle": null, + "runProperty": Object {}, + "start": 1, + "suffix": "tab", + "text": "%4.", + }, + Object { + "format": "aiueoFullWidth", + "jc": "left", + "level": 4, + "levelRestart": null, + "paragraphProperty": Object { + "indent": Object { + "end": null, + "firstLineChars": null, + "hangingChars": null, + "specialIndent": Object { + "type": "hanging", + "val": 420, + }, + "start": 2280, + "startChars": null, + }, + "runProperty": Object {}, + "tabs": Array [], + }, + "pstyle": null, + "runProperty": Object {}, + "start": 1, + "suffix": "tab", + "text": "(%5)", + }, + Object { + "format": "decimalEnclosedCircle", + "jc": "left", + "level": 5, + "levelRestart": null, + "paragraphProperty": Object { + "indent": Object { + "end": null, + "firstLineChars": null, + "hangingChars": null, + "specialIndent": Object { + "type": "hanging", + "val": 420, + }, + "start": 2700, + "startChars": null, + }, + "runProperty": Object {}, + "tabs": Array [], + }, + "pstyle": null, + "runProperty": Object {}, + "start": 1, + "suffix": "tab", + "text": "%6", + }, + Object { + "format": "decimal", + "jc": "left", + "level": 6, + "levelRestart": null, + "paragraphProperty": Object { + "indent": Object { + "end": null, + "firstLineChars": null, + "hangingChars": null, + "specialIndent": Object { + "type": "hanging", + "val": 420, + }, + "start": 3120, + "startChars": null, + }, + "runProperty": Object {}, + "tabs": Array [], + }, + "pstyle": null, + "runProperty": Object {}, + "start": 1, + "suffix": "tab", + "text": "%7.", + }, + Object { + "format": "aiueoFullWidth", + "jc": "left", + "level": 7, + "levelRestart": null, + "paragraphProperty": Object { + "indent": Object { + "end": null, + "firstLineChars": null, + "hangingChars": null, + "specialIndent": Object { + "type": "hanging", + "val": 420, + }, + "start": 3540, + "startChars": null, + }, + "runProperty": Object {}, + "tabs": Array [], + }, + "pstyle": null, + "runProperty": Object {}, + "start": 1, + "suffix": "tab", + "text": "(%8)", + }, + Object { + "format": "decimalEnclosedCircle", + "jc": "left", + "level": 8, + "levelRestart": null, + "paragraphProperty": Object { + "indent": Object { + "end": null, + "firstLineChars": null, + "hangingChars": null, + "specialIndent": Object { + "type": "hanging", + "val": 420, + }, + "start": 3960, + "startChars": null, + }, + "runProperty": Object {}, + "tabs": Array [], + }, + "pstyle": null, + "runProperty": Object {}, + "start": 1, + "suffix": "tab", + "text": "%9", + }, + ], + "numStyleLink": null, + "styleLink": null, + }, + Object { + "id": 111, + "levels": Array [ + Object { + "format": "lowerLetter", + "jc": "left", + "level": 0, + "levelRestart": null, + "paragraphProperty": Object { + "indent": Object { + "end": null, + "firstLineChars": null, + "hangingChars": null, + "specialIndent": Object { + "type": "hanging", + "val": 454, + }, + "start": 1588, + "startChars": null, + }, + "runProperty": Object {}, + "tabs": Array [], + }, + "pstyle": null, + "runProperty": Object { + "bold": false, + "boldCs": false, + "fonts": Object { + "ascii": "Times New Roman", + "cs": "Times New Roman", + "hiAnsi": "Times New Roman", + "hint": "default", + }, + "italic": false, + "italicCs": false, + "sz": 24, + "szCs": 24, + "underline": "none", + }, + "start": 1, + "suffix": "tab", + "text": "(%1)", + }, + Object { + "format": "aiueoFullWidth", + "jc": "left", + "level": 1, + "levelRestart": null, + "paragraphProperty": Object { + "indent": Object { + "end": null, + "firstLineChars": null, + "hangingChars": null, + "specialIndent": Object { + "type": "hanging", + "val": 420, + }, + "start": 840, + "startChars": null, + }, + "runProperty": Object {}, + "tabs": Array [], + }, + "pstyle": null, + "runProperty": Object {}, + "start": 1, + "suffix": "tab", + "text": "(%2)", + }, + Object { + "format": "decimalEnclosedCircle", + "jc": "left", + "level": 2, + "levelRestart": null, + "paragraphProperty": Object { + "indent": Object { + "end": null, + "firstLineChars": null, + "hangingChars": null, + "specialIndent": Object { + "type": "hanging", + "val": 420, + }, + "start": 1260, + "startChars": null, + }, + "runProperty": Object {}, + "tabs": Array [], + }, + "pstyle": null, + "runProperty": Object {}, + "start": 1, + "suffix": "tab", + "text": "%3", + }, + Object { + "format": "decimal", + "jc": "left", + "level": 3, + "levelRestart": null, + "paragraphProperty": Object { + "indent": Object { + "end": null, + "firstLineChars": null, + "hangingChars": null, + "specialIndent": Object { + "type": "hanging", + "val": 420, + }, + "start": 1680, + "startChars": null, + }, + "runProperty": Object {}, + "tabs": Array [], + }, + "pstyle": null, + "runProperty": Object {}, + "start": 1, + "suffix": "tab", + "text": "%4.", + }, + Object { + "format": "aiueoFullWidth", + "jc": "left", + "level": 4, + "levelRestart": null, + "paragraphProperty": Object { + "indent": Object { + "end": null, + "firstLineChars": null, + "hangingChars": null, + "specialIndent": Object { + "type": "hanging", + "val": 420, + }, + "start": 2100, + "startChars": null, + }, + "runProperty": Object {}, + "tabs": Array [], + }, + "pstyle": null, + "runProperty": Object {}, + "start": 1, + "suffix": "tab", + "text": "(%5)", + }, + Object { + "format": "decimalEnclosedCircle", + "jc": "left", + "level": 5, + "levelRestart": null, + "paragraphProperty": Object { + "indent": Object { + "end": null, + "firstLineChars": null, + "hangingChars": null, + "specialIndent": Object { + "type": "hanging", + "val": 420, + }, + "start": 2520, + "startChars": null, + }, + "runProperty": Object {}, + "tabs": Array [], + }, + "pstyle": null, + "runProperty": Object {}, + "start": 1, + "suffix": "tab", + "text": "%6", + }, + Object { + "format": "decimal", + "jc": "left", + "level": 6, + "levelRestart": null, + "paragraphProperty": Object { + "indent": Object { + "end": null, + "firstLineChars": null, + "hangingChars": null, + "specialIndent": Object { + "type": "hanging", + "val": 420, + }, + "start": 2940, + "startChars": null, + }, + "runProperty": Object {}, + "tabs": Array [], + }, + "pstyle": null, + "runProperty": Object {}, + "start": 1, + "suffix": "tab", + "text": "%7.", + }, + Object { + "format": "aiueoFullWidth", + "jc": "left", + "level": 7, + "levelRestart": null, + "paragraphProperty": Object { + "indent": Object { + "end": null, + "firstLineChars": null, + "hangingChars": null, + "specialIndent": Object { + "type": "hanging", + "val": 420, + }, + "start": 3360, + "startChars": null, + }, + "runProperty": Object {}, + "tabs": Array [], + }, + "pstyle": null, + "runProperty": Object {}, + "start": 1, + "suffix": "tab", + "text": "(%8)", + }, + Object { + "format": "decimalEnclosedCircle", + "jc": "left", + "level": 8, + "levelRestart": null, + "paragraphProperty": Object { + "indent": Object { + "end": null, + "firstLineChars": null, + "hangingChars": null, + "specialIndent": Object { + "type": "hanging", + "val": 420, + }, + "start": 3780, + "startChars": null, + }, + "runProperty": Object {}, + "tabs": Array [], + }, + "pstyle": null, + "runProperty": Object {}, + "start": 1, + "suffix": "tab", + "text": "%9", + }, + ], + "numStyleLink": null, + "styleLink": null, + }, + Object { + "id": 112, + "levels": Array [ + Object { + "format": "lowerLetter", + "jc": "left", + "level": 0, + "levelRestart": null, + "paragraphProperty": Object { + "indent": Object { + "end": null, + "firstLineChars": null, + "hangingChars": null, + "specialIndent": Object { + "type": "hanging", + "val": 454, + }, + "start": 1588, + "startChars": null, + }, + "runProperty": Object {}, + "tabs": Array [], + }, + "pstyle": null, + "runProperty": Object { + "bold": false, + "boldCs": false, + "fonts": Object { + "ascii": "Times New Roman", + "cs": "Times New Roman", + "hiAnsi": "Times New Roman", + "hint": "default", + }, + "italic": false, + "italicCs": false, + "sz": 24, + "szCs": 24, + "underline": "none", + }, + "start": 1, + "suffix": "tab", + "text": "(%1)", + }, + Object { + "format": "aiueoFullWidth", + "jc": "left", + "level": 1, + "levelRestart": null, + "paragraphProperty": Object { + "indent": Object { + "end": null, + "firstLineChars": null, + "hangingChars": null, + "specialIndent": Object { + "type": "hanging", + "val": 420, + }, + "start": 840, + "startChars": null, + }, + "runProperty": Object {}, + "tabs": Array [], + }, + "pstyle": null, + "runProperty": Object {}, + "start": 1, + "suffix": "tab", + "text": "(%2)", + }, + Object { + "format": "decimalEnclosedCircle", + "jc": "left", + "level": 2, + "levelRestart": null, + "paragraphProperty": Object { + "indent": Object { + "end": null, + "firstLineChars": null, + "hangingChars": null, + "specialIndent": Object { + "type": "hanging", + "val": 420, + }, + "start": 1260, + "startChars": null, + }, + "runProperty": Object {}, + "tabs": Array [], + }, + "pstyle": null, + "runProperty": Object {}, + "start": 1, + "suffix": "tab", + "text": "%3", + }, + Object { + "format": "decimal", + "jc": "left", + "level": 3, + "levelRestart": null, + "paragraphProperty": Object { + "indent": Object { + "end": null, + "firstLineChars": null, + "hangingChars": null, + "specialIndent": Object { + "type": "hanging", + "val": 420, + }, + "start": 1680, + "startChars": null, + }, + "runProperty": Object {}, + "tabs": Array [], + }, + "pstyle": null, + "runProperty": Object {}, + "start": 1, + "suffix": "tab", + "text": "%4.", + }, + Object { + "format": "aiueoFullWidth", + "jc": "left", + "level": 4, + "levelRestart": null, + "paragraphProperty": Object { + "indent": Object { + "end": null, + "firstLineChars": null, + "hangingChars": null, + "specialIndent": Object { + "type": "hanging", + "val": 420, + }, + "start": 2100, + "startChars": null, + }, + "runProperty": Object {}, + "tabs": Array [], + }, + "pstyle": null, + "runProperty": Object {}, + "start": 1, + "suffix": "tab", + "text": "(%5)", + }, + Object { + "format": "decimalEnclosedCircle", + "jc": "left", + "level": 5, + "levelRestart": null, + "paragraphProperty": Object { + "indent": Object { + "end": null, + "firstLineChars": null, + "hangingChars": null, + "specialIndent": Object { + "type": "hanging", + "val": 420, + }, + "start": 2520, + "startChars": null, + }, + "runProperty": Object {}, + "tabs": Array [], + }, + "pstyle": null, + "runProperty": Object {}, + "start": 1, + "suffix": "tab", + "text": "%6", + }, + Object { + "format": "decimal", + "jc": "left", + "level": 6, + "levelRestart": null, + "paragraphProperty": Object { + "indent": Object { + "end": null, + "firstLineChars": null, + "hangingChars": null, + "specialIndent": Object { + "type": "hanging", + "val": 420, + }, + "start": 2940, + "startChars": null, + }, + "runProperty": Object {}, + "tabs": Array [], + }, + "pstyle": null, + "runProperty": Object {}, + "start": 1, + "suffix": "tab", + "text": "%7.", + }, + Object { + "format": "aiueoFullWidth", + "jc": "left", + "level": 7, + "levelRestart": null, + "paragraphProperty": Object { + "indent": Object { + "end": null, + "firstLineChars": null, + "hangingChars": null, + "specialIndent": Object { + "type": "hanging", + "val": 420, + }, + "start": 3360, + "startChars": null, + }, + "runProperty": Object {}, + "tabs": Array [], + }, + "pstyle": null, + "runProperty": Object {}, + "start": 1, + "suffix": "tab", + "text": "(%8)", + }, + Object { + "format": "decimalEnclosedCircle", + "jc": "left", + "level": 8, + "levelRestart": null, + "paragraphProperty": Object { + "indent": Object { + "end": null, + "firstLineChars": null, + "hangingChars": null, + "specialIndent": Object { + "type": "hanging", + "val": 420, + }, + "start": 3780, + "startChars": null, + }, + "runProperty": Object {}, + "tabs": Array [], + }, + "pstyle": null, + "runProperty": Object {}, + "start": 1, + "suffix": "tab", + "text": "%9", + }, + ], + "numStyleLink": null, + "styleLink": null, + }, + Object { + "id": 113, + "levels": Array [ + Object { + "format": "lowerLetter", + "jc": "left", + "level": 0, + "levelRestart": null, + "paragraphProperty": Object { + "indent": Object { + "end": null, + "firstLineChars": null, + "hangingChars": null, + "specialIndent": Object { + "type": "hanging", + "val": 454, + }, + "start": 1588, + "startChars": null, + }, + "runProperty": Object {}, + "tabs": Array [], + }, + "pstyle": null, + "runProperty": Object { + "bold": false, + "boldCs": false, + "fonts": Object { + "ascii": "Times New Roman", + "hiAnsi": "Times New Roman", + "hint": "default", + }, + "italic": false, + "italicCs": false, + "sz": 24, + "szCs": 24, + "underline": "none", + }, + "start": 4, + "suffix": "tab", + "text": "(%1)", + }, + Object { + "format": "aiueoFullWidth", + "jc": "left", + "level": 1, + "levelRestart": null, + "paragraphProperty": Object { + "indent": Object { + "end": null, + "firstLineChars": null, + "hangingChars": null, + "specialIndent": Object { + "type": "hanging", + "val": 420, + }, + "start": 840, + "startChars": null, + }, + "runProperty": Object {}, + "tabs": Array [], + }, + "pstyle": null, + "runProperty": Object {}, + "start": 1, + "suffix": "tab", + "text": "(%2)", + }, + Object { + "format": "decimalEnclosedCircle", + "jc": "left", + "level": 2, + "levelRestart": null, + "paragraphProperty": Object { + "indent": Object { + "end": null, + "firstLineChars": null, + "hangingChars": null, + "specialIndent": Object { + "type": "hanging", + "val": 420, + }, + "start": 1260, + "startChars": null, + }, + "runProperty": Object {}, + "tabs": Array [], + }, + "pstyle": null, + "runProperty": Object {}, + "start": 1, + "suffix": "tab", + "text": "%3", + }, + Object { + "format": "decimal", + "jc": "left", + "level": 3, + "levelRestart": null, + "paragraphProperty": Object { + "indent": Object { + "end": null, + "firstLineChars": null, + "hangingChars": null, + "specialIndent": Object { + "type": "hanging", + "val": 420, + }, + "start": 1680, + "startChars": null, + }, + "runProperty": Object {}, + "tabs": Array [], + }, + "pstyle": null, + "runProperty": Object {}, + "start": 1, + "suffix": "tab", + "text": "%4.", + }, + Object { + "format": "aiueoFullWidth", + "jc": "left", + "level": 4, + "levelRestart": null, + "paragraphProperty": Object { + "indent": Object { + "end": null, + "firstLineChars": null, + "hangingChars": null, + "specialIndent": Object { + "type": "hanging", + "val": 420, + }, + "start": 2100, + "startChars": null, + }, + "runProperty": Object {}, + "tabs": Array [], + }, + "pstyle": null, + "runProperty": Object {}, + "start": 1, + "suffix": "tab", + "text": "(%5)", + }, + Object { + "format": "decimalEnclosedCircle", + "jc": "left", + "level": 5, + "levelRestart": null, + "paragraphProperty": Object { + "indent": Object { + "end": null, + "firstLineChars": null, + "hangingChars": null, + "specialIndent": Object { + "type": "hanging", + "val": 420, + }, + "start": 2520, + "startChars": null, + }, + "runProperty": Object {}, + "tabs": Array [], + }, + "pstyle": null, + "runProperty": Object {}, + "start": 1, + "suffix": "tab", + "text": "%6", + }, + Object { + "format": "decimal", + "jc": "left", + "level": 6, + "levelRestart": null, + "paragraphProperty": Object { + "indent": Object { + "end": null, + "firstLineChars": null, + "hangingChars": null, + "specialIndent": Object { + "type": "hanging", + "val": 420, + }, + "start": 2940, + "startChars": null, + }, + "runProperty": Object {}, + "tabs": Array [], + }, + "pstyle": null, + "runProperty": Object {}, + "start": 1, + "suffix": "tab", + "text": "%7.", + }, + Object { + "format": "aiueoFullWidth", + "jc": "left", + "level": 7, + "levelRestart": null, + "paragraphProperty": Object { + "indent": Object { + "end": null, + "firstLineChars": null, + "hangingChars": null, + "specialIndent": Object { + "type": "hanging", + "val": 420, + }, + "start": 3360, + "startChars": null, + }, + "runProperty": Object {}, + "tabs": Array [], + }, + "pstyle": null, + "runProperty": Object {}, + "start": 1, + "suffix": "tab", + "text": "(%8)", + }, + Object { + "format": "decimalEnclosedCircle", + "jc": "left", + "level": 8, + "levelRestart": null, + "paragraphProperty": Object { + "indent": Object { + "end": null, + "firstLineChars": null, + "hangingChars": null, + "specialIndent": Object { + "type": "hanging", + "val": 420, + }, + "start": 3780, + "startChars": null, + }, + "runProperty": Object {}, + "tabs": Array [], + }, + "pstyle": null, + "runProperty": Object {}, + "start": 1, + "suffix": "tab", + "text": "%9", + }, + ], + "numStyleLink": null, + "styleLink": null, + }, + Object { + "id": 114, + "levels": Array [ + Object { + "format": "decimal", + "jc": "left", + "level": 0, + "levelRestart": null, + "paragraphProperty": Object { + "indent": Object { + "end": null, + "firstLineChars": null, + "hangingChars": null, + "specialIndent": Object { + "type": "hanging", + "val": 360, + }, + "start": 540, + "startChars": null, + }, + "runProperty": Object {}, + "tabs": Array [], + }, + "pstyle": null, + "runProperty": Object { + "fonts": Object { + "hint": "eastAsia", + }, + }, + "start": 1, + "suffix": "tab", + "text": "%1.", + }, + Object { + "format": "lowerLetter", + "jc": "left", + "level": 1, + "levelRestart": null, + "paragraphProperty": Object { + "indent": Object { + "end": null, + "firstLineChars": null, + "hangingChars": null, + "specialIndent": Object { + "type": "hanging", + "val": 360, + }, + "start": 780, + "startChars": null, + }, + "runProperty": Object {}, + "tabs": Array [], + }, + "pstyle": null, + "runProperty": Object { + "fonts": Object { + "hint": "eastAsia", + }, + }, + "start": 1, + "suffix": "tab", + "text": "(%2)", + }, + Object { + "format": "lowerLetter", + "jc": "left", + "level": 2, + "levelRestart": null, + "paragraphProperty": Object { + "indent": Object { + "end": null, + "firstLineChars": null, + "hangingChars": null, + "specialIndent": Object { + "type": "hanging", + "val": 360, + }, + "start": 1200, + "startChars": null, + }, + "runProperty": Object {}, + "tabs": Array [], + }, + "pstyle": null, + "runProperty": Object { + "fonts": Object { + "hint": "eastAsia", + }, + }, + "start": 1, + "suffix": "tab", + "text": "(%3)", + }, + Object { + "format": "lowerLetter", + "jc": "left", + "level": 3, + "levelRestart": null, + "paragraphProperty": Object { + "indent": Object { + "end": null, + "firstLineChars": null, + "hangingChars": null, + "specialIndent": Object { + "type": "hanging", + "val": 360, + }, + "start": 1620, + "startChars": null, + }, + "runProperty": Object {}, + "tabs": Array [], + }, + "pstyle": null, + "runProperty": Object { + "fonts": Object { + "hint": "eastAsia", + }, + }, + "start": 1, + "suffix": "tab", + "text": "(%4)", + }, + Object { + "format": "aiueoFullWidth", + "jc": "left", + "level": 4, + "levelRestart": null, + "paragraphProperty": Object { + "indent": Object { + "end": null, + "firstLineChars": null, + "hangingChars": null, + "specialIndent": Object { + "type": "hanging", + "val": 420, + }, + "start": 2100, + "startChars": null, + }, + "runProperty": Object {}, + "tabs": Array [], + }, + "pstyle": null, + "runProperty": Object {}, + "start": 1, + "suffix": "tab", + "text": "(%5)", + }, + Object { + "format": "decimalEnclosedCircle", + "jc": "left", + "level": 5, + "levelRestart": null, + "paragraphProperty": Object { + "indent": Object { + "end": null, + "firstLineChars": null, + "hangingChars": null, + "specialIndent": Object { + "type": "hanging", + "val": 420, + }, + "start": 2520, + "startChars": null, + }, + "runProperty": Object {}, + "tabs": Array [], + }, + "pstyle": null, + "runProperty": Object {}, + "start": 1, + "suffix": "tab", + "text": "%6", + }, + Object { + "format": "decimal", + "jc": "left", + "level": 6, + "levelRestart": null, + "paragraphProperty": Object { + "indent": Object { + "end": null, + "firstLineChars": null, + "hangingChars": null, + "specialIndent": Object { + "type": "hanging", + "val": 420, + }, + "start": 2940, + "startChars": null, + }, + "runProperty": Object {}, + "tabs": Array [], + }, + "pstyle": null, + "runProperty": Object {}, + "start": 1, + "suffix": "tab", + "text": "%7.", + }, + Object { + "format": "aiueoFullWidth", + "jc": "left", + "level": 7, + "levelRestart": null, + "paragraphProperty": Object { + "indent": Object { + "end": null, + "firstLineChars": null, + "hangingChars": null, + "specialIndent": Object { + "type": "hanging", + "val": 420, + }, + "start": 3360, + "startChars": null, + }, + "runProperty": Object {}, + "tabs": Array [], + }, + "pstyle": null, + "runProperty": Object {}, + "start": 1, + "suffix": "tab", + "text": "(%8)", + }, + Object { + "format": "decimalEnclosedCircle", + "jc": "left", + "level": 8, + "levelRestart": null, + "paragraphProperty": Object { + "indent": Object { + "end": null, + "firstLineChars": null, + "hangingChars": null, + "specialIndent": Object { + "type": "hanging", + "val": 420, + }, + "start": 3780, + "startChars": null, + }, + "runProperty": Object {}, + "tabs": Array [], + }, + "pstyle": null, + "runProperty": Object {}, + "start": 1, + "suffix": "tab", + "text": "%9", + }, + ], + "numStyleLink": null, + "styleLink": null, + }, + Object { + "id": 115, + "levels": Array [ + Object { + "format": "decimal", + "jc": "left", + "level": 0, + "levelRestart": null, + "paragraphProperty": Object { + "indent": Object { + "end": null, + "firstLineChars": null, + "hangingChars": null, + "specialIndent": Object { + "type": "hanging", + "val": 360, + }, + "start": 540, + "startChars": null, + }, + "runProperty": Object {}, + "tabs": Array [], + }, + "pstyle": null, + "runProperty": Object { + "fonts": Object { + "hint": "eastAsia", + }, + }, + "start": 1, + "suffix": "tab", + "text": "%1.", + }, + Object { + "format": "aiueoFullWidth", + "jc": "left", + "level": 1, + "levelRestart": null, + "paragraphProperty": Object { + "indent": Object { + "end": null, + "firstLineChars": null, + "hangingChars": null, + "specialIndent": Object { + "type": "hanging", + "val": 420, + }, + "start": 840, + "startChars": null, + }, + "runProperty": Object {}, + "tabs": Array [], + }, + "pstyle": null, + "runProperty": Object {}, + "start": 1, + "suffix": "tab", + "text": "(%2)", + }, + Object { + "format": "decimalEnclosedCircle", + "jc": "left", + "level": 2, + "levelRestart": null, + "paragraphProperty": Object { + "indent": Object { + "end": null, + "firstLineChars": null, + "hangingChars": null, + "specialIndent": Object { + "type": "hanging", + "val": 420, + }, + "start": 1260, + "startChars": null, + }, + "runProperty": Object {}, + "tabs": Array [], + }, + "pstyle": null, + "runProperty": Object {}, + "start": 1, + "suffix": "tab", + "text": "%3", + }, + Object { + "format": "decimal", + "jc": "left", + "level": 3, + "levelRestart": null, + "paragraphProperty": Object { + "indent": Object { + "end": null, + "firstLineChars": null, + "hangingChars": null, + "specialIndent": Object { + "type": "hanging", + "val": 420, + }, + "start": 1680, + "startChars": null, + }, + "runProperty": Object {}, + "tabs": Array [], + }, + "pstyle": null, + "runProperty": Object {}, + "start": 1, + "suffix": "tab", + "text": "%4.", + }, + Object { + "format": "aiueoFullWidth", + "jc": "left", + "level": 4, + "levelRestart": null, + "paragraphProperty": Object { + "indent": Object { + "end": null, + "firstLineChars": null, + "hangingChars": null, + "specialIndent": Object { + "type": "hanging", + "val": 420, + }, + "start": 2100, + "startChars": null, + }, + "runProperty": Object {}, + "tabs": Array [], + }, + "pstyle": null, + "runProperty": Object {}, + "start": 1, + "suffix": "tab", + "text": "(%5)", + }, + Object { + "format": "decimalEnclosedCircle", + "jc": "left", + "level": 5, + "levelRestart": null, + "paragraphProperty": Object { + "indent": Object { + "end": null, + "firstLineChars": null, + "hangingChars": null, + "specialIndent": Object { + "type": "hanging", + "val": 420, + }, + "start": 2520, + "startChars": null, + }, + "runProperty": Object {}, + "tabs": Array [], + }, + "pstyle": null, + "runProperty": Object {}, + "start": 1, + "suffix": "tab", + "text": "%6", + }, + Object { + "format": "decimal", + "jc": "left", + "level": 6, + "levelRestart": null, + "paragraphProperty": Object { + "indent": Object { + "end": null, + "firstLineChars": null, + "hangingChars": null, + "specialIndent": Object { + "type": "hanging", + "val": 420, + }, + "start": 2940, + "startChars": null, + }, + "runProperty": Object {}, + "tabs": Array [], + }, + "pstyle": null, + "runProperty": Object {}, + "start": 1, + "suffix": "tab", + "text": "%7.", + }, + Object { + "format": "aiueoFullWidth", + "jc": "left", + "level": 7, + "levelRestart": null, + "paragraphProperty": Object { + "indent": Object { + "end": null, + "firstLineChars": null, + "hangingChars": null, + "specialIndent": Object { + "type": "hanging", + "val": 420, + }, + "start": 3360, + "startChars": null, + }, + "runProperty": Object {}, + "tabs": Array [], + }, + "pstyle": null, + "runProperty": Object {}, + "start": 1, + "suffix": "tab", + "text": "(%8)", + }, + Object { + "format": "decimalEnclosedCircle", + "jc": "left", + "level": 8, + "levelRestart": null, + "paragraphProperty": Object { + "indent": Object { + "end": null, + "firstLineChars": null, + "hangingChars": null, + "specialIndent": Object { + "type": "hanging", + "val": 420, + }, + "start": 3780, + "startChars": null, + }, + "runProperty": Object {}, + "tabs": Array [], + }, + "pstyle": null, + "runProperty": Object {}, + "start": 1, + "suffix": "tab", + "text": "%9", + }, + ], + "numStyleLink": null, + "styleLink": null, + }, + Object { + "id": 116, + "levels": Array [ + Object { + "format": "decimal", + "jc": "left", + "level": 0, + "levelRestart": null, + "paragraphProperty": Object { + "indent": Object { + "end": null, + "firstLineChars": null, + "hangingChars": null, + "specialIndent": Object { + "type": "hanging", + "val": 360, + }, + "start": 540, + "startChars": null, + }, + "runProperty": Object {}, + "tabs": Array [], + }, + "pstyle": null, + "runProperty": Object { + "fonts": Object { + "hint": "eastAsia", + }, + }, + "start": 1, + "suffix": "tab", + "text": "%1.", + }, + Object { + "format": "bullet", + "jc": "left", + "level": 1, + "levelRestart": null, + "paragraphProperty": Object { + "indent": Object { + "end": null, + "firstLineChars": null, + "hangingChars": null, + "specialIndent": Object { + "type": "hanging", + "val": 360, + }, + "start": 780, + "startChars": null, + }, + "runProperty": Object {}, + "tabs": Array [], + }, + "pstyle": null, + "runProperty": Object { + "fonts": Object { + "ascii": "MS 明朝", + "cs": "Times New Roman", + "eastAsia": "MS 明朝", + "hiAnsi": "Century", + "hint": "eastAsia", + }, + }, + "start": 4, + "suffix": "tab", + "text": "※", + }, + Object { + "format": "decimalEnclosedCircle", + "jc": "left", + "level": 2, + "levelRestart": null, + "paragraphProperty": Object { + "indent": Object { + "end": null, + "firstLineChars": null, + "hangingChars": null, + "specialIndent": Object { + "type": "hanging", + "val": 420, + }, + "start": 1260, + "startChars": null, + }, + "runProperty": Object {}, + "tabs": Array [], + }, + "pstyle": null, + "runProperty": Object {}, + "start": 1, + "suffix": "tab", + "text": "%3", + }, + Object { + "format": "decimalFullWidth", + "jc": "left", + "level": 3, + "levelRestart": null, + "paragraphProperty": Object { + "indent": Object { + "end": null, + "firstLineChars": null, + "hangingChars": null, + "specialIndent": Object { + "type": "hanging", + "val": 390, + }, + "start": 1650, + "startChars": null, + }, + "runProperty": Object {}, + "tabs": Array [], + }, + "pstyle": null, + "runProperty": Object { + "fonts": Object { + "hint": "eastAsia", + }, + }, + "start": 1, + "suffix": "tab", + "text": "%4.", + }, + Object { + "format": "lowerLetter", + "jc": "left", + "level": 4, + "levelRestart": null, + "paragraphProperty": Object { + "indent": Object { + "end": null, + "firstLineChars": null, + "hangingChars": null, + "specialIndent": Object { + "type": "hanging", + "val": 360, + }, + "start": 2040, + "startChars": null, + }, + "runProperty": Object {}, + "tabs": Array [], + }, + "pstyle": null, + "runProperty": Object { + "fonts": Object { + "hint": "eastAsia", + }, + }, + "start": 1, + "suffix": "tab", + "text": "(%5)", + }, + Object { + "format": "decimalEnclosedCircle", + "jc": "left", + "level": 5, + "levelRestart": null, + "paragraphProperty": Object { + "indent": Object { + "end": null, + "firstLineChars": null, + "hangingChars": null, + "specialIndent": Object { + "type": "hanging", + "val": 420, + }, + "start": 2520, + "startChars": null, + }, + "runProperty": Object {}, + "tabs": Array [], + }, + "pstyle": null, + "runProperty": Object {}, + "start": 1, + "suffix": "tab", + "text": "%6", + }, + Object { + "format": "decimal", + "jc": "left", + "level": 6, + "levelRestart": null, + "paragraphProperty": Object { + "indent": Object { + "end": null, + "firstLineChars": null, + "hangingChars": null, + "specialIndent": Object { + "type": "hanging", + "val": 420, + }, + "start": 2940, + "startChars": null, + }, + "runProperty": Object {}, + "tabs": Array [], + }, + "pstyle": null, + "runProperty": Object {}, + "start": 1, + "suffix": "tab", + "text": "%7.", + }, + Object { + "format": "aiueoFullWidth", + "jc": "left", + "level": 7, + "levelRestart": null, + "paragraphProperty": Object { + "indent": Object { + "end": null, + "firstLineChars": null, + "hangingChars": null, + "specialIndent": Object { + "type": "hanging", + "val": 420, + }, + "start": 3360, + "startChars": null, + }, + "runProperty": Object {}, + "tabs": Array [], + }, + "pstyle": null, + "runProperty": Object {}, + "start": 1, + "suffix": "tab", + "text": "(%8)", + }, + Object { + "format": "decimalEnclosedCircle", + "jc": "left", + "level": 8, + "levelRestart": null, + "paragraphProperty": Object { + "indent": Object { + "end": null, + "firstLineChars": null, + "hangingChars": null, + "specialIndent": Object { + "type": "hanging", + "val": 420, + }, + "start": 3780, + "startChars": null, + }, + "runProperty": Object {}, + "tabs": Array [], + }, + "pstyle": null, + "runProperty": Object {}, + "start": 1, + "suffix": "tab", + "text": "%9", + }, + ], + "numStyleLink": null, + "styleLink": null, + }, + Object { + "id": 117, + "levels": Array [ + Object { + "format": "bullet", + "jc": "left", + "level": 0, + "levelRestart": null, + "paragraphProperty": Object { + "indent": Object { + "end": null, + "firstLineChars": null, + "hangingChars": null, + "specialIndent": Object { + "type": "hanging", + "val": 454, + }, + "start": 2722, + "startChars": null, + }, + "runProperty": Object {}, + "tabs": Array [], + }, + "pstyle": "Note3", + "runProperty": Object { + "fonts": Object { + "ascii": "Wingdings 2", + "hiAnsi": "Wingdings 2", + "hint": "default", + }, + "sz": 24, + "szCs": 24, + }, + "start": 1, + "suffix": "tab", + "text": "", + }, + Object { + "format": "bullet", + "jc": "left", + "level": 1, + "levelRestart": null, + "paragraphProperty": Object { + "indent": Object { + "end": null, + "firstLineChars": null, + "hangingChars": null, + "specialIndent": Object { + "type": "hanging", + "val": 420, + }, + "start": 840, + "startChars": null, + }, + "runProperty": Object {}, + "tabs": Array [], + }, + "pstyle": null, + "runProperty": Object { + "fonts": Object { + "ascii": "Wingdings", + "hiAnsi": "Wingdings", + "hint": "default", + }, + }, + "start": 1, + "suffix": "tab", + "text": "", + }, + Object { + "format": "bullet", + "jc": "left", + "level": 2, + "levelRestart": null, + "paragraphProperty": Object { + "indent": Object { + "end": null, + "firstLineChars": null, + "hangingChars": null, + "specialIndent": Object { + "type": "hanging", + "val": 420, + }, + "start": 1260, + "startChars": null, + }, + "runProperty": Object {}, + "tabs": Array [], + }, + "pstyle": null, + "runProperty": Object { + "fonts": Object { + "ascii": "Wingdings", + "hiAnsi": "Wingdings", + "hint": "default", + }, + }, + "start": 1, + "suffix": "tab", + "text": "", + }, + Object { + "format": "bullet", + "jc": "left", + "level": 3, + "levelRestart": null, + "paragraphProperty": Object { + "indent": Object { + "end": null, + "firstLineChars": null, + "hangingChars": null, + "specialIndent": Object { + "type": "hanging", + "val": 420, + }, + "start": 1680, + "startChars": null, + }, + "runProperty": Object {}, + "tabs": Array [], + }, + "pstyle": null, + "runProperty": Object { + "fonts": Object { + "ascii": "Wingdings", + "hiAnsi": "Wingdings", + "hint": "default", + }, + }, + "start": 1, + "suffix": "tab", + "text": "", + }, + Object { + "format": "bullet", + "jc": "left", + "level": 4, + "levelRestart": null, + "paragraphProperty": Object { + "indent": Object { + "end": null, + "firstLineChars": null, + "hangingChars": null, + "specialIndent": Object { + "type": "hanging", + "val": 420, + }, + "start": 2100, + "startChars": null, + }, + "runProperty": Object {}, + "tabs": Array [], + }, + "pstyle": null, + "runProperty": Object { + "fonts": Object { + "ascii": "Wingdings", + "hiAnsi": "Wingdings", + "hint": "default", + }, + }, + "start": 1, + "suffix": "tab", + "text": "", + }, + Object { + "format": "bullet", + "jc": "left", + "level": 5, + "levelRestart": null, + "paragraphProperty": Object { + "indent": Object { + "end": null, + "firstLineChars": null, + "hangingChars": null, + "specialIndent": Object { + "type": "hanging", + "val": 420, + }, + "start": 2520, + "startChars": null, + }, + "runProperty": Object {}, + "tabs": Array [], + }, + "pstyle": null, + "runProperty": Object { + "fonts": Object { + "ascii": "Wingdings", + "hiAnsi": "Wingdings", + "hint": "default", + }, + }, + "start": 1, + "suffix": "tab", + "text": "", + }, + Object { + "format": "bullet", + "jc": "left", + "level": 6, + "levelRestart": null, + "paragraphProperty": Object { + "indent": Object { + "end": null, + "firstLineChars": null, + "hangingChars": null, + "specialIndent": Object { + "type": "hanging", + "val": 420, + }, + "start": 2940, + "startChars": null, + }, + "runProperty": Object {}, + "tabs": Array [], + }, + "pstyle": null, + "runProperty": Object { + "fonts": Object { + "ascii": "Wingdings", + "hiAnsi": "Wingdings", + "hint": "default", + }, + }, + "start": 1, + "suffix": "tab", + "text": "", + }, + Object { + "format": "bullet", + "jc": "left", + "level": 7, + "levelRestart": null, + "paragraphProperty": Object { + "indent": Object { + "end": null, + "firstLineChars": null, + "hangingChars": null, + "specialIndent": Object { + "type": "hanging", + "val": 420, + }, + "start": 3360, + "startChars": null, + }, + "runProperty": Object {}, + "tabs": Array [], + }, + "pstyle": null, + "runProperty": Object { + "fonts": Object { + "ascii": "Wingdings", + "hiAnsi": "Wingdings", + "hint": "default", + }, + }, + "start": 1, + "suffix": "tab", + "text": "", + }, + Object { + "format": "bullet", + "jc": "left", + "level": 8, + "levelRestart": null, + "paragraphProperty": Object { + "indent": Object { + "end": null, + "firstLineChars": null, + "hangingChars": null, + "specialIndent": Object { + "type": "hanging", + "val": 420, + }, + "start": 3780, + "startChars": null, + }, + "runProperty": Object {}, + "tabs": Array [], + }, + "pstyle": null, + "runProperty": Object { + "fonts": Object { + "ascii": "Wingdings", + "hiAnsi": "Wingdings", + "hint": "default", + }, + }, + "start": 1, + "suffix": "tab", + "text": "", + }, + ], + "numStyleLink": null, + "styleLink": null, + }, + Object { + "id": 118, + "levels": Array [ + Object { + "format": "decimal", + "jc": "left", + "level": 0, + "levelRestart": null, + "paragraphProperty": Object { + "indent": Object { + "end": null, + "firstLineChars": null, + "hangingChars": null, + "specialIndent": Object { + "type": "hanging", + "val": 1134, + }, + "start": 1134, + "startChars": null, + }, + "runProperty": Object {}, + "tabs": Array [], + }, + "pstyle": "1", + "runProperty": Object { + "bold": false, + "boldCs": false, + "fonts": Object { + "ascii": "Arial Black", + "hiAnsi": "Arial Black", + "hint": "default", + }, + "italic": false, + "italicCs": false, + "sz": 32, + "szCs": 32, + }, + "start": 1, + "suffix": "tab", + "text": "%1", + }, + Object { + "format": "decimal", + "jc": "left", + "level": 1, + "levelRestart": null, + "paragraphProperty": Object { + "indent": Object { + "end": null, + "firstLineChars": null, + "hangingChars": null, + "specialIndent": Object { + "type": "hanging", + "val": 1134, + }, + "start": 1560, + "startChars": null, + }, + "runProperty": Object {}, + "tabs": Array [], + }, + "pstyle": "22", + "runProperty": Object { + "bold": false, + "boldCs": false, + "fonts": Object { + "ascii": "Arial Black", + "hiAnsi": "Arial Black", + "hint": "default", + }, + "italic": false, + "italicCs": false, + "sz": 28, + "szCs": 28, + }, + "start": 1, + "suffix": "tab", + "text": "%1.%2", + }, + Object { + "format": "decimal", + "jc": "left", + "level": 2, + "levelRestart": null, + "paragraphProperty": Object { + "indent": Object { + "end": null, + "firstLineChars": null, + "hangingChars": null, + "specialIndent": Object { + "type": "hanging", + "val": 1134, + }, + "start": 1134, + "startChars": null, + }, + "runProperty": Object {}, + "tabs": Array [], + }, + "pstyle": "31", + "runProperty": Object { + "bold": false, + "boldCs": false, + "fonts": Object { + "ascii": "Arial Black", + "hiAnsi": "Arial Black", + "hint": "default", + }, + "italic": false, + "italicCs": false, + "sz": 24, + "szCs": 24, + }, + "start": 1, + "suffix": "tab", + "text": "%1.%2.%3", + }, + Object { + "format": "decimal", + "jc": "left", + "level": 3, + "levelRestart": null, + "paragraphProperty": Object { + "indent": Object { + "end": null, + "firstLineChars": null, + "hangingChars": null, + "specialIndent": Object { + "type": "hanging", + "val": 1134, + }, + "start": 1134, + "startChars": null, + }, + "runProperty": Object {}, + "tabs": Array [], + }, + "pstyle": "41", + "runProperty": Object {}, + "start": 1, + "suffix": "tab", + "text": "%1.%2.%3.%4", + }, + Object { + "format": "decimal", + "jc": "left", + "level": 4, + "levelRestart": null, + "paragraphProperty": Object { + "indent": Object { + "end": null, + "firstLineChars": null, + "hangingChars": null, + "specialIndent": Object { + "type": "hanging", + "val": 992, + }, + "start": 992, + "startChars": null, + }, + "runProperty": Object {}, + "tabs": Array [], + }, + "pstyle": null, + "runProperty": Object { + "fonts": Object { + "hint": "eastAsia", + }, + }, + "start": 1, + "suffix": "tab", + "text": "%1.%2.%3.%4.%5.", + }, + Object { + "format": "decimal", + "jc": "left", + "level": 5, + "levelRestart": null, + "paragraphProperty": Object { + "indent": Object { + "end": null, + "firstLineChars": null, + "hangingChars": null, + "specialIndent": Object { + "type": "hanging", + "val": 1134, + }, + "start": 1134, + "startChars": null, + }, + "runProperty": Object {}, + "tabs": Array [], + }, + "pstyle": null, + "runProperty": Object { + "fonts": Object { + "hint": "eastAsia", + }, + }, + "start": 1, + "suffix": "tab", + "text": "%1.%2.%3.%4.%5.%6.", + }, + Object { + "format": "decimal", + "jc": "left", + "level": 6, + "levelRestart": null, + "paragraphProperty": Object { + "indent": Object { + "end": null, + "firstLineChars": null, + "hangingChars": null, + "specialIndent": Object { + "type": "hanging", + "val": 1276, + }, + "start": 1276, + "startChars": null, + }, + "runProperty": Object {}, + "tabs": Array [], + }, + "pstyle": null, + "runProperty": Object { + "fonts": Object { + "hint": "eastAsia", + }, + }, + "start": 1, + "suffix": "tab", + "text": "%1.%2.%3.%4.%5.%6.%7.", + }, + Object { + "format": "decimal", + "jc": "left", + "level": 7, + "levelRestart": null, + "paragraphProperty": Object { + "indent": Object { + "end": null, + "firstLineChars": null, + "hangingChars": null, + "specialIndent": Object { + "type": "hanging", + "val": 1418, + }, + "start": 1418, + "startChars": null, + }, + "runProperty": Object {}, + "tabs": Array [], + }, + "pstyle": null, + "runProperty": Object { + "fonts": Object { + "hint": "eastAsia", + }, + }, + "start": 1, + "suffix": "tab", + "text": "%1.%2.%3.%4.%5.%6.%7.%8.", + }, + Object { + "format": "decimal", + "jc": "left", + "level": 8, + "levelRestart": null, + "paragraphProperty": Object { + "indent": Object { + "end": null, + "firstLineChars": null, + "hangingChars": null, + "specialIndent": Object { + "type": "hanging", + "val": 1559, + }, + "start": 1559, + "startChars": null, + }, + "runProperty": Object {}, + "tabs": Array [], + }, + "pstyle": null, + "runProperty": Object { + "fonts": Object { + "hint": "eastAsia", + }, + }, + "start": 1, + "suffix": "tab", + "text": "%1.%2.%3.%4.%5.%6.%7.%8.%9.", + }, + ], + "numStyleLink": null, + "styleLink": null, + }, + Object { + "id": 119, + "levels": Array [ + Object { + "format": "bullet", + "jc": "left", + "level": 0, + "levelRestart": null, + "paragraphProperty": Object { + "indent": Object { + "end": null, + "firstLineChars": null, + "hangingChars": null, + "specialIndent": Object { + "type": "hanging", + "val": 420, + }, + "start": 2310, + "startChars": null, + }, + "runProperty": Object {}, + "tabs": Array [], + }, + "pstyle": null, + "runProperty": Object { + "fonts": Object { + "ascii": "Times New Roman", + "cs": "Times New Roman", + "eastAsia": "MS P明朝", + "hiAnsi": "Times New Roman", + "hint": "default", + }, + }, + "start": 1, + "suffix": "tab", + "text": "・", + }, + Object { + "format": "bullet", + "jc": "left", + "level": 1, + "levelRestart": null, + "paragraphProperty": Object { + "indent": Object { + "end": null, + "firstLineChars": null, + "hangingChars": null, + "specialIndent": Object { + "type": "hanging", + "val": 420, + }, + "start": 2730, + "startChars": null, + }, + "runProperty": Object {}, + "tabs": Array [], + }, + "pstyle": null, + "runProperty": Object { + "fonts": Object { + "ascii": "Wingdings", + "hiAnsi": "Wingdings", + "hint": "default", + }, + }, + "start": 1, + "suffix": "tab", + "text": "", + }, + Object { + "format": "bullet", + "jc": "left", + "level": 2, + "levelRestart": null, + "paragraphProperty": Object { + "indent": Object { + "end": null, + "firstLineChars": null, + "hangingChars": null, + "specialIndent": Object { + "type": "hanging", + "val": 420, + }, + "start": 3150, + "startChars": null, + }, + "runProperty": Object {}, + "tabs": Array [], + }, + "pstyle": null, + "runProperty": Object { + "fonts": Object { + "ascii": "Wingdings", + "hiAnsi": "Wingdings", + "hint": "default", + }, + }, + "start": 1, + "suffix": "tab", + "text": "", + }, + Object { + "format": "bullet", + "jc": "left", + "level": 3, + "levelRestart": null, + "paragraphProperty": Object { + "indent": Object { + "end": null, + "firstLineChars": null, + "hangingChars": null, + "specialIndent": Object { + "type": "hanging", + "val": 420, + }, + "start": 3570, + "startChars": null, + }, + "runProperty": Object {}, + "tabs": Array [], + }, + "pstyle": null, + "runProperty": Object { + "fonts": Object { + "ascii": "Wingdings", + "hiAnsi": "Wingdings", + "hint": "default", + }, + }, + "start": 1, + "suffix": "tab", + "text": "", + }, + Object { + "format": "bullet", + "jc": "left", + "level": 4, + "levelRestart": null, + "paragraphProperty": Object { + "indent": Object { + "end": null, + "firstLineChars": null, + "hangingChars": null, + "specialIndent": Object { + "type": "hanging", + "val": 420, + }, + "start": 3990, + "startChars": null, + }, + "runProperty": Object {}, + "tabs": Array [], + }, + "pstyle": null, + "runProperty": Object { + "fonts": Object { + "ascii": "Wingdings", + "hiAnsi": "Wingdings", + "hint": "default", + }, + }, + "start": 1, + "suffix": "tab", + "text": "", + }, + Object { + "format": "bullet", + "jc": "left", + "level": 5, + "levelRestart": null, + "paragraphProperty": Object { + "indent": Object { + "end": null, + "firstLineChars": null, + "hangingChars": null, + "specialIndent": Object { + "type": "hanging", + "val": 420, + }, + "start": 4410, + "startChars": null, + }, + "runProperty": Object {}, + "tabs": Array [], + }, + "pstyle": null, + "runProperty": Object { + "fonts": Object { + "ascii": "Wingdings", + "hiAnsi": "Wingdings", + "hint": "default", + }, + }, + "start": 1, + "suffix": "tab", + "text": "", + }, + Object { + "format": "bullet", + "jc": "left", + "level": 6, + "levelRestart": null, + "paragraphProperty": Object { + "indent": Object { + "end": null, + "firstLineChars": null, + "hangingChars": null, + "specialIndent": Object { + "type": "hanging", + "val": 420, + }, + "start": 4830, + "startChars": null, + }, + "runProperty": Object {}, + "tabs": Array [], + }, + "pstyle": null, + "runProperty": Object { + "fonts": Object { + "ascii": "Wingdings", + "hiAnsi": "Wingdings", + "hint": "default", + }, + }, + "start": 1, + "suffix": "tab", + "text": "", + }, + Object { + "format": "bullet", + "jc": "left", + "level": 7, + "levelRestart": null, + "paragraphProperty": Object { + "indent": Object { + "end": null, + "firstLineChars": null, + "hangingChars": null, + "specialIndent": Object { + "type": "hanging", + "val": 420, + }, + "start": 5250, + "startChars": null, + }, + "runProperty": Object {}, + "tabs": Array [], + }, + "pstyle": null, + "runProperty": Object { + "fonts": Object { + "ascii": "Wingdings", + "hiAnsi": "Wingdings", + "hint": "default", + }, + }, + "start": 1, + "suffix": "tab", + "text": "", + }, + Object { + "format": "bullet", + "jc": "left", + "level": 8, + "levelRestart": null, + "paragraphProperty": Object { + "indent": Object { + "end": null, + "firstLineChars": null, + "hangingChars": null, + "specialIndent": Object { + "type": "hanging", + "val": 420, + }, + "start": 5670, + "startChars": null, + }, + "runProperty": Object {}, + "tabs": Array [], + }, + "pstyle": null, + "runProperty": Object { + "fonts": Object { + "ascii": "Wingdings", + "hiAnsi": "Wingdings", + "hint": "default", + }, + }, + "start": 1, + "suffix": "tab", + "text": "", + }, + ], + "numStyleLink": null, + "styleLink": null, + }, + Object { + "id": 120, + "levels": Array [ + Object { + "format": "bullet", + "jc": "left", + "level": 0, + "levelRestart": null, + "paragraphProperty": Object { + "indent": Object { + "end": null, + "firstLineChars": null, + "hangingChars": null, + "specialIndent": Object { + "type": "hanging", + "val": 454, + }, + "start": 1588, + "startChars": null, + }, + "runProperty": Object {}, + "tabs": Array [], + }, + "pstyle": "10", + "runProperty": Object { + "bold": false, + "boldCs": false, + "fonts": Object { + "ascii": "Wingdings", + "hiAnsi": "Wingdings", + "hint": "default", + }, + "italic": false, + "italicCs": false, + "sz": 24, + "szCs": 24, + }, + "start": 1, + "suffix": "tab", + "text": "", + }, + Object { + "format": "bullet", + "jc": "left", + "level": 1, + "levelRestart": null, + "paragraphProperty": Object { + "indent": Object { + "end": null, + "firstLineChars": null, + "hangingChars": null, + "specialIndent": Object { + "type": "hanging", + "val": 420, + }, + "start": 840, + "startChars": null, + }, + "runProperty": Object {}, + "tabs": Array [], + }, + "pstyle": null, + "runProperty": Object { + "fonts": Object { + "ascii": "Wingdings", + "hiAnsi": "Wingdings", + "hint": "default", + }, + }, + "start": 1, + "suffix": "tab", + "text": "", + }, + Object { + "format": "bullet", + "jc": "left", + "level": 2, + "levelRestart": null, + "paragraphProperty": Object { + "indent": Object { + "end": null, + "firstLineChars": null, + "hangingChars": null, + "specialIndent": Object { + "type": "hanging", + "val": 420, + }, + "start": 1260, + "startChars": null, + }, + "runProperty": Object {}, + "tabs": Array [], + }, + "pstyle": null, + "runProperty": Object { + "fonts": Object { + "ascii": "Wingdings", + "hiAnsi": "Wingdings", + "hint": "default", + }, + }, + "start": 1, + "suffix": "tab", + "text": "", + }, + Object { + "format": "bullet", + "jc": "left", + "level": 3, + "levelRestart": null, + "paragraphProperty": Object { + "indent": Object { + "end": null, + "firstLineChars": null, + "hangingChars": null, + "specialIndent": Object { + "type": "hanging", + "val": 420, + }, + "start": 1680, + "startChars": null, + }, + "runProperty": Object {}, + "tabs": Array [], + }, + "pstyle": null, + "runProperty": Object { + "fonts": Object { + "ascii": "Wingdings", + "hiAnsi": "Wingdings", + "hint": "default", + }, + }, + "start": 1, + "suffix": "tab", + "text": "", + }, + Object { + "format": "bullet", + "jc": "left", + "level": 4, + "levelRestart": null, + "paragraphProperty": Object { + "indent": Object { + "end": null, + "firstLineChars": null, + "hangingChars": null, + "specialIndent": Object { + "type": "hanging", + "val": 420, + }, + "start": 2100, + "startChars": null, + }, + "runProperty": Object {}, + "tabs": Array [], + }, + "pstyle": null, + "runProperty": Object { + "fonts": Object { + "ascii": "Wingdings", + "hiAnsi": "Wingdings", + "hint": "default", + }, + }, + "start": 1, + "suffix": "tab", + "text": "", + }, + Object { + "format": "bullet", + "jc": "left", + "level": 5, + "levelRestart": null, + "paragraphProperty": Object { + "indent": Object { + "end": null, + "firstLineChars": null, + "hangingChars": null, + "specialIndent": Object { + "type": "hanging", + "val": 420, + }, + "start": 2520, + "startChars": null, + }, + "runProperty": Object {}, + "tabs": Array [], + }, + "pstyle": null, + "runProperty": Object { + "fonts": Object { + "ascii": "Wingdings", + "hiAnsi": "Wingdings", + "hint": "default", + }, + }, + "start": 1, + "suffix": "tab", + "text": "", + }, + Object { + "format": "bullet", + "jc": "left", + "level": 6, + "levelRestart": null, + "paragraphProperty": Object { + "indent": Object { + "end": null, + "firstLineChars": null, + "hangingChars": null, + "specialIndent": Object { + "type": "hanging", + "val": 420, + }, + "start": 2940, + "startChars": null, + }, + "runProperty": Object {}, + "tabs": Array [], + }, + "pstyle": null, + "runProperty": Object { + "fonts": Object { + "ascii": "Wingdings", + "hiAnsi": "Wingdings", + "hint": "default", + }, + }, + "start": 1, + "suffix": "tab", + "text": "", + }, + Object { + "format": "bullet", + "jc": "left", + "level": 7, + "levelRestart": null, + "paragraphProperty": Object { + "indent": Object { + "end": null, + "firstLineChars": null, + "hangingChars": null, + "specialIndent": Object { + "type": "hanging", + "val": 420, + }, + "start": 3360, + "startChars": null, + }, + "runProperty": Object {}, + "tabs": Array [], + }, + "pstyle": null, + "runProperty": Object { + "fonts": Object { + "ascii": "Wingdings", + "hiAnsi": "Wingdings", + "hint": "default", + }, + }, + "start": 1, + "suffix": "tab", + "text": "", + }, + Object { + "format": "bullet", + "jc": "left", + "level": 8, + "levelRestart": null, + "paragraphProperty": Object { + "indent": Object { + "end": null, + "firstLineChars": null, + "hangingChars": null, + "specialIndent": Object { + "type": "hanging", + "val": 420, + }, + "start": 3780, + "startChars": null, + }, + "runProperty": Object {}, + "tabs": Array [], + }, + "pstyle": null, + "runProperty": Object { + "fonts": Object { + "ascii": "Wingdings", + "hiAnsi": "Wingdings", + "hint": "default", + }, + }, + "start": 1, + "suffix": "tab", + "text": "", + }, + ], + "numStyleLink": null, + "styleLink": null, + }, + Object { + "id": 121, + "levels": Array [ + Object { + "format": "lowerLetter", + "jc": "left", + "level": 0, + "levelRestart": null, + "paragraphProperty": Object { + "indent": Object { + "end": null, + "firstLineChars": null, + "hangingChars": null, + "specialIndent": Object { + "type": "hanging", + "val": 454, + }, + "start": 1588, + "startChars": null, + }, + "runProperty": Object {}, + "tabs": Array [], + }, + "pstyle": null, + "runProperty": Object { + "bold": false, + "boldCs": false, + "fonts": Object { + "ascii": "Times New Roman", + "cs": "Times New Roman", + "hiAnsi": "Times New Roman", + "hint": "default", + }, + "italic": false, + "italicCs": false, + "sz": 24, + "szCs": 24, + "underline": "none", + }, + "start": 1, + "suffix": "tab", + "text": "(%1)", + }, + Object { + "format": "decimalEnclosedCircle", + "jc": "left", + "level": 1, + "levelRestart": null, + "paragraphProperty": Object { + "indent": Object { + "end": null, + "firstLineChars": null, + "hangingChars": null, + "specialIndent": Object { + "type": "hanging", + "val": 360, + }, + "start": 780, + "startChars": null, + }, + "runProperty": Object {}, + "tabs": Array [], + }, + "pstyle": "6", + "runProperty": Object { + "fonts": Object { + "hint": "eastAsia", + }, + }, + "start": 1, + "suffix": "tab", + "text": "%2", + }, + Object { + "format": "decimalEnclosedCircle", + "jc": "left", + "level": 2, + "levelRestart": null, + "paragraphProperty": Object { + "indent": Object { + "end": null, + "firstLineChars": null, + "hangingChars": null, + "specialIndent": Object { + "type": "hanging", + "val": 420, + }, + "start": 1260, + "startChars": null, + }, + "runProperty": Object {}, + "tabs": Array [], + }, + "pstyle": null, + "runProperty": Object {}, + "start": 1, + "suffix": "tab", + "text": "%3", + }, + Object { + "format": "decimal", + "jc": "left", + "level": 3, + "levelRestart": null, + "paragraphProperty": Object { + "indent": Object { + "end": null, + "firstLineChars": null, + "hangingChars": null, + "specialIndent": Object { + "type": "hanging", + "val": 420, + }, + "start": 1680, + "startChars": null, + }, + "runProperty": Object {}, + "tabs": Array [], + }, + "pstyle": null, + "runProperty": Object {}, + "start": 1, + "suffix": "tab", + "text": "%4.", + }, + Object { + "format": "aiueoFullWidth", + "jc": "left", + "level": 4, + "levelRestart": null, + "paragraphProperty": Object { + "indent": Object { + "end": null, + "firstLineChars": null, + "hangingChars": null, + "specialIndent": Object { + "type": "hanging", + "val": 420, + }, + "start": 2100, + "startChars": null, + }, + "runProperty": Object {}, + "tabs": Array [], + }, + "pstyle": null, + "runProperty": Object {}, + "start": 1, + "suffix": "tab", + "text": "(%5)", + }, + Object { + "format": "decimalEnclosedCircle", + "jc": "left", + "level": 5, + "levelRestart": null, + "paragraphProperty": Object { + "indent": Object { + "end": null, + "firstLineChars": null, + "hangingChars": null, + "specialIndent": Object { + "type": "hanging", + "val": 420, + }, + "start": 2520, + "startChars": null, + }, + "runProperty": Object {}, + "tabs": Array [], + }, + "pstyle": null, + "runProperty": Object {}, + "start": 1, + "suffix": "tab", + "text": "%6", + }, + Object { + "format": "decimal", + "jc": "left", + "level": 6, + "levelRestart": null, + "paragraphProperty": Object { + "indent": Object { + "end": null, + "firstLineChars": null, + "hangingChars": null, + "specialIndent": Object { + "type": "hanging", + "val": 420, + }, + "start": 2940, + "startChars": null, + }, + "runProperty": Object {}, + "tabs": Array [], + }, + "pstyle": null, + "runProperty": Object {}, + "start": 1, + "suffix": "tab", + "text": "%7.", + }, + Object { + "format": "aiueoFullWidth", + "jc": "left", + "level": 7, + "levelRestart": null, + "paragraphProperty": Object { + "indent": Object { + "end": null, + "firstLineChars": null, + "hangingChars": null, + "specialIndent": Object { + "type": "hanging", + "val": 420, + }, + "start": 3360, + "startChars": null, + }, + "runProperty": Object {}, + "tabs": Array [], + }, + "pstyle": null, + "runProperty": Object {}, + "start": 1, + "suffix": "tab", + "text": "(%8)", + }, + Object { + "format": "decimalEnclosedCircle", + "jc": "left", + "level": 8, + "levelRestart": null, + "paragraphProperty": Object { + "indent": Object { + "end": null, + "firstLineChars": null, + "hangingChars": null, + "specialIndent": Object { + "type": "hanging", + "val": 420, + }, + "start": 3780, + "startChars": null, + }, + "runProperty": Object {}, + "tabs": Array [], + }, + "pstyle": null, + "runProperty": Object {}, + "start": 1, + "suffix": "tab", + "text": "%9", + }, + ], + "numStyleLink": null, + "styleLink": null, + }, + Object { + "id": 122, + "levels": Array [ + Object { + "format": "decimal", + "jc": "left", + "level": 0, + "levelRestart": null, + "paragraphProperty": Object { + "indent": Object { + "end": null, + "firstLineChars": null, + "hangingChars": null, + "specialIndent": Object { + "type": "hanging", + "val": 420, + }, + "start": 1271, + "startChars": null, + }, + "runProperty": Object {}, + "tabs": Array [], + }, + "pstyle": "Bullet10", + "runProperty": Object {}, + "start": 1, + "suffix": "tab", + "text": "%1.", + }, + Object { + "format": "aiueoFullWidth", + "jc": "left", + "level": 1, + "levelRestart": null, + "paragraphProperty": Object { + "indent": Object { + "end": null, + "firstLineChars": null, + "hangingChars": null, + "specialIndent": Object { + "type": "hanging", + "val": 420, + }, + "start": 1691, + "startChars": null, + }, + "runProperty": Object {}, + "tabs": Array [], + }, + "pstyle": null, + "runProperty": Object {}, + "start": 1, + "suffix": "tab", + "text": "(%2)", + }, + Object { + "format": "decimalEnclosedCircle", + "jc": "left", + "level": 2, + "levelRestart": null, + "paragraphProperty": Object { + "indent": Object { + "end": null, + "firstLineChars": null, + "hangingChars": null, + "specialIndent": Object { + "type": "hanging", + "val": 420, + }, + "start": 2111, + "startChars": null, + }, + "runProperty": Object {}, + "tabs": Array [], + }, + "pstyle": null, + "runProperty": Object {}, + "start": 1, + "suffix": "tab", + "text": "%3", + }, + Object { + "format": "decimal", + "jc": "left", + "level": 3, + "levelRestart": null, + "paragraphProperty": Object { + "indent": Object { + "end": null, + "firstLineChars": null, + "hangingChars": null, + "specialIndent": Object { + "type": "hanging", + "val": 420, + }, + "start": 2531, + "startChars": null, + }, + "runProperty": Object {}, + "tabs": Array [], + }, + "pstyle": null, + "runProperty": Object {}, + "start": 1, + "suffix": "tab", + "text": "%4.", + }, + Object { + "format": "aiueoFullWidth", + "jc": "left", + "level": 4, + "levelRestart": null, + "paragraphProperty": Object { + "indent": Object { + "end": null, + "firstLineChars": null, + "hangingChars": null, + "specialIndent": Object { + "type": "hanging", + "val": 420, + }, + "start": 2951, + "startChars": null, + }, + "runProperty": Object {}, + "tabs": Array [], + }, + "pstyle": null, + "runProperty": Object {}, + "start": 1, + "suffix": "tab", + "text": "(%5)", + }, + Object { + "format": "decimalEnclosedCircle", + "jc": "left", + "level": 5, + "levelRestart": null, + "paragraphProperty": Object { + "indent": Object { + "end": null, + "firstLineChars": null, + "hangingChars": null, + "specialIndent": Object { + "type": "hanging", + "val": 420, + }, + "start": 3371, + "startChars": null, + }, + "runProperty": Object {}, + "tabs": Array [], + }, + "pstyle": null, + "runProperty": Object {}, + "start": 1, + "suffix": "tab", + "text": "%6", + }, + Object { + "format": "decimal", + "jc": "left", + "level": 6, + "levelRestart": null, + "paragraphProperty": Object { + "indent": Object { + "end": null, + "firstLineChars": null, + "hangingChars": null, + "specialIndent": Object { + "type": "hanging", + "val": 420, + }, + "start": 3791, + "startChars": null, + }, + "runProperty": Object {}, + "tabs": Array [], + }, + "pstyle": null, + "runProperty": Object {}, + "start": 1, + "suffix": "tab", + "text": "%7.", + }, + Object { + "format": "aiueoFullWidth", + "jc": "left", + "level": 7, + "levelRestart": null, + "paragraphProperty": Object { + "indent": Object { + "end": null, + "firstLineChars": null, + "hangingChars": null, + "specialIndent": Object { + "type": "hanging", + "val": 420, + }, + "start": 4211, + "startChars": null, + }, + "runProperty": Object {}, + "tabs": Array [], + }, + "pstyle": null, + "runProperty": Object {}, + "start": 1, + "suffix": "tab", + "text": "(%8)", + }, + Object { + "format": "decimalEnclosedCircle", + "jc": "left", + "level": 8, + "levelRestart": null, + "paragraphProperty": Object { + "indent": Object { + "end": null, + "firstLineChars": null, + "hangingChars": null, + "specialIndent": Object { + "type": "hanging", + "val": 420, + }, + "start": 4631, + "startChars": null, + }, + "runProperty": Object {}, + "tabs": Array [], + }, + "pstyle": null, + "runProperty": Object {}, + "start": 1, + "suffix": "tab", + "text": "%9", + }, + ], + "numStyleLink": null, + "styleLink": null, + }, + Object { + "id": 123, + "levels": Array [ + Object { + "format": "decimal", + "jc": "left", + "level": 0, + "levelRestart": null, + "paragraphProperty": Object { + "indent": Object { + "end": null, + "firstLineChars": null, + "hangingChars": null, + "specialIndent": Object { + "type": "hanging", + "val": 360, + }, + "start": 540, + "startChars": null, + }, + "runProperty": Object {}, + "tabs": Array [], + }, + "pstyle": null, + "runProperty": Object { + "fonts": Object { + "hint": "eastAsia", + }, + }, + "start": 1, + "suffix": "tab", + "text": "%1.", + }, + Object { + "format": "lowerLetter", + "jc": "left", + "level": 1, + "levelRestart": null, + "paragraphProperty": Object { + "indent": Object { + "end": null, + "firstLineChars": null, + "hangingChars": null, + "specialIndent": Object { + "type": "hanging", + "val": 360, + }, + "start": 780, + "startChars": null, + }, + "runProperty": Object {}, + "tabs": Array [], + }, + "pstyle": null, + "runProperty": Object { + "fonts": Object { + "hint": "eastAsia", + }, + }, + "start": 1, + "suffix": "tab", + "text": "(%2)", + }, + Object { + "format": "decimalEnclosedCircle", + "jc": "left", + "level": 2, + "levelRestart": null, + "paragraphProperty": Object { + "indent": Object { + "end": null, + "firstLineChars": null, + "hangingChars": null, + "specialIndent": Object { + "type": "hanging", + "val": 420, + }, + "start": 1260, + "startChars": null, + }, + "runProperty": Object {}, + "tabs": Array [], + }, + "pstyle": null, + "runProperty": Object {}, + "start": 1, + "suffix": "tab", + "text": "%3", + }, + Object { + "format": "decimal", + "jc": "left", + "level": 3, + "levelRestart": null, + "paragraphProperty": Object { + "indent": Object { + "end": null, + "firstLineChars": null, + "hangingChars": null, + "specialIndent": Object { + "type": "hanging", + "val": 420, + }, + "start": 1680, + "startChars": null, + }, + "runProperty": Object {}, + "tabs": Array [], + }, + "pstyle": null, + "runProperty": Object {}, + "start": 1, + "suffix": "tab", + "text": "%4.", + }, + Object { + "format": "aiueoFullWidth", + "jc": "left", + "level": 4, + "levelRestart": null, + "paragraphProperty": Object { + "indent": Object { + "end": null, + "firstLineChars": null, + "hangingChars": null, + "specialIndent": Object { + "type": "hanging", + "val": 420, + }, + "start": 2100, + "startChars": null, + }, + "runProperty": Object {}, + "tabs": Array [], + }, + "pstyle": null, + "runProperty": Object {}, + "start": 1, + "suffix": "tab", + "text": "(%5)", + }, + Object { + "format": "decimalEnclosedCircle", + "jc": "left", + "level": 5, + "levelRestart": null, + "paragraphProperty": Object { + "indent": Object { + "end": null, + "firstLineChars": null, + "hangingChars": null, + "specialIndent": Object { + "type": "hanging", + "val": 420, + }, + "start": 2520, + "startChars": null, + }, + "runProperty": Object {}, + "tabs": Array [], + }, + "pstyle": null, + "runProperty": Object {}, + "start": 1, + "suffix": "tab", + "text": "%6", + }, + Object { + "format": "decimal", + "jc": "left", + "level": 6, + "levelRestart": null, + "paragraphProperty": Object { + "indent": Object { + "end": null, + "firstLineChars": null, + "hangingChars": null, + "specialIndent": Object { + "type": "hanging", + "val": 420, + }, + "start": 2940, + "startChars": null, + }, + "runProperty": Object {}, + "tabs": Array [], + }, + "pstyle": null, + "runProperty": Object {}, + "start": 1, + "suffix": "tab", + "text": "%7.", + }, + Object { + "format": "aiueoFullWidth", + "jc": "left", + "level": 7, + "levelRestart": null, + "paragraphProperty": Object { + "indent": Object { + "end": null, + "firstLineChars": null, + "hangingChars": null, + "specialIndent": Object { + "type": "hanging", + "val": 420, + }, + "start": 3360, + "startChars": null, + }, + "runProperty": Object {}, + "tabs": Array [], + }, + "pstyle": null, + "runProperty": Object {}, + "start": 1, + "suffix": "tab", + "text": "(%8)", + }, + Object { + "format": "decimalEnclosedCircle", + "jc": "left", + "level": 8, + "levelRestart": null, + "paragraphProperty": Object { + "indent": Object { + "end": null, + "firstLineChars": null, + "hangingChars": null, + "specialIndent": Object { + "type": "hanging", + "val": 420, + }, + "start": 3780, + "startChars": null, + }, + "runProperty": Object {}, + "tabs": Array [], + }, + "pstyle": null, + "runProperty": Object {}, + "start": 1, + "suffix": "tab", + "text": "%9", + }, + ], + "numStyleLink": null, + "styleLink": null, + }, + Object { + "id": 124, + "levels": Array [ + Object { + "format": "lowerLetter", + "jc": "left", + "level": 0, + "levelRestart": null, + "paragraphProperty": Object { + "indent": Object { + "end": null, + "firstLineChars": null, + "hangingChars": null, + "specialIndent": Object { + "type": "hanging", + "val": 454, + }, + "start": 1588, + "startChars": null, + }, + "runProperty": Object {}, + "tabs": Array [], + }, + "pstyle": "a5", + "runProperty": Object { + "bold": false, + "boldCs": false, + "fonts": Object { + "ascii": "Times New Roman", + "hiAnsi": "Times New Roman", + "hint": "default", + }, + "italic": false, + "italicCs": false, + "sz": 24, + "szCs": 24, + }, + "start": 1, + "suffix": "tab", + "text": "(%1)", + }, + Object { + "format": "aiueoFullWidth", + "jc": "left", + "level": 1, + "levelRestart": null, + "paragraphProperty": Object { + "indent": Object { + "end": null, + "firstLineChars": null, + "hangingChars": null, + "specialIndent": Object { + "type": "hanging", + "val": 420, + }, + "start": 840, + "startChars": null, + }, + "runProperty": Object {}, + "tabs": Array [], + }, + "pstyle": null, + "runProperty": Object {}, + "start": 1, + "suffix": "tab", + "text": "(%2)", + }, + Object { + "format": "decimalEnclosedCircle", + "jc": "left", + "level": 2, + "levelRestart": null, + "paragraphProperty": Object { + "indent": Object { + "end": null, + "firstLineChars": null, + "hangingChars": null, + "specialIndent": Object { + "type": "hanging", + "val": 420, + }, + "start": 1260, + "startChars": null, + }, + "runProperty": Object {}, + "tabs": Array [], + }, + "pstyle": null, + "runProperty": Object {}, + "start": 1, + "suffix": "tab", + "text": "%3", + }, + Object { + "format": "decimal", + "jc": "left", + "level": 3, + "levelRestart": null, + "paragraphProperty": Object { + "indent": Object { + "end": null, + "firstLineChars": null, + "hangingChars": null, + "specialIndent": Object { + "type": "hanging", + "val": 420, + }, + "start": 1680, + "startChars": null, + }, + "runProperty": Object {}, + "tabs": Array [], + }, + "pstyle": null, + "runProperty": Object {}, + "start": 1, + "suffix": "tab", + "text": "%4.", + }, + Object { + "format": "aiueoFullWidth", + "jc": "left", + "level": 4, + "levelRestart": null, + "paragraphProperty": Object { + "indent": Object { + "end": null, + "firstLineChars": null, + "hangingChars": null, + "specialIndent": Object { + "type": "hanging", + "val": 420, + }, + "start": 2100, + "startChars": null, + }, + "runProperty": Object {}, + "tabs": Array [], + }, + "pstyle": null, + "runProperty": Object {}, + "start": 1, + "suffix": "tab", + "text": "(%5)", + }, + Object { + "format": "decimalEnclosedCircle", + "jc": "left", + "level": 5, + "levelRestart": null, + "paragraphProperty": Object { + "indent": Object { + "end": null, + "firstLineChars": null, + "hangingChars": null, + "specialIndent": Object { + "type": "hanging", + "val": 420, + }, + "start": 2520, + "startChars": null, + }, + "runProperty": Object {}, + "tabs": Array [], + }, + "pstyle": null, + "runProperty": Object {}, + "start": 1, + "suffix": "tab", + "text": "%6", + }, + Object { + "format": "decimal", + "jc": "left", + "level": 6, + "levelRestart": null, + "paragraphProperty": Object { + "indent": Object { + "end": null, + "firstLineChars": null, + "hangingChars": null, + "specialIndent": Object { + "type": "hanging", + "val": 420, + }, + "start": 2940, + "startChars": null, + }, + "runProperty": Object {}, + "tabs": Array [], + }, + "pstyle": null, + "runProperty": Object {}, + "start": 1, + "suffix": "tab", + "text": "%7.", + }, + Object { + "format": "aiueoFullWidth", + "jc": "left", + "level": 7, + "levelRestart": null, + "paragraphProperty": Object { + "indent": Object { + "end": null, + "firstLineChars": null, + "hangingChars": null, + "specialIndent": Object { + "type": "hanging", + "val": 420, + }, + "start": 3360, + "startChars": null, + }, + "runProperty": Object {}, + "tabs": Array [], + }, + "pstyle": null, + "runProperty": Object {}, + "start": 1, + "suffix": "tab", + "text": "(%8)", + }, + Object { + "format": "decimalEnclosedCircle", + "jc": "left", + "level": 8, + "levelRestart": null, + "paragraphProperty": Object { + "indent": Object { + "end": null, + "firstLineChars": null, + "hangingChars": null, + "specialIndent": Object { + "type": "hanging", + "val": 420, + }, + "start": 3780, + "startChars": null, + }, + "runProperty": Object {}, + "tabs": Array [], + }, + "pstyle": null, + "runProperty": Object {}, + "start": 1, + "suffix": "tab", + "text": "%9", + }, + ], + "numStyleLink": null, + "styleLink": null, + }, + Object { + "id": 125, + "levels": Array [ + Object { + "format": "bullet", + "jc": "left", + "level": 0, + "levelRestart": null, + "paragraphProperty": Object { + "indent": Object { + "end": null, + "firstLineChars": null, + "hangingChars": null, + "specialIndent": Object { + "type": "hanging", + "val": 420, + }, + "start": 2126, + "startChars": null, + }, + "runProperty": Object {}, + "tabs": Array [], + }, + "pstyle": null, + "runProperty": Object { + "fonts": Object { + "ascii": "Wingdings", + "hiAnsi": "Wingdings", + "hint": "default", + }, + }, + "start": 1, + "suffix": "tab", + "text": "", + }, + Object { + "format": "bullet", + "jc": "left", + "level": 1, + "levelRestart": null, + "paragraphProperty": Object { + "indent": Object { + "end": null, + "firstLineChars": null, + "hangingChars": null, + "specialIndent": Object { + "type": "hanging", + "val": 420, + }, + "start": 2546, + "startChars": null, + }, + "runProperty": Object {}, + "tabs": Array [], + }, + "pstyle": null, + "runProperty": Object { + "fonts": Object { + "ascii": "Wingdings", + "hiAnsi": "Wingdings", + "hint": "default", + }, + }, + "start": 1, + "suffix": "tab", + "text": "", + }, + Object { + "format": "bullet", + "jc": "left", + "level": 2, + "levelRestart": null, + "paragraphProperty": Object { + "indent": Object { + "end": null, + "firstLineChars": null, + "hangingChars": null, + "specialIndent": Object { + "type": "hanging", + "val": 420, + }, + "start": 2966, + "startChars": null, + }, + "runProperty": Object {}, + "tabs": Array [], + }, + "pstyle": null, + "runProperty": Object { + "fonts": Object { + "ascii": "Wingdings", + "hiAnsi": "Wingdings", + "hint": "default", + }, + }, + "start": 1, + "suffix": "tab", + "text": "", + }, + Object { + "format": "bullet", + "jc": "left", + "level": 3, + "levelRestart": null, + "paragraphProperty": Object { + "indent": Object { + "end": null, + "firstLineChars": null, + "hangingChars": null, + "specialIndent": Object { + "type": "hanging", + "val": 420, + }, + "start": 3386, + "startChars": null, + }, + "runProperty": Object {}, + "tabs": Array [], + }, + "pstyle": null, + "runProperty": Object { + "fonts": Object { + "ascii": "Wingdings", + "hiAnsi": "Wingdings", + "hint": "default", + }, + }, + "start": 1, + "suffix": "tab", + "text": "", + }, + Object { + "format": "bullet", + "jc": "left", + "level": 4, + "levelRestart": null, + "paragraphProperty": Object { + "indent": Object { + "end": null, + "firstLineChars": null, + "hangingChars": null, + "specialIndent": Object { + "type": "hanging", + "val": 420, + }, + "start": 3806, + "startChars": null, + }, + "runProperty": Object {}, + "tabs": Array [], + }, + "pstyle": null, + "runProperty": Object { + "fonts": Object { + "ascii": "Wingdings", + "hiAnsi": "Wingdings", + "hint": "default", + }, + }, + "start": 1, + "suffix": "tab", + "text": "", + }, + Object { + "format": "bullet", + "jc": "left", + "level": 5, + "levelRestart": null, + "paragraphProperty": Object { + "indent": Object { + "end": null, + "firstLineChars": null, + "hangingChars": null, + "specialIndent": Object { + "type": "hanging", + "val": 420, + }, + "start": 4226, + "startChars": null, + }, + "runProperty": Object {}, + "tabs": Array [], + }, + "pstyle": null, + "runProperty": Object { + "fonts": Object { + "ascii": "Wingdings", + "hiAnsi": "Wingdings", + "hint": "default", + }, + }, + "start": 1, + "suffix": "tab", + "text": "", + }, + Object { + "format": "bullet", + "jc": "left", + "level": 6, + "levelRestart": null, + "paragraphProperty": Object { + "indent": Object { + "end": null, + "firstLineChars": null, + "hangingChars": null, + "specialIndent": Object { + "type": "hanging", + "val": 420, + }, + "start": 4646, + "startChars": null, + }, + "runProperty": Object {}, + "tabs": Array [], + }, + "pstyle": null, + "runProperty": Object { + "fonts": Object { + "ascii": "Wingdings", + "hiAnsi": "Wingdings", + "hint": "default", + }, + }, + "start": 1, + "suffix": "tab", + "text": "", + }, + Object { + "format": "bullet", + "jc": "left", + "level": 7, + "levelRestart": null, + "paragraphProperty": Object { + "indent": Object { + "end": null, + "firstLineChars": null, + "hangingChars": null, + "specialIndent": Object { + "type": "hanging", + "val": 420, + }, + "start": 5066, + "startChars": null, + }, + "runProperty": Object {}, + "tabs": Array [], + }, + "pstyle": null, + "runProperty": Object { + "fonts": Object { + "ascii": "Wingdings", + "hiAnsi": "Wingdings", + "hint": "default", + }, + }, + "start": 1, + "suffix": "tab", + "text": "", + }, + Object { + "format": "bullet", + "jc": "left", + "level": 8, + "levelRestart": null, + "paragraphProperty": Object { + "indent": Object { + "end": null, + "firstLineChars": null, + "hangingChars": null, + "specialIndent": Object { + "type": "hanging", + "val": 420, + }, + "start": 5486, + "startChars": null, + }, + "runProperty": Object {}, + "tabs": Array [], + }, + "pstyle": null, + "runProperty": Object { + "fonts": Object { + "ascii": "Wingdings", + "hiAnsi": "Wingdings", + "hint": "default", + }, + }, + "start": 1, + "suffix": "tab", + "text": "", + }, + ], + "numStyleLink": null, + "styleLink": null, + }, + Object { + "id": 126, + "levels": Array [ + Object { + "format": "bullet", + "jc": "left", + "level": 0, + "levelRestart": null, + "paragraphProperty": Object { + "indent": Object { + "end": null, + "firstLineChars": null, + "hangingChars": null, + "specialIndent": Object { + "type": "hanging", + "val": 420, + }, + "start": 2126, + "startChars": null, + }, + "runProperty": Object {}, + "tabs": Array [], + }, + "pstyle": null, + "runProperty": Object { + "fonts": Object { + "ascii": "Wingdings", + "hiAnsi": "Wingdings", + "hint": "default", + }, + }, + "start": 1, + "suffix": "tab", + "text": "", + }, + Object { + "format": "bullet", + "jc": "left", + "level": 1, + "levelRestart": null, + "paragraphProperty": Object { + "indent": Object { + "end": null, + "firstLineChars": null, + "hangingChars": null, + "specialIndent": Object { + "type": "hanging", + "val": 420, + }, + "start": 2546, + "startChars": null, + }, + "runProperty": Object {}, + "tabs": Array [], + }, + "pstyle": null, + "runProperty": Object { + "fonts": Object { + "ascii": "Wingdings", + "hiAnsi": "Wingdings", + "hint": "default", + }, + }, + "start": 1, + "suffix": "tab", + "text": "", + }, + Object { + "format": "bullet", + "jc": "left", + "level": 2, + "levelRestart": null, + "paragraphProperty": Object { + "indent": Object { + "end": null, + "firstLineChars": null, + "hangingChars": null, + "specialIndent": Object { + "type": "hanging", + "val": 420, + }, + "start": 2966, + "startChars": null, + }, + "runProperty": Object {}, + "tabs": Array [], + }, + "pstyle": null, + "runProperty": Object { + "fonts": Object { + "ascii": "Wingdings", + "hiAnsi": "Wingdings", + "hint": "default", + }, + }, + "start": 1, + "suffix": "tab", + "text": "", + }, + Object { + "format": "bullet", + "jc": "left", + "level": 3, + "levelRestart": null, + "paragraphProperty": Object { + "indent": Object { + "end": null, + "firstLineChars": null, + "hangingChars": null, + "specialIndent": Object { + "type": "hanging", + "val": 420, + }, + "start": 3386, + "startChars": null, + }, + "runProperty": Object {}, + "tabs": Array [], + }, + "pstyle": null, + "runProperty": Object { + "fonts": Object { + "ascii": "Wingdings", + "hiAnsi": "Wingdings", + "hint": "default", + }, + }, + "start": 1, + "suffix": "tab", + "text": "", + }, + Object { + "format": "bullet", + "jc": "left", + "level": 4, + "levelRestart": null, + "paragraphProperty": Object { + "indent": Object { + "end": null, + "firstLineChars": null, + "hangingChars": null, + "specialIndent": Object { + "type": "hanging", + "val": 420, + }, + "start": 3806, + "startChars": null, + }, + "runProperty": Object {}, + "tabs": Array [], + }, + "pstyle": null, + "runProperty": Object { + "fonts": Object { + "ascii": "Wingdings", + "hiAnsi": "Wingdings", + "hint": "default", + }, + }, + "start": 1, + "suffix": "tab", + "text": "", + }, + Object { + "format": "bullet", + "jc": "left", + "level": 5, + "levelRestart": null, + "paragraphProperty": Object { + "indent": Object { + "end": null, + "firstLineChars": null, + "hangingChars": null, + "specialIndent": Object { + "type": "hanging", + "val": 420, + }, + "start": 4226, + "startChars": null, + }, + "runProperty": Object {}, + "tabs": Array [], + }, + "pstyle": null, + "runProperty": Object { + "fonts": Object { + "ascii": "Wingdings", + "hiAnsi": "Wingdings", + "hint": "default", + }, + }, + "start": 1, + "suffix": "tab", + "text": "", + }, + Object { + "format": "bullet", + "jc": "left", + "level": 6, + "levelRestart": null, + "paragraphProperty": Object { + "indent": Object { + "end": null, + "firstLineChars": null, + "hangingChars": null, + "specialIndent": Object { + "type": "hanging", + "val": 420, + }, + "start": 4646, + "startChars": null, + }, + "runProperty": Object {}, + "tabs": Array [], + }, + "pstyle": null, + "runProperty": Object { + "fonts": Object { + "ascii": "Wingdings", + "hiAnsi": "Wingdings", + "hint": "default", + }, + }, + "start": 1, + "suffix": "tab", + "text": "", + }, + Object { + "format": "bullet", + "jc": "left", + "level": 7, + "levelRestart": null, + "paragraphProperty": Object { + "indent": Object { + "end": null, + "firstLineChars": null, + "hangingChars": null, + "specialIndent": Object { + "type": "hanging", + "val": 420, + }, + "start": 5066, + "startChars": null, + }, + "runProperty": Object {}, + "tabs": Array [], + }, + "pstyle": null, + "runProperty": Object { + "fonts": Object { + "ascii": "Wingdings", + "hiAnsi": "Wingdings", + "hint": "default", + }, + }, + "start": 1, + "suffix": "tab", + "text": "", + }, + Object { + "format": "bullet", + "jc": "left", + "level": 8, + "levelRestart": null, + "paragraphProperty": Object { + "indent": Object { + "end": null, + "firstLineChars": null, + "hangingChars": null, + "specialIndent": Object { + "type": "hanging", + "val": 420, + }, + "start": 5486, + "startChars": null, + }, + "runProperty": Object {}, + "tabs": Array [], + }, + "pstyle": null, + "runProperty": Object { + "fonts": Object { + "ascii": "Wingdings", + "hiAnsi": "Wingdings", + "hint": "default", + }, + }, + "start": 1, + "suffix": "tab", + "text": "", + }, + ], + "numStyleLink": null, + "styleLink": null, + }, + Object { + "id": 127, + "levels": Array [ + Object { + "format": "bullet", + "jc": "left", + "level": 0, + "levelRestart": null, + "paragraphProperty": Object { + "indent": Object { + "end": null, + "firstLineChars": null, + "hangingChars": null, + "specialIndent": Object { + "type": "hanging", + "val": 420, + }, + "start": 2100, + "startChars": null, + }, + "runProperty": Object {}, + "tabs": Array [], + }, + "pstyle": null, + "runProperty": Object { + "fonts": Object { + "ascii": "Wingdings", + "hiAnsi": "Wingdings", + "hint": "default", + }, + }, + "start": 1, + "suffix": "tab", + "text": "", + }, + Object { + "format": "bullet", + "jc": "left", + "level": 1, + "levelRestart": null, + "paragraphProperty": Object { + "indent": Object { + "end": null, + "firstLineChars": null, + "hangingChars": null, + "specialIndent": Object { + "type": "hanging", + "val": 420, + }, + "start": 2520, + "startChars": null, + }, + "runProperty": Object {}, + "tabs": Array [], + }, + "pstyle": null, + "runProperty": Object { + "fonts": Object { + "ascii": "Wingdings", + "hiAnsi": "Wingdings", + "hint": "default", + }, + }, + "start": 1, + "suffix": "tab", + "text": "", + }, + Object { + "format": "bullet", + "jc": "left", + "level": 2, + "levelRestart": null, + "paragraphProperty": Object { + "indent": Object { + "end": null, + "firstLineChars": null, + "hangingChars": null, + "specialIndent": Object { + "type": "hanging", + "val": 420, + }, + "start": 2940, + "startChars": null, + }, + "runProperty": Object {}, + "tabs": Array [], + }, + "pstyle": null, + "runProperty": Object { + "fonts": Object { + "ascii": "Wingdings", + "hiAnsi": "Wingdings", + "hint": "default", + }, + }, + "start": 1, + "suffix": "tab", + "text": "", + }, + Object { + "format": "bullet", + "jc": "left", + "level": 3, + "levelRestart": null, + "paragraphProperty": Object { + "indent": Object { + "end": null, + "firstLineChars": null, + "hangingChars": null, + "specialIndent": Object { + "type": "hanging", + "val": 420, + }, + "start": 3360, + "startChars": null, + }, + "runProperty": Object {}, + "tabs": Array [], + }, + "pstyle": null, + "runProperty": Object { + "fonts": Object { + "ascii": "Wingdings", + "hiAnsi": "Wingdings", + "hint": "default", + }, + }, + "start": 1, + "suffix": "tab", + "text": "", + }, + Object { + "format": "bullet", + "jc": "left", + "level": 4, + "levelRestart": null, + "paragraphProperty": Object { + "indent": Object { + "end": null, + "firstLineChars": null, + "hangingChars": null, + "specialIndent": Object { + "type": "hanging", + "val": 420, + }, + "start": 3780, + "startChars": null, + }, + "runProperty": Object {}, + "tabs": Array [], + }, + "pstyle": null, + "runProperty": Object { + "fonts": Object { + "ascii": "Wingdings", + "hiAnsi": "Wingdings", + "hint": "default", + }, + }, + "start": 1, + "suffix": "tab", + "text": "", + }, + Object { + "format": "bullet", + "jc": "left", + "level": 5, + "levelRestart": null, + "paragraphProperty": Object { + "indent": Object { + "end": null, + "firstLineChars": null, + "hangingChars": null, + "specialIndent": Object { + "type": "hanging", + "val": 420, + }, + "start": 4200, + "startChars": null, + }, + "runProperty": Object {}, + "tabs": Array [], + }, + "pstyle": null, + "runProperty": Object { + "fonts": Object { + "ascii": "Wingdings", + "hiAnsi": "Wingdings", + "hint": "default", + }, + }, + "start": 1, + "suffix": "tab", + "text": "", + }, + Object { + "format": "bullet", + "jc": "left", + "level": 6, + "levelRestart": null, + "paragraphProperty": Object { + "indent": Object { + "end": null, + "firstLineChars": null, + "hangingChars": null, + "specialIndent": Object { + "type": "hanging", + "val": 420, + }, + "start": 4620, + "startChars": null, + }, + "runProperty": Object {}, + "tabs": Array [], + }, + "pstyle": null, + "runProperty": Object { + "fonts": Object { + "ascii": "Wingdings", + "hiAnsi": "Wingdings", + "hint": "default", + }, + }, + "start": 1, + "suffix": "tab", + "text": "", + }, + Object { + "format": "bullet", + "jc": "left", + "level": 7, + "levelRestart": null, + "paragraphProperty": Object { + "indent": Object { + "end": null, + "firstLineChars": null, + "hangingChars": null, + "specialIndent": Object { + "type": "hanging", + "val": 420, + }, + "start": 5040, + "startChars": null, + }, + "runProperty": Object {}, + "tabs": Array [], + }, + "pstyle": null, + "runProperty": Object { + "fonts": Object { + "ascii": "Wingdings", + "hiAnsi": "Wingdings", + "hint": "default", + }, + }, + "start": 1, + "suffix": "tab", + "text": "", + }, + Object { + "format": "bullet", + "jc": "left", + "level": 8, + "levelRestart": null, + "paragraphProperty": Object { + "indent": Object { + "end": null, + "firstLineChars": null, + "hangingChars": null, + "specialIndent": Object { + "type": "hanging", + "val": 420, + }, + "start": 5460, + "startChars": null, + }, + "runProperty": Object {}, + "tabs": Array [], + }, + "pstyle": null, + "runProperty": Object { + "fonts": Object { + "ascii": "Wingdings", + "hiAnsi": "Wingdings", + "hint": "default", + }, + }, + "start": 1, + "suffix": "tab", + "text": "", + }, + ], + "numStyleLink": null, + "styleLink": null, + }, + Object { + "id": 128, + "levels": Array [ + Object { + "format": "decimal", + "jc": "left", + "level": 0, + "levelRestart": null, + "paragraphProperty": Object { + "indent": Object { + "end": null, + "firstLineChars": null, + "hangingChars": null, + "specialIndent": Object { + "type": "hanging", + "val": 360, + }, + "start": 540, + "startChars": null, + }, + "runProperty": Object {}, + "tabs": Array [], + }, + "pstyle": null, + "runProperty": Object { + "fonts": Object { + "hint": "eastAsia", + }, + }, + "start": 1, + "suffix": "tab", + "text": "%1.", + }, + Object { + "format": "aiueoFullWidth", + "jc": "left", + "level": 1, + "levelRestart": null, + "paragraphProperty": Object { + "indent": Object { + "end": null, + "firstLineChars": null, + "hangingChars": null, + "specialIndent": Object { + "type": "hanging", + "val": 420, + }, + "start": 1020, + "startChars": null, + }, + "runProperty": Object {}, + "tabs": Array [], + }, + "pstyle": null, + "runProperty": Object {}, + "start": 1, + "suffix": "tab", + "text": "(%2)", + }, + Object { + "format": "decimalEnclosedCircle", + "jc": "left", + "level": 2, + "levelRestart": null, + "paragraphProperty": Object { + "indent": Object { + "end": null, + "firstLineChars": null, + "hangingChars": null, + "specialIndent": Object { + "type": "hanging", + "val": 420, + }, + "start": 1440, + "startChars": null, + }, + "runProperty": Object {}, + "tabs": Array [], + }, + "pstyle": null, + "runProperty": Object {}, + "start": 1, + "suffix": "tab", + "text": "%3", + }, + Object { + "format": "decimal", + "jc": "left", + "level": 3, + "levelRestart": null, + "paragraphProperty": Object { + "indent": Object { + "end": null, + "firstLineChars": null, + "hangingChars": null, + "specialIndent": Object { + "type": "hanging", + "val": 420, + }, + "start": 1860, + "startChars": null, + }, + "runProperty": Object {}, + "tabs": Array [], + }, + "pstyle": null, + "runProperty": Object {}, + "start": 1, + "suffix": "tab", + "text": "%4.", + }, + Object { + "format": "aiueoFullWidth", + "jc": "left", + "level": 4, + "levelRestart": null, + "paragraphProperty": Object { + "indent": Object { + "end": null, + "firstLineChars": null, + "hangingChars": null, + "specialIndent": Object { + "type": "hanging", + "val": 420, + }, + "start": 2280, + "startChars": null, + }, + "runProperty": Object {}, + "tabs": Array [], + }, + "pstyle": null, + "runProperty": Object {}, + "start": 1, + "suffix": "tab", + "text": "(%5)", + }, + Object { + "format": "decimalEnclosedCircle", + "jc": "left", + "level": 5, + "levelRestart": null, + "paragraphProperty": Object { + "indent": Object { + "end": null, + "firstLineChars": null, + "hangingChars": null, + "specialIndent": Object { + "type": "hanging", + "val": 420, + }, + "start": 2700, + "startChars": null, + }, + "runProperty": Object {}, + "tabs": Array [], + }, + "pstyle": null, + "runProperty": Object {}, + "start": 1, + "suffix": "tab", + "text": "%6", + }, + Object { + "format": "decimal", + "jc": "left", + "level": 6, + "levelRestart": null, + "paragraphProperty": Object { + "indent": Object { + "end": null, + "firstLineChars": null, + "hangingChars": null, + "specialIndent": Object { + "type": "hanging", + "val": 420, + }, + "start": 3120, + "startChars": null, + }, + "runProperty": Object {}, + "tabs": Array [], + }, + "pstyle": null, + "runProperty": Object {}, + "start": 1, + "suffix": "tab", + "text": "%7.", + }, + Object { + "format": "aiueoFullWidth", + "jc": "left", + "level": 7, + "levelRestart": null, + "paragraphProperty": Object { + "indent": Object { + "end": null, + "firstLineChars": null, + "hangingChars": null, + "specialIndent": Object { + "type": "hanging", + "val": 420, + }, + "start": 3540, + "startChars": null, + }, + "runProperty": Object {}, + "tabs": Array [], + }, + "pstyle": null, + "runProperty": Object {}, + "start": 1, + "suffix": "tab", + "text": "(%8)", + }, + Object { + "format": "decimalEnclosedCircle", + "jc": "left", + "level": 8, + "levelRestart": null, + "paragraphProperty": Object { + "indent": Object { + "end": null, + "firstLineChars": null, + "hangingChars": null, + "specialIndent": Object { + "type": "hanging", + "val": 420, + }, + "start": 3960, + "startChars": null, + }, + "runProperty": Object {}, + "tabs": Array [], + }, + "pstyle": null, + "runProperty": Object {}, + "start": 1, + "suffix": "tab", + "text": "%9", + }, + ], + "numStyleLink": null, + "styleLink": null, + }, + Object { + "id": 129, + "levels": Array [ + Object { + "format": "decimal", + "jc": "left", + "level": 0, + "levelRestart": null, + "paragraphProperty": Object { + "indent": Object { + "end": null, + "firstLineChars": null, + "hangingChars": null, + "specialIndent": Object { + "type": "hanging", + "val": 360, + }, + "start": 540, + "startChars": null, + }, + "runProperty": Object {}, + "tabs": Array [], + }, + "pstyle": null, + "runProperty": Object { + "fonts": Object { + "hint": "eastAsia", + }, + }, + "start": 1, + "suffix": "tab", + "text": "%1.", + }, + Object { + "format": "aiueoFullWidth", + "jc": "left", + "level": 1, + "levelRestart": null, + "paragraphProperty": Object { + "indent": Object { + "end": null, + "firstLineChars": null, + "hangingChars": null, + "specialIndent": Object { + "type": "hanging", + "val": 420, + }, + "start": 840, + "startChars": null, + }, + "runProperty": Object {}, + "tabs": Array [], + }, + "pstyle": null, + "runProperty": Object {}, + "start": 1, + "suffix": "tab", + "text": "(%2)", + }, + Object { + "format": "decimalEnclosedCircle", + "jc": "left", + "level": 2, + "levelRestart": null, + "paragraphProperty": Object { + "indent": Object { + "end": null, + "firstLineChars": null, + "hangingChars": null, + "specialIndent": Object { + "type": "hanging", + "val": 420, + }, + "start": 1260, + "startChars": null, + }, + "runProperty": Object {}, + "tabs": Array [], + }, + "pstyle": null, + "runProperty": Object {}, + "start": 1, + "suffix": "tab", + "text": "%3", + }, + Object { + "format": "decimal", + "jc": "left", + "level": 3, + "levelRestart": null, + "paragraphProperty": Object { + "indent": Object { + "end": null, + "firstLineChars": null, + "hangingChars": null, + "specialIndent": Object { + "type": "hanging", + "val": 420, + }, + "start": 1680, + "startChars": null, + }, + "runProperty": Object {}, + "tabs": Array [], + }, + "pstyle": null, + "runProperty": Object {}, + "start": 1, + "suffix": "tab", + "text": "%4.", + }, + Object { + "format": "aiueoFullWidth", + "jc": "left", + "level": 4, + "levelRestart": null, + "paragraphProperty": Object { + "indent": Object { + "end": null, + "firstLineChars": null, + "hangingChars": null, + "specialIndent": Object { + "type": "hanging", + "val": 420, + }, + "start": 2100, + "startChars": null, + }, + "runProperty": Object {}, + "tabs": Array [], + }, + "pstyle": null, + "runProperty": Object {}, + "start": 1, + "suffix": "tab", + "text": "(%5)", + }, + Object { + "format": "decimalEnclosedCircle", + "jc": "left", + "level": 5, + "levelRestart": null, + "paragraphProperty": Object { + "indent": Object { + "end": null, + "firstLineChars": null, + "hangingChars": null, + "specialIndent": Object { + "type": "hanging", + "val": 420, + }, + "start": 2520, + "startChars": null, + }, + "runProperty": Object {}, + "tabs": Array [], + }, + "pstyle": null, + "runProperty": Object {}, + "start": 1, + "suffix": "tab", + "text": "%6", + }, + Object { + "format": "decimal", + "jc": "left", + "level": 6, + "levelRestart": null, + "paragraphProperty": Object { + "indent": Object { + "end": null, + "firstLineChars": null, + "hangingChars": null, + "specialIndent": Object { + "type": "hanging", + "val": 420, + }, + "start": 2940, + "startChars": null, + }, + "runProperty": Object {}, + "tabs": Array [], + }, + "pstyle": null, + "runProperty": Object {}, + "start": 1, + "suffix": "tab", + "text": "%7.", + }, + Object { + "format": "aiueoFullWidth", + "jc": "left", + "level": 7, + "levelRestart": null, + "paragraphProperty": Object { + "indent": Object { + "end": null, + "firstLineChars": null, + "hangingChars": null, + "specialIndent": Object { + "type": "hanging", + "val": 420, + }, + "start": 3360, + "startChars": null, + }, + "runProperty": Object {}, + "tabs": Array [], + }, + "pstyle": null, + "runProperty": Object {}, + "start": 1, + "suffix": "tab", + "text": "(%8)", + }, + Object { + "format": "decimalEnclosedCircle", + "jc": "left", + "level": 8, + "levelRestart": null, + "paragraphProperty": Object { + "indent": Object { + "end": null, + "firstLineChars": null, + "hangingChars": null, + "specialIndent": Object { + "type": "hanging", + "val": 420, + }, + "start": 3780, + "startChars": null, + }, + "runProperty": Object {}, + "tabs": Array [], + }, + "pstyle": null, + "runProperty": Object {}, + "start": 1, + "suffix": "tab", + "text": "%9", + }, + ], + "numStyleLink": null, + "styleLink": null, + }, + Object { + "id": 130, + "levels": Array [ + Object { + "format": "decimal", + "jc": "left", + "level": 0, + "levelRestart": null, + "paragraphProperty": Object { + "indent": Object { + "end": null, + "firstLineChars": null, + "hangingChars": null, + "specialIndent": Object { + "type": "hanging", + "val": 360, + }, + "start": 540, + "startChars": null, + }, + "runProperty": Object {}, + "tabs": Array [], + }, + "pstyle": null, + "runProperty": Object { + "fonts": Object { + "hint": "eastAsia", + }, + }, + "start": 1, + "suffix": "tab", + "text": "%1.", + }, + Object { + "format": "aiueoFullWidth", + "jc": "left", + "level": 1, + "levelRestart": null, + "paragraphProperty": Object { + "indent": Object { + "end": null, + "firstLineChars": null, + "hangingChars": null, + "specialIndent": Object { + "type": "hanging", + "val": 420, + }, + "start": 420, + "startChars": null, + }, + "runProperty": Object {}, + "tabs": Array [], + }, + "pstyle": null, + "runProperty": Object {}, + "start": 1, + "suffix": "tab", + "text": "(%2)", + }, + Object { + "format": "decimalEnclosedCircle", + "jc": "left", + "level": 2, + "levelRestart": null, + "paragraphProperty": Object { + "indent": Object { + "end": null, + "firstLineChars": null, + "hangingChars": null, + "specialIndent": Object { + "type": "hanging", + "val": 420, + }, + "start": 840, + "startChars": null, + }, + "runProperty": Object {}, + "tabs": Array [], + }, + "pstyle": null, + "runProperty": Object {}, + "start": 1, + "suffix": "tab", + "text": "%3", + }, + Object { + "format": "decimal", + "jc": "left", + "level": 3, + "levelRestart": null, + "paragraphProperty": Object { + "indent": Object { + "end": null, + "firstLineChars": null, + "hangingChars": null, + "specialIndent": Object { + "type": "hanging", + "val": 420, + }, + "start": 1260, + "startChars": null, + }, + "runProperty": Object {}, + "tabs": Array [], + }, + "pstyle": null, + "runProperty": Object {}, + "start": 1, + "suffix": "tab", + "text": "%4.", + }, + Object { + "format": "aiueoFullWidth", + "jc": "left", + "level": 4, + "levelRestart": null, + "paragraphProperty": Object { + "indent": Object { + "end": null, + "firstLineChars": null, + "hangingChars": null, + "specialIndent": Object { + "type": "hanging", + "val": 420, + }, + "start": 1680, + "startChars": null, + }, + "runProperty": Object {}, + "tabs": Array [], + }, + "pstyle": null, + "runProperty": Object {}, + "start": 1, + "suffix": "tab", + "text": "(%5)", + }, + Object { + "format": "decimalEnclosedCircle", + "jc": "left", + "level": 5, + "levelRestart": null, + "paragraphProperty": Object { + "indent": Object { + "end": null, + "firstLineChars": null, + "hangingChars": null, + "specialIndent": Object { + "type": "hanging", + "val": 420, + }, + "start": 2100, + "startChars": null, + }, + "runProperty": Object {}, + "tabs": Array [], + }, + "pstyle": null, + "runProperty": Object {}, + "start": 1, + "suffix": "tab", + "text": "%6", + }, + Object { + "format": "decimal", + "jc": "left", + "level": 6, + "levelRestart": null, + "paragraphProperty": Object { + "indent": Object { + "end": null, + "firstLineChars": null, + "hangingChars": null, + "specialIndent": Object { + "type": "hanging", + "val": 420, + }, + "start": 2520, + "startChars": null, + }, + "runProperty": Object {}, + "tabs": Array [], + }, + "pstyle": null, + "runProperty": Object {}, + "start": 1, + "suffix": "tab", + "text": "%7.", + }, + Object { + "format": "aiueoFullWidth", + "jc": "left", + "level": 7, + "levelRestart": null, + "paragraphProperty": Object { + "indent": Object { + "end": null, + "firstLineChars": null, + "hangingChars": null, + "specialIndent": Object { + "type": "hanging", + "val": 420, + }, + "start": 2940, + "startChars": null, + }, + "runProperty": Object {}, + "tabs": Array [], + }, + "pstyle": null, + "runProperty": Object {}, + "start": 1, + "suffix": "tab", + "text": "(%8)", + }, + Object { + "format": "decimalEnclosedCircle", + "jc": "left", + "level": 8, + "levelRestart": null, + "paragraphProperty": Object { + "indent": Object { + "end": null, + "firstLineChars": null, + "hangingChars": null, + "specialIndent": Object { + "type": "hanging", + "val": 420, + }, + "start": 3360, + "startChars": null, + }, + "runProperty": Object {}, + "tabs": Array [], + }, + "pstyle": null, + "runProperty": Object {}, + "start": 1, + "suffix": "tab", + "text": "%9", + }, + ], + "numStyleLink": null, + "styleLink": null, + }, + Object { + "id": 131, + "levels": Array [ + Object { + "format": "decimal", + "jc": "left", + "level": 0, + "levelRestart": null, + "paragraphProperty": Object { + "indent": Object { + "end": null, + "firstLineChars": null, + "hangingChars": null, + "specialIndent": Object { + "type": "hanging", + "val": 360, + }, + "start": 540, + "startChars": null, + }, + "runProperty": Object {}, + "tabs": Array [], + }, + "pstyle": null, + "runProperty": Object { + "fonts": Object { + "hint": "eastAsia", + }, + }, + "start": 1, + "suffix": "tab", + "text": "%1.", + }, + Object { + "format": "aiueoFullWidth", + "jc": "left", + "level": 1, + "levelRestart": null, + "paragraphProperty": Object { + "indent": Object { + "end": null, + "firstLineChars": null, + "hangingChars": null, + "specialIndent": Object { + "type": "hanging", + "val": 420, + }, + "start": 840, + "startChars": null, + }, + "runProperty": Object {}, + "tabs": Array [], + }, + "pstyle": null, + "runProperty": Object { + "fonts": Object { + "hint": "eastAsia", + }, + }, + "start": 1, + "suffix": "tab", + "text": "(%2)", + }, + Object { + "format": "decimalEnclosedCircle", + "jc": "left", + "level": 2, + "levelRestart": null, + "paragraphProperty": Object { + "indent": Object { + "end": null, + "firstLineChars": null, + "hangingChars": null, + "specialIndent": Object { + "type": "hanging", + "val": 420, + }, + "start": 1260, + "startChars": null, + }, + "runProperty": Object {}, + "tabs": Array [], + }, + "pstyle": null, + "runProperty": Object { + "fonts": Object { + "hint": "eastAsia", + }, + }, + "start": 1, + "suffix": "tab", + "text": "%3", + }, + Object { + "format": "decimal", + "jc": "left", + "level": 3, + "levelRestart": null, + "paragraphProperty": Object { + "indent": Object { + "end": null, + "firstLineChars": null, + "hangingChars": null, + "specialIndent": Object { + "type": "hanging", + "val": 420, + }, + "start": 1680, + "startChars": null, + }, + "runProperty": Object {}, + "tabs": Array [], + }, + "pstyle": null, + "runProperty": Object { + "fonts": Object { + "hint": "eastAsia", + }, + }, + "start": 1, + "suffix": "tab", + "text": "%4.", + }, + Object { + "format": "aiueoFullWidth", + "jc": "left", + "level": 4, + "levelRestart": null, + "paragraphProperty": Object { + "indent": Object { + "end": null, + "firstLineChars": null, + "hangingChars": null, + "specialIndent": Object { + "type": "hanging", + "val": 420, + }, + "start": 2100, + "startChars": null, + }, + "runProperty": Object {}, + "tabs": Array [], + }, + "pstyle": null, + "runProperty": Object { + "fonts": Object { + "hint": "eastAsia", + }, + }, + "start": 1, + "suffix": "tab", + "text": "(%5)", + }, + Object { + "format": "decimalEnclosedCircle", + "jc": "left", + "level": 5, + "levelRestart": null, + "paragraphProperty": Object { + "indent": Object { + "end": null, + "firstLineChars": null, + "hangingChars": null, + "specialIndent": Object { + "type": "hanging", + "val": 420, + }, + "start": 2520, + "startChars": null, + }, + "runProperty": Object {}, + "tabs": Array [], + }, + "pstyle": null, + "runProperty": Object { + "fonts": Object { + "hint": "eastAsia", + }, + }, + "start": 1, + "suffix": "tab", + "text": "%6", + }, + Object { + "format": "decimal", + "jc": "left", + "level": 6, + "levelRestart": null, + "paragraphProperty": Object { + "indent": Object { + "end": null, + "firstLineChars": null, + "hangingChars": null, + "specialIndent": Object { + "type": "hanging", + "val": 420, + }, + "start": 2940, + "startChars": null, + }, + "runProperty": Object {}, + "tabs": Array [], + }, + "pstyle": null, + "runProperty": Object { + "fonts": Object { + "hint": "eastAsia", + }, + }, + "start": 1, + "suffix": "tab", + "text": "%7.", + }, + Object { + "format": "aiueoFullWidth", + "jc": "left", + "level": 7, + "levelRestart": null, + "paragraphProperty": Object { + "indent": Object { + "end": null, + "firstLineChars": null, + "hangingChars": null, + "specialIndent": Object { + "type": "hanging", + "val": 420, + }, + "start": 3360, + "startChars": null, + }, + "runProperty": Object {}, + "tabs": Array [], + }, + "pstyle": null, + "runProperty": Object { + "fonts": Object { + "hint": "eastAsia", + }, + }, + "start": 1, + "suffix": "tab", + "text": "(%8)", + }, + Object { + "format": "decimalEnclosedCircle", + "jc": "left", + "level": 8, + "levelRestart": null, + "paragraphProperty": Object { + "indent": Object { + "end": null, + "firstLineChars": null, + "hangingChars": null, + "specialIndent": Object { + "type": "hanging", + "val": 420, + }, + "start": 3780, + "startChars": null, + }, + "runProperty": Object {}, + "tabs": Array [], + }, + "pstyle": null, + "runProperty": Object { + "fonts": Object { + "hint": "eastAsia", + }, + }, + "start": 1, + "suffix": "tab", + "text": "%9", + }, + ], + "numStyleLink": null, + "styleLink": null, + }, + Object { + "id": 132, + "levels": Array [ + Object { + "format": "decimal", + "jc": "left", + "level": 0, + "levelRestart": null, + "paragraphProperty": Object { + "indent": Object { + "end": null, + "firstLineChars": null, + "hangingChars": null, + "specialIndent": Object { + "type": "hanging", + "val": 360, + }, + "start": 540, + "startChars": null, + }, + "runProperty": Object {}, + "tabs": Array [], + }, + "pstyle": null, + "runProperty": Object { + "fonts": Object { + "hint": "eastAsia", + }, + }, + "start": 1, + "suffix": "tab", + "text": "%1.", + }, + Object { + "format": "aiueoFullWidth", + "jc": "left", + "level": 1, + "levelRestart": null, + "paragraphProperty": Object { + "indent": Object { + "end": null, + "firstLineChars": null, + "hangingChars": null, + "specialIndent": Object { + "type": "hanging", + "val": 420, + }, + "start": 840, + "startChars": null, + }, + "runProperty": Object {}, + "tabs": Array [], + }, + "pstyle": null, + "runProperty": Object {}, + "start": 1, + "suffix": "tab", + "text": "(%2)", + }, + Object { + "format": "decimalEnclosedCircle", + "jc": "left", + "level": 2, + "levelRestart": null, + "paragraphProperty": Object { + "indent": Object { + "end": null, + "firstLineChars": null, + "hangingChars": null, + "specialIndent": Object { + "type": "hanging", + "val": 420, + }, + "start": 1260, + "startChars": null, + }, + "runProperty": Object {}, + "tabs": Array [], + }, + "pstyle": null, + "runProperty": Object {}, + "start": 1, + "suffix": "tab", + "text": "%3", + }, + Object { + "format": "decimal", + "jc": "left", + "level": 3, + "levelRestart": null, + "paragraphProperty": Object { + "indent": Object { + "end": null, + "firstLineChars": null, + "hangingChars": null, + "specialIndent": Object { + "type": "hanging", + "val": 420, + }, + "start": 1680, + "startChars": null, + }, + "runProperty": Object {}, + "tabs": Array [], + }, + "pstyle": null, + "runProperty": Object {}, + "start": 1, + "suffix": "tab", + "text": "%4.", + }, + Object { + "format": "aiueoFullWidth", + "jc": "left", + "level": 4, + "levelRestart": null, + "paragraphProperty": Object { + "indent": Object { + "end": null, + "firstLineChars": null, + "hangingChars": null, + "specialIndent": Object { + "type": "hanging", + "val": 420, + }, + "start": 2100, + "startChars": null, + }, + "runProperty": Object {}, + "tabs": Array [], + }, + "pstyle": null, + "runProperty": Object {}, + "start": 1, + "suffix": "tab", + "text": "(%5)", + }, + Object { + "format": "decimalEnclosedCircle", + "jc": "left", + "level": 5, + "levelRestart": null, + "paragraphProperty": Object { + "indent": Object { + "end": null, + "firstLineChars": null, + "hangingChars": null, + "specialIndent": Object { + "type": "hanging", + "val": 420, + }, + "start": 2520, + "startChars": null, + }, + "runProperty": Object {}, + "tabs": Array [], + }, + "pstyle": null, + "runProperty": Object {}, + "start": 1, + "suffix": "tab", + "text": "%6", + }, + Object { + "format": "decimal", + "jc": "left", + "level": 6, + "levelRestart": null, + "paragraphProperty": Object { + "indent": Object { + "end": null, + "firstLineChars": null, + "hangingChars": null, + "specialIndent": Object { + "type": "hanging", + "val": 420, + }, + "start": 2940, + "startChars": null, + }, + "runProperty": Object {}, + "tabs": Array [], + }, + "pstyle": null, + "runProperty": Object {}, + "start": 1, + "suffix": "tab", + "text": "%7.", + }, + Object { + "format": "aiueoFullWidth", + "jc": "left", + "level": 7, + "levelRestart": null, + "paragraphProperty": Object { + "indent": Object { + "end": null, + "firstLineChars": null, + "hangingChars": null, + "specialIndent": Object { + "type": "hanging", + "val": 420, + }, + "start": 3360, + "startChars": null, + }, + "runProperty": Object {}, + "tabs": Array [], + }, + "pstyle": null, + "runProperty": Object {}, + "start": 1, + "suffix": "tab", + "text": "(%8)", + }, + Object { + "format": "decimalEnclosedCircle", + "jc": "left", + "level": 8, + "levelRestart": null, + "paragraphProperty": Object { + "indent": Object { + "end": null, + "firstLineChars": null, + "hangingChars": null, + "specialIndent": Object { + "type": "hanging", + "val": 420, + }, + "start": 3780, + "startChars": null, + }, + "runProperty": Object {}, + "tabs": Array [], + }, + "pstyle": null, + "runProperty": Object {}, + "start": 1, + "suffix": "tab", + "text": "%9", + }, + ], + "numStyleLink": null, + "styleLink": null, + }, + Object { + "id": 133, + "levels": Array [ + Object { + "format": "decimal", + "jc": "left", + "level": 0, + "levelRestart": null, + "paragraphProperty": Object { + "indent": Object { + "end": null, + "firstLineChars": null, + "hangingChars": null, + "specialIndent": Object { + "type": "hanging", + "val": 360, + }, + "start": 540, + "startChars": null, + }, + "runProperty": Object {}, + "tabs": Array [], + }, + "pstyle": null, + "runProperty": Object { + "fonts": Object { + "hint": "eastAsia", + }, + }, + "start": 1, + "suffix": "tab", + "text": "%1.", + }, + Object { + "format": "decimal", + "jc": "left", + "level": 1, + "levelRestart": null, + "paragraphProperty": Object { + "indent": Object { + "end": null, + "firstLineChars": null, + "hangingChars": null, + "specialIndent": Object { + "type": "hanging", + "val": 360, + }, + "start": 1494, + "startChars": null, + }, + "runProperty": Object {}, + "tabs": Array [], + }, + "pstyle": null, + "runProperty": Object { + "fonts": Object { + "hint": "eastAsia", + }, + }, + "start": 1, + "suffix": "tab", + "text": "%1.%2.", + }, + Object { + "format": "decimal", + "jc": "left", + "level": 2, + "levelRestart": null, + "paragraphProperty": Object { + "indent": Object { + "end": null, + "firstLineChars": null, + "hangingChars": null, + "specialIndent": Object { + "type": "hanging", + "val": 720, + }, + "start": 2808, + "startChars": null, + }, + "runProperty": Object {}, + "tabs": Array [], + }, + "pstyle": null, + "runProperty": Object { + "fonts": Object { + "hint": "eastAsia", + }, + }, + "start": 1, + "suffix": "tab", + "text": "%1.%2.%3.", + }, + Object { + "format": "decimal", + "jc": "left", + "level": 3, + "levelRestart": null, + "paragraphProperty": Object { + "indent": Object { + "end": null, + "firstLineChars": null, + "hangingChars": null, + "specialIndent": Object { + "type": "hanging", + "val": 720, + }, + "start": 3762, + "startChars": null, + }, + "runProperty": Object {}, + "tabs": Array [], + }, + "pstyle": null, + "runProperty": Object { + "fonts": Object { + "hint": "eastAsia", + }, + }, + "start": 1, + "suffix": "tab", + "text": "%1.%2.%3.%4.", + }, + Object { + "format": "decimal", + "jc": "left", + "level": 4, + "levelRestart": null, + "paragraphProperty": Object { + "indent": Object { + "end": null, + "firstLineChars": null, + "hangingChars": null, + "specialIndent": Object { + "type": "hanging", + "val": 1080, + }, + "start": 5076, + "startChars": null, + }, + "runProperty": Object {}, + "tabs": Array [], + }, + "pstyle": null, + "runProperty": Object { + "fonts": Object { + "hint": "eastAsia", + }, + }, + "start": 1, + "suffix": "tab", + "text": "%1.%2.%3.%4.%5.", + }, + Object { + "format": "decimal", + "jc": "left", + "level": 5, + "levelRestart": null, + "paragraphProperty": Object { + "indent": Object { + "end": null, + "firstLineChars": null, + "hangingChars": null, + "specialIndent": Object { + "type": "hanging", + "val": 1080, + }, + "start": 6030, + "startChars": null, + }, + "runProperty": Object {}, + "tabs": Array [], + }, + "pstyle": null, + "runProperty": Object { + "fonts": Object { + "hint": "eastAsia", + }, + }, + "start": 1, + "suffix": "tab", + "text": "%1.%2.%3.%4.%5.%6.", + }, + Object { + "format": "decimal", + "jc": "left", + "level": 6, + "levelRestart": null, + "paragraphProperty": Object { + "indent": Object { + "end": null, + "firstLineChars": null, + "hangingChars": null, + "specialIndent": Object { + "type": "hanging", + "val": 1440, + }, + "start": 7344, + "startChars": null, + }, + "runProperty": Object {}, + "tabs": Array [], + }, + "pstyle": null, + "runProperty": Object { + "fonts": Object { + "hint": "eastAsia", + }, + }, + "start": 1, + "suffix": "tab", + "text": "%1.%2.%3.%4.%5.%6.%7.", + }, + Object { + "format": "decimal", + "jc": "left", + "level": 7, + "levelRestart": null, + "paragraphProperty": Object { + "indent": Object { + "end": null, + "firstLineChars": null, + "hangingChars": null, + "specialIndent": Object { + "type": "hanging", + "val": 1440, + }, + "start": 8298, + "startChars": null, + }, + "runProperty": Object {}, + "tabs": Array [], + }, + "pstyle": null, + "runProperty": Object { + "fonts": Object { + "hint": "eastAsia", + }, + }, + "start": 1, + "suffix": "tab", + "text": "%1.%2.%3.%4.%5.%6.%7.%8.", + }, + Object { + "format": "decimal", + "jc": "left", + "level": 8, + "levelRestart": null, + "paragraphProperty": Object { + "indent": Object { + "end": null, + "firstLineChars": null, + "hangingChars": null, + "specialIndent": Object { + "type": "hanging", + "val": 1800, + }, + "start": 9612, + "startChars": null, + }, + "runProperty": Object {}, + "tabs": Array [], + }, + "pstyle": null, + "runProperty": Object { + "fonts": Object { + "hint": "eastAsia", + }, + }, + "start": 1, + "suffix": "tab", + "text": "%1.%2.%3.%4.%5.%6.%7.%8.%9.", + }, + ], + "numStyleLink": null, + "styleLink": null, + }, + Object { + "id": 134, + "levels": Array [ + Object { + "format": "lowerLetter", + "jc": "left", + "level": 0, + "levelRestart": null, + "paragraphProperty": Object { + "indent": Object { + "end": null, + "firstLineChars": null, + "hangingChars": null, + "specialIndent": Object { + "type": "hanging", + "val": 454, + }, + "start": 1730, + "startChars": null, + }, + "runProperty": Object {}, + "tabs": Array [], + }, + "pstyle": "asentence", + "runProperty": Object { + "bold": false, + "boldCs": false, + "fonts": Object { + "ascii": "MS Pゴシック", + "eastAsia": "MS Pゴシック", + "hiAnsi": "MS Pゴシック", + "hint": "default", + }, + "italic": false, + "italicCs": false, + "sz": 20, + "szCs": 20, + "underline": "none", + }, + "start": 1, + "suffix": "tab", + "text": "(%1)", + }, + Object { + "format": "lowerLetter", + "jc": "left", + "level": 1, + "levelRestart": null, + "paragraphProperty": Object { + "indent": Object { + "end": null, + "firstLineChars": null, + "hangingChars": null, + "specialIndent": Object { + "type": "hanging", + "val": 454, + }, + "start": 1588, + "startChars": null, + }, + "runProperty": Object {}, + "tabs": Array [], + }, + "pstyle": "a6", + "runProperty": Object { + "bold": false, + "boldCs": false, + "fonts": Object { + "ascii": "Times New Roman", + "hiAnsi": "Times New Roman", + "hint": "default", + }, + "italic": false, + "italicCs": false, + "sz": 24, + "szCs": 24, + "underline": "none", + }, + "start": 1, + "suffix": "tab", + "text": "(%2)", + }, + Object { + "format": "decimal", + "jc": "left", + "level": 2, + "levelRestart": null, + "paragraphProperty": Object { + "indent": Object { + "end": null, + "firstLineChars": null, + "hangingChars": null, + "specialIndent": Object { + "type": "hanging", + "val": 555, + }, + "start": 1395, + "startChars": null, + }, + "runProperty": Object {}, + "tabs": Array [], + }, + "pstyle": null, + "runProperty": Object { + "fonts": Object { + "hint": "default", + }, + }, + "start": 1, + "suffix": "tab", + "text": "(%3)", + }, + Object { + "format": "decimal", + "jc": "left", + "level": 3, + "levelRestart": null, + "paragraphProperty": Object { + "indent": Object { + "end": null, + "firstLineChars": null, + "hangingChars": null, + "specialIndent": Object { + "type": "hanging", + "val": 420, + }, + "start": 1680, + "startChars": null, + }, + "runProperty": Object {}, + "tabs": Array [], + }, + "pstyle": null, + "runProperty": Object {}, + "start": 1, + "suffix": "tab", + "text": "%4.", + }, + Object { + "format": "aiueoFullWidth", + "jc": "left", + "level": 4, + "levelRestart": null, + "paragraphProperty": Object { + "indent": Object { + "end": null, + "firstLineChars": null, + "hangingChars": null, + "specialIndent": Object { + "type": "hanging", + "val": 420, + }, + "start": 2100, + "startChars": null, + }, + "runProperty": Object {}, + "tabs": Array [], + }, + "pstyle": null, + "runProperty": Object {}, + "start": 1, + "suffix": "tab", + "text": "(%5)", + }, + Object { + "format": "decimalFullWidth", + "jc": "left", + "level": 5, + "levelRestart": null, + "paragraphProperty": Object { + "indent": Object { + "end": null, + "firstLineChars": null, + "hangingChars": null, + "specialIndent": Object { + "type": "hanging", + "val": 360, + }, + "start": 2460, + "startChars": null, + }, + "runProperty": Object {}, + "tabs": Array [], + }, + "pstyle": null, + "runProperty": Object { + "fonts": Object { + "hint": "eastAsia", + }, + }, + "start": 2, + "suffix": "tab", + "text": "(%6)", + }, + Object { + "format": "lowerLetter", + "jc": "left", + "level": 6, + "levelRestart": null, + "paragraphProperty": Object { + "indent": Object { + "end": null, + "firstLineChars": null, + "hangingChars": null, + "specialIndent": Object { + "type": "hanging", + "val": 360, + }, + "start": 2880, + "startChars": null, + }, + "runProperty": Object {}, + "tabs": Array [], + }, + "pstyle": null, + "runProperty": Object { + "fonts": Object { + "hint": "eastAsia", + }, + }, + "start": 2, + "suffix": "tab", + "text": "(%7)", + }, + Object { + "format": "lowerLetter", + "jc": "left", + "level": 7, + "levelRestart": null, + "paragraphProperty": Object { + "indent": Object { + "end": null, + "firstLineChars": null, + "hangingChars": null, + "specialIndent": Object { + "type": "hanging", + "val": 360, + }, + "start": 3300, + "startChars": null, + }, + "runProperty": Object {}, + "tabs": Array [], + }, + "pstyle": null, + "runProperty": Object { + "fonts": Object { + "hint": "eastAsia", + }, + }, + "start": 1, + "suffix": "tab", + "text": "(%8)", + }, + Object { + "format": "decimal", + "jc": "left", + "level": 8, + "levelRestart": null, + "paragraphProperty": Object { + "indent": Object { + "end": null, + "firstLineChars": null, + "hangingChars": null, + "specialIndent": Object { + "type": "hanging", + "val": 360, + }, + "start": 3720, + "startChars": null, + }, + "runProperty": Object {}, + "tabs": Array [], + }, + "pstyle": null, + "runProperty": Object { + "fonts": Object { + "hint": "eastAsia", + }, + }, + "start": 1, + "suffix": "tab", + "text": "%9", + }, + ], + "numStyleLink": null, + "styleLink": null, + }, + Object { + "id": 135, + "levels": Array [ + Object { + "format": "decimal", + "jc": "left", + "level": 0, + "levelRestart": null, + "paragraphProperty": Object { + "indent": Object { + "end": null, + "firstLineChars": null, + "hangingChars": null, + "specialIndent": Object { + "type": "hanging", + "val": 360, + }, + "start": 540, + "startChars": null, + }, + "runProperty": Object {}, + "tabs": Array [], + }, + "pstyle": null, + "runProperty": Object { + "fonts": Object { + "hint": "eastAsia", + }, + }, + "start": 1, + "suffix": "tab", + "text": "%1.", + }, + Object { + "format": "aiueoFullWidth", + "jc": "left", + "level": 1, + "levelRestart": null, + "paragraphProperty": Object { + "indent": Object { + "end": null, + "firstLineChars": null, + "hangingChars": null, + "specialIndent": Object { + "type": "hanging", + "val": 420, + }, + "start": 1020, + "startChars": null, + }, + "runProperty": Object {}, + "tabs": Array [], + }, + "pstyle": null, + "runProperty": Object {}, + "start": 1, + "suffix": "tab", + "text": "(%2)", + }, + Object { + "format": "decimalEnclosedCircle", + "jc": "left", + "level": 2, + "levelRestart": null, + "paragraphProperty": Object { + "indent": Object { + "end": null, + "firstLineChars": null, + "hangingChars": null, + "specialIndent": Object { + "type": "hanging", + "val": 420, + }, + "start": 1440, + "startChars": null, + }, + "runProperty": Object {}, + "tabs": Array [], + }, + "pstyle": null, + "runProperty": Object {}, + "start": 1, + "suffix": "tab", + "text": "%3", + }, + Object { + "format": "decimal", + "jc": "left", + "level": 3, + "levelRestart": null, + "paragraphProperty": Object { + "indent": Object { + "end": null, + "firstLineChars": null, + "hangingChars": null, + "specialIndent": Object { + "type": "hanging", + "val": 420, + }, + "start": 1860, + "startChars": null, + }, + "runProperty": Object {}, + "tabs": Array [], + }, + "pstyle": null, + "runProperty": Object {}, + "start": 1, + "suffix": "tab", + "text": "%4.", + }, + Object { + "format": "aiueoFullWidth", + "jc": "left", + "level": 4, + "levelRestart": null, + "paragraphProperty": Object { + "indent": Object { + "end": null, + "firstLineChars": null, + "hangingChars": null, + "specialIndent": Object { + "type": "hanging", + "val": 420, + }, + "start": 2280, + "startChars": null, + }, + "runProperty": Object {}, + "tabs": Array [], + }, + "pstyle": null, + "runProperty": Object {}, + "start": 1, + "suffix": "tab", + "text": "(%5)", + }, + Object { + "format": "decimalEnclosedCircle", + "jc": "left", + "level": 5, + "levelRestart": null, + "paragraphProperty": Object { + "indent": Object { + "end": null, + "firstLineChars": null, + "hangingChars": null, + "specialIndent": Object { + "type": "hanging", + "val": 420, + }, + "start": 2700, + "startChars": null, + }, + "runProperty": Object {}, + "tabs": Array [], + }, + "pstyle": null, + "runProperty": Object {}, + "start": 1, + "suffix": "tab", + "text": "%6", + }, + Object { + "format": "decimal", + "jc": "left", + "level": 6, + "levelRestart": null, + "paragraphProperty": Object { + "indent": Object { + "end": null, + "firstLineChars": null, + "hangingChars": null, + "specialIndent": Object { + "type": "hanging", + "val": 420, + }, + "start": 3120, + "startChars": null, + }, + "runProperty": Object {}, + "tabs": Array [], + }, + "pstyle": null, + "runProperty": Object {}, + "start": 1, + "suffix": "tab", + "text": "%7.", + }, + Object { + "format": "aiueoFullWidth", + "jc": "left", + "level": 7, + "levelRestart": null, + "paragraphProperty": Object { + "indent": Object { + "end": null, + "firstLineChars": null, + "hangingChars": null, + "specialIndent": Object { + "type": "hanging", + "val": 420, + }, + "start": 3540, + "startChars": null, + }, + "runProperty": Object {}, + "tabs": Array [], + }, + "pstyle": null, + "runProperty": Object {}, + "start": 1, + "suffix": "tab", + "text": "(%8)", + }, + Object { + "format": "decimalEnclosedCircle", + "jc": "left", + "level": 8, + "levelRestart": null, + "paragraphProperty": Object { + "indent": Object { + "end": null, + "firstLineChars": null, + "hangingChars": null, + "specialIndent": Object { + "type": "hanging", + "val": 420, + }, + "start": 3960, + "startChars": null, + }, + "runProperty": Object {}, + "tabs": Array [], + }, + "pstyle": null, + "runProperty": Object {}, + "start": 1, + "suffix": "tab", + "text": "%9", + }, + ], + "numStyleLink": null, + "styleLink": null, + }, + Object { + "id": 136, + "levels": Array [ + Object { + "format": "lowerLetter", + "jc": "left", + "level": 0, + "levelRestart": null, + "paragraphProperty": Object { + "indent": Object { + "end": null, + "firstLineChars": null, + "hangingChars": null, + "specialIndent": Object { + "type": "hanging", + "val": 454, + }, + "start": 1588, + "startChars": null, + }, + "runProperty": Object {}, + "tabs": Array [], + }, + "pstyle": null, + "runProperty": Object { + "bold": false, + "boldCs": false, + "fonts": Object { + "ascii": "Times New Roman", + "cs": "Times New Roman", + "hiAnsi": "Times New Roman", + "hint": "default", + }, + "italic": false, + "italicCs": false, + "sz": 24, + "szCs": 24, + "underline": "none", + }, + "start": 1, + "suffix": "tab", + "text": "(%1)", + }, + Object { + "format": "aiueoFullWidth", + "jc": "left", + "level": 1, + "levelRestart": null, + "paragraphProperty": Object { + "indent": Object { + "end": null, + "firstLineChars": null, + "hangingChars": null, + "specialIndent": Object { + "type": "hanging", + "val": 420, + }, + "start": 840, + "startChars": null, + }, + "runProperty": Object {}, + "tabs": Array [], + }, + "pstyle": null, + "runProperty": Object {}, + "start": 1, + "suffix": "tab", + "text": "(%2)", + }, + Object { + "format": "decimalEnclosedCircle", + "jc": "left", + "level": 2, + "levelRestart": null, + "paragraphProperty": Object { + "indent": Object { + "end": null, + "firstLineChars": null, + "hangingChars": null, + "specialIndent": Object { + "type": "hanging", + "val": 420, + }, + "start": 1260, + "startChars": null, + }, + "runProperty": Object {}, + "tabs": Array [], + }, + "pstyle": null, + "runProperty": Object {}, + "start": 1, + "suffix": "tab", + "text": "%3", + }, + Object { + "format": "decimal", + "jc": "left", + "level": 3, + "levelRestart": null, + "paragraphProperty": Object { + "indent": Object { + "end": null, + "firstLineChars": null, + "hangingChars": null, + "specialIndent": Object { + "type": "hanging", + "val": 420, + }, + "start": 1680, + "startChars": null, + }, + "runProperty": Object {}, + "tabs": Array [], + }, + "pstyle": null, + "runProperty": Object {}, + "start": 1, + "suffix": "tab", + "text": "%4.", + }, + Object { + "format": "aiueoFullWidth", + "jc": "left", + "level": 4, + "levelRestart": null, + "paragraphProperty": Object { + "indent": Object { + "end": null, + "firstLineChars": null, + "hangingChars": null, + "specialIndent": Object { + "type": "hanging", + "val": 420, + }, + "start": 2100, + "startChars": null, + }, + "runProperty": Object {}, + "tabs": Array [], + }, + "pstyle": null, + "runProperty": Object {}, + "start": 1, + "suffix": "tab", + "text": "(%5)", + }, + Object { + "format": "decimalEnclosedCircle", + "jc": "left", + "level": 5, + "levelRestart": null, + "paragraphProperty": Object { + "indent": Object { + "end": null, + "firstLineChars": null, + "hangingChars": null, + "specialIndent": Object { + "type": "hanging", + "val": 420, + }, + "start": 2520, + "startChars": null, + }, + "runProperty": Object {}, + "tabs": Array [], + }, + "pstyle": null, + "runProperty": Object {}, + "start": 1, + "suffix": "tab", + "text": "%6", + }, + Object { + "format": "decimal", + "jc": "left", + "level": 6, + "levelRestart": null, + "paragraphProperty": Object { + "indent": Object { + "end": null, + "firstLineChars": null, + "hangingChars": null, + "specialIndent": Object { + "type": "hanging", + "val": 420, + }, + "start": 2940, + "startChars": null, + }, + "runProperty": Object {}, + "tabs": Array [], + }, + "pstyle": null, + "runProperty": Object {}, + "start": 1, + "suffix": "tab", + "text": "%7.", + }, + Object { + "format": "aiueoFullWidth", + "jc": "left", + "level": 7, + "levelRestart": null, + "paragraphProperty": Object { + "indent": Object { + "end": null, + "firstLineChars": null, + "hangingChars": null, + "specialIndent": Object { + "type": "hanging", + "val": 420, + }, + "start": 3360, + "startChars": null, + }, + "runProperty": Object {}, + "tabs": Array [], + }, + "pstyle": null, + "runProperty": Object {}, + "start": 1, + "suffix": "tab", + "text": "(%8)", + }, + Object { + "format": "decimalEnclosedCircle", + "jc": "left", + "level": 8, + "levelRestart": null, + "paragraphProperty": Object { + "indent": Object { + "end": null, + "firstLineChars": null, + "hangingChars": null, + "specialIndent": Object { + "type": "hanging", + "val": 420, + }, + "start": 3780, + "startChars": null, + }, + "runProperty": Object {}, + "tabs": Array [], + }, + "pstyle": null, + "runProperty": Object {}, + "start": 1, + "suffix": "tab", + "text": "%9", + }, + ], + "numStyleLink": null, + "styleLink": null, + }, + Object { + "id": 137, + "levels": Array [ + Object { + "format": "decimal", + "jc": "left", + "level": 0, + "levelRestart": null, + "paragraphProperty": Object { + "indent": Object { + "end": null, + "firstLineChars": null, + "hangingChars": null, + "specialIndent": Object { + "type": "hanging", + "val": 360, + }, + "start": 540, + "startChars": null, + }, + "runProperty": Object {}, + "tabs": Array [], + }, + "pstyle": null, + "runProperty": Object { + "fonts": Object { + "hint": "eastAsia", + }, + }, + "start": 1, + "suffix": "tab", + "text": "%1.", + }, + Object { + "format": "bullet", + "jc": "left", + "level": 1, + "levelRestart": null, + "paragraphProperty": Object { + "indent": Object { + "end": null, + "firstLineChars": null, + "hangingChars": null, + "specialIndent": Object { + "type": "hanging", + "val": 360, + }, + "start": 780, + "startChars": null, + }, + "runProperty": Object {}, + "tabs": Array [], + }, + "pstyle": null, + "runProperty": Object { + "fonts": Object { + "ascii": "MS 明朝", + "cs": "Times New Roman", + "eastAsia": "MS 明朝", + "hiAnsi": "Century", + "hint": "eastAsia", + }, + }, + "start": 4, + "suffix": "tab", + "text": "※", + }, + Object { + "format": "decimalEnclosedCircle", + "jc": "left", + "level": 2, + "levelRestart": null, + "paragraphProperty": Object { + "indent": Object { + "end": null, + "firstLineChars": null, + "hangingChars": null, + "specialIndent": Object { + "type": "hanging", + "val": 420, + }, + "start": 1260, + "startChars": null, + }, + "runProperty": Object {}, + "tabs": Array [], + }, + "pstyle": null, + "runProperty": Object { + "fonts": Object { + "hint": "eastAsia", + }, + }, + "start": 1, + "suffix": "tab", + "text": "%3", + }, + Object { + "format": "decimalFullWidth", + "jc": "left", + "level": 3, + "levelRestart": null, + "paragraphProperty": Object { + "indent": Object { + "end": null, + "firstLineChars": null, + "hangingChars": null, + "specialIndent": Object { + "type": "hanging", + "val": 390, + }, + "start": 1650, + "startChars": null, + }, + "runProperty": Object {}, + "tabs": Array [], + }, + "pstyle": null, + "runProperty": Object { + "fonts": Object { + "hint": "eastAsia", + }, + }, + "start": 1, + "suffix": "tab", + "text": "%4.", + }, + Object { + "format": "aiueoFullWidth", + "jc": "left", + "level": 4, + "levelRestart": null, + "paragraphProperty": Object { + "indent": Object { + "end": null, + "firstLineChars": null, + "hangingChars": null, + "specialIndent": Object { + "type": "hanging", + "val": 420, + }, + "start": 2100, + "startChars": null, + }, + "runProperty": Object {}, + "tabs": Array [], + }, + "pstyle": null, + "runProperty": Object { + "fonts": Object { + "hint": "eastAsia", + }, + }, + "start": 1, + "suffix": "tab", + "text": "(%5)", + }, + Object { + "format": "decimalEnclosedCircle", + "jc": "left", + "level": 5, + "levelRestart": null, + "paragraphProperty": Object { + "indent": Object { + "end": null, + "firstLineChars": null, + "hangingChars": null, + "specialIndent": Object { + "type": "hanging", + "val": 420, + }, + "start": 2520, + "startChars": null, + }, + "runProperty": Object {}, + "tabs": Array [], + }, + "pstyle": null, + "runProperty": Object { + "fonts": Object { + "hint": "eastAsia", + }, + }, + "start": 1, + "suffix": "tab", + "text": "%6", + }, + Object { + "format": "decimal", + "jc": "left", + "level": 6, + "levelRestart": null, + "paragraphProperty": Object { + "indent": Object { + "end": null, + "firstLineChars": null, + "hangingChars": null, + "specialIndent": Object { + "type": "hanging", + "val": 420, + }, + "start": 2940, + "startChars": null, + }, + "runProperty": Object {}, + "tabs": Array [], + }, + "pstyle": null, + "runProperty": Object { + "fonts": Object { + "hint": "eastAsia", + }, + }, + "start": 1, + "suffix": "tab", + "text": "%7.", + }, + Object { + "format": "aiueoFullWidth", + "jc": "left", + "level": 7, + "levelRestart": null, + "paragraphProperty": Object { + "indent": Object { + "end": null, + "firstLineChars": null, + "hangingChars": null, + "specialIndent": Object { + "type": "hanging", + "val": 420, + }, + "start": 3360, + "startChars": null, + }, + "runProperty": Object {}, + "tabs": Array [], + }, + "pstyle": null, + "runProperty": Object { + "fonts": Object { + "hint": "eastAsia", + }, + }, + "start": 1, + "suffix": "tab", + "text": "(%8)", + }, + Object { + "format": "decimalEnclosedCircle", + "jc": "left", + "level": 8, + "levelRestart": null, + "paragraphProperty": Object { + "indent": Object { + "end": null, + "firstLineChars": null, + "hangingChars": null, + "specialIndent": Object { + "type": "hanging", + "val": 420, + }, + "start": 3780, + "startChars": null, + }, + "runProperty": Object {}, + "tabs": Array [], + }, + "pstyle": null, + "runProperty": Object { + "fonts": Object { + "hint": "eastAsia", + }, + }, + "start": 1, + "suffix": "tab", + "text": "%9", + }, + ], + "numStyleLink": null, + "styleLink": null, + }, + Object { + "id": 138, + "levels": Array [ + Object { + "format": "decimal", + "jc": "left", + "level": 0, + "levelRestart": null, + "paragraphProperty": Object { + "indent": Object { + "end": null, + "firstLineChars": null, + "hangingChars": null, + "specialIndent": Object { + "type": "hanging", + "val": 360, + }, + "start": 540, + "startChars": null, + }, + "runProperty": Object {}, + "tabs": Array [], + }, + "pstyle": null, + "runProperty": Object { + "fonts": Object { + "hint": "eastAsia", + }, + }, + "start": 1, + "suffix": "tab", + "text": "%1.", + }, + Object { + "format": "aiueoFullWidth", + "jc": "left", + "level": 1, + "levelRestart": null, + "paragraphProperty": Object { + "indent": Object { + "end": null, + "firstLineChars": null, + "hangingChars": null, + "specialIndent": Object { + "type": "hanging", + "val": 420, + }, + "start": 840, + "startChars": null, + }, + "runProperty": Object {}, + "tabs": Array [], + }, + "pstyle": null, + "runProperty": Object {}, + "start": 1, + "suffix": "tab", + "text": "(%2)", + }, + Object { + "format": "decimalEnclosedCircle", + "jc": "left", + "level": 2, + "levelRestart": null, + "paragraphProperty": Object { + "indent": Object { + "end": null, + "firstLineChars": null, + "hangingChars": null, + "specialIndent": Object { + "type": "hanging", + "val": 420, + }, + "start": 1260, + "startChars": null, + }, + "runProperty": Object {}, + "tabs": Array [], + }, + "pstyle": null, + "runProperty": Object {}, + "start": 1, + "suffix": "tab", + "text": "%3", + }, + Object { + "format": "decimal", + "jc": "left", + "level": 3, + "levelRestart": null, + "paragraphProperty": Object { + "indent": Object { + "end": null, + "firstLineChars": null, + "hangingChars": null, + "specialIndent": Object { + "type": "hanging", + "val": 420, + }, + "start": 1680, + "startChars": null, + }, + "runProperty": Object {}, + "tabs": Array [], + }, + "pstyle": null, + "runProperty": Object {}, + "start": 1, + "suffix": "tab", + "text": "%4.", + }, + Object { + "format": "aiueoFullWidth", + "jc": "left", + "level": 4, + "levelRestart": null, + "paragraphProperty": Object { + "indent": Object { + "end": null, + "firstLineChars": null, + "hangingChars": null, + "specialIndent": Object { + "type": "hanging", + "val": 420, + }, + "start": 2100, + "startChars": null, + }, + "runProperty": Object {}, + "tabs": Array [], + }, + "pstyle": null, + "runProperty": Object {}, + "start": 1, + "suffix": "tab", + "text": "(%5)", + }, + Object { + "format": "decimalEnclosedCircle", + "jc": "left", + "level": 5, + "levelRestart": null, + "paragraphProperty": Object { + "indent": Object { + "end": null, + "firstLineChars": null, + "hangingChars": null, + "specialIndent": Object { + "type": "hanging", + "val": 420, + }, + "start": 2520, + "startChars": null, + }, + "runProperty": Object {}, + "tabs": Array [], + }, + "pstyle": null, + "runProperty": Object {}, + "start": 1, + "suffix": "tab", + "text": "%6", + }, + Object { + "format": "decimal", + "jc": "left", + "level": 6, + "levelRestart": null, + "paragraphProperty": Object { + "indent": Object { + "end": null, + "firstLineChars": null, + "hangingChars": null, + "specialIndent": Object { + "type": "hanging", + "val": 420, + }, + "start": 2940, + "startChars": null, + }, + "runProperty": Object {}, + "tabs": Array [], + }, + "pstyle": null, + "runProperty": Object {}, + "start": 1, + "suffix": "tab", + "text": "%7.", + }, + Object { + "format": "aiueoFullWidth", + "jc": "left", + "level": 7, + "levelRestart": null, + "paragraphProperty": Object { + "indent": Object { + "end": null, + "firstLineChars": null, + "hangingChars": null, + "specialIndent": Object { + "type": "hanging", + "val": 420, + }, + "start": 3360, + "startChars": null, + }, + "runProperty": Object {}, + "tabs": Array [], + }, + "pstyle": null, + "runProperty": Object {}, + "start": 1, + "suffix": "tab", + "text": "(%8)", + }, + Object { + "format": "decimalEnclosedCircle", + "jc": "left", + "level": 8, + "levelRestart": null, + "paragraphProperty": Object { + "indent": Object { + "end": null, + "firstLineChars": null, + "hangingChars": null, + "specialIndent": Object { + "type": "hanging", + "val": 420, + }, + "start": 3780, + "startChars": null, + }, + "runProperty": Object {}, + "tabs": Array [], + }, + "pstyle": null, + "runProperty": Object {}, + "start": 1, + "suffix": "tab", + "text": "%9", + }, + ], + "numStyleLink": null, + "styleLink": null, + }, + Object { + "id": 139, + "levels": Array [ + Object { + "format": "decimal", + "jc": "left", + "level": 0, + "levelRestart": null, + "paragraphProperty": Object { + "indent": Object { + "end": null, + "firstLineChars": null, + "hangingChars": null, + "specialIndent": Object { + "type": "hanging", + "val": 360, + }, + "start": 540, + "startChars": null, + }, + "runProperty": Object {}, + "tabs": Array [], + }, + "pstyle": null, + "runProperty": Object { + "fonts": Object { + "hint": "eastAsia", + }, + }, + "start": 1, + "suffix": "tab", + "text": "%1.", + }, + Object { + "format": "aiueoFullWidth", + "jc": "left", + "level": 1, + "levelRestart": null, + "paragraphProperty": Object { + "indent": Object { + "end": null, + "firstLineChars": null, + "hangingChars": null, + "specialIndent": Object { + "type": "hanging", + "val": 420, + }, + "start": 840, + "startChars": null, + }, + "runProperty": Object {}, + "tabs": Array [], + }, + "pstyle": null, + "runProperty": Object {}, + "start": 1, + "suffix": "tab", + "text": "(%2)", + }, + Object { + "format": "decimalEnclosedCircle", + "jc": "left", + "level": 2, + "levelRestart": null, + "paragraphProperty": Object { + "indent": Object { + "end": null, + "firstLineChars": null, + "hangingChars": null, + "specialIndent": Object { + "type": "hanging", + "val": 420, + }, + "start": 1260, + "startChars": null, + }, + "runProperty": Object {}, + "tabs": Array [], + }, + "pstyle": null, + "runProperty": Object {}, + "start": 1, + "suffix": "tab", + "text": "%3", + }, + Object { + "format": "decimal", + "jc": "left", + "level": 3, + "levelRestart": null, + "paragraphProperty": Object { + "indent": Object { + "end": null, + "firstLineChars": null, + "hangingChars": null, + "specialIndent": Object { + "type": "hanging", + "val": 420, + }, + "start": 1680, + "startChars": null, + }, + "runProperty": Object {}, + "tabs": Array [], + }, + "pstyle": null, + "runProperty": Object {}, + "start": 1, + "suffix": "tab", + "text": "%4.", + }, + Object { + "format": "aiueoFullWidth", + "jc": "left", + "level": 4, + "levelRestart": null, + "paragraphProperty": Object { + "indent": Object { + "end": null, + "firstLineChars": null, + "hangingChars": null, + "specialIndent": Object { + "type": "hanging", + "val": 420, + }, + "start": 2100, + "startChars": null, + }, + "runProperty": Object {}, + "tabs": Array [], + }, + "pstyle": null, + "runProperty": Object {}, + "start": 1, + "suffix": "tab", + "text": "(%5)", + }, + Object { + "format": "decimalEnclosedCircle", + "jc": "left", + "level": 5, + "levelRestart": null, + "paragraphProperty": Object { + "indent": Object { + "end": null, + "firstLineChars": null, + "hangingChars": null, + "specialIndent": Object { + "type": "hanging", + "val": 420, + }, + "start": 2520, + "startChars": null, + }, + "runProperty": Object {}, + "tabs": Array [], + }, + "pstyle": null, + "runProperty": Object {}, + "start": 1, + "suffix": "tab", + "text": "%6", + }, + Object { + "format": "decimal", + "jc": "left", + "level": 6, + "levelRestart": null, + "paragraphProperty": Object { + "indent": Object { + "end": null, + "firstLineChars": null, + "hangingChars": null, + "specialIndent": Object { + "type": "hanging", + "val": 420, + }, + "start": 2940, + "startChars": null, + }, + "runProperty": Object {}, + "tabs": Array [], + }, + "pstyle": null, + "runProperty": Object {}, + "start": 1, + "suffix": "tab", + "text": "%7.", + }, + Object { + "format": "aiueoFullWidth", + "jc": "left", + "level": 7, + "levelRestart": null, + "paragraphProperty": Object { + "indent": Object { + "end": null, + "firstLineChars": null, + "hangingChars": null, + "specialIndent": Object { + "type": "hanging", + "val": 420, + }, + "start": 3360, + "startChars": null, + }, + "runProperty": Object {}, + "tabs": Array [], + }, + "pstyle": null, + "runProperty": Object {}, + "start": 1, + "suffix": "tab", + "text": "(%8)", + }, + Object { + "format": "decimalEnclosedCircle", + "jc": "left", + "level": 8, + "levelRestart": null, + "paragraphProperty": Object { + "indent": Object { + "end": null, + "firstLineChars": null, + "hangingChars": null, + "specialIndent": Object { + "type": "hanging", + "val": 420, + }, + "start": 3780, + "startChars": null, + }, + "runProperty": Object {}, + "tabs": Array [], + }, + "pstyle": null, + "runProperty": Object {}, + "start": 1, + "suffix": "tab", + "text": "%9", + }, + ], + "numStyleLink": null, + "styleLink": null, + }, + Object { + "id": 140, + "levels": Array [ + Object { + "format": "decimal", + "jc": "left", + "level": 0, + "levelRestart": null, + "paragraphProperty": Object { + "indent": Object { + "end": null, + "firstLineChars": null, + "hangingChars": null, + "specialIndent": Object { + "type": "hanging", + "val": 360, + }, + "start": 540, + "startChars": null, + }, + "runProperty": Object {}, + "tabs": Array [], + }, + "pstyle": null, + "runProperty": Object { + "fonts": Object { + "hint": "eastAsia", + }, + }, + "start": 1, + "suffix": "tab", + "text": "%1.", + }, + Object { + "format": "aiueoFullWidth", + "jc": "left", + "level": 1, + "levelRestart": null, + "paragraphProperty": Object { + "indent": Object { + "end": null, + "firstLineChars": null, + "hangingChars": null, + "specialIndent": Object { + "type": "hanging", + "val": 420, + }, + "start": 840, + "startChars": null, + }, + "runProperty": Object {}, + "tabs": Array [], + }, + "pstyle": null, + "runProperty": Object {}, + "start": 1, + "suffix": "tab", + "text": "(%2)", + }, + Object { + "format": "decimalEnclosedCircle", + "jc": "left", + "level": 2, + "levelRestart": null, + "paragraphProperty": Object { + "indent": Object { + "end": null, + "firstLineChars": null, + "hangingChars": null, + "specialIndent": Object { + "type": "hanging", + "val": 420, + }, + "start": 1260, + "startChars": null, + }, + "runProperty": Object {}, + "tabs": Array [], + }, + "pstyle": null, + "runProperty": Object {}, + "start": 1, + "suffix": "tab", + "text": "%3", + }, + Object { + "format": "decimal", + "jc": "left", + "level": 3, + "levelRestart": null, + "paragraphProperty": Object { + "indent": Object { + "end": null, + "firstLineChars": null, + "hangingChars": null, + "specialIndent": Object { + "type": "hanging", + "val": 420, + }, + "start": 1680, + "startChars": null, + }, + "runProperty": Object {}, + "tabs": Array [], + }, + "pstyle": null, + "runProperty": Object {}, + "start": 1, + "suffix": "tab", + "text": "%4.", + }, + Object { + "format": "aiueoFullWidth", + "jc": "left", + "level": 4, + "levelRestart": null, + "paragraphProperty": Object { + "indent": Object { + "end": null, + "firstLineChars": null, + "hangingChars": null, + "specialIndent": Object { + "type": "hanging", + "val": 420, + }, + "start": 2100, + "startChars": null, + }, + "runProperty": Object {}, + "tabs": Array [], + }, + "pstyle": null, + "runProperty": Object {}, + "start": 1, + "suffix": "tab", + "text": "(%5)", + }, + Object { + "format": "decimalEnclosedCircle", + "jc": "left", + "level": 5, + "levelRestart": null, + "paragraphProperty": Object { + "indent": Object { + "end": null, + "firstLineChars": null, + "hangingChars": null, + "specialIndent": Object { + "type": "hanging", + "val": 420, + }, + "start": 2520, + "startChars": null, + }, + "runProperty": Object {}, + "tabs": Array [], + }, + "pstyle": null, + "runProperty": Object {}, + "start": 1, + "suffix": "tab", + "text": "%6", + }, + Object { + "format": "decimal", + "jc": "left", + "level": 6, + "levelRestart": null, + "paragraphProperty": Object { + "indent": Object { + "end": null, + "firstLineChars": null, + "hangingChars": null, + "specialIndent": Object { + "type": "hanging", + "val": 420, + }, + "start": 2940, + "startChars": null, + }, + "runProperty": Object {}, + "tabs": Array [], + }, + "pstyle": null, + "runProperty": Object {}, + "start": 1, + "suffix": "tab", + "text": "%7.", + }, + Object { + "format": "aiueoFullWidth", + "jc": "left", + "level": 7, + "levelRestart": null, + "paragraphProperty": Object { + "indent": Object { + "end": null, + "firstLineChars": null, + "hangingChars": null, + "specialIndent": Object { + "type": "hanging", + "val": 420, + }, + "start": 3360, + "startChars": null, + }, + "runProperty": Object {}, + "tabs": Array [], + }, + "pstyle": null, + "runProperty": Object {}, + "start": 1, + "suffix": "tab", + "text": "(%8)", + }, + Object { + "format": "decimalEnclosedCircle", + "jc": "left", + "level": 8, + "levelRestart": null, + "paragraphProperty": Object { + "indent": Object { + "end": null, + "firstLineChars": null, + "hangingChars": null, + "specialIndent": Object { + "type": "hanging", + "val": 420, + }, + "start": 3780, + "startChars": null, + }, + "runProperty": Object {}, + "tabs": Array [], + }, + "pstyle": null, + "runProperty": Object {}, + "start": 1, + "suffix": "tab", + "text": "%9", + }, + ], + "numStyleLink": null, + "styleLink": null, + }, + Object { + "id": 141, + "levels": Array [ + Object { + "format": "lowerLetter", + "jc": "left", + "level": 0, + "levelRestart": null, + "paragraphProperty": Object { + "indent": Object { + "end": null, + "firstLineChars": null, + "hangingChars": null, + "specialIndent": Object { + "type": "hanging", + "val": 454, + }, + "start": 1588, + "startChars": null, + }, + "runProperty": Object {}, + "tabs": Array [], + }, + "pstyle": null, + "runProperty": Object {}, + "start": 1, + "suffix": "tab", + "text": "(%1)", + }, + Object { + "format": "aiueoFullWidth", + "jc": "left", + "level": 1, + "levelRestart": null, + "paragraphProperty": Object { + "indent": Object { + "end": null, + "firstLineChars": null, + "hangingChars": null, + "specialIndent": Object { + "type": "hanging", + "val": 420, + }, + "start": 840, + "startChars": null, + }, + "runProperty": Object {}, + "tabs": Array [], + }, + "pstyle": null, + "runProperty": Object {}, + "start": 1, + "suffix": "tab", + "text": "(%2)", + }, + Object { + "format": "decimalEnclosedCircle", + "jc": "left", + "level": 2, + "levelRestart": null, + "paragraphProperty": Object { + "indent": Object { + "end": null, + "firstLineChars": null, + "hangingChars": null, + "specialIndent": Object { + "type": "hanging", + "val": 420, + }, + "start": 1260, + "startChars": null, + }, + "runProperty": Object {}, + "tabs": Array [], + }, + "pstyle": null, + "runProperty": Object {}, + "start": 1, + "suffix": "tab", + "text": "%3", + }, + Object { + "format": "decimal", + "jc": "left", + "level": 3, + "levelRestart": null, + "paragraphProperty": Object { + "indent": Object { + "end": null, + "firstLineChars": null, + "hangingChars": null, + "specialIndent": Object { + "type": "hanging", + "val": 420, + }, + "start": 1680, + "startChars": null, + }, + "runProperty": Object {}, + "tabs": Array [], + }, + "pstyle": null, + "runProperty": Object {}, + "start": 1, + "suffix": "tab", + "text": "%4.", + }, + Object { + "format": "aiueoFullWidth", + "jc": "left", + "level": 4, + "levelRestart": null, + "paragraphProperty": Object { + "indent": Object { + "end": null, + "firstLineChars": null, + "hangingChars": null, + "specialIndent": Object { + "type": "hanging", + "val": 420, + }, + "start": 2100, + "startChars": null, + }, + "runProperty": Object {}, + "tabs": Array [], + }, + "pstyle": null, + "runProperty": Object {}, + "start": 1, + "suffix": "tab", + "text": "(%5)", + }, + Object { + "format": "decimalEnclosedCircle", + "jc": "left", + "level": 5, + "levelRestart": null, + "paragraphProperty": Object { + "indent": Object { + "end": null, + "firstLineChars": null, + "hangingChars": null, + "specialIndent": Object { + "type": "hanging", + "val": 420, + }, + "start": 2520, + "startChars": null, + }, + "runProperty": Object {}, + "tabs": Array [], + }, + "pstyle": null, + "runProperty": Object {}, + "start": 1, + "suffix": "tab", + "text": "%6", + }, + Object { + "format": "decimal", + "jc": "left", + "level": 6, + "levelRestart": null, + "paragraphProperty": Object { + "indent": Object { + "end": null, + "firstLineChars": null, + "hangingChars": null, + "specialIndent": Object { + "type": "hanging", + "val": 420, + }, + "start": 2940, + "startChars": null, + }, + "runProperty": Object {}, + "tabs": Array [], + }, + "pstyle": null, + "runProperty": Object {}, + "start": 1, + "suffix": "tab", + "text": "%7.", + }, + Object { + "format": "aiueoFullWidth", + "jc": "left", + "level": 7, + "levelRestart": null, + "paragraphProperty": Object { + "indent": Object { + "end": null, + "firstLineChars": null, + "hangingChars": null, + "specialIndent": Object { + "type": "hanging", + "val": 420, + }, + "start": 3360, + "startChars": null, + }, + "runProperty": Object {}, + "tabs": Array [], + }, + "pstyle": null, + "runProperty": Object {}, + "start": 1, + "suffix": "tab", + "text": "(%8)", + }, + Object { + "format": "decimalEnclosedCircle", + "jc": "left", + "level": 8, + "levelRestart": null, + "paragraphProperty": Object { + "indent": Object { + "end": null, + "firstLineChars": null, + "hangingChars": null, + "specialIndent": Object { + "type": "hanging", + "val": 420, + }, + "start": 3780, + "startChars": null, + }, + "runProperty": Object {}, + "tabs": Array [], + }, + "pstyle": null, + "runProperty": Object {}, + "start": 1, + "suffix": "tab", + "text": "%9", + }, + ], + "numStyleLink": null, + "styleLink": null, + }, + Object { + "id": 142, + "levels": Array [ + Object { + "format": "decimal", + "jc": "left", + "level": 0, + "levelRestart": null, + "paragraphProperty": Object { + "indent": Object { + "end": null, + "firstLineChars": null, + "hangingChars": null, + "specialIndent": Object { + "type": "hanging", + "val": 360, + }, + "start": 540, + "startChars": null, + }, + "runProperty": Object {}, + "tabs": Array [], + }, + "pstyle": null, + "runProperty": Object { + "fonts": Object { + "hint": "eastAsia", + }, + }, + "start": 1, + "suffix": "tab", + "text": "%1.", + }, + Object { + "format": "aiueoFullWidth", + "jc": "left", + "level": 1, + "levelRestart": null, + "paragraphProperty": Object { + "indent": Object { + "end": null, + "firstLineChars": null, + "hangingChars": null, + "specialIndent": Object { + "type": "hanging", + "val": 420, + }, + "start": 840, + "startChars": null, + }, + "runProperty": Object {}, + "tabs": Array [], + }, + "pstyle": null, + "runProperty": Object {}, + "start": 1, + "suffix": "tab", + "text": "(%2)", + }, + Object { + "format": "decimalEnclosedCircle", + "jc": "left", + "level": 2, + "levelRestart": null, + "paragraphProperty": Object { + "indent": Object { + "end": null, + "firstLineChars": null, + "hangingChars": null, + "specialIndent": Object { + "type": "hanging", + "val": 420, + }, + "start": 1260, + "startChars": null, + }, + "runProperty": Object {}, + "tabs": Array [], + }, + "pstyle": null, + "runProperty": Object {}, + "start": 1, + "suffix": "tab", + "text": "%3", + }, + Object { + "format": "decimal", + "jc": "left", + "level": 3, + "levelRestart": null, + "paragraphProperty": Object { + "indent": Object { + "end": null, + "firstLineChars": null, + "hangingChars": null, + "specialIndent": Object { + "type": "hanging", + "val": 420, + }, + "start": 1680, + "startChars": null, + }, + "runProperty": Object {}, + "tabs": Array [], + }, + "pstyle": null, + "runProperty": Object {}, + "start": 1, + "suffix": "tab", + "text": "%4.", + }, + Object { + "format": "aiueoFullWidth", + "jc": "left", + "level": 4, + "levelRestart": null, + "paragraphProperty": Object { + "indent": Object { + "end": null, + "firstLineChars": null, + "hangingChars": null, + "specialIndent": Object { + "type": "hanging", + "val": 420, + }, + "start": 2100, + "startChars": null, + }, + "runProperty": Object {}, + "tabs": Array [], + }, + "pstyle": null, + "runProperty": Object {}, + "start": 1, + "suffix": "tab", + "text": "(%5)", + }, + Object { + "format": "decimalEnclosedCircle", + "jc": "left", + "level": 5, + "levelRestart": null, + "paragraphProperty": Object { + "indent": Object { + "end": null, + "firstLineChars": null, + "hangingChars": null, + "specialIndent": Object { + "type": "hanging", + "val": 420, + }, + "start": 2520, + "startChars": null, + }, + "runProperty": Object {}, + "tabs": Array [], + }, + "pstyle": null, + "runProperty": Object {}, + "start": 1, + "suffix": "tab", + "text": "%6", + }, + Object { + "format": "decimal", + "jc": "left", + "level": 6, + "levelRestart": null, + "paragraphProperty": Object { + "indent": Object { + "end": null, + "firstLineChars": null, + "hangingChars": null, + "specialIndent": Object { + "type": "hanging", + "val": 420, + }, + "start": 2940, + "startChars": null, + }, + "runProperty": Object {}, + "tabs": Array [], + }, + "pstyle": null, + "runProperty": Object {}, + "start": 1, + "suffix": "tab", + "text": "%7.", + }, + Object { + "format": "aiueoFullWidth", + "jc": "left", + "level": 7, + "levelRestart": null, + "paragraphProperty": Object { + "indent": Object { + "end": null, + "firstLineChars": null, + "hangingChars": null, + "specialIndent": Object { + "type": "hanging", + "val": 420, + }, + "start": 3360, + "startChars": null, + }, + "runProperty": Object {}, + "tabs": Array [], + }, + "pstyle": null, + "runProperty": Object {}, + "start": 1, + "suffix": "tab", + "text": "(%8)", + }, + Object { + "format": "decimalEnclosedCircle", + "jc": "left", + "level": 8, + "levelRestart": null, + "paragraphProperty": Object { + "indent": Object { + "end": null, + "firstLineChars": null, + "hangingChars": null, + "specialIndent": Object { + "type": "hanging", + "val": 420, + }, + "start": 3780, + "startChars": null, + }, + "runProperty": Object {}, + "tabs": Array [], + }, + "pstyle": null, + "runProperty": Object {}, + "start": 1, + "suffix": "tab", + "text": "%9", + }, + ], + "numStyleLink": null, + "styleLink": null, + }, + Object { + "id": 143, + "levels": Array [ + Object { + "format": "decimal", + "jc": "left", + "level": 0, + "levelRestart": null, + "paragraphProperty": Object { + "indent": Object { + "end": null, + "firstLineChars": null, + "hangingChars": null, + "specialIndent": Object { + "type": "hanging", + "val": 360, + }, + "start": 540, + "startChars": null, + }, + "runProperty": Object {}, + "tabs": Array [], + }, + "pstyle": null, + "runProperty": Object { + "fonts": Object { + "hint": "eastAsia", + }, + }, + "start": 1, + "suffix": "tab", + "text": "%1.", + }, + Object { + "format": "aiueoFullWidth", + "jc": "left", + "level": 1, + "levelRestart": null, + "paragraphProperty": Object { + "indent": Object { + "end": null, + "firstLineChars": null, + "hangingChars": null, + "specialIndent": Object { + "type": "hanging", + "val": 420, + }, + "start": 840, + "startChars": null, + }, + "runProperty": Object {}, + "tabs": Array [], + }, + "pstyle": null, + "runProperty": Object {}, + "start": 1, + "suffix": "tab", + "text": "(%2)", + }, + Object { + "format": "decimalEnclosedCircle", + "jc": "left", + "level": 2, + "levelRestart": null, + "paragraphProperty": Object { + "indent": Object { + "end": null, + "firstLineChars": null, + "hangingChars": null, + "specialIndent": Object { + "type": "hanging", + "val": 420, + }, + "start": 1260, + "startChars": null, + }, + "runProperty": Object {}, + "tabs": Array [], + }, + "pstyle": null, + "runProperty": Object {}, + "start": 1, + "suffix": "tab", + "text": "%3", + }, + Object { + "format": "decimal", + "jc": "left", + "level": 3, + "levelRestart": null, + "paragraphProperty": Object { + "indent": Object { + "end": null, + "firstLineChars": null, + "hangingChars": null, + "specialIndent": Object { + "type": "hanging", + "val": 420, + }, + "start": 1680, + "startChars": null, + }, + "runProperty": Object {}, + "tabs": Array [], + }, + "pstyle": null, + "runProperty": Object {}, + "start": 1, + "suffix": "tab", + "text": "%4.", + }, + Object { + "format": "aiueoFullWidth", + "jc": "left", + "level": 4, + "levelRestart": null, + "paragraphProperty": Object { + "indent": Object { + "end": null, + "firstLineChars": null, + "hangingChars": null, + "specialIndent": Object { + "type": "hanging", + "val": 420, + }, + "start": 2100, + "startChars": null, + }, + "runProperty": Object {}, + "tabs": Array [], + }, + "pstyle": null, + "runProperty": Object {}, + "start": 1, + "suffix": "tab", + "text": "(%5)", + }, + Object { + "format": "decimalEnclosedCircle", + "jc": "left", + "level": 5, + "levelRestart": null, + "paragraphProperty": Object { + "indent": Object { + "end": null, + "firstLineChars": null, + "hangingChars": null, + "specialIndent": Object { + "type": "hanging", + "val": 420, + }, + "start": 2520, + "startChars": null, + }, + "runProperty": Object {}, + "tabs": Array [], + }, + "pstyle": null, + "runProperty": Object {}, + "start": 1, + "suffix": "tab", + "text": "%6", + }, + Object { + "format": "decimal", + "jc": "left", + "level": 6, + "levelRestart": null, + "paragraphProperty": Object { + "indent": Object { + "end": null, + "firstLineChars": null, + "hangingChars": null, + "specialIndent": Object { + "type": "hanging", + "val": 420, + }, + "start": 2940, + "startChars": null, + }, + "runProperty": Object {}, + "tabs": Array [], + }, + "pstyle": null, + "runProperty": Object {}, + "start": 1, + "suffix": "tab", + "text": "%7.", + }, + Object { + "format": "aiueoFullWidth", + "jc": "left", + "level": 7, + "levelRestart": null, + "paragraphProperty": Object { + "indent": Object { + "end": null, + "firstLineChars": null, + "hangingChars": null, + "specialIndent": Object { + "type": "hanging", + "val": 420, + }, + "start": 3360, + "startChars": null, + }, + "runProperty": Object {}, + "tabs": Array [], + }, + "pstyle": null, + "runProperty": Object {}, + "start": 1, + "suffix": "tab", + "text": "(%8)", + }, + Object { + "format": "decimalEnclosedCircle", + "jc": "left", + "level": 8, + "levelRestart": null, + "paragraphProperty": Object { + "indent": Object { + "end": null, + "firstLineChars": null, + "hangingChars": null, + "specialIndent": Object { + "type": "hanging", + "val": 420, + }, + "start": 3780, + "startChars": null, + }, + "runProperty": Object {}, + "tabs": Array [], + }, + "pstyle": null, + "runProperty": Object {}, + "start": 1, + "suffix": "tab", + "text": "%9", + }, + ], + "numStyleLink": null, + "styleLink": null, + }, + Object { + "id": 144, + "levels": Array [ + Object { + "format": "decimal", + "jc": "left", + "level": 0, + "levelRestart": null, + "paragraphProperty": Object { + "indent": Object { + "end": null, + "firstLineChars": null, + "hangingChars": null, + "specialIndent": Object { + "type": "hanging", + "val": 360, + }, + "start": 540, + "startChars": null, + }, + "runProperty": Object {}, + "tabs": Array [], + }, + "pstyle": null, + "runProperty": Object { + "fonts": Object { + "hint": "eastAsia", + }, + }, + "start": 1, + "suffix": "tab", + "text": "%1.", + }, + Object { + "format": "aiueoFullWidth", + "jc": "left", + "level": 1, + "levelRestart": null, + "paragraphProperty": Object { + "indent": Object { + "end": null, + "firstLineChars": null, + "hangingChars": null, + "specialIndent": Object { + "type": "hanging", + "val": 420, + }, + "start": 840, + "startChars": null, + }, + "runProperty": Object {}, + "tabs": Array [], + }, + "pstyle": null, + "runProperty": Object {}, + "start": 1, + "suffix": "tab", + "text": "(%2)", + }, + Object { + "format": "decimalEnclosedCircle", + "jc": "left", + "level": 2, + "levelRestart": null, + "paragraphProperty": Object { + "indent": Object { + "end": null, + "firstLineChars": null, + "hangingChars": null, + "specialIndent": Object { + "type": "hanging", + "val": 420, + }, + "start": 1260, + "startChars": null, + }, + "runProperty": Object {}, + "tabs": Array [], + }, + "pstyle": null, + "runProperty": Object {}, + "start": 1, + "suffix": "tab", + "text": "%3", + }, + Object { + "format": "decimal", + "jc": "left", + "level": 3, + "levelRestart": null, + "paragraphProperty": Object { + "indent": Object { + "end": null, + "firstLineChars": null, + "hangingChars": null, + "specialIndent": Object { + "type": "hanging", + "val": 420, + }, + "start": 1680, + "startChars": null, + }, + "runProperty": Object {}, + "tabs": Array [], + }, + "pstyle": null, + "runProperty": Object {}, + "start": 1, + "suffix": "tab", + "text": "%4.", + }, + Object { + "format": "aiueoFullWidth", + "jc": "left", + "level": 4, + "levelRestart": null, + "paragraphProperty": Object { + "indent": Object { + "end": null, + "firstLineChars": null, + "hangingChars": null, + "specialIndent": Object { + "type": "hanging", + "val": 420, + }, + "start": 2100, + "startChars": null, + }, + "runProperty": Object {}, + "tabs": Array [], + }, + "pstyle": null, + "runProperty": Object {}, + "start": 1, + "suffix": "tab", + "text": "(%5)", + }, + Object { + "format": "decimalEnclosedCircle", + "jc": "left", + "level": 5, + "levelRestart": null, + "paragraphProperty": Object { + "indent": Object { + "end": null, + "firstLineChars": null, + "hangingChars": null, + "specialIndent": Object { + "type": "hanging", + "val": 420, + }, + "start": 2520, + "startChars": null, + }, + "runProperty": Object {}, + "tabs": Array [], + }, + "pstyle": null, + "runProperty": Object {}, + "start": 1, + "suffix": "tab", + "text": "%6", + }, + Object { + "format": "decimal", + "jc": "left", + "level": 6, + "levelRestart": null, + "paragraphProperty": Object { + "indent": Object { + "end": null, + "firstLineChars": null, + "hangingChars": null, + "specialIndent": Object { + "type": "hanging", + "val": 420, + }, + "start": 2940, + "startChars": null, + }, + "runProperty": Object {}, + "tabs": Array [], + }, + "pstyle": null, + "runProperty": Object {}, + "start": 1, + "suffix": "tab", + "text": "%7.", + }, + Object { + "format": "aiueoFullWidth", + "jc": "left", + "level": 7, + "levelRestart": null, + "paragraphProperty": Object { + "indent": Object { + "end": null, + "firstLineChars": null, + "hangingChars": null, + "specialIndent": Object { + "type": "hanging", + "val": 420, + }, + "start": 3360, + "startChars": null, + }, + "runProperty": Object {}, + "tabs": Array [], + }, + "pstyle": null, + "runProperty": Object {}, + "start": 1, + "suffix": "tab", + "text": "(%8)", + }, + Object { + "format": "decimalEnclosedCircle", + "jc": "left", + "level": 8, + "levelRestart": null, + "paragraphProperty": Object { + "indent": Object { + "end": null, + "firstLineChars": null, + "hangingChars": null, + "specialIndent": Object { + "type": "hanging", + "val": 420, + }, + "start": 3780, + "startChars": null, + }, + "runProperty": Object {}, + "tabs": Array [], + }, + "pstyle": null, + "runProperty": Object {}, + "start": 1, + "suffix": "tab", + "text": "%9", + }, + ], + "numStyleLink": null, + "styleLink": null, + }, + Object { + "id": 145, + "levels": Array [ + Object { + "format": "decimal", + "jc": "left", + "level": 0, + "levelRestart": null, + "paragraphProperty": Object { + "indent": Object { + "end": null, + "firstLineChars": null, + "hangingChars": null, + "specialIndent": Object { + "type": "hanging", + "val": 360, + }, + "start": 540, + "startChars": null, + }, + "runProperty": Object {}, + "tabs": Array [], + }, + "pstyle": null, + "runProperty": Object { + "fonts": Object { + "hint": "eastAsia", + }, + }, + "start": 1, + "suffix": "tab", + "text": "%1.", + }, + Object { + "format": "aiueoFullWidth", + "jc": "left", + "level": 1, + "levelRestart": null, + "paragraphProperty": Object { + "indent": Object { + "end": null, + "firstLineChars": null, + "hangingChars": null, + "specialIndent": Object { + "type": "hanging", + "val": 420, + }, + "start": 840, + "startChars": null, + }, + "runProperty": Object {}, + "tabs": Array [], + }, + "pstyle": null, + "runProperty": Object {}, + "start": 1, + "suffix": "tab", + "text": "(%2)", + }, + Object { + "format": "decimalEnclosedCircle", + "jc": "left", + "level": 2, + "levelRestart": null, + "paragraphProperty": Object { + "indent": Object { + "end": null, + "firstLineChars": null, + "hangingChars": null, + "specialIndent": Object { + "type": "hanging", + "val": 420, + }, + "start": 1260, + "startChars": null, + }, + "runProperty": Object {}, + "tabs": Array [], + }, + "pstyle": null, + "runProperty": Object {}, + "start": 1, + "suffix": "tab", + "text": "%3", + }, + Object { + "format": "decimal", + "jc": "left", + "level": 3, + "levelRestart": null, + "paragraphProperty": Object { + "indent": Object { + "end": null, + "firstLineChars": null, + "hangingChars": null, + "specialIndent": Object { + "type": "hanging", + "val": 420, + }, + "start": 1680, + "startChars": null, + }, + "runProperty": Object {}, + "tabs": Array [], + }, + "pstyle": null, + "runProperty": Object {}, + "start": 1, + "suffix": "tab", + "text": "%4.", + }, + Object { + "format": "aiueoFullWidth", + "jc": "left", + "level": 4, + "levelRestart": null, + "paragraphProperty": Object { + "indent": Object { + "end": null, + "firstLineChars": null, + "hangingChars": null, + "specialIndent": Object { + "type": "hanging", + "val": 420, + }, + "start": 2100, + "startChars": null, + }, + "runProperty": Object {}, + "tabs": Array [], + }, + "pstyle": null, + "runProperty": Object {}, + "start": 1, + "suffix": "tab", + "text": "(%5)", + }, + Object { + "format": "decimalEnclosedCircle", + "jc": "left", + "level": 5, + "levelRestart": null, + "paragraphProperty": Object { + "indent": Object { + "end": null, + "firstLineChars": null, + "hangingChars": null, + "specialIndent": Object { + "type": "hanging", + "val": 420, + }, + "start": 2520, + "startChars": null, + }, + "runProperty": Object {}, + "tabs": Array [], + }, + "pstyle": null, + "runProperty": Object {}, + "start": 1, + "suffix": "tab", + "text": "%6", + }, + Object { + "format": "decimal", + "jc": "left", + "level": 6, + "levelRestart": null, + "paragraphProperty": Object { + "indent": Object { + "end": null, + "firstLineChars": null, + "hangingChars": null, + "specialIndent": Object { + "type": "hanging", + "val": 420, + }, + "start": 2940, + "startChars": null, + }, + "runProperty": Object {}, + "tabs": Array [], + }, + "pstyle": null, + "runProperty": Object {}, + "start": 1, + "suffix": "tab", + "text": "%7.", + }, + Object { + "format": "aiueoFullWidth", + "jc": "left", + "level": 7, + "levelRestart": null, + "paragraphProperty": Object { + "indent": Object { + "end": null, + "firstLineChars": null, + "hangingChars": null, + "specialIndent": Object { + "type": "hanging", + "val": 420, + }, + "start": 3360, + "startChars": null, + }, + "runProperty": Object {}, + "tabs": Array [], + }, + "pstyle": null, + "runProperty": Object {}, + "start": 1, + "suffix": "tab", + "text": "(%8)", + }, + Object { + "format": "decimalEnclosedCircle", + "jc": "left", + "level": 8, + "levelRestart": null, + "paragraphProperty": Object { + "indent": Object { + "end": null, + "firstLineChars": null, + "hangingChars": null, + "specialIndent": Object { + "type": "hanging", + "val": 420, + }, + "start": 3780, + "startChars": null, + }, + "runProperty": Object {}, + "tabs": Array [], + }, + "pstyle": null, + "runProperty": Object {}, + "start": 1, + "suffix": "tab", + "text": "%9", + }, + ], + "numStyleLink": null, + "styleLink": null, + }, + Object { + "id": 146, + "levels": Array [ + Object { + "format": "decimal", + "jc": "left", + "level": 0, + "levelRestart": null, + "paragraphProperty": Object { + "indent": Object { + "end": null, + "firstLineChars": null, + "hangingChars": null, + "specialIndent": Object { + "type": "hanging", + "val": 360, + }, + "start": 540, + "startChars": null, + }, + "runProperty": Object {}, + "tabs": Array [], + }, + "pstyle": null, + "runProperty": Object { + "fonts": Object { + "hint": "eastAsia", + }, + }, + "start": 1, + "suffix": "tab", + "text": "%1.", + }, + Object { + "format": "aiueoFullWidth", + "jc": "left", + "level": 1, + "levelRestart": null, + "paragraphProperty": Object { + "indent": Object { + "end": null, + "firstLineChars": null, + "hangingChars": null, + "specialIndent": Object { + "type": "hanging", + "val": 420, + }, + "start": 840, + "startChars": null, + }, + "runProperty": Object {}, + "tabs": Array [], + }, + "pstyle": null, + "runProperty": Object {}, + "start": 1, + "suffix": "tab", + "text": "(%2)", + }, + Object { + "format": "decimalEnclosedCircle", + "jc": "left", + "level": 2, + "levelRestart": null, + "paragraphProperty": Object { + "indent": Object { + "end": null, + "firstLineChars": null, + "hangingChars": null, + "specialIndent": Object { + "type": "hanging", + "val": 420, + }, + "start": 1260, + "startChars": null, + }, + "runProperty": Object {}, + "tabs": Array [], + }, + "pstyle": null, + "runProperty": Object {}, + "start": 1, + "suffix": "tab", + "text": "%3", + }, + Object { + "format": "decimal", + "jc": "left", + "level": 3, + "levelRestart": null, + "paragraphProperty": Object { + "indent": Object { + "end": null, + "firstLineChars": null, + "hangingChars": null, + "specialIndent": Object { + "type": "hanging", + "val": 420, + }, + "start": 1680, + "startChars": null, + }, + "runProperty": Object {}, + "tabs": Array [], + }, + "pstyle": null, + "runProperty": Object {}, + "start": 1, + "suffix": "tab", + "text": "%4.", + }, + Object { + "format": "aiueoFullWidth", + "jc": "left", + "level": 4, + "levelRestart": null, + "paragraphProperty": Object { + "indent": Object { + "end": null, + "firstLineChars": null, + "hangingChars": null, + "specialIndent": Object { + "type": "hanging", + "val": 420, + }, + "start": 2100, + "startChars": null, + }, + "runProperty": Object {}, + "tabs": Array [], + }, + "pstyle": null, + "runProperty": Object {}, + "start": 1, + "suffix": "tab", + "text": "(%5)", + }, + Object { + "format": "decimalEnclosedCircle", + "jc": "left", + "level": 5, + "levelRestart": null, + "paragraphProperty": Object { + "indent": Object { + "end": null, + "firstLineChars": null, + "hangingChars": null, + "specialIndent": Object { + "type": "hanging", + "val": 420, + }, + "start": 2520, + "startChars": null, + }, + "runProperty": Object {}, + "tabs": Array [], + }, + "pstyle": null, + "runProperty": Object {}, + "start": 1, + "suffix": "tab", + "text": "%6", + }, + Object { + "format": "decimal", + "jc": "left", + "level": 6, + "levelRestart": null, + "paragraphProperty": Object { + "indent": Object { + "end": null, + "firstLineChars": null, + "hangingChars": null, + "specialIndent": Object { + "type": "hanging", + "val": 420, + }, + "start": 2940, + "startChars": null, + }, + "runProperty": Object {}, + "tabs": Array [], + }, + "pstyle": null, + "runProperty": Object {}, + "start": 1, + "suffix": "tab", + "text": "%7.", + }, + Object { + "format": "aiueoFullWidth", + "jc": "left", + "level": 7, + "levelRestart": null, + "paragraphProperty": Object { + "indent": Object { + "end": null, + "firstLineChars": null, + "hangingChars": null, + "specialIndent": Object { + "type": "hanging", + "val": 420, + }, + "start": 3360, + "startChars": null, + }, + "runProperty": Object {}, + "tabs": Array [], + }, + "pstyle": null, + "runProperty": Object {}, + "start": 1, + "suffix": "tab", + "text": "(%8)", + }, + Object { + "format": "decimalEnclosedCircle", + "jc": "left", + "level": 8, + "levelRestart": null, + "paragraphProperty": Object { + "indent": Object { + "end": null, + "firstLineChars": null, + "hangingChars": null, + "specialIndent": Object { + "type": "hanging", + "val": 420, + }, + "start": 3780, + "startChars": null, + }, + "runProperty": Object {}, + "tabs": Array [], + }, + "pstyle": null, + "runProperty": Object {}, + "start": 1, + "suffix": "tab", + "text": "%9", + }, + ], + "numStyleLink": null, + "styleLink": null, + }, + Object { + "id": 147, + "levels": Array [ + Object { + "format": "decimal", + "jc": "left", + "level": 0, + "levelRestart": null, + "paragraphProperty": Object { + "indent": Object { + "end": null, + "firstLineChars": null, + "hangingChars": null, + "specialIndent": Object { + "type": "hanging", + "val": 360, + }, + "start": 540, + "startChars": null, + }, + "runProperty": Object {}, + "tabs": Array [], + }, + "pstyle": null, + "runProperty": Object { + "fonts": Object { + "hint": "eastAsia", + }, + }, + "start": 1, + "suffix": "tab", + "text": "%1.", + }, + Object { + "format": "aiueoFullWidth", + "jc": "left", + "level": 1, + "levelRestart": null, + "paragraphProperty": Object { + "indent": Object { + "end": null, + "firstLineChars": null, + "hangingChars": null, + "specialIndent": Object { + "type": "hanging", + "val": 420, + }, + "start": 840, + "startChars": null, + }, + "runProperty": Object {}, + "tabs": Array [], + }, + "pstyle": null, + "runProperty": Object {}, + "start": 1, + "suffix": "tab", + "text": "(%2)", + }, + Object { + "format": "decimalEnclosedCircle", + "jc": "left", + "level": 2, + "levelRestart": null, + "paragraphProperty": Object { + "indent": Object { + "end": null, + "firstLineChars": null, + "hangingChars": null, + "specialIndent": Object { + "type": "hanging", + "val": 420, + }, + "start": 1260, + "startChars": null, + }, + "runProperty": Object {}, + "tabs": Array [], + }, + "pstyle": null, + "runProperty": Object {}, + "start": 1, + "suffix": "tab", + "text": "%3", + }, + Object { + "format": "decimal", + "jc": "left", + "level": 3, + "levelRestart": null, + "paragraphProperty": Object { + "indent": Object { + "end": null, + "firstLineChars": null, + "hangingChars": null, + "specialIndent": Object { + "type": "hanging", + "val": 420, + }, + "start": 1680, + "startChars": null, + }, + "runProperty": Object {}, + "tabs": Array [], + }, + "pstyle": null, + "runProperty": Object {}, + "start": 1, + "suffix": "tab", + "text": "%4.", + }, + Object { + "format": "aiueoFullWidth", + "jc": "left", + "level": 4, + "levelRestart": null, + "paragraphProperty": Object { + "indent": Object { + "end": null, + "firstLineChars": null, + "hangingChars": null, + "specialIndent": Object { + "type": "hanging", + "val": 420, + }, + "start": 2100, + "startChars": null, + }, + "runProperty": Object {}, + "tabs": Array [], + }, + "pstyle": null, + "runProperty": Object {}, + "start": 1, + "suffix": "tab", + "text": "(%5)", + }, + Object { + "format": "decimalEnclosedCircle", + "jc": "left", + "level": 5, + "levelRestart": null, + "paragraphProperty": Object { + "indent": Object { + "end": null, + "firstLineChars": null, + "hangingChars": null, + "specialIndent": Object { + "type": "hanging", + "val": 420, + }, + "start": 2520, + "startChars": null, + }, + "runProperty": Object {}, + "tabs": Array [], + }, + "pstyle": null, + "runProperty": Object {}, + "start": 1, + "suffix": "tab", + "text": "%6", + }, + Object { + "format": "decimal", + "jc": "left", + "level": 6, + "levelRestart": null, + "paragraphProperty": Object { + "indent": Object { + "end": null, + "firstLineChars": null, + "hangingChars": null, + "specialIndent": Object { + "type": "hanging", + "val": 420, + }, + "start": 2940, + "startChars": null, + }, + "runProperty": Object {}, + "tabs": Array [], + }, + "pstyle": null, + "runProperty": Object {}, + "start": 1, + "suffix": "tab", + "text": "%7.", + }, + Object { + "format": "aiueoFullWidth", + "jc": "left", + "level": 7, + "levelRestart": null, + "paragraphProperty": Object { + "indent": Object { + "end": null, + "firstLineChars": null, + "hangingChars": null, + "specialIndent": Object { + "type": "hanging", + "val": 420, + }, + "start": 3360, + "startChars": null, + }, + "runProperty": Object {}, + "tabs": Array [], + }, + "pstyle": null, + "runProperty": Object {}, + "start": 1, + "suffix": "tab", + "text": "(%8)", + }, + Object { + "format": "decimalEnclosedCircle", + "jc": "left", + "level": 8, + "levelRestart": null, + "paragraphProperty": Object { + "indent": Object { + "end": null, + "firstLineChars": null, + "hangingChars": null, + "specialIndent": Object { + "type": "hanging", + "val": 420, + }, + "start": 3780, + "startChars": null, + }, + "runProperty": Object {}, + "tabs": Array [], + }, + "pstyle": null, + "runProperty": Object {}, + "start": 1, + "suffix": "tab", + "text": "%9", + }, + ], + "numStyleLink": null, + "styleLink": null, + }, + Object { + "id": 148, + "levels": Array [ + Object { + "format": "bullet", + "jc": "left", + "level": 0, + "levelRestart": null, + "paragraphProperty": Object { + "indent": Object { + "end": null, + "firstLineChars": null, + "hangingChars": null, + "specialIndent": Object { + "type": "hanging", + "val": 454, + }, + "start": 2155, + "startChars": null, + }, + "runProperty": Object {}, + "tabs": Array [], + }, + "pstyle": "Reference2", + "runProperty": Object { + "fonts": Object { + "ascii": "Wingdings", + "hiAnsi": "Wingdings", + "hint": "default", + }, + "sz": 24, + "szCs": 24, + }, + "start": 1, + "suffix": "tab", + "text": "", + }, + Object { + "format": "bullet", + "jc": "left", + "level": 1, + "levelRestart": null, + "paragraphProperty": Object { + "indent": Object { + "end": null, + "firstLineChars": null, + "hangingChars": null, + "specialIndent": Object { + "type": "hanging", + "val": 420, + }, + "start": 840, + "startChars": null, + }, + "runProperty": Object {}, + "tabs": Array [], + }, + "pstyle": null, + "runProperty": Object { + "fonts": Object { + "ascii": "Wingdings", + "hiAnsi": "Wingdings", + "hint": "default", + }, + }, + "start": 1, + "suffix": "tab", + "text": "", + }, + Object { + "format": "bullet", + "jc": "left", + "level": 2, + "levelRestart": null, + "paragraphProperty": Object { + "indent": Object { + "end": null, + "firstLineChars": null, + "hangingChars": null, + "specialIndent": Object { + "type": "hanging", + "val": 420, + }, + "start": 1260, + "startChars": null, + }, + "runProperty": Object {}, + "tabs": Array [], + }, + "pstyle": null, + "runProperty": Object { + "fonts": Object { + "ascii": "Wingdings", + "hiAnsi": "Wingdings", + "hint": "default", + }, + }, + "start": 1, + "suffix": "tab", + "text": "", + }, + Object { + "format": "bullet", + "jc": "left", + "level": 3, + "levelRestart": null, + "paragraphProperty": Object { + "indent": Object { + "end": null, + "firstLineChars": null, + "hangingChars": null, + "specialIndent": Object { + "type": "hanging", + "val": 420, + }, + "start": 1680, + "startChars": null, + }, + "runProperty": Object {}, + "tabs": Array [], + }, + "pstyle": null, + "runProperty": Object { + "fonts": Object { + "ascii": "Wingdings", + "hiAnsi": "Wingdings", + "hint": "default", + }, + }, + "start": 1, + "suffix": "tab", + "text": "", + }, + Object { + "format": "bullet", + "jc": "left", + "level": 4, + "levelRestart": null, + "paragraphProperty": Object { + "indent": Object { + "end": null, + "firstLineChars": null, + "hangingChars": null, + "specialIndent": Object { + "type": "hanging", + "val": 420, + }, + "start": 2100, + "startChars": null, + }, + "runProperty": Object {}, + "tabs": Array [], + }, + "pstyle": null, + "runProperty": Object { + "fonts": Object { + "ascii": "Wingdings", + "hiAnsi": "Wingdings", + "hint": "default", + }, + }, + "start": 1, + "suffix": "tab", + "text": "", + }, + Object { + "format": "bullet", + "jc": "left", + "level": 5, + "levelRestart": null, + "paragraphProperty": Object { + "indent": Object { + "end": null, + "firstLineChars": null, + "hangingChars": null, + "specialIndent": Object { + "type": "hanging", + "val": 420, + }, + "start": 2520, + "startChars": null, + }, + "runProperty": Object {}, + "tabs": Array [], + }, + "pstyle": null, + "runProperty": Object { + "fonts": Object { + "ascii": "Wingdings", + "hiAnsi": "Wingdings", + "hint": "default", + }, + }, + "start": 1, + "suffix": "tab", + "text": "", + }, + Object { + "format": "bullet", + "jc": "left", + "level": 6, + "levelRestart": null, + "paragraphProperty": Object { + "indent": Object { + "end": null, + "firstLineChars": null, + "hangingChars": null, + "specialIndent": Object { + "type": "hanging", + "val": 420, + }, + "start": 2940, + "startChars": null, + }, + "runProperty": Object {}, + "tabs": Array [], + }, + "pstyle": null, + "runProperty": Object { + "fonts": Object { + "ascii": "Wingdings", + "hiAnsi": "Wingdings", + "hint": "default", + }, + }, + "start": 1, + "suffix": "tab", + "text": "", + }, + Object { + "format": "bullet", + "jc": "left", + "level": 7, + "levelRestart": null, + "paragraphProperty": Object { + "indent": Object { + "end": null, + "firstLineChars": null, + "hangingChars": null, + "specialIndent": Object { + "type": "hanging", + "val": 420, + }, + "start": 3360, + "startChars": null, + }, + "runProperty": Object {}, + "tabs": Array [], + }, + "pstyle": null, + "runProperty": Object { + "fonts": Object { + "ascii": "Wingdings", + "hiAnsi": "Wingdings", + "hint": "default", + }, + }, + "start": 1, + "suffix": "tab", + "text": "", + }, + Object { + "format": "bullet", + "jc": "left", + "level": 8, + "levelRestart": null, + "paragraphProperty": Object { + "indent": Object { + "end": null, + "firstLineChars": null, + "hangingChars": null, + "specialIndent": Object { + "type": "hanging", + "val": 420, + }, + "start": 3780, + "startChars": null, + }, + "runProperty": Object {}, + "tabs": Array [], + }, + "pstyle": null, + "runProperty": Object { + "fonts": Object { + "ascii": "Wingdings", + "hiAnsi": "Wingdings", + "hint": "default", + }, + }, + "start": 1, + "suffix": "tab", + "text": "", + }, + ], + "numStyleLink": null, + "styleLink": null, + }, + Object { + "id": 149, + "levels": Array [ + Object { + "format": "decimal", + "jc": "left", + "level": 0, + "levelRestart": null, + "paragraphProperty": Object { + "indent": Object { + "end": null, + "firstLineChars": null, + "hangingChars": null, + "specialIndent": Object { + "type": "hanging", + "val": 360, + }, + "start": 540, + "startChars": null, + }, + "runProperty": Object {}, + "tabs": Array [], + }, + "pstyle": null, + "runProperty": Object { + "fonts": Object { + "hint": "eastAsia", + }, + }, + "start": 1, + "suffix": "tab", + "text": "%1.", + }, + Object { + "format": "decimalEnclosedCircle", + "jc": "left", + "level": 1, + "levelRestart": null, + "paragraphProperty": Object { + "indent": Object { + "end": null, + "firstLineChars": null, + "hangingChars": null, + "specialIndent": Object { + "type": "hanging", + "val": 360, + }, + "start": 780, + "startChars": null, + }, + "runProperty": Object {}, + "tabs": Array [], + }, + "pstyle": null, + "runProperty": Object { + "fonts": Object { + "hint": "eastAsia", + }, + }, + "start": 1, + "suffix": "tab", + "text": "%2", + }, + Object { + "format": "decimalEnclosedCircle", + "jc": "left", + "level": 2, + "levelRestart": null, + "paragraphProperty": Object { + "indent": Object { + "end": null, + "firstLineChars": null, + "hangingChars": null, + "specialIndent": Object { + "type": "hanging", + "val": 420, + }, + "start": 1260, + "startChars": null, + }, + "runProperty": Object {}, + "tabs": Array [], + }, + "pstyle": null, + "runProperty": Object {}, + "start": 1, + "suffix": "tab", + "text": "%3", + }, + Object { + "format": "decimal", + "jc": "left", + "level": 3, + "levelRestart": null, + "paragraphProperty": Object { + "indent": Object { + "end": null, + "firstLineChars": null, + "hangingChars": null, + "specialIndent": Object { + "type": "hanging", + "val": 420, + }, + "start": 1680, + "startChars": null, + }, + "runProperty": Object {}, + "tabs": Array [], + }, + "pstyle": null, + "runProperty": Object {}, + "start": 1, + "suffix": "tab", + "text": "%4.", + }, + Object { + "format": "aiueoFullWidth", + "jc": "left", + "level": 4, + "levelRestart": null, + "paragraphProperty": Object { + "indent": Object { + "end": null, + "firstLineChars": null, + "hangingChars": null, + "specialIndent": Object { + "type": "hanging", + "val": 420, + }, + "start": 2100, + "startChars": null, + }, + "runProperty": Object {}, + "tabs": Array [], + }, + "pstyle": null, + "runProperty": Object {}, + "start": 1, + "suffix": "tab", + "text": "(%5)", + }, + Object { + "format": "decimalEnclosedCircle", + "jc": "left", + "level": 5, + "levelRestart": null, + "paragraphProperty": Object { + "indent": Object { + "end": null, + "firstLineChars": null, + "hangingChars": null, + "specialIndent": Object { + "type": "hanging", + "val": 420, + }, + "start": 2520, + "startChars": null, + }, + "runProperty": Object {}, + "tabs": Array [], + }, + "pstyle": null, + "runProperty": Object {}, + "start": 1, + "suffix": "tab", + "text": "%6", + }, + Object { + "format": "decimal", + "jc": "left", + "level": 6, + "levelRestart": null, + "paragraphProperty": Object { + "indent": Object { + "end": null, + "firstLineChars": null, + "hangingChars": null, + "specialIndent": Object { + "type": "hanging", + "val": 420, + }, + "start": 2940, + "startChars": null, + }, + "runProperty": Object {}, + "tabs": Array [], + }, + "pstyle": null, + "runProperty": Object {}, + "start": 1, + "suffix": "tab", + "text": "%7.", + }, + Object { + "format": "aiueoFullWidth", + "jc": "left", + "level": 7, + "levelRestart": null, + "paragraphProperty": Object { + "indent": Object { + "end": null, + "firstLineChars": null, + "hangingChars": null, + "specialIndent": Object { + "type": "hanging", + "val": 420, + }, + "start": 3360, + "startChars": null, + }, + "runProperty": Object {}, + "tabs": Array [], + }, + "pstyle": null, + "runProperty": Object {}, + "start": 1, + "suffix": "tab", + "text": "(%8)", + }, + Object { + "format": "decimalEnclosedCircle", + "jc": "left", + "level": 8, + "levelRestart": null, + "paragraphProperty": Object { + "indent": Object { + "end": null, + "firstLineChars": null, + "hangingChars": null, + "specialIndent": Object { + "type": "hanging", + "val": 420, + }, + "start": 3780, + "startChars": null, + }, + "runProperty": Object {}, + "tabs": Array [], + }, + "pstyle": null, + "runProperty": Object {}, + "start": 1, + "suffix": "tab", + "text": "%9", + }, + ], + "numStyleLink": null, + "styleLink": null, + }, + Object { + "id": 150, + "levels": Array [ + Object { + "format": "bullet", + "jc": "left", + "level": 0, + "levelRestart": null, + "paragraphProperty": Object { + "indent": Object { + "end": null, + "firstLineChars": null, + "hangingChars": null, + "specialIndent": Object { + "type": "hanging", + "val": 454, + }, + "start": 1588, + "startChars": null, + }, + "runProperty": Object {}, + "tabs": Array [], + }, + "pstyle": "Note1", + "runProperty": Object { + "fonts": Object { + "ascii": "Wingdings 2", + "hiAnsi": "Wingdings 2", + "hint": "default", + }, + "sz": 28, + "szCs": 28, + }, + "start": 1, + "suffix": "tab", + "text": "", + }, + Object { + "format": "bullet", + "jc": "left", + "level": 1, + "levelRestart": null, + "paragraphProperty": Object { + "indent": Object { + "end": null, + "firstLineChars": null, + "hangingChars": null, + "specialIndent": Object { + "type": "hanging", + "val": 420, + }, + "start": 840, + "startChars": null, + }, + "runProperty": Object {}, + "tabs": Array [], + }, + "pstyle": null, + "runProperty": Object { + "fonts": Object { + "ascii": "Wingdings", + "hiAnsi": "Wingdings", + "hint": "default", + }, + }, + "start": 1, + "suffix": "tab", + "text": "", + }, + Object { + "format": "bullet", + "jc": "left", + "level": 2, + "levelRestart": null, + "paragraphProperty": Object { + "indent": Object { + "end": null, + "firstLineChars": null, + "hangingChars": null, + "specialIndent": Object { + "type": "hanging", + "val": 420, + }, + "start": 1260, + "startChars": null, + }, + "runProperty": Object {}, + "tabs": Array [], + }, + "pstyle": null, + "runProperty": Object { + "fonts": Object { + "ascii": "Wingdings", + "hiAnsi": "Wingdings", + "hint": "default", + }, + }, + "start": 1, + "suffix": "tab", + "text": "", + }, + Object { + "format": "bullet", + "jc": "left", + "level": 3, + "levelRestart": null, + "paragraphProperty": Object { + "indent": Object { + "end": null, + "firstLineChars": null, + "hangingChars": null, + "specialIndent": Object { + "type": "hanging", + "val": 420, + }, + "start": 1680, + "startChars": null, + }, + "runProperty": Object {}, + "tabs": Array [], + }, + "pstyle": null, + "runProperty": Object { + "fonts": Object { + "ascii": "Wingdings", + "hiAnsi": "Wingdings", + "hint": "default", + }, + }, + "start": 1, + "suffix": "tab", + "text": "", + }, + Object { + "format": "bullet", + "jc": "left", + "level": 4, + "levelRestart": null, + "paragraphProperty": Object { + "indent": Object { + "end": null, + "firstLineChars": null, + "hangingChars": null, + "specialIndent": Object { + "type": "hanging", + "val": 420, + }, + "start": 2100, + "startChars": null, + }, + "runProperty": Object {}, + "tabs": Array [], + }, + "pstyle": null, + "runProperty": Object { + "fonts": Object { + "ascii": "Wingdings", + "hiAnsi": "Wingdings", + "hint": "default", + }, + }, + "start": 1, + "suffix": "tab", + "text": "", + }, + Object { + "format": "bullet", + "jc": "left", + "level": 5, + "levelRestart": null, + "paragraphProperty": Object { + "indent": Object { + "end": null, + "firstLineChars": null, + "hangingChars": null, + "specialIndent": Object { + "type": "hanging", + "val": 420, + }, + "start": 2520, + "startChars": null, + }, + "runProperty": Object {}, + "tabs": Array [], + }, + "pstyle": null, + "runProperty": Object { + "fonts": Object { + "ascii": "Wingdings", + "hiAnsi": "Wingdings", + "hint": "default", + }, + }, + "start": 1, + "suffix": "tab", + "text": "", + }, + Object { + "format": "bullet", + "jc": "left", + "level": 6, + "levelRestart": null, + "paragraphProperty": Object { + "indent": Object { + "end": null, + "firstLineChars": null, + "hangingChars": null, + "specialIndent": Object { + "type": "hanging", + "val": 420, + }, + "start": 2940, + "startChars": null, + }, + "runProperty": Object {}, + "tabs": Array [], + }, + "pstyle": null, + "runProperty": Object { + "fonts": Object { + "ascii": "Wingdings", + "hiAnsi": "Wingdings", + "hint": "default", + }, + }, + "start": 1, + "suffix": "tab", + "text": "", + }, + Object { + "format": "bullet", + "jc": "left", + "level": 7, + "levelRestart": null, + "paragraphProperty": Object { + "indent": Object { + "end": null, + "firstLineChars": null, + "hangingChars": null, + "specialIndent": Object { + "type": "hanging", + "val": 420, + }, + "start": 3360, + "startChars": null, + }, + "runProperty": Object {}, + "tabs": Array [], + }, + "pstyle": null, + "runProperty": Object { + "fonts": Object { + "ascii": "Wingdings", + "hiAnsi": "Wingdings", + "hint": "default", + }, + }, + "start": 1, + "suffix": "tab", + "text": "", + }, + Object { + "format": "bullet", + "jc": "left", + "level": 8, + "levelRestart": null, + "paragraphProperty": Object { + "indent": Object { + "end": null, + "firstLineChars": null, + "hangingChars": null, + "specialIndent": Object { + "type": "hanging", + "val": 420, + }, + "start": 3780, + "startChars": null, + }, + "runProperty": Object {}, + "tabs": Array [], + }, + "pstyle": null, + "runProperty": Object { + "fonts": Object { + "ascii": "Wingdings", + "hiAnsi": "Wingdings", + "hint": "default", + }, + }, + "start": 1, + "suffix": "tab", + "text": "", + }, + ], + "numStyleLink": null, + "styleLink": null, + }, + Object { + "id": 151, + "levels": Array [ + Object { + "format": "decimal", + "jc": "left", + "level": 0, + "levelRestart": null, + "paragraphProperty": Object { + "indent": Object { + "end": null, + "firstLineChars": null, + "hangingChars": null, + "specialIndent": Object { + "type": "hanging", + "val": 360, + }, + "start": 540, + "startChars": null, + }, + "runProperty": Object {}, + "tabs": Array [], + }, + "pstyle": null, + "runProperty": Object { + "fonts": Object { + "hint": "eastAsia", + }, + }, + "start": 1, + "suffix": "tab", + "text": "%1.", + }, + Object { + "format": "aiueoFullWidth", + "jc": "left", + "level": 1, + "levelRestart": null, + "paragraphProperty": Object { + "indent": Object { + "end": null, + "firstLineChars": null, + "hangingChars": null, + "specialIndent": Object { + "type": "hanging", + "val": 420, + }, + "start": 840, + "startChars": null, + }, + "runProperty": Object {}, + "tabs": Array [], + }, + "pstyle": null, + "runProperty": Object {}, + "start": 1, + "suffix": "tab", + "text": "(%2)", + }, + Object { + "format": "decimalEnclosedCircle", + "jc": "left", + "level": 2, + "levelRestart": null, + "paragraphProperty": Object { + "indent": Object { + "end": null, + "firstLineChars": null, + "hangingChars": null, + "specialIndent": Object { + "type": "hanging", + "val": 420, + }, + "start": 1260, + "startChars": null, + }, + "runProperty": Object {}, + "tabs": Array [], + }, + "pstyle": null, + "runProperty": Object {}, + "start": 1, + "suffix": "tab", + "text": "%3", + }, + Object { + "format": "decimal", + "jc": "left", + "level": 3, + "levelRestart": null, + "paragraphProperty": Object { + "indent": Object { + "end": null, + "firstLineChars": null, + "hangingChars": null, + "specialIndent": Object { + "type": "hanging", + "val": 420, + }, + "start": 1680, + "startChars": null, + }, + "runProperty": Object {}, + "tabs": Array [], + }, + "pstyle": null, + "runProperty": Object {}, + "start": 1, + "suffix": "tab", + "text": "%4.", + }, + Object { + "format": "aiueoFullWidth", + "jc": "left", + "level": 4, + "levelRestart": null, + "paragraphProperty": Object { + "indent": Object { + "end": null, + "firstLineChars": null, + "hangingChars": null, + "specialIndent": Object { + "type": "hanging", + "val": 420, + }, + "start": 2100, + "startChars": null, + }, + "runProperty": Object {}, + "tabs": Array [], + }, + "pstyle": null, + "runProperty": Object {}, + "start": 1, + "suffix": "tab", + "text": "(%5)", + }, + Object { + "format": "decimalEnclosedCircle", + "jc": "left", + "level": 5, + "levelRestart": null, + "paragraphProperty": Object { + "indent": Object { + "end": null, + "firstLineChars": null, + "hangingChars": null, + "specialIndent": Object { + "type": "hanging", + "val": 420, + }, + "start": 2520, + "startChars": null, + }, + "runProperty": Object {}, + "tabs": Array [], + }, + "pstyle": null, + "runProperty": Object {}, + "start": 1, + "suffix": "tab", + "text": "%6", + }, + Object { + "format": "decimal", + "jc": "left", + "level": 6, + "levelRestart": null, + "paragraphProperty": Object { + "indent": Object { + "end": null, + "firstLineChars": null, + "hangingChars": null, + "specialIndent": Object { + "type": "hanging", + "val": 420, + }, + "start": 2940, + "startChars": null, + }, + "runProperty": Object {}, + "tabs": Array [], + }, + "pstyle": null, + "runProperty": Object {}, + "start": 1, + "suffix": "tab", + "text": "%7.", + }, + Object { + "format": "aiueoFullWidth", + "jc": "left", + "level": 7, + "levelRestart": null, + "paragraphProperty": Object { + "indent": Object { + "end": null, + "firstLineChars": null, + "hangingChars": null, + "specialIndent": Object { + "type": "hanging", + "val": 420, + }, + "start": 3360, + "startChars": null, + }, + "runProperty": Object {}, + "tabs": Array [], + }, + "pstyle": null, + "runProperty": Object {}, + "start": 1, + "suffix": "tab", + "text": "(%8)", + }, + Object { + "format": "decimalEnclosedCircle", + "jc": "left", + "level": 8, + "levelRestart": null, + "paragraphProperty": Object { + "indent": Object { + "end": null, + "firstLineChars": null, + "hangingChars": null, + "specialIndent": Object { + "type": "hanging", + "val": 420, + }, + "start": 3780, + "startChars": null, + }, + "runProperty": Object {}, + "tabs": Array [], + }, + "pstyle": null, + "runProperty": Object {}, + "start": 1, + "suffix": "tab", + "text": "%9", + }, + ], + "numStyleLink": null, + "styleLink": null, + }, + Object { + "id": 152, + "levels": Array [ + Object { + "format": "upperLetter", + "jc": "left", + "level": 0, + "levelRestart": null, + "paragraphProperty": Object { + "indent": Object { + "end": null, + "firstLineChars": null, + "hangingChars": null, + "specialIndent": Object { + "type": "hanging", + "val": 270, + }, + "start": 450, + "startChars": null, + }, + "runProperty": Object {}, + "tabs": Array [], + }, + "pstyle": null, + "runProperty": Object { + "fonts": Object { + "hint": "eastAsia", + }, + }, + "start": 1, + "suffix": "tab", + "text": "%1", + }, + Object { + "format": "aiueoFullWidth", + "jc": "left", + "level": 1, + "levelRestart": null, + "paragraphProperty": Object { + "indent": Object { + "end": null, + "firstLineChars": null, + "hangingChars": null, + "specialIndent": Object { + "type": "hanging", + "val": 420, + }, + "start": 840, + "startChars": null, + }, + "runProperty": Object {}, + "tabs": Array [], + }, + "pstyle": null, + "runProperty": Object {}, + "start": 1, + "suffix": "tab", + "text": "(%2)", + }, + Object { + "format": "decimalEnclosedCircle", + "jc": "left", + "level": 2, + "levelRestart": null, + "paragraphProperty": Object { + "indent": Object { + "end": null, + "firstLineChars": null, + "hangingChars": null, + "specialIndent": Object { + "type": "hanging", + "val": 420, + }, + "start": 1260, + "startChars": null, + }, + "runProperty": Object {}, + "tabs": Array [], + }, + "pstyle": null, + "runProperty": Object {}, + "start": 1, + "suffix": "tab", + "text": "%3", + }, + Object { + "format": "decimal", + "jc": "left", + "level": 3, + "levelRestart": null, + "paragraphProperty": Object { + "indent": Object { + "end": null, + "firstLineChars": null, + "hangingChars": null, + "specialIndent": Object { + "type": "hanging", + "val": 420, + }, + "start": 1680, + "startChars": null, + }, + "runProperty": Object {}, + "tabs": Array [], + }, + "pstyle": null, + "runProperty": Object {}, + "start": 1, + "suffix": "tab", + "text": "%4.", + }, + Object { + "format": "aiueoFullWidth", + "jc": "left", + "level": 4, + "levelRestart": null, + "paragraphProperty": Object { + "indent": Object { + "end": null, + "firstLineChars": null, + "hangingChars": null, + "specialIndent": Object { + "type": "hanging", + "val": 420, + }, + "start": 2100, + "startChars": null, + }, + "runProperty": Object {}, + "tabs": Array [], + }, + "pstyle": null, + "runProperty": Object {}, + "start": 1, + "suffix": "tab", + "text": "(%5)", + }, + Object { + "format": "decimalEnclosedCircle", + "jc": "left", + "level": 5, + "levelRestart": null, + "paragraphProperty": Object { + "indent": Object { + "end": null, + "firstLineChars": null, + "hangingChars": null, + "specialIndent": Object { + "type": "hanging", + "val": 420, + }, + "start": 2520, + "startChars": null, + }, + "runProperty": Object {}, + "tabs": Array [], + }, + "pstyle": null, + "runProperty": Object {}, + "start": 1, + "suffix": "tab", + "text": "%6", + }, + Object { + "format": "decimal", + "jc": "left", + "level": 6, + "levelRestart": null, + "paragraphProperty": Object { + "indent": Object { + "end": null, + "firstLineChars": null, + "hangingChars": null, + "specialIndent": Object { + "type": "hanging", + "val": 420, + }, + "start": 2940, + "startChars": null, + }, + "runProperty": Object {}, + "tabs": Array [], + }, + "pstyle": null, + "runProperty": Object {}, + "start": 1, + "suffix": "tab", + "text": "%7.", + }, + Object { + "format": "aiueoFullWidth", + "jc": "left", + "level": 7, + "levelRestart": null, + "paragraphProperty": Object { + "indent": Object { + "end": null, + "firstLineChars": null, + "hangingChars": null, + "specialIndent": Object { + "type": "hanging", + "val": 420, + }, + "start": 3360, + "startChars": null, + }, + "runProperty": Object {}, + "tabs": Array [], + }, + "pstyle": null, + "runProperty": Object {}, + "start": 1, + "suffix": "tab", + "text": "(%8)", + }, + Object { + "format": "decimalEnclosedCircle", + "jc": "left", + "level": 8, + "levelRestart": null, + "paragraphProperty": Object { + "indent": Object { + "end": null, + "firstLineChars": null, + "hangingChars": null, + "specialIndent": Object { + "type": "hanging", + "val": 420, + }, + "start": 3780, + "startChars": null, + }, + "runProperty": Object {}, + "tabs": Array [], + }, + "pstyle": null, + "runProperty": Object {}, + "start": 1, + "suffix": "tab", + "text": "%9", + }, + ], + "numStyleLink": null, + "styleLink": null, + }, + Object { + "id": 153, + "levels": Array [ + Object { + "format": "lowerLetter", + "jc": "left", + "level": 0, + "levelRestart": null, + "paragraphProperty": Object { + "indent": Object { + "end": null, + "firstLineChars": null, + "hangingChars": null, + "specialIndent": Object { + "type": "hanging", + "val": 454, + }, + "start": 2042, + "startChars": null, + }, + "runProperty": Object {}, + "tabs": Array [], + }, + "pstyle": null, + "runProperty": Object {}, + "start": 1, + "suffix": "tab", + "text": "(%1)", + }, + Object { + "format": "aiueoFullWidth", + "jc": "left", + "level": 1, + "levelRestart": null, + "paragraphProperty": Object { + "indent": Object { + "end": null, + "firstLineChars": null, + "hangingChars": null, + "specialIndent": Object { + "type": "hanging", + "val": 420, + }, + "start": 2428, + "startChars": null, + }, + "runProperty": Object {}, + "tabs": Array [], + }, + "pstyle": null, + "runProperty": Object {}, + "start": 1, + "suffix": "tab", + "text": "(%2)", + }, + Object { + "format": "decimalEnclosedCircle", + "jc": "left", + "level": 2, + "levelRestart": null, + "paragraphProperty": Object { + "indent": Object { + "end": null, + "firstLineChars": null, + "hangingChars": null, + "specialIndent": Object { + "type": "hanging", + "val": 420, + }, + "start": 2848, + "startChars": null, + }, + "runProperty": Object {}, + "tabs": Array [], + }, + "pstyle": null, + "runProperty": Object {}, + "start": 1, + "suffix": "tab", + "text": "%3", + }, + Object { + "format": "decimal", + "jc": "left", + "level": 3, + "levelRestart": null, + "paragraphProperty": Object { + "indent": Object { + "end": null, + "firstLineChars": null, + "hangingChars": null, + "specialIndent": Object { + "type": "hanging", + "val": 420, + }, + "start": 3268, + "startChars": null, + }, + "runProperty": Object {}, + "tabs": Array [], + }, + "pstyle": null, + "runProperty": Object {}, + "start": 1, + "suffix": "tab", + "text": "%4.", + }, + Object { + "format": "aiueoFullWidth", + "jc": "left", + "level": 4, + "levelRestart": null, + "paragraphProperty": Object { + "indent": Object { + "end": null, + "firstLineChars": null, + "hangingChars": null, + "specialIndent": Object { + "type": "hanging", + "val": 420, + }, + "start": 3688, + "startChars": null, + }, + "runProperty": Object {}, + "tabs": Array [], + }, + "pstyle": null, + "runProperty": Object {}, + "start": 1, + "suffix": "tab", + "text": "(%5)", + }, + Object { + "format": "decimalEnclosedCircle", + "jc": "left", + "level": 5, + "levelRestart": null, + "paragraphProperty": Object { + "indent": Object { + "end": null, + "firstLineChars": null, + "hangingChars": null, + "specialIndent": Object { + "type": "hanging", + "val": 420, + }, + "start": 4108, + "startChars": null, + }, + "runProperty": Object {}, + "tabs": Array [], + }, + "pstyle": null, + "runProperty": Object {}, + "start": 1, + "suffix": "tab", + "text": "%6", + }, + Object { + "format": "decimal", + "jc": "left", + "level": 6, + "levelRestart": null, + "paragraphProperty": Object { + "indent": Object { + "end": null, + "firstLineChars": null, + "hangingChars": null, + "specialIndent": Object { + "type": "hanging", + "val": 420, + }, + "start": 4528, + "startChars": null, + }, + "runProperty": Object {}, + "tabs": Array [], + }, + "pstyle": null, + "runProperty": Object {}, + "start": 1, + "suffix": "tab", + "text": "%7.", + }, + Object { + "format": "aiueoFullWidth", + "jc": "left", + "level": 7, + "levelRestart": null, + "paragraphProperty": Object { + "indent": Object { + "end": null, + "firstLineChars": null, + "hangingChars": null, + "specialIndent": Object { + "type": "hanging", + "val": 420, + }, + "start": 4948, + "startChars": null, + }, + "runProperty": Object {}, + "tabs": Array [], + }, + "pstyle": null, + "runProperty": Object {}, + "start": 1, + "suffix": "tab", + "text": "(%8)", + }, + Object { + "format": "decimalEnclosedCircle", + "jc": "left", + "level": 8, + "levelRestart": null, + "paragraphProperty": Object { + "indent": Object { + "end": null, + "firstLineChars": null, + "hangingChars": null, + "specialIndent": Object { + "type": "hanging", + "val": 420, + }, + "start": 5368, + "startChars": null, + }, + "runProperty": Object {}, + "tabs": Array [], + }, + "pstyle": null, + "runProperty": Object {}, + "start": 1, + "suffix": "tab", + "text": "%9", + }, + ], + "numStyleLink": null, + "styleLink": null, + }, + Object { + "id": 154, + "levels": Array [ + Object { + "format": "decimal", + "jc": "left", + "level": 0, + "levelRestart": null, + "paragraphProperty": Object { + "indent": Object { + "end": null, + "firstLineChars": null, + "hangingChars": null, + "specialIndent": Object { + "type": "hanging", + "val": 360, + }, + "start": 540, + "startChars": null, + }, + "runProperty": Object {}, + "tabs": Array [], + }, + "pstyle": null, + "runProperty": Object { + "fonts": Object { + "hint": "eastAsia", + }, + }, + "start": 1, + "suffix": "tab", + "text": "%1.", + }, + Object { + "format": "aiueoFullWidth", + "jc": "left", + "level": 1, + "levelRestart": null, + "paragraphProperty": Object { + "indent": Object { + "end": null, + "firstLineChars": null, + "hangingChars": null, + "specialIndent": Object { + "type": "hanging", + "val": 420, + }, + "start": 840, + "startChars": null, + }, + "runProperty": Object {}, + "tabs": Array [], + }, + "pstyle": null, + "runProperty": Object {}, + "start": 1, + "suffix": "tab", + "text": "(%2)", + }, + Object { + "format": "decimalEnclosedCircle", + "jc": "left", + "level": 2, + "levelRestart": null, + "paragraphProperty": Object { + "indent": Object { + "end": null, + "firstLineChars": null, + "hangingChars": null, + "specialIndent": Object { + "type": "hanging", + "val": 420, + }, + "start": 1260, + "startChars": null, + }, + "runProperty": Object {}, + "tabs": Array [], + }, + "pstyle": null, + "runProperty": Object {}, + "start": 1, + "suffix": "tab", + "text": "%3", + }, + Object { + "format": "decimal", + "jc": "left", + "level": 3, + "levelRestart": null, + "paragraphProperty": Object { + "indent": Object { + "end": null, + "firstLineChars": null, + "hangingChars": null, + "specialIndent": Object { + "type": "hanging", + "val": 420, + }, + "start": 1680, + "startChars": null, + }, + "runProperty": Object {}, + "tabs": Array [], + }, + "pstyle": null, + "runProperty": Object {}, + "start": 1, + "suffix": "tab", + "text": "%4.", + }, + Object { + "format": "aiueoFullWidth", + "jc": "left", + "level": 4, + "levelRestart": null, + "paragraphProperty": Object { + "indent": Object { + "end": null, + "firstLineChars": null, + "hangingChars": null, + "specialIndent": Object { + "type": "hanging", + "val": 420, + }, + "start": 2100, + "startChars": null, + }, + "runProperty": Object {}, + "tabs": Array [], + }, + "pstyle": null, + "runProperty": Object {}, + "start": 1, + "suffix": "tab", + "text": "(%5)", + }, + Object { + "format": "decimalEnclosedCircle", + "jc": "left", + "level": 5, + "levelRestart": null, + "paragraphProperty": Object { + "indent": Object { + "end": null, + "firstLineChars": null, + "hangingChars": null, + "specialIndent": Object { + "type": "hanging", + "val": 420, + }, + "start": 2520, + "startChars": null, + }, + "runProperty": Object {}, + "tabs": Array [], + }, + "pstyle": null, + "runProperty": Object {}, + "start": 1, + "suffix": "tab", + "text": "%6", + }, + Object { + "format": "decimal", + "jc": "left", + "level": 6, + "levelRestart": null, + "paragraphProperty": Object { + "indent": Object { + "end": null, + "firstLineChars": null, + "hangingChars": null, + "specialIndent": Object { + "type": "hanging", + "val": 420, + }, + "start": 2940, + "startChars": null, + }, + "runProperty": Object {}, + "tabs": Array [], + }, + "pstyle": null, + "runProperty": Object {}, + "start": 1, + "suffix": "tab", + "text": "%7.", + }, + Object { + "format": "aiueoFullWidth", + "jc": "left", + "level": 7, + "levelRestart": null, + "paragraphProperty": Object { + "indent": Object { + "end": null, + "firstLineChars": null, + "hangingChars": null, + "specialIndent": Object { + "type": "hanging", + "val": 420, + }, + "start": 3360, + "startChars": null, + }, + "runProperty": Object {}, + "tabs": Array [], + }, + "pstyle": null, + "runProperty": Object {}, + "start": 1, + "suffix": "tab", + "text": "(%8)", + }, + Object { + "format": "decimalEnclosedCircle", + "jc": "left", + "level": 8, + "levelRestart": null, + "paragraphProperty": Object { + "indent": Object { + "end": null, + "firstLineChars": null, + "hangingChars": null, + "specialIndent": Object { + "type": "hanging", + "val": 420, + }, + "start": 3780, + "startChars": null, + }, + "runProperty": Object {}, + "tabs": Array [], + }, + "pstyle": null, + "runProperty": Object {}, + "start": 1, + "suffix": "tab", + "text": "%9", + }, + ], + "numStyleLink": null, + "styleLink": null, + }, + Object { + "id": 155, + "levels": Array [ + Object { + "format": "decimal", + "jc": "left", + "level": 0, + "levelRestart": null, + "paragraphProperty": Object { + "indent": Object { + "end": null, + "firstLineChars": null, + "hangingChars": null, + "specialIndent": Object { + "type": "hanging", + "val": 360, + }, + "start": 540, + "startChars": null, + }, + "runProperty": Object {}, + "tabs": Array [], + }, + "pstyle": null, + "runProperty": Object { + "fonts": Object { + "hint": "eastAsia", + }, + }, + "start": 1, + "suffix": "tab", + "text": "%1.", + }, + Object { + "format": "lowerLetter", + "jc": "left", + "level": 1, + "levelRestart": null, + "paragraphProperty": Object { + "indent": Object { + "end": null, + "firstLineChars": null, + "hangingChars": null, + "specialIndent": Object { + "type": "hanging", + "val": 360, + }, + "start": 960, + "startChars": null, + }, + "runProperty": Object {}, + "tabs": Array [], + }, + "pstyle": null, + "runProperty": Object { + "fonts": Object { + "hint": "eastAsia", + }, + }, + "start": 1, + "suffix": "tab", + "text": "(%2)", + }, + Object { + "format": "lowerLetter", + "jc": "left", + "level": 2, + "levelRestart": null, + "paragraphProperty": Object { + "indent": Object { + "end": null, + "firstLineChars": null, + "hangingChars": null, + "specialIndent": Object { + "type": "hanging", + "val": 360, + }, + "start": 1380, + "startChars": null, + }, + "runProperty": Object {}, + "tabs": Array [], + }, + "pstyle": null, + "runProperty": Object { + "fonts": Object { + "hint": "eastAsia", + }, + }, + "start": 7, + "suffix": "tab", + "text": "(%3)", + }, + Object { + "format": "decimal", + "jc": "left", + "level": 3, + "levelRestart": null, + "paragraphProperty": Object { + "indent": Object { + "end": null, + "firstLineChars": null, + "hangingChars": null, + "specialIndent": Object { + "type": "hanging", + "val": 420, + }, + "start": 1860, + "startChars": null, + }, + "runProperty": Object {}, + "tabs": Array [], + }, + "pstyle": null, + "runProperty": Object {}, + "start": 1, + "suffix": "tab", + "text": "%4.", + }, + Object { + "format": "aiueoFullWidth", + "jc": "left", + "level": 4, + "levelRestart": null, + "paragraphProperty": Object { + "indent": Object { + "end": null, + "firstLineChars": null, + "hangingChars": null, + "specialIndent": Object { + "type": "hanging", + "val": 420, + }, + "start": 2280, + "startChars": null, + }, + "runProperty": Object {}, + "tabs": Array [], + }, + "pstyle": null, + "runProperty": Object {}, + "start": 1, + "suffix": "tab", + "text": "(%5)", + }, + Object { + "format": "decimalEnclosedCircle", + "jc": "left", + "level": 5, + "levelRestart": null, + "paragraphProperty": Object { + "indent": Object { + "end": null, + "firstLineChars": null, + "hangingChars": null, + "specialIndent": Object { + "type": "hanging", + "val": 420, + }, + "start": 2700, + "startChars": null, + }, + "runProperty": Object {}, + "tabs": Array [], + }, + "pstyle": null, + "runProperty": Object {}, + "start": 1, + "suffix": "tab", + "text": "%6", + }, + Object { + "format": "decimal", + "jc": "left", + "level": 6, + "levelRestart": null, + "paragraphProperty": Object { + "indent": Object { + "end": null, + "firstLineChars": null, + "hangingChars": null, + "specialIndent": Object { + "type": "hanging", + "val": 420, + }, + "start": 3120, + "startChars": null, + }, + "runProperty": Object {}, + "tabs": Array [], + }, + "pstyle": null, + "runProperty": Object {}, + "start": 1, + "suffix": "tab", + "text": "%7.", + }, + Object { + "format": "aiueoFullWidth", + "jc": "left", + "level": 7, + "levelRestart": null, + "paragraphProperty": Object { + "indent": Object { + "end": null, + "firstLineChars": null, + "hangingChars": null, + "specialIndent": Object { + "type": "hanging", + "val": 420, + }, + "start": 3540, + "startChars": null, + }, + "runProperty": Object {}, + "tabs": Array [], + }, + "pstyle": null, + "runProperty": Object {}, + "start": 1, + "suffix": "tab", + "text": "(%8)", + }, + Object { + "format": "decimalEnclosedCircle", + "jc": "left", + "level": 8, + "levelRestart": null, + "paragraphProperty": Object { + "indent": Object { + "end": null, + "firstLineChars": null, + "hangingChars": null, + "specialIndent": Object { + "type": "hanging", + "val": 420, + }, + "start": 3960, + "startChars": null, + }, + "runProperty": Object {}, + "tabs": Array [], + }, + "pstyle": null, + "runProperty": Object {}, + "start": 1, + "suffix": "tab", + "text": "%9", + }, + ], + "numStyleLink": null, + "styleLink": null, + }, + Object { + "id": 156, + "levels": Array [ + Object { + "format": "decimal", + "jc": "left", + "level": 0, + "levelRestart": null, + "paragraphProperty": Object { + "indent": Object { + "end": null, + "firstLineChars": null, + "hangingChars": null, + "specialIndent": Object { + "type": "hanging", + "val": 360, + }, + "start": 540, + "startChars": null, + }, + "runProperty": Object {}, + "tabs": Array [], + }, + "pstyle": null, + "runProperty": Object { + "fonts": Object { + "hint": "eastAsia", + }, + }, + "start": 1, + "suffix": "tab", + "text": "%1.", + }, + Object { + "format": "aiueoFullWidth", + "jc": "left", + "level": 1, + "levelRestart": null, + "paragraphProperty": Object { + "indent": Object { + "end": null, + "firstLineChars": null, + "hangingChars": null, + "specialIndent": Object { + "type": "hanging", + "val": 420, + }, + "start": 420, + "startChars": null, + }, + "runProperty": Object {}, + "tabs": Array [], + }, + "pstyle": null, + "runProperty": Object {}, + "start": 1, + "suffix": "tab", + "text": "(%2)", + }, + Object { + "format": "decimalEnclosedCircle", + "jc": "left", + "level": 2, + "levelRestart": null, + "paragraphProperty": Object { + "indent": Object { + "end": null, + "firstLineChars": null, + "hangingChars": null, + "specialIndent": Object { + "type": "hanging", + "val": 420, + }, + "start": 840, + "startChars": null, + }, + "runProperty": Object {}, + "tabs": Array [], + }, + "pstyle": null, + "runProperty": Object {}, + "start": 1, + "suffix": "tab", + "text": "%3", + }, + Object { + "format": "decimal", + "jc": "left", + "level": 3, + "levelRestart": null, + "paragraphProperty": Object { + "indent": Object { + "end": null, + "firstLineChars": null, + "hangingChars": null, + "specialIndent": Object { + "type": "hanging", + "val": 420, + }, + "start": 1260, + "startChars": null, + }, + "runProperty": Object {}, + "tabs": Array [], + }, + "pstyle": null, + "runProperty": Object {}, + "start": 1, + "suffix": "tab", + "text": "%4.", + }, + Object { + "format": "aiueoFullWidth", + "jc": "left", + "level": 4, + "levelRestart": null, + "paragraphProperty": Object { + "indent": Object { + "end": null, + "firstLineChars": null, + "hangingChars": null, + "specialIndent": Object { + "type": "hanging", + "val": 420, + }, + "start": 1680, + "startChars": null, + }, + "runProperty": Object {}, + "tabs": Array [], + }, + "pstyle": null, + "runProperty": Object {}, + "start": 1, + "suffix": "tab", + "text": "(%5)", + }, + Object { + "format": "decimalEnclosedCircle", + "jc": "left", + "level": 5, + "levelRestart": null, + "paragraphProperty": Object { + "indent": Object { + "end": null, + "firstLineChars": null, + "hangingChars": null, + "specialIndent": Object { + "type": "hanging", + "val": 420, + }, + "start": 2100, + "startChars": null, + }, + "runProperty": Object {}, + "tabs": Array [], + }, + "pstyle": null, + "runProperty": Object {}, + "start": 1, + "suffix": "tab", + "text": "%6", + }, + Object { + "format": "decimal", + "jc": "left", + "level": 6, + "levelRestart": null, + "paragraphProperty": Object { + "indent": Object { + "end": null, + "firstLineChars": null, + "hangingChars": null, + "specialIndent": Object { + "type": "hanging", + "val": 420, + }, + "start": 2520, + "startChars": null, + }, + "runProperty": Object {}, + "tabs": Array [], + }, + "pstyle": null, + "runProperty": Object {}, + "start": 1, + "suffix": "tab", + "text": "%7.", + }, + Object { + "format": "aiueoFullWidth", + "jc": "left", + "level": 7, + "levelRestart": null, + "paragraphProperty": Object { + "indent": Object { + "end": null, + "firstLineChars": null, + "hangingChars": null, + "specialIndent": Object { + "type": "hanging", + "val": 420, + }, + "start": 2940, + "startChars": null, + }, + "runProperty": Object {}, + "tabs": Array [], + }, + "pstyle": null, + "runProperty": Object {}, + "start": 1, + "suffix": "tab", + "text": "(%8)", + }, + Object { + "format": "decimalEnclosedCircle", + "jc": "left", + "level": 8, + "levelRestart": null, + "paragraphProperty": Object { + "indent": Object { + "end": null, + "firstLineChars": null, + "hangingChars": null, + "specialIndent": Object { + "type": "hanging", + "val": 420, + }, + "start": 3360, + "startChars": null, + }, + "runProperty": Object {}, + "tabs": Array [], + }, + "pstyle": null, + "runProperty": Object {}, + "start": 1, + "suffix": "tab", + "text": "%9", + }, + ], + "numStyleLink": null, + "styleLink": null, + }, + Object { + "id": 157, + "levels": Array [ + Object { + "format": "bullet", + "jc": "left", + "level": 0, + "levelRestart": null, + "paragraphProperty": Object { + "indent": Object { + "end": null, + "firstLineChars": null, + "hangingChars": null, + "specialIndent": Object { + "type": "hanging", + "val": 420, + }, + "start": 2310, + "startChars": null, + }, + "runProperty": Object {}, + "tabs": Array [], + }, + "pstyle": null, + "runProperty": Object { + "fonts": Object { + "ascii": "Wingdings", + "hiAnsi": "Wingdings", + "hint": "default", + }, + }, + "start": 1, + "suffix": "tab", + "text": "", + }, + Object { + "format": "bullet", + "jc": "left", + "level": 1, + "levelRestart": null, + "paragraphProperty": Object { + "indent": Object { + "end": null, + "firstLineChars": null, + "hangingChars": null, + "specialIndent": Object { + "type": "hanging", + "val": 420, + }, + "start": 2730, + "startChars": null, + }, + "runProperty": Object {}, + "tabs": Array [], + }, + "pstyle": null, + "runProperty": Object { + "fonts": Object { + "ascii": "Wingdings", + "hiAnsi": "Wingdings", + "hint": "default", + }, + }, + "start": 1, + "suffix": "tab", + "text": "", + }, + Object { + "format": "bullet", + "jc": "left", + "level": 2, + "levelRestart": null, + "paragraphProperty": Object { + "indent": Object { + "end": null, + "firstLineChars": null, + "hangingChars": null, + "specialIndent": Object { + "type": "hanging", + "val": 420, + }, + "start": 3150, + "startChars": null, + }, + "runProperty": Object {}, + "tabs": Array [], + }, + "pstyle": null, + "runProperty": Object { + "fonts": Object { + "ascii": "Wingdings", + "hiAnsi": "Wingdings", + "hint": "default", + }, + }, + "start": 1, + "suffix": "tab", + "text": "", + }, + Object { + "format": "bullet", + "jc": "left", + "level": 3, + "levelRestart": null, + "paragraphProperty": Object { + "indent": Object { + "end": null, + "firstLineChars": null, + "hangingChars": null, + "specialIndent": Object { + "type": "hanging", + "val": 420, + }, + "start": 3570, + "startChars": null, + }, + "runProperty": Object {}, + "tabs": Array [], + }, + "pstyle": null, + "runProperty": Object { + "fonts": Object { + "ascii": "Wingdings", + "hiAnsi": "Wingdings", + "hint": "default", + }, + }, + "start": 1, + "suffix": "tab", + "text": "", + }, + Object { + "format": "bullet", + "jc": "left", + "level": 4, + "levelRestart": null, + "paragraphProperty": Object { + "indent": Object { + "end": null, + "firstLineChars": null, + "hangingChars": null, + "specialIndent": Object { + "type": "hanging", + "val": 420, + }, + "start": 3990, + "startChars": null, + }, + "runProperty": Object {}, + "tabs": Array [], + }, + "pstyle": null, + "runProperty": Object { + "fonts": Object { + "ascii": "Wingdings", + "hiAnsi": "Wingdings", + "hint": "default", + }, + }, + "start": 1, + "suffix": "tab", + "text": "", + }, + Object { + "format": "bullet", + "jc": "left", + "level": 5, + "levelRestart": null, + "paragraphProperty": Object { + "indent": Object { + "end": null, + "firstLineChars": null, + "hangingChars": null, + "specialIndent": Object { + "type": "hanging", + "val": 420, + }, + "start": 4410, + "startChars": null, + }, + "runProperty": Object {}, + "tabs": Array [], + }, + "pstyle": null, + "runProperty": Object { + "fonts": Object { + "ascii": "Wingdings", + "hiAnsi": "Wingdings", + "hint": "default", + }, + }, + "start": 1, + "suffix": "tab", + "text": "", + }, + Object { + "format": "bullet", + "jc": "left", + "level": 6, + "levelRestart": null, + "paragraphProperty": Object { + "indent": Object { + "end": null, + "firstLineChars": null, + "hangingChars": null, + "specialIndent": Object { + "type": "hanging", + "val": 420, + }, + "start": 4830, + "startChars": null, + }, + "runProperty": Object {}, + "tabs": Array [], + }, + "pstyle": null, + "runProperty": Object { + "fonts": Object { + "ascii": "Wingdings", + "hiAnsi": "Wingdings", + "hint": "default", + }, + }, + "start": 1, + "suffix": "tab", + "text": "", + }, + Object { + "format": "bullet", + "jc": "left", + "level": 7, + "levelRestart": null, + "paragraphProperty": Object { + "indent": Object { + "end": null, + "firstLineChars": null, + "hangingChars": null, + "specialIndent": Object { + "type": "hanging", + "val": 420, + }, + "start": 5250, + "startChars": null, + }, + "runProperty": Object {}, + "tabs": Array [], + }, + "pstyle": null, + "runProperty": Object { + "fonts": Object { + "ascii": "Wingdings", + "hiAnsi": "Wingdings", + "hint": "default", + }, + }, + "start": 1, + "suffix": "tab", + "text": "", + }, + Object { + "format": "bullet", + "jc": "left", + "level": 8, + "levelRestart": null, + "paragraphProperty": Object { + "indent": Object { + "end": null, + "firstLineChars": null, + "hangingChars": null, + "specialIndent": Object { + "type": "hanging", + "val": 420, + }, + "start": 5670, + "startChars": null, + }, + "runProperty": Object {}, + "tabs": Array [], + }, + "pstyle": null, + "runProperty": Object { + "fonts": Object { + "ascii": "Wingdings", + "hiAnsi": "Wingdings", + "hint": "default", + }, + }, + "start": 1, + "suffix": "tab", + "text": "", + }, + ], + "numStyleLink": null, + "styleLink": null, + }, + Object { + "id": 158, + "levels": Array [ + Object { + "format": "decimal", + "jc": "left", + "level": 0, + "levelRestart": null, + "paragraphProperty": Object { + "indent": Object { + "end": null, + "firstLineChars": null, + "hangingChars": null, + "specialIndent": Object { + "type": "hanging", + "val": 1134, + }, + "start": 1134, + "startChars": null, + }, + "runProperty": Object {}, + "tabs": Array [], + }, + "pstyle": null, + "runProperty": Object { + "bold": false, + "boldCs": false, + "fonts": Object { + "ascii": "Arial Black", + "hiAnsi": "Arial Black", + "hint": "default", + }, + "italic": false, + "italicCs": false, + "sz": 32, + "szCs": 32, + }, + "start": 1, + "suffix": "tab", + "text": "%1", + }, + Object { + "format": "decimal", + "jc": "left", + "level": 1, + "levelRestart": null, + "paragraphProperty": Object { + "indent": Object { + "end": null, + "firstLineChars": null, + "hangingChars": null, + "specialIndent": Object { + "type": "hanging", + "val": 1134, + }, + "start": 1134, + "startChars": null, + }, + "runProperty": Object {}, + "tabs": Array [], + }, + "pstyle": null, + "runProperty": Object { + "bold": false, + "boldCs": false, + "fonts": Object { + "ascii": "Arial Black", + "hiAnsi": "Arial Black", + "hint": "default", + }, + "italic": false, + "italicCs": false, + "sz": 28, + "szCs": 28, + }, + "start": 1, + "suffix": "tab", + "text": "%1.%2", + }, + Object { + "format": "decimal", + "jc": "left", + "level": 2, + "levelRestart": null, + "paragraphProperty": Object { + "indent": Object { + "end": null, + "firstLineChars": null, + "hangingChars": null, + "specialIndent": Object { + "type": "hanging", + "val": 1134, + }, + "start": 1134, + "startChars": null, + }, + "runProperty": Object {}, + "tabs": Array [], + }, + "pstyle": null, + "runProperty": Object { + "bold": false, + "boldCs": false, + "fonts": Object { + "ascii": "Arial Black", + "hiAnsi": "Arial Black", + "hint": "default", + }, + "italic": false, + "italicCs": false, + "sz": 24, + "szCs": 24, + }, + "start": 1, + "suffix": "tab", + "text": "%1.%2.%3", + }, + Object { + "format": "decimal", + "jc": "left", + "level": 3, + "levelRestart": null, + "paragraphProperty": Object { + "indent": Object { + "end": null, + "firstLineChars": null, + "hangingChars": null, + "specialIndent": Object { + "type": "hanging", + "val": 1134, + }, + "start": 1134, + "startChars": null, + }, + "runProperty": Object {}, + "tabs": Array [], + }, + "pstyle": null, + "runProperty": Object { + "bold": true, + "boldCs": true, + "fonts": Object { + "ascii": "Arial", + "hiAnsi": "Arial", + "hint": "default", + }, + "italic": false, + "italicCs": false, + }, + "start": 1, + "suffix": "tab", + "text": "%1.%2.%3.%4", + }, + Object { + "format": "decimal", + "jc": "left", + "level": 4, + "levelRestart": null, + "paragraphProperty": Object { + "indent": Object { + "end": null, + "firstLineChars": null, + "hangingChars": null, + "specialIndent": Object { + "type": "firstLine", + "val": 0, + }, + "start": 0, + "startChars": null, + }, + "runProperty": Object {}, + "tabs": Array [], + }, + "pstyle": null, + "runProperty": Object { + "fonts": Object { + "hint": "eastAsia", + }, + }, + "start": 1, + "suffix": "tab", + "text": "%1.%2.%3.%4.%5", + }, + Object { + "format": "decimal", + "jc": "left", + "level": 5, + "levelRestart": null, + "paragraphProperty": Object { + "indent": Object { + "end": null, + "firstLineChars": null, + "hangingChars": null, + "specialIndent": Object { + "type": "firstLine", + "val": 0, + }, + "start": 0, + "startChars": null, + }, + "runProperty": Object {}, + "tabs": Array [], + }, + "pstyle": null, + "runProperty": Object { + "fonts": Object { + "hint": "eastAsia", + }, + }, + "start": 1, + "suffix": "tab", + "text": "%1.%2.%3.%4.%5.%6", + }, + Object { + "format": "decimal", + "jc": "left", + "level": 6, + "levelRestart": null, + "paragraphProperty": Object { + "indent": Object { + "end": null, + "firstLineChars": null, + "hangingChars": null, + "specialIndent": Object { + "type": "firstLine", + "val": 0, + }, + "start": 0, + "startChars": null, + }, + "runProperty": Object {}, + "tabs": Array [], + }, + "pstyle": null, + "runProperty": Object { + "fonts": Object { + "hint": "eastAsia", + }, + }, + "start": 1, + "suffix": "tab", + "text": "%1.%2.%3.%4.%5.%6.%7", + }, + Object { + "format": "decimal", + "jc": "left", + "level": 7, + "levelRestart": null, + "paragraphProperty": Object { + "indent": Object { + "end": null, + "firstLineChars": null, + "hangingChars": null, + "specialIndent": Object { + "type": "firstLine", + "val": 0, + }, + "start": 0, + "startChars": null, + }, + "runProperty": Object {}, + "tabs": Array [], + }, + "pstyle": null, + "runProperty": Object { + "fonts": Object { + "hint": "eastAsia", + }, + }, + "start": 1, + "suffix": "tab", + "text": "%1.%2.%3.%4.%5.%6.%7.%8", + }, + Object { + "format": "decimal", + "jc": "left", + "level": 8, + "levelRestart": null, + "paragraphProperty": Object { + "indent": Object { + "end": null, + "firstLineChars": null, + "hangingChars": null, + "specialIndent": Object { + "type": "hanging", + "val": 1559, + }, + "start": 1559, + "startChars": null, + }, + "runProperty": Object {}, + "tabs": Array [], + }, + "pstyle": null, + "runProperty": Object { + "fonts": Object { + "hint": "eastAsia", + }, + }, + "start": 1, + "suffix": "tab", + "text": "%1.%2.%3.%4.%5.%6.%7.%8.%9.", + }, + ], + "numStyleLink": null, + "styleLink": null, + }, + Object { + "id": 159, + "levels": Array [ + Object { + "format": "lowerLetter", + "jc": "left", + "level": 0, + "levelRestart": null, + "paragraphProperty": Object { + "indent": Object { + "end": null, + "firstLineChars": null, + "hangingChars": null, + "specialIndent": Object { + "type": "hanging", + "val": 454, + }, + "start": 1588, + "startChars": null, + }, + "runProperty": Object {}, + "tabs": Array [], + }, + "pstyle": null, + "runProperty": Object { + "bold": false, + "boldCs": false, + "fonts": Object { + "ascii": "Times New Roman", + "cs": "Times New Roman", + "hiAnsi": "Times New Roman", + "hint": "default", + }, + "italic": false, + "italicCs": false, + "sz": 24, + "szCs": 24, + "underline": "none", + }, + "start": 1, + "suffix": "tab", + "text": "(%1)", + }, + Object { + "format": "aiueoFullWidth", + "jc": "left", + "level": 1, + "levelRestart": null, + "paragraphProperty": Object { + "indent": Object { + "end": null, + "firstLineChars": null, + "hangingChars": null, + "specialIndent": Object { + "type": "hanging", + "val": 420, + }, + "start": 840, + "startChars": null, + }, + "runProperty": Object {}, + "tabs": Array [], + }, + "pstyle": null, + "runProperty": Object {}, + "start": 1, + "suffix": "tab", + "text": "(%2)", + }, + Object { + "format": "decimalEnclosedCircle", + "jc": "left", + "level": 2, + "levelRestart": null, + "paragraphProperty": Object { + "indent": Object { + "end": null, + "firstLineChars": null, + "hangingChars": null, + "specialIndent": Object { + "type": "hanging", + "val": 420, + }, + "start": 1260, + "startChars": null, + }, + "runProperty": Object {}, + "tabs": Array [], + }, + "pstyle": null, + "runProperty": Object {}, + "start": 1, + "suffix": "tab", + "text": "%3", + }, + Object { + "format": "decimal", + "jc": "left", + "level": 3, + "levelRestart": null, + "paragraphProperty": Object { + "indent": Object { + "end": null, + "firstLineChars": null, + "hangingChars": null, + "specialIndent": Object { + "type": "hanging", + "val": 420, + }, + "start": 1680, + "startChars": null, + }, + "runProperty": Object {}, + "tabs": Array [], + }, + "pstyle": null, + "runProperty": Object {}, + "start": 1, + "suffix": "tab", + "text": "%4.", + }, + Object { + "format": "aiueoFullWidth", + "jc": "left", + "level": 4, + "levelRestart": null, + "paragraphProperty": Object { + "indent": Object { + "end": null, + "firstLineChars": null, + "hangingChars": null, + "specialIndent": Object { + "type": "hanging", + "val": 420, + }, + "start": 2100, + "startChars": null, + }, + "runProperty": Object {}, + "tabs": Array [], + }, + "pstyle": null, + "runProperty": Object {}, + "start": 1, + "suffix": "tab", + "text": "(%5)", + }, + Object { + "format": "decimalEnclosedCircle", + "jc": "left", + "level": 5, + "levelRestart": null, + "paragraphProperty": Object { + "indent": Object { + "end": null, + "firstLineChars": null, + "hangingChars": null, + "specialIndent": Object { + "type": "hanging", + "val": 420, + }, + "start": 2520, + "startChars": null, + }, + "runProperty": Object {}, + "tabs": Array [], + }, + "pstyle": null, + "runProperty": Object {}, + "start": 1, + "suffix": "tab", + "text": "%6", + }, + Object { + "format": "decimal", + "jc": "left", + "level": 6, + "levelRestart": null, + "paragraphProperty": Object { + "indent": Object { + "end": null, + "firstLineChars": null, + "hangingChars": null, + "specialIndent": Object { + "type": "hanging", + "val": 420, + }, + "start": 2940, + "startChars": null, + }, + "runProperty": Object {}, + "tabs": Array [], + }, + "pstyle": null, + "runProperty": Object {}, + "start": 1, + "suffix": "tab", + "text": "%7.", + }, + Object { + "format": "aiueoFullWidth", + "jc": "left", + "level": 7, + "levelRestart": null, + "paragraphProperty": Object { + "indent": Object { + "end": null, + "firstLineChars": null, + "hangingChars": null, + "specialIndent": Object { + "type": "hanging", + "val": 420, + }, + "start": 3360, + "startChars": null, + }, + "runProperty": Object {}, + "tabs": Array [], + }, + "pstyle": null, + "runProperty": Object {}, + "start": 1, + "suffix": "tab", + "text": "(%8)", + }, + Object { + "format": "decimalEnclosedCircle", + "jc": "left", + "level": 8, + "levelRestart": null, + "paragraphProperty": Object { + "indent": Object { + "end": null, + "firstLineChars": null, + "hangingChars": null, + "specialIndent": Object { + "type": "hanging", + "val": 420, + }, + "start": 3780, + "startChars": null, + }, + "runProperty": Object {}, + "tabs": Array [], + }, + "pstyle": null, + "runProperty": Object {}, + "start": 1, + "suffix": "tab", + "text": "%9", + }, + ], + "numStyleLink": null, + "styleLink": null, + }, + Object { + "id": 160, + "levels": Array [ + Object { + "format": "lowerLetter", + "jc": "left", + "level": 0, + "levelRestart": null, + "paragraphProperty": Object { + "indent": Object { + "end": null, + "firstLineChars": null, + "hangingChars": null, + "specialIndent": Object { + "type": "hanging", + "val": 454, + }, + "start": 1588, + "startChars": null, + }, + "runProperty": Object {}, + "tabs": Array [], + }, + "pstyle": null, + "runProperty": Object { + "fonts": Object { + "ascii": "Times New Roman", + "hiAnsi": "Times New Roman", + "hint": "default", + }, + "sz": 24, + "szCs": 24, + }, + "start": 1, + "suffix": "tab", + "text": "(%1)", + }, + Object { + "format": "aiueoFullWidth", + "jc": "left", + "level": 1, + "levelRestart": null, + "paragraphProperty": Object { + "indent": Object { + "end": null, + "firstLineChars": null, + "hangingChars": null, + "specialIndent": Object { + "type": "hanging", + "val": 420, + }, + "start": 840, + "startChars": null, + }, + "runProperty": Object {}, + "tabs": Array [], + }, + "pstyle": null, + "runProperty": Object {}, + "start": 1, + "suffix": "tab", + "text": "(%2)", + }, + Object { + "format": "decimalEnclosedCircle", + "jc": "left", + "level": 2, + "levelRestart": null, + "paragraphProperty": Object { + "indent": Object { + "end": null, + "firstLineChars": null, + "hangingChars": null, + "specialIndent": Object { + "type": "hanging", + "val": 420, + }, + "start": 1260, + "startChars": null, + }, + "runProperty": Object {}, + "tabs": Array [], + }, + "pstyle": null, + "runProperty": Object {}, + "start": 1, + "suffix": "tab", + "text": "%3", + }, + Object { + "format": "decimal", + "jc": "left", + "level": 3, + "levelRestart": null, + "paragraphProperty": Object { + "indent": Object { + "end": null, + "firstLineChars": null, + "hangingChars": null, + "specialIndent": Object { + "type": "hanging", + "val": 420, + }, + "start": 1680, + "startChars": null, + }, + "runProperty": Object {}, + "tabs": Array [], + }, + "pstyle": null, + "runProperty": Object {}, + "start": 1, + "suffix": "tab", + "text": "%4.", + }, + Object { + "format": "aiueoFullWidth", + "jc": "left", + "level": 4, + "levelRestart": null, + "paragraphProperty": Object { + "indent": Object { + "end": null, + "firstLineChars": null, + "hangingChars": null, + "specialIndent": Object { + "type": "hanging", + "val": 420, + }, + "start": 2100, + "startChars": null, + }, + "runProperty": Object {}, + "tabs": Array [], + }, + "pstyle": null, + "runProperty": Object {}, + "start": 1, + "suffix": "tab", + "text": "(%5)", + }, + Object { + "format": "decimalEnclosedCircle", + "jc": "left", + "level": 5, + "levelRestart": null, + "paragraphProperty": Object { + "indent": Object { + "end": null, + "firstLineChars": null, + "hangingChars": null, + "specialIndent": Object { + "type": "hanging", + "val": 420, + }, + "start": 2520, + "startChars": null, + }, + "runProperty": Object {}, + "tabs": Array [], + }, + "pstyle": null, + "runProperty": Object {}, + "start": 1, + "suffix": "tab", + "text": "%6", + }, + Object { + "format": "decimal", + "jc": "left", + "level": 6, + "levelRestart": null, + "paragraphProperty": Object { + "indent": Object { + "end": null, + "firstLineChars": null, + "hangingChars": null, + "specialIndent": Object { + "type": "hanging", + "val": 420, + }, + "start": 2940, + "startChars": null, + }, + "runProperty": Object {}, + "tabs": Array [], + }, + "pstyle": null, + "runProperty": Object {}, + "start": 1, + "suffix": "tab", + "text": "%7.", + }, + Object { + "format": "aiueoFullWidth", + "jc": "left", + "level": 7, + "levelRestart": null, + "paragraphProperty": Object { + "indent": Object { + "end": null, + "firstLineChars": null, + "hangingChars": null, + "specialIndent": Object { + "type": "hanging", + "val": 420, + }, + "start": 3360, + "startChars": null, + }, + "runProperty": Object {}, + "tabs": Array [], + }, + "pstyle": null, + "runProperty": Object {}, + "start": 1, + "suffix": "tab", + "text": "(%8)", + }, + Object { + "format": "decimalEnclosedCircle", + "jc": "left", + "level": 8, + "levelRestart": null, + "paragraphProperty": Object { + "indent": Object { + "end": null, + "firstLineChars": null, + "hangingChars": null, + "specialIndent": Object { + "type": "hanging", + "val": 420, + }, + "start": 3780, + "startChars": null, + }, + "runProperty": Object {}, + "tabs": Array [], + }, + "pstyle": null, + "runProperty": Object {}, + "start": 1, + "suffix": "tab", + "text": "%9", + }, + ], + "numStyleLink": null, + "styleLink": null, + }, + Object { + "id": 161, + "levels": Array [ + Object { + "format": "decimal", + "jc": "left", + "level": 0, + "levelRestart": null, + "paragraphProperty": Object { + "indent": Object { + "end": null, + "firstLineChars": null, + "hangingChars": null, + "specialIndent": Object { + "type": "hanging", + "val": 360, + }, + "start": 540, + "startChars": null, + }, + "runProperty": Object {}, + "tabs": Array [], + }, + "pstyle": null, + "runProperty": Object { + "fonts": Object { + "hint": "eastAsia", + }, + }, + "start": 1, + "suffix": "tab", + "text": "%1.", + }, + Object { + "format": "aiueoFullWidth", + "jc": "left", + "level": 1, + "levelRestart": null, + "paragraphProperty": Object { + "indent": Object { + "end": null, + "firstLineChars": null, + "hangingChars": null, + "specialIndent": Object { + "type": "hanging", + "val": 420, + }, + "start": 1020, + "startChars": null, + }, + "runProperty": Object {}, + "tabs": Array [], + }, + "pstyle": null, + "runProperty": Object {}, + "start": 1, + "suffix": "tab", + "text": "(%2)", + }, + Object { + "format": "decimalEnclosedCircle", + "jc": "left", + "level": 2, + "levelRestart": null, + "paragraphProperty": Object { + "indent": Object { + "end": null, + "firstLineChars": null, + "hangingChars": null, + "specialIndent": Object { + "type": "hanging", + "val": 420, + }, + "start": 1440, + "startChars": null, + }, + "runProperty": Object {}, + "tabs": Array [], + }, + "pstyle": null, + "runProperty": Object {}, + "start": 1, + "suffix": "tab", + "text": "%3", + }, + Object { + "format": "decimal", + "jc": "left", + "level": 3, + "levelRestart": null, + "paragraphProperty": Object { + "indent": Object { + "end": null, + "firstLineChars": null, + "hangingChars": null, + "specialIndent": Object { + "type": "hanging", + "val": 420, + }, + "start": 1860, + "startChars": null, + }, + "runProperty": Object {}, + "tabs": Array [], + }, + "pstyle": null, + "runProperty": Object {}, + "start": 1, + "suffix": "tab", + "text": "%4.", + }, + Object { + "format": "aiueoFullWidth", + "jc": "left", + "level": 4, + "levelRestart": null, + "paragraphProperty": Object { + "indent": Object { + "end": null, + "firstLineChars": null, + "hangingChars": null, + "specialIndent": Object { + "type": "hanging", + "val": 420, + }, + "start": 2280, + "startChars": null, + }, + "runProperty": Object {}, + "tabs": Array [], + }, + "pstyle": null, + "runProperty": Object {}, + "start": 1, + "suffix": "tab", + "text": "(%5)", + }, + Object { + "format": "decimalEnclosedCircle", + "jc": "left", + "level": 5, + "levelRestart": null, + "paragraphProperty": Object { + "indent": Object { + "end": null, + "firstLineChars": null, + "hangingChars": null, + "specialIndent": Object { + "type": "hanging", + "val": 420, + }, + "start": 2700, + "startChars": null, + }, + "runProperty": Object {}, + "tabs": Array [], + }, + "pstyle": null, + "runProperty": Object {}, + "start": 1, + "suffix": "tab", + "text": "%6", + }, + Object { + "format": "decimal", + "jc": "left", + "level": 6, + "levelRestart": null, + "paragraphProperty": Object { + "indent": Object { + "end": null, + "firstLineChars": null, + "hangingChars": null, + "specialIndent": Object { + "type": "hanging", + "val": 420, + }, + "start": 3120, + "startChars": null, + }, + "runProperty": Object {}, + "tabs": Array [], + }, + "pstyle": null, + "runProperty": Object {}, + "start": 1, + "suffix": "tab", + "text": "%7.", + }, + Object { + "format": "aiueoFullWidth", + "jc": "left", + "level": 7, + "levelRestart": null, + "paragraphProperty": Object { + "indent": Object { + "end": null, + "firstLineChars": null, + "hangingChars": null, + "specialIndent": Object { + "type": "hanging", + "val": 420, + }, + "start": 3540, + "startChars": null, + }, + "runProperty": Object {}, + "tabs": Array [], + }, + "pstyle": null, + "runProperty": Object {}, + "start": 1, + "suffix": "tab", + "text": "(%8)", + }, + Object { + "format": "decimalEnclosedCircle", + "jc": "left", + "level": 8, + "levelRestart": null, + "paragraphProperty": Object { + "indent": Object { + "end": null, + "firstLineChars": null, + "hangingChars": null, + "specialIndent": Object { + "type": "hanging", + "val": 420, + }, + "start": 3960, + "startChars": null, + }, + "runProperty": Object {}, + "tabs": Array [], + }, + "pstyle": null, + "runProperty": Object {}, + "start": 1, + "suffix": "tab", + "text": "%9", + }, + ], + "numStyleLink": null, + "styleLink": null, + }, + ], + "numberings": Array [ + Object { + "abstractNumId": 122, + "id": 1, + "levelOverrides": Array [], + }, + Object { + "abstractNumId": 118, + "id": 2, + "levelOverrides": Array [], + }, + Object { + "abstractNumId": 17, + "id": 3, + "levelOverrides": Array [], + }, + Object { + "abstractNumId": 134, + "id": 4, + "levelOverrides": Array [], + }, + Object { + "abstractNumId": 9, + "id": 5, + "levelOverrides": Array [], + }, + Object { + "abstractNumId": 7, + "id": 6, + "levelOverrides": Array [], + }, + Object { + "abstractNumId": 6, + "id": 7, + "levelOverrides": Array [], + }, + Object { + "abstractNumId": 5, + "id": 8, + "levelOverrides": Array [], + }, + Object { + "abstractNumId": 4, + "id": 9, + "levelOverrides": Array [], + }, + Object { + "abstractNumId": 8, + "id": 10, + "levelOverrides": Array [], + }, + Object { + "abstractNumId": 3, + "id": 11, + "levelOverrides": Array [], + }, + Object { + "abstractNumId": 2, + "id": 12, + "levelOverrides": Array [], + }, + Object { + "abstractNumId": 1, + "id": 13, + "levelOverrides": Array [], + }, + Object { + "abstractNumId": 0, + "id": 14, + "levelOverrides": Array [], + }, + Object { + "abstractNumId": 79, + "id": 15, + "levelOverrides": Array [], + }, + Object { + "abstractNumId": 120, + "id": 16, + "levelOverrides": Array [], + }, + Object { + "abstractNumId": 84, + "id": 17, + "levelOverrides": Array [], + }, + Object { + "abstractNumId": 91, + "id": 18, + "levelOverrides": Array [], + }, + Object { + "abstractNumId": 50, + "id": 19, + "levelOverrides": Array [], + }, + Object { + "abstractNumId": 124, + "id": 20, + "levelOverrides": Array [], + }, + Object { + "abstractNumId": 77, + "id": 21, + "levelOverrides": Array [], + }, + Object { + "abstractNumId": 148, + "id": 22, + "levelOverrides": Array [], + }, + Object { + "abstractNumId": 150, + "id": 23, + "levelOverrides": Array [], + }, + Object { + "abstractNumId": 107, + "id": 24, + "levelOverrides": Array [], + }, + Object { + "abstractNumId": 56, + "id": 25, + "levelOverrides": Array [], + }, + Object { + "abstractNumId": 117, + "id": 26, + "levelOverrides": Array [], + }, + Object { + "abstractNumId": 10, + "id": 27, + "levelOverrides": Array [ + Object { + "level": 0, + "overrideLevel": Object { + "format": "bullet", + "jc": "left", + "level": 0, + "levelRestart": null, + "paragraphProperty": Object { + "indent": Object { + "end": null, + "firstLineChars": null, + "hangingChars": null, + "specialIndent": Object { + "type": "hanging", + "val": 240, + }, + "start": 1215, + "startChars": null, + }, + "runProperty": Object {}, + "tabs": Array [], + }, + "pstyle": "Bullet1", + "runProperty": Object { + "bold": false, + "boldCs": false, + "fonts": Object { + "ascii": "Mincho", + "eastAsia": "Mincho", + "hint": "eastAsia", + }, + "italic": false, + "italicCs": false, + "sz": 21, + "szCs": 21, + }, + "start": 1, + "suffix": "tab", + "text": "※", + }, + "overrideStart": null, + }, + ], + }, + Object { + "abstractNumId": 61, + "id": 28, + "levelOverrides": Array [], + }, + Object { + "abstractNumId": 23, + "id": 29, + "levelOverrides": Array [], + }, + Object { + "abstractNumId": 121, + "id": 30, + "levelOverrides": Array [], + }, + Object { + "abstractNumId": 97, + "id": 31, + "levelOverrides": Array [], + }, + Object { + "abstractNumId": 20, + "id": 32, + "levelOverrides": Array [], + }, + Object { + "abstractNumId": 118, + "id": 33, + "levelOverrides": Array [ + Object { + "level": 0, + "overrideLevel": null, + "overrideStart": 8, + }, + Object { + "level": 1, + "overrideLevel": null, + "overrideStart": 1, + }, + Object { + "level": 2, + "overrideLevel": null, + "overrideStart": 1, + }, + Object { + "level": 3, + "overrideLevel": null, + "overrideStart": 1, + }, + Object { + "level": 4, + "overrideLevel": null, + "overrideStart": 1, + }, + Object { + "level": 5, + "overrideLevel": null, + "overrideStart": 1, + }, + Object { + "level": 6, + "overrideLevel": null, + "overrideStart": 1, + }, + Object { + "level": 7, + "overrideLevel": null, + "overrideStart": 1, + }, + Object { + "level": 8, + "overrideLevel": null, + "overrideStart": 1, + }, + ], + }, + Object { + "abstractNumId": 118, + "id": 34, + "levelOverrides": Array [ + Object { + "level": 0, + "overrideLevel": null, + "overrideStart": 10, + }, + Object { + "level": 1, + "overrideLevel": null, + "overrideStart": 1, + }, + Object { + "level": 2, + "overrideLevel": null, + "overrideStart": 1, + }, + Object { + "level": 3, + "overrideLevel": null, + "overrideStart": 1, + }, + Object { + "level": 4, + "overrideLevel": null, + "overrideStart": 1, + }, + Object { + "level": 5, + "overrideLevel": null, + "overrideStart": 1, + }, + Object { + "level": 6, + "overrideLevel": null, + "overrideStart": 1, + }, + Object { + "level": 7, + "overrideLevel": null, + "overrideStart": 1, + }, + Object { + "level": 8, + "overrideLevel": null, + "overrideStart": 1, + }, + ], + }, + Object { + "abstractNumId": 118, + "id": 35, + "levelOverrides": Array [ + Object { + "level": 0, + "overrideLevel": null, + "overrideStart": 12, + }, + Object { + "level": 1, + "overrideLevel": null, + "overrideStart": 1, + }, + Object { + "level": 2, + "overrideLevel": null, + "overrideStart": 1, + }, + Object { + "level": 3, + "overrideLevel": null, + "overrideStart": 1, + }, + Object { + "level": 4, + "overrideLevel": null, + "overrideStart": 1, + }, + Object { + "level": 5, + "overrideLevel": null, + "overrideStart": 1, + }, + Object { + "level": 6, + "overrideLevel": null, + "overrideStart": 1, + }, + Object { + "level": 7, + "overrideLevel": null, + "overrideStart": 1, + }, + Object { + "level": 8, + "overrideLevel": null, + "overrideStart": 1, + }, + ], + }, + Object { + "abstractNumId": 118, + "id": 36, + "levelOverrides": Array [ + Object { + "level": 0, + "overrideLevel": null, + "overrideStart": 13, + }, + Object { + "level": 1, + "overrideLevel": null, + "overrideStart": 1, + }, + Object { + "level": 2, + "overrideLevel": null, + "overrideStart": 1, + }, + Object { + "level": 3, + "overrideLevel": null, + "overrideStart": 1, + }, + Object { + "level": 4, + "overrideLevel": null, + "overrideStart": 1, + }, + Object { + "level": 5, + "overrideLevel": null, + "overrideStart": 1, + }, + Object { + "level": 6, + "overrideLevel": null, + "overrideStart": 1, + }, + Object { + "level": 7, + "overrideLevel": null, + "overrideStart": 1, + }, + Object { + "level": 8, + "overrideLevel": null, + "overrideStart": 1, + }, + ], + }, + Object { + "abstractNumId": 118, + "id": 37, + "levelOverrides": Array [ + Object { + "level": 0, + "overrideLevel": null, + "overrideStart": 14, + }, + Object { + "level": 1, + "overrideLevel": null, + "overrideStart": 1, + }, + Object { + "level": 2, + "overrideLevel": null, + "overrideStart": 1, + }, + Object { + "level": 3, + "overrideLevel": null, + "overrideStart": 1, + }, + Object { + "level": 4, + "overrideLevel": null, + "overrideStart": 1, + }, + Object { + "level": 5, + "overrideLevel": null, + "overrideStart": 1, + }, + Object { + "level": 6, + "overrideLevel": null, + "overrideStart": 1, + }, + Object { + "level": 7, + "overrideLevel": null, + "overrideStart": 1, + }, + Object { + "level": 8, + "overrideLevel": null, + "overrideStart": 1, + }, + ], + }, + Object { + "abstractNumId": 134, + "id": 38, + "levelOverrides": Array [], + }, + Object { + "abstractNumId": 134, + "id": 39, + "levelOverrides": Array [ + Object { + "level": 0, + "overrideLevel": null, + "overrideStart": 1, + }, + ], + }, + Object { + "abstractNumId": 134, + "id": 40, + "levelOverrides": Array [ + Object { + "level": 0, + "overrideLevel": null, + "overrideStart": 1, + }, + ], + }, + Object { + "abstractNumId": 134, + "id": 41, + "levelOverrides": Array [ + Object { + "level": 0, + "overrideLevel": null, + "overrideStart": 1, + }, + ], + }, + Object { + "abstractNumId": 134, + "id": 42, + "levelOverrides": Array [ + Object { + "level": 0, + "overrideLevel": null, + "overrideStart": 1, + }, + ], + }, + Object { + "abstractNumId": 134, + "id": 43, + "levelOverrides": Array [ + Object { + "level": 0, + "overrideLevel": null, + "overrideStart": 1, + }, + ], + }, + Object { + "abstractNumId": 134, + "id": 44, + "levelOverrides": Array [ + Object { + "level": 0, + "overrideLevel": null, + "overrideStart": 1, + }, + ], + }, + Object { + "abstractNumId": 134, + "id": 45, + "levelOverrides": Array [ + Object { + "level": 0, + "overrideLevel": null, + "overrideStart": 1, + }, + ], + }, + Object { + "abstractNumId": 134, + "id": 46, + "levelOverrides": Array [ + Object { + "level": 0, + "overrideLevel": null, + "overrideStart": 1, + }, + ], + }, + Object { + "abstractNumId": 134, + "id": 47, + "levelOverrides": Array [ + Object { + "level": 0, + "overrideLevel": null, + "overrideStart": 1, + }, + ], + }, + Object { + "abstractNumId": 134, + "id": 48, + "levelOverrides": Array [ + Object { + "level": 0, + "overrideLevel": null, + "overrideStart": 1, + }, + ], + }, + Object { + "abstractNumId": 134, + "id": 49, + "levelOverrides": Array [ + Object { + "level": 0, + "overrideLevel": null, + "overrideStart": 1, + }, + ], + }, + Object { + "abstractNumId": 134, + "id": 50, + "levelOverrides": Array [ + Object { + "level": 0, + "overrideLevel": null, + "overrideStart": 1, + }, + ], + }, + Object { + "abstractNumId": 134, + "id": 51, + "levelOverrides": Array [ + Object { + "level": 0, + "overrideLevel": null, + "overrideStart": 1, + }, + ], + }, + Object { + "abstractNumId": 134, + "id": 52, + "levelOverrides": Array [ + Object { + "level": 0, + "overrideLevel": null, + "overrideStart": 1, + }, + ], + }, + Object { + "abstractNumId": 134, + "id": 53, + "levelOverrides": Array [ + Object { + "level": 0, + "overrideLevel": null, + "overrideStart": 1, + }, + ], + }, + Object { + "abstractNumId": 134, + "id": 54, + "levelOverrides": Array [ + Object { + "level": 0, + "overrideLevel": null, + "overrideStart": 1, + }, + ], + }, + Object { + "abstractNumId": 134, + "id": 55, + "levelOverrides": Array [ + Object { + "level": 0, + "overrideLevel": null, + "overrideStart": 1, + }, + ], + }, + Object { + "abstractNumId": 134, + "id": 56, + "levelOverrides": Array [ + Object { + "level": 0, + "overrideLevel": null, + "overrideStart": 1, + }, + ], + }, + Object { + "abstractNumId": 134, + "id": 57, + "levelOverrides": Array [ + Object { + "level": 0, + "overrideLevel": null, + "overrideStart": 1, + }, + ], + }, + Object { + "abstractNumId": 134, + "id": 58, + "levelOverrides": Array [ + Object { + "level": 0, + "overrideLevel": null, + "overrideStart": 1, + }, + ], + }, + Object { + "abstractNumId": 134, + "id": 59, + "levelOverrides": Array [ + Object { + "level": 0, + "overrideLevel": null, + "overrideStart": 1, + }, + ], + }, + Object { + "abstractNumId": 134, + "id": 60, + "levelOverrides": Array [ + Object { + "level": 0, + "overrideLevel": null, + "overrideStart": 1, + }, + ], + }, + Object { + "abstractNumId": 134, + "id": 61, + "levelOverrides": Array [ + Object { + "level": 0, + "overrideLevel": null, + "overrideStart": 1, + }, + ], + }, + Object { + "abstractNumId": 134, + "id": 62, + "levelOverrides": Array [ + Object { + "level": 0, + "overrideLevel": null, + "overrideStart": 1, + }, + ], + }, + Object { + "abstractNumId": 134, + "id": 63, + "levelOverrides": Array [ + Object { + "level": 0, + "overrideLevel": null, + "overrideStart": 1, + }, + ], + }, + Object { + "abstractNumId": 134, + "id": 64, + "levelOverrides": Array [ + Object { + "level": 0, + "overrideLevel": null, + "overrideStart": 1, + }, + ], + }, + Object { + "abstractNumId": 134, + "id": 65, + "levelOverrides": Array [ + Object { + "level": 0, + "overrideLevel": null, + "overrideStart": 1, + }, + ], + }, + Object { + "abstractNumId": 134, + "id": 66, + "levelOverrides": Array [ + Object { + "level": 0, + "overrideLevel": null, + "overrideStart": 1, + }, + ], + }, + Object { + "abstractNumId": 134, + "id": 67, + "levelOverrides": Array [ + Object { + "level": 0, + "overrideLevel": null, + "overrideStart": 1, + }, + ], + }, + Object { + "abstractNumId": 134, + "id": 68, + "levelOverrides": Array [ + Object { + "level": 0, + "overrideLevel": null, + "overrideStart": 1, + }, + ], + }, + Object { + "abstractNumId": 134, + "id": 69, + "levelOverrides": Array [ + Object { + "level": 0, + "overrideLevel": null, + "overrideStart": 1, + }, + ], + }, + Object { + "abstractNumId": 134, + "id": 70, + "levelOverrides": Array [ + Object { + "level": 0, + "overrideLevel": null, + "overrideStart": 1, + }, + ], + }, + Object { + "abstractNumId": 134, + "id": 71, + "levelOverrides": Array [ + Object { + "level": 0, + "overrideLevel": null, + "overrideStart": 1, + }, + ], + }, + Object { + "abstractNumId": 134, + "id": 72, + "levelOverrides": Array [ + Object { + "level": 0, + "overrideLevel": null, + "overrideStart": 1, + }, + ], + }, + Object { + "abstractNumId": 134, + "id": 73, + "levelOverrides": Array [ + Object { + "level": 0, + "overrideLevel": null, + "overrideStart": 1, + }, + ], + }, + Object { + "abstractNumId": 134, + "id": 74, + "levelOverrides": Array [ + Object { + "level": 0, + "overrideLevel": null, + "overrideStart": 1, + }, + ], + }, + Object { + "abstractNumId": 134, + "id": 75, + "levelOverrides": Array [ + Object { + "level": 0, + "overrideLevel": null, + "overrideStart": 1, + }, + ], + }, + Object { + "abstractNumId": 134, + "id": 76, + "levelOverrides": Array [ + Object { + "level": 0, + "overrideLevel": null, + "overrideStart": 1, + }, + ], + }, + Object { + "abstractNumId": 134, + "id": 77, + "levelOverrides": Array [ + Object { + "level": 0, + "overrideLevel": null, + "overrideStart": 1, + }, + ], + }, + Object { + "abstractNumId": 134, + "id": 78, + "levelOverrides": Array [ + Object { + "level": 0, + "overrideLevel": null, + "overrideStart": 1, + }, + ], + }, + Object { + "abstractNumId": 134, + "id": 79, + "levelOverrides": Array [ + Object { + "level": 0, + "overrideLevel": null, + "overrideStart": 1, + }, + ], + }, + Object { + "abstractNumId": 134, + "id": 80, + "levelOverrides": Array [ + Object { + "level": 0, + "overrideLevel": null, + "overrideStart": 1, + }, + ], + }, + Object { + "abstractNumId": 134, + "id": 81, + "levelOverrides": Array [ + Object { + "level": 0, + "overrideLevel": null, + "overrideStart": 1, + }, + ], + }, + Object { + "abstractNumId": 134, + "id": 82, + "levelOverrides": Array [ + Object { + "level": 0, + "overrideLevel": null, + "overrideStart": 1, + }, + ], + }, + Object { + "abstractNumId": 134, + "id": 83, + "levelOverrides": Array [ + Object { + "level": 0, + "overrideLevel": null, + "overrideStart": 1, + }, + ], + }, + Object { + "abstractNumId": 134, + "id": 84, + "levelOverrides": Array [ + Object { + "level": 0, + "overrideLevel": null, + "overrideStart": 1, + }, + ], + }, + Object { + "abstractNumId": 134, + "id": 85, + "levelOverrides": Array [ + Object { + "level": 0, + "overrideLevel": null, + "overrideStart": 1, + }, + ], + }, + Object { + "abstractNumId": 134, + "id": 86, + "levelOverrides": Array [ + Object { + "level": 0, + "overrideLevel": null, + "overrideStart": 1, + }, + ], + }, + Object { + "abstractNumId": 134, + "id": 87, + "levelOverrides": Array [ + Object { + "level": 0, + "overrideLevel": null, + "overrideStart": 1, + }, + ], + }, + Object { + "abstractNumId": 134, + "id": 88, + "levelOverrides": Array [ + Object { + "level": 0, + "overrideLevel": null, + "overrideStart": 1, + }, + ], + }, + Object { + "abstractNumId": 134, + "id": 89, + "levelOverrides": Array [ + Object { + "level": 0, + "overrideLevel": null, + "overrideStart": 1, + }, + ], + }, + Object { + "abstractNumId": 134, + "id": 90, + "levelOverrides": Array [ + Object { + "level": 0, + "overrideLevel": null, + "overrideStart": 1, + }, + ], + }, + Object { + "abstractNumId": 134, + "id": 91, + "levelOverrides": Array [ + Object { + "level": 0, + "overrideLevel": null, + "overrideStart": 1, + }, + ], + }, + Object { + "abstractNumId": 134, + "id": 92, + "levelOverrides": Array [ + Object { + "level": 0, + "overrideLevel": null, + "overrideStart": 1, + }, + ], + }, + Object { + "abstractNumId": 134, + "id": 93, + "levelOverrides": Array [ + Object { + "level": 0, + "overrideLevel": null, + "overrideStart": 1, + }, + ], + }, + Object { + "abstractNumId": 134, + "id": 94, + "levelOverrides": Array [ + Object { + "level": 0, + "overrideLevel": null, + "overrideStart": 1, + }, + ], + }, + Object { + "abstractNumId": 134, + "id": 95, + "levelOverrides": Array [ + Object { + "level": 0, + "overrideLevel": null, + "overrideStart": 1, + }, + ], + }, + Object { + "abstractNumId": 134, + "id": 96, + "levelOverrides": Array [ + Object { + "level": 0, + "overrideLevel": null, + "overrideStart": 1, + }, + ], + }, + Object { + "abstractNumId": 134, + "id": 97, + "levelOverrides": Array [ + Object { + "level": 0, + "overrideLevel": null, + "overrideStart": 1, + }, + ], + }, + Object { + "abstractNumId": 134, + "id": 98, + "levelOverrides": Array [ + Object { + "level": 0, + "overrideLevel": null, + "overrideStart": 1, + }, + ], + }, + Object { + "abstractNumId": 134, + "id": 99, + "levelOverrides": Array [], + }, + Object { + "abstractNumId": 134, + "id": 100, + "levelOverrides": Array [ + Object { + "level": 0, + "overrideLevel": null, + "overrideStart": 1, + }, + ], + }, + Object { + "abstractNumId": 42, + "id": 101, + "levelOverrides": Array [], + }, + Object { + "abstractNumId": 134, + "id": 102, + "levelOverrides": Array [ + Object { + "level": 0, + "overrideLevel": null, + "overrideStart": 1, + }, + ], + }, + Object { + "abstractNumId": 134, + "id": 103, + "levelOverrides": Array [ + Object { + "level": 0, + "overrideLevel": null, + "overrideStart": 1, + }, + ], + }, + Object { + "abstractNumId": 134, + "id": 104, + "levelOverrides": Array [ + Object { + "level": 0, + "overrideLevel": null, + "overrideStart": 1, + }, + ], + }, + Object { + "abstractNumId": 134, + "id": 105, + "levelOverrides": Array [ + Object { + "level": 0, + "overrideLevel": null, + "overrideStart": 1, + }, + ], + }, + Object { + "abstractNumId": 134, + "id": 106, + "levelOverrides": Array [ + Object { + "level": 0, + "overrideLevel": null, + "overrideStart": 1, + }, + ], + }, + Object { + "abstractNumId": 134, + "id": 107, + "levelOverrides": Array [ + Object { + "level": 0, + "overrideLevel": null, + "overrideStart": 1, + }, + ], + }, + Object { + "abstractNumId": 134, + "id": 108, + "levelOverrides": Array [ + Object { + "level": 0, + "overrideLevel": null, + "overrideStart": 1, + }, + ], + }, + Object { + "abstractNumId": 134, + "id": 109, + "levelOverrides": Array [ + Object { + "level": 0, + "overrideLevel": null, + "overrideStart": 1, + }, + ], + }, + Object { + "abstractNumId": 134, + "id": 110, + "levelOverrides": Array [ + Object { + "level": 0, + "overrideLevel": null, + "overrideStart": 1, + }, + ], + }, + Object { + "abstractNumId": 134, + "id": 111, + "levelOverrides": Array [ + Object { + "level": 0, + "overrideLevel": null, + "overrideStart": 1, + }, + ], + }, + Object { + "abstractNumId": 134, + "id": 112, + "levelOverrides": Array [ + Object { + "level": 0, + "overrideLevel": null, + "overrideStart": 1, + }, + ], + }, + Object { + "abstractNumId": 134, + "id": 113, + "levelOverrides": Array [ + Object { + "level": 0, + "overrideLevel": null, + "overrideStart": 1, + }, + ], + }, + Object { + "abstractNumId": 134, + "id": 114, + "levelOverrides": Array [ + Object { + "level": 0, + "overrideLevel": null, + "overrideStart": 1, + }, + ], + }, + Object { + "abstractNumId": 134, + "id": 115, + "levelOverrides": Array [ + Object { + "level": 0, + "overrideLevel": null, + "overrideStart": 1, + }, + ], + }, + Object { + "abstractNumId": 134, + "id": 116, + "levelOverrides": Array [ + Object { + "level": 0, + "overrideLevel": null, + "overrideStart": 1, + }, + ], + }, + Object { + "abstractNumId": 69, + "id": 117, + "levelOverrides": Array [], + }, + Object { + "abstractNumId": 93, + "id": 118, + "levelOverrides": Array [], + }, + Object { + "abstractNumId": 21, + "id": 119, + "levelOverrides": Array [], + }, + Object { + "abstractNumId": 89, + "id": 120, + "levelOverrides": Array [], + }, + Object { + "abstractNumId": 88, + "id": 121, + "levelOverrides": Array [], + }, + Object { + "abstractNumId": 15, + "id": 122, + "levelOverrides": Array [], + }, + Object { + "abstractNumId": 130, + "id": 123, + "levelOverrides": Array [], + }, + Object { + "abstractNumId": 64, + "id": 124, + "levelOverrides": Array [], + }, + Object { + "abstractNumId": 98, + "id": 125, + "levelOverrides": Array [], + }, + Object { + "abstractNumId": 52, + "id": 126, + "levelOverrides": Array [], + }, + Object { + "abstractNumId": 34, + "id": 127, + "levelOverrides": Array [], + }, + Object { + "abstractNumId": 39, + "id": 128, + "levelOverrides": Array [], + }, + Object { + "abstractNumId": 133, + "id": 129, + "levelOverrides": Array [], + }, + Object { + "abstractNumId": 102, + "id": 130, + "levelOverrides": Array [], + }, + Object { + "abstractNumId": 156, + "id": 131, + "levelOverrides": Array [], + }, + Object { + "abstractNumId": 72, + "id": 132, + "levelOverrides": Array [], + }, + Object { + "abstractNumId": 32, + "id": 133, + "levelOverrides": Array [], + }, + Object { + "abstractNumId": 94, + "id": 134, + "levelOverrides": Array [], + }, + Object { + "abstractNumId": 18, + "id": 135, + "levelOverrides": Array [], + }, + Object { + "abstractNumId": 49, + "id": 136, + "levelOverrides": Array [], + }, + Object { + "abstractNumId": 152, + "id": 137, + "levelOverrides": Array [], + }, + Object { + "abstractNumId": 85, + "id": 138, + "levelOverrides": Array [], + }, + Object { + "abstractNumId": 24, + "id": 139, + "levelOverrides": Array [], + }, + Object { + "abstractNumId": 109, + "id": 140, + "levelOverrides": Array [], + }, + Object { + "abstractNumId": 59, + "id": 141, + "levelOverrides": Array [], + }, + Object { + "abstractNumId": 27, + "id": 142, + "levelOverrides": Array [], + }, + Object { + "abstractNumId": 60, + "id": 143, + "levelOverrides": Array [], + }, + Object { + "abstractNumId": 43, + "id": 144, + "levelOverrides": Array [], + }, + Object { + "abstractNumId": 86, + "id": 145, + "levelOverrides": Array [], + }, + Object { + "abstractNumId": 146, + "id": 146, + "levelOverrides": Array [], + }, + Object { + "abstractNumId": 73, + "id": 147, + "levelOverrides": Array [], + }, + Object { + "abstractNumId": 48, + "id": 148, + "levelOverrides": Array [], + }, + Object { + "abstractNumId": 65, + "id": 149, + "levelOverrides": Array [], + }, + Object { + "abstractNumId": 129, + "id": 150, + "levelOverrides": Array [], + }, + Object { + "abstractNumId": 28, + "id": 151, + "levelOverrides": Array [], + }, + Object { + "abstractNumId": 13, + "id": 152, + "levelOverrides": Array [], + }, + Object { + "abstractNumId": 54, + "id": 153, + "levelOverrides": Array [], + }, + Object { + "abstractNumId": 142, + "id": 154, + "levelOverrides": Array [], + }, + Object { + "abstractNumId": 147, + "id": 155, + "levelOverrides": Array [], + }, + Object { + "abstractNumId": 31, + "id": 156, + "levelOverrides": Array [], + }, + Object { + "abstractNumId": 33, + "id": 157, + "levelOverrides": Array [], + }, + Object { + "abstractNumId": 47, + "id": 158, + "levelOverrides": Array [], + }, + Object { + "abstractNumId": 100, + "id": 159, + "levelOverrides": Array [], + }, + Object { + "abstractNumId": 154, + "id": 160, + "levelOverrides": Array [], + }, + Object { + "abstractNumId": 82, + "id": 161, + "levelOverrides": Array [], + }, + Object { + "abstractNumId": 135, + "id": 162, + "levelOverrides": Array [], + }, + Object { + "abstractNumId": 44, + "id": 163, + "levelOverrides": Array [], + }, + Object { + "abstractNumId": 128, + "id": 164, + "levelOverrides": Array [], + }, + Object { + "abstractNumId": 110, + "id": 165, + "levelOverrides": Array [], + }, + Object { + "abstractNumId": 25, + "id": 166, + "levelOverrides": Array [], + }, + Object { + "abstractNumId": 63, + "id": 167, + "levelOverrides": Array [], + }, + Object { + "abstractNumId": 36, + "id": 168, + "levelOverrides": Array [], + }, + Object { + "abstractNumId": 151, + "id": 169, + "levelOverrides": Array [], + }, + Object { + "abstractNumId": 143, + "id": 170, + "levelOverrides": Array [], + }, + Object { + "abstractNumId": 132, + "id": 171, + "levelOverrides": Array [], + }, + Object { + "abstractNumId": 12, + "id": 172, + "levelOverrides": Array [], + }, + Object { + "abstractNumId": 40, + "id": 173, + "levelOverrides": Array [], + }, + Object { + "abstractNumId": 149, + "id": 174, + "levelOverrides": Array [], + }, + Object { + "abstractNumId": 70, + "id": 175, + "levelOverrides": Array [], + }, + Object { + "abstractNumId": 114, + "id": 176, + "levelOverrides": Array [], + }, + Object { + "abstractNumId": 67, + "id": 177, + "levelOverrides": Array [], + }, + Object { + "abstractNumId": 29, + "id": 178, + "levelOverrides": Array [], + }, + Object { + "abstractNumId": 123, + "id": 179, + "levelOverrides": Array [], + }, + Object { + "abstractNumId": 87, + "id": 180, + "levelOverrides": Array [], + }, + Object { + "abstractNumId": 76, + "id": 181, + "levelOverrides": Array [], + }, + Object { + "abstractNumId": 138, + "id": 182, + "levelOverrides": Array [], + }, + Object { + "abstractNumId": 145, + "id": 183, + "levelOverrides": Array [], + }, + Object { + "abstractNumId": 115, + "id": 184, + "levelOverrides": Array [], + }, + Object { + "abstractNumId": 80, + "id": 185, + "levelOverrides": Array [], + }, + Object { + "abstractNumId": 19, + "id": 186, + "levelOverrides": Array [], + }, + Object { + "abstractNumId": 30, + "id": 187, + "levelOverrides": Array [], + }, + Object { + "abstractNumId": 75, + "id": 188, + "levelOverrides": Array [], + }, + Object { + "abstractNumId": 139, + "id": 189, + "levelOverrides": Array [], + }, + Object { + "abstractNumId": 71, + "id": 190, + "levelOverrides": Array [], + }, + Object { + "abstractNumId": 155, + "id": 191, + "levelOverrides": Array [], + }, + Object { + "abstractNumId": 161, + "id": 192, + "levelOverrides": Array [], + }, + Object { + "abstractNumId": 140, + "id": 193, + "levelOverrides": Array [], + }, + Object { + "abstractNumId": 53, + "id": 194, + "levelOverrides": Array [], + }, + Object { + "abstractNumId": 144, + "id": 195, + "levelOverrides": Array [], + }, + Object { + "abstractNumId": 90, + "id": 196, + "levelOverrides": Array [], + }, + Object { + "abstractNumId": 101, + "id": 197, + "levelOverrides": Array [], + }, + Object { + "abstractNumId": 116, + "id": 198, + "levelOverrides": Array [], + }, + Object { + "abstractNumId": 111, + "id": 199, + "levelOverrides": Array [], + }, + Object { + "abstractNumId": 78, + "id": 200, + "levelOverrides": Array [], + }, + Object { + "abstractNumId": 136, + "id": 201, + "levelOverrides": Array [], + }, + Object { + "abstractNumId": 103, + "id": 202, + "levelOverrides": Array [], + }, + Object { + "abstractNumId": 14, + "id": 203, + "levelOverrides": Array [], + }, + Object { + "abstractNumId": 37, + "id": 204, + "levelOverrides": Array [], + }, + Object { + "abstractNumId": 159, + "id": 205, + "levelOverrides": Array [], + }, + Object { + "abstractNumId": 35, + "id": 206, + "levelOverrides": Array [], + }, + Object { + "abstractNumId": 112, + "id": 207, + "levelOverrides": Array [], + }, + Object { + "abstractNumId": 26, + "id": 208, + "levelOverrides": Array [], + }, + Object { + "abstractNumId": 74, + "id": 209, + "levelOverrides": Array [], + }, + Object { + "abstractNumId": 137, + "id": 210, + "levelOverrides": Array [], + }, + Object { + "abstractNumId": 131, + "id": 211, + "levelOverrides": Array [], + }, + Object { + "abstractNumId": 141, + "id": 212, + "levelOverrides": Array [], + }, + Object { + "abstractNumId": 141, + "id": 213, + "levelOverrides": Array [ + Object { + "level": 0, + "overrideLevel": null, + "overrideStart": 1, + }, + ], + }, + Object { + "abstractNumId": 141, + "id": 214, + "levelOverrides": Array [ + Object { + "level": 0, + "overrideLevel": null, + "overrideStart": 1, + }, + ], + }, + Object { + "abstractNumId": 141, + "id": 215, + "levelOverrides": Array [ + Object { + "level": 0, + "overrideLevel": null, + "overrideStart": 1, + }, + ], + }, + Object { + "abstractNumId": 141, + "id": 216, + "levelOverrides": Array [ + Object { + "level": 0, + "overrideLevel": null, + "overrideStart": 1, + }, + ], + }, + Object { + "abstractNumId": 141, + "id": 217, + "levelOverrides": Array [ + Object { + "level": 0, + "overrideLevel": null, + "overrideStart": 1, + }, + ], + }, + Object { + "abstractNumId": 141, + "id": 218, + "levelOverrides": Array [ + Object { + "level": 0, + "overrideLevel": null, + "overrideStart": 1, + }, + ], + }, + Object { + "abstractNumId": 141, + "id": 219, + "levelOverrides": Array [ + Object { + "level": 0, + "overrideLevel": null, + "overrideStart": 1, + }, + ], + }, + Object { + "abstractNumId": 141, + "id": 220, + "levelOverrides": Array [ + Object { + "level": 0, + "overrideLevel": null, + "overrideStart": 1, + }, + ], + }, + Object { + "abstractNumId": 141, + "id": 221, + "levelOverrides": Array [ + Object { + "level": 0, + "overrideLevel": null, + "overrideStart": 1, + }, + ], + }, + Object { + "abstractNumId": 141, + "id": 222, + "levelOverrides": Array [ + Object { + "level": 0, + "overrideLevel": null, + "overrideStart": 1, + }, + ], + }, + Object { + "abstractNumId": 141, + "id": 223, + "levelOverrides": Array [ + Object { + "level": 0, + "overrideLevel": null, + "overrideStart": 1, + }, + ], + }, + Object { + "abstractNumId": 95, + "id": 224, + "levelOverrides": Array [ + Object { + "level": 0, + "overrideLevel": null, + "overrideStart": 1, + }, + ], + }, + Object { + "abstractNumId": 92, + "id": 225, + "levelOverrides": Array [], + }, + Object { + "abstractNumId": 141, + "id": 226, + "levelOverrides": Array [ + Object { + "level": 0, + "overrideLevel": null, + "overrideStart": 1, + }, + ], + }, + Object { + "abstractNumId": 141, + "id": 227, + "levelOverrides": Array [ + Object { + "level": 0, + "overrideLevel": null, + "overrideStart": 1, + }, + ], + }, + Object { + "abstractNumId": 141, + "id": 228, + "levelOverrides": Array [ + Object { + "level": 0, + "overrideLevel": null, + "overrideStart": 1, + }, + ], + }, + Object { + "abstractNumId": 141, + "id": 229, + "levelOverrides": Array [ + Object { + "level": 0, + "overrideLevel": null, + "overrideStart": 1, + }, + ], + }, + Object { + "abstractNumId": 141, + "id": 230, + "levelOverrides": Array [ + Object { + "level": 0, + "overrideLevel": null, + "overrideStart": 1, + }, + ], + }, + Object { + "abstractNumId": 141, + "id": 231, + "levelOverrides": Array [ + Object { + "level": 0, + "overrideLevel": null, + "overrideStart": 1, + }, + ], + }, + Object { + "abstractNumId": 141, + "id": 232, + "levelOverrides": Array [ + Object { + "level": 0, + "overrideLevel": null, + "overrideStart": 1, + }, + ], + }, + Object { + "abstractNumId": 141, + "id": 233, + "levelOverrides": Array [ + Object { + "level": 0, + "overrideLevel": null, + "overrideStart": 1, + }, + ], + }, + Object { + "abstractNumId": 141, + "id": 234, + "levelOverrides": Array [ + Object { + "level": 0, + "overrideLevel": null, + "overrideStart": 1, + }, + ], + }, + Object { + "abstractNumId": 141, + "id": 235, + "levelOverrides": Array [ + Object { + "level": 0, + "overrideLevel": null, + "overrideStart": 1, + }, + ], + }, + Object { + "abstractNumId": 153, + "id": 236, + "levelOverrides": Array [], + }, + Object { + "abstractNumId": 141, + "id": 237, + "levelOverrides": Array [ + Object { + "level": 0, + "overrideLevel": null, + "overrideStart": 1, + }, + ], + }, + Object { + "abstractNumId": 141, + "id": 238, + "levelOverrides": Array [ + Object { + "level": 0, + "overrideLevel": null, + "overrideStart": 1, + }, + ], + }, + Object { + "abstractNumId": 118, + "id": 239, + "levelOverrides": Array [ + Object { + "level": 0, + "overrideLevel": null, + "overrideStart": 2, + }, + Object { + "level": 1, + "overrideLevel": null, + "overrideStart": 1, + }, + Object { + "level": 2, + "overrideLevel": null, + "overrideStart": 1, + }, + Object { + "level": 3, + "overrideLevel": null, + "overrideStart": 1, + }, + Object { + "level": 4, + "overrideLevel": null, + "overrideStart": 1, + }, + Object { + "level": 5, + "overrideLevel": null, + "overrideStart": 1, + }, + Object { + "level": 6, + "overrideLevel": null, + "overrideStart": 1, + }, + Object { + "level": 7, + "overrideLevel": null, + "overrideStart": 1, + }, + Object { + "level": 8, + "overrideLevel": null, + "overrideStart": 1, + }, + ], + }, + Object { + "abstractNumId": 45, + "id": 240, + "levelOverrides": Array [], + }, + Object { + "abstractNumId": 141, + "id": 241, + "levelOverrides": Array [ + Object { + "level": 0, + "overrideLevel": null, + "overrideStart": 1, + }, + ], + }, + Object { + "abstractNumId": 141, + "id": 242, + "levelOverrides": Array [ + Object { + "level": 0, + "overrideLevel": null, + "overrideStart": 1, + }, + ], + }, + Object { + "abstractNumId": 141, + "id": 243, + "levelOverrides": Array [ + Object { + "level": 0, + "overrideLevel": null, + "overrideStart": 1, + }, + ], + }, + Object { + "abstractNumId": 141, + "id": 244, + "levelOverrides": Array [ + Object { + "level": 0, + "overrideLevel": null, + "overrideStart": 1, + }, + ], + }, + Object { + "abstractNumId": 141, + "id": 245, + "levelOverrides": Array [ + Object { + "level": 0, + "overrideLevel": null, + "overrideStart": 1, + }, + ], + }, + Object { + "abstractNumId": 141, + "id": 246, + "levelOverrides": Array [ + Object { + "level": 0, + "overrideLevel": null, + "overrideStart": 1, + }, + ], + }, + Object { + "abstractNumId": 141, + "id": 247, + "levelOverrides": Array [ + Object { + "level": 0, + "overrideLevel": null, + "overrideStart": 1, + }, + ], + }, + Object { + "abstractNumId": 141, + "id": 248, + "levelOverrides": Array [ + Object { + "level": 0, + "overrideLevel": null, + "overrideStart": 1, + }, + ], + }, + Object { + "abstractNumId": 141, + "id": 249, + "levelOverrides": Array [ + Object { + "level": 0, + "overrideLevel": null, + "overrideStart": 1, + }, + ], + }, + Object { + "abstractNumId": 141, + "id": 250, + "levelOverrides": Array [ + Object { + "level": 0, + "overrideLevel": null, + "overrideStart": 1, + }, + ], + }, + Object { + "abstractNumId": 141, + "id": 251, + "levelOverrides": Array [ + Object { + "level": 0, + "overrideLevel": null, + "overrideStart": 1, + }, + ], + }, + Object { + "abstractNumId": 141, + "id": 252, + "levelOverrides": Array [ + Object { + "level": 0, + "overrideLevel": null, + "overrideStart": 1, + }, + ], + }, + Object { + "abstractNumId": 141, + "id": 253, + "levelOverrides": Array [ + Object { + "level": 0, + "overrideLevel": null, + "overrideStart": 1, + }, + ], + }, + Object { + "abstractNumId": 141, + "id": 254, + "levelOverrides": Array [ + Object { + "level": 0, + "overrideLevel": null, + "overrideStart": 1, + }, + ], + }, + Object { + "abstractNumId": 141, + "id": 255, + "levelOverrides": Array [ + Object { + "level": 0, + "overrideLevel": null, + "overrideStart": 1, + }, + ], + }, + Object { + "abstractNumId": 141, + "id": 256, + "levelOverrides": Array [ + Object { + "level": 0, + "overrideLevel": null, + "overrideStart": 1, + }, + ], + }, + Object { + "abstractNumId": 141, + "id": 257, + "levelOverrides": Array [ + Object { + "level": 0, + "overrideLevel": null, + "overrideStart": 1, + }, + ], + }, + Object { + "abstractNumId": 141, + "id": 258, + "levelOverrides": Array [ + Object { + "level": 0, + "overrideLevel": null, + "overrideStart": 1, + }, + ], + }, + Object { + "abstractNumId": 93, + "id": 259, + "levelOverrides": Array [ + Object { + "level": 0, + "overrideLevel": null, + "overrideStart": 1, + }, + ], + }, + Object { + "abstractNumId": 141, + "id": 260, + "levelOverrides": Array [ + Object { + "level": 0, + "overrideLevel": null, + "overrideStart": 1, + }, + ], + }, + Object { + "abstractNumId": 141, + "id": 261, + "levelOverrides": Array [ + Object { + "level": 0, + "overrideLevel": null, + "overrideStart": 1, + }, + ], + }, + Object { + "abstractNumId": 141, + "id": 262, + "levelOverrides": Array [ + Object { + "level": 0, + "overrideLevel": null, + "overrideStart": 1, + }, + ], + }, + Object { + "abstractNumId": 141, + "id": 263, + "levelOverrides": Array [ + Object { + "level": 0, + "overrideLevel": null, + "overrideStart": 1, + }, + ], + }, + Object { + "abstractNumId": 141, + "id": 264, + "levelOverrides": Array [ + Object { + "level": 0, + "overrideLevel": null, + "overrideStart": 1, + }, + ], + }, + Object { + "abstractNumId": 141, + "id": 265, + "levelOverrides": Array [ + Object { + "level": 0, + "overrideLevel": null, + "overrideStart": 1, + }, + ], + }, + Object { + "abstractNumId": 141, + "id": 266, + "levelOverrides": Array [ + Object { + "level": 0, + "overrideLevel": null, + "overrideStart": 1, + }, + ], + }, + Object { + "abstractNumId": 141, + "id": 267, + "levelOverrides": Array [ + Object { + "level": 0, + "overrideLevel": null, + "overrideStart": 1, + }, + ], + }, + Object { + "abstractNumId": 141, + "id": 268, + "levelOverrides": Array [ + Object { + "level": 0, + "overrideLevel": null, + "overrideStart": 1, + }, + ], + }, + Object { + "abstractNumId": 141, + "id": 269, + "levelOverrides": Array [ + Object { + "level": 0, + "overrideLevel": null, + "overrideStart": 1, + }, + ], + }, + Object { + "abstractNumId": 141, + "id": 270, + "levelOverrides": Array [ + Object { + "level": 0, + "overrideLevel": null, + "overrideStart": 1, + }, + ], + }, + Object { + "abstractNumId": 141, + "id": 271, + "levelOverrides": Array [ + Object { + "level": 0, + "overrideLevel": null, + "overrideStart": 1, + }, + ], + }, + Object { + "abstractNumId": 141, + "id": 272, + "levelOverrides": Array [ + Object { + "level": 0, + "overrideLevel": null, + "overrideStart": 1, + }, + ], + }, + Object { + "abstractNumId": 141, + "id": 273, + "levelOverrides": Array [ + Object { + "level": 0, + "overrideLevel": null, + "overrideStart": 1, + }, + ], + }, + Object { + "abstractNumId": 141, + "id": 274, + "levelOverrides": Array [ + Object { + "level": 0, + "overrideLevel": null, + "overrideStart": 1, + }, + ], + }, + Object { + "abstractNumId": 141, + "id": 275, + "levelOverrides": Array [ + Object { + "level": 0, + "overrideLevel": null, + "overrideStart": 1, + }, + ], + }, + Object { + "abstractNumId": 93, + "id": 276, + "levelOverrides": Array [ + Object { + "level": 0, + "overrideLevel": null, + "overrideStart": 1, + }, + ], + }, + Object { + "abstractNumId": 141, + "id": 277, + "levelOverrides": Array [ + Object { + "level": 0, + "overrideLevel": null, + "overrideStart": 1, + }, + ], + }, + Object { + "abstractNumId": 141, + "id": 278, + "levelOverrides": Array [ + Object { + "level": 0, + "overrideLevel": null, + "overrideStart": 1, + }, + ], + }, + Object { + "abstractNumId": 141, + "id": 279, + "levelOverrides": Array [ + Object { + "level": 0, + "overrideLevel": null, + "overrideStart": 1, + }, + ], + }, + Object { + "abstractNumId": 141, + "id": 280, + "levelOverrides": Array [ + Object { + "level": 0, + "overrideLevel": null, + "overrideStart": 1, + }, + ], + }, + Object { + "abstractNumId": 93, + "id": 281, + "levelOverrides": Array [ + Object { + "level": 0, + "overrideLevel": null, + "overrideStart": 1, + }, + ], + }, + Object { + "abstractNumId": 141, + "id": 282, + "levelOverrides": Array [ + Object { + "level": 0, + "overrideLevel": null, + "overrideStart": 1, + }, + ], + }, + Object { + "abstractNumId": 141, + "id": 283, + "levelOverrides": Array [ + Object { + "level": 0, + "overrideLevel": null, + "overrideStart": 1, + }, + ], + }, + Object { + "abstractNumId": 141, + "id": 284, + "levelOverrides": Array [ + Object { + "level": 0, + "overrideLevel": null, + "overrideStart": 1, + }, + ], + }, + Object { + "abstractNumId": 141, + "id": 285, + "levelOverrides": Array [ + Object { + "level": 0, + "overrideLevel": null, + "overrideStart": 1, + }, + ], + }, + Object { + "abstractNumId": 141, + "id": 286, + "levelOverrides": Array [ + Object { + "level": 0, + "overrideLevel": null, + "overrideStart": 1, + }, + ], + }, + Object { + "abstractNumId": 141, + "id": 287, + "levelOverrides": Array [ + Object { + "level": 0, + "overrideLevel": null, + "overrideStart": 1, + }, + ], + }, + Object { + "abstractNumId": 141, + "id": 288, + "levelOverrides": Array [ + Object { + "level": 0, + "overrideLevel": null, + "overrideStart": 1, + }, + ], + }, + Object { + "abstractNumId": 141, + "id": 289, + "levelOverrides": Array [ + Object { + "level": 0, + "overrideLevel": null, + "overrideStart": 1, + }, + ], + }, + Object { + "abstractNumId": 141, + "id": 290, + "levelOverrides": Array [ + Object { + "level": 0, + "overrideLevel": null, + "overrideStart": 1, + }, + ], + }, + Object { + "abstractNumId": 141, + "id": 291, + "levelOverrides": Array [ + Object { + "level": 0, + "overrideLevel": null, + "overrideStart": 1, + }, + ], + }, + Object { + "abstractNumId": 141, + "id": 292, + "levelOverrides": Array [ + Object { + "level": 0, + "overrideLevel": null, + "overrideStart": 1, + }, + ], + }, + Object { + "abstractNumId": 141, + "id": 293, + "levelOverrides": Array [ + Object { + "level": 0, + "overrideLevel": null, + "overrideStart": 1, + }, + ], + }, + Object { + "abstractNumId": 141, + "id": 294, + "levelOverrides": Array [ + Object { + "level": 0, + "overrideLevel": null, + "overrideStart": 1, + }, + ], + }, + Object { + "abstractNumId": 141, + "id": 295, + "levelOverrides": Array [ + Object { + "level": 0, + "overrideLevel": null, + "overrideStart": 1, + }, + ], + }, + Object { + "abstractNumId": 93, + "id": 296, + "levelOverrides": Array [ + Object { + "level": 0, + "overrideLevel": null, + "overrideStart": 1, + }, + ], + }, + Object { + "abstractNumId": 93, + "id": 297, + "levelOverrides": Array [ + Object { + "level": 0, + "overrideLevel": null, + "overrideStart": 1, + }, + ], + }, + Object { + "abstractNumId": 93, + "id": 298, + "levelOverrides": Array [ + Object { + "level": 0, + "overrideLevel": null, + "overrideStart": 1, + }, + ], + }, + Object { + "abstractNumId": 141, + "id": 299, + "levelOverrides": Array [ + Object { + "level": 0, + "overrideLevel": null, + "overrideStart": 1, + }, + ], + }, + Object { + "abstractNumId": 141, + "id": 300, + "levelOverrides": Array [ + Object { + "level": 0, + "overrideLevel": null, + "overrideStart": 1, + }, + ], + }, + Object { + "abstractNumId": 141, + "id": 301, + "levelOverrides": Array [ + Object { + "level": 0, + "overrideLevel": null, + "overrideStart": 1, + }, + ], + }, + Object { + "abstractNumId": 141, + "id": 302, + "levelOverrides": Array [ + Object { + "level": 0, + "overrideLevel": null, + "overrideStart": 1, + }, + ], + }, + Object { + "abstractNumId": 141, + "id": 303, + "levelOverrides": Array [ + Object { + "level": 0, + "overrideLevel": null, + "overrideStart": 1, + }, + ], + }, + Object { + "abstractNumId": 141, + "id": 304, + "levelOverrides": Array [ + Object { + "level": 0, + "overrideLevel": null, + "overrideStart": 1, + }, + ], + }, + Object { + "abstractNumId": 141, + "id": 305, + "levelOverrides": Array [ + Object { + "level": 0, + "overrideLevel": null, + "overrideStart": 1, + }, + ], + }, + Object { + "abstractNumId": 141, + "id": 306, + "levelOverrides": Array [ + Object { + "level": 0, + "overrideLevel": null, + "overrideStart": 1, + }, + ], + }, + Object { + "abstractNumId": 141, + "id": 307, + "levelOverrides": Array [ + Object { + "level": 0, + "overrideLevel": null, + "overrideStart": 1, + }, + ], + }, + Object { + "abstractNumId": 141, + "id": 308, + "levelOverrides": Array [ + Object { + "level": 0, + "overrideLevel": null, + "overrideStart": 1, + }, + ], + }, + Object { + "abstractNumId": 141, + "id": 309, + "levelOverrides": Array [ + Object { + "level": 0, + "overrideLevel": null, + "overrideStart": 1, + }, + ], + }, + Object { + "abstractNumId": 141, + "id": 310, + "levelOverrides": Array [ + Object { + "level": 0, + "overrideLevel": null, + "overrideStart": 1, + }, + ], + }, + Object { + "abstractNumId": 141, + "id": 311, + "levelOverrides": Array [ + Object { + "level": 0, + "overrideLevel": null, + "overrideStart": 1, + }, + ], + }, + Object { + "abstractNumId": 141, + "id": 312, + "levelOverrides": Array [ + Object { + "level": 0, + "overrideLevel": null, + "overrideStart": 1, + }, + ], + }, + Object { + "abstractNumId": 141, + "id": 313, + "levelOverrides": Array [ + Object { + "level": 0, + "overrideLevel": null, + "overrideStart": 1, + }, + ], + }, + Object { + "abstractNumId": 141, + "id": 314, + "levelOverrides": Array [ + Object { + "level": 0, + "overrideLevel": null, + "overrideStart": 1, + }, + ], + }, + Object { + "abstractNumId": 141, + "id": 315, + "levelOverrides": Array [ + Object { + "level": 0, + "overrideLevel": null, + "overrideStart": 1, + }, + ], + }, + Object { + "abstractNumId": 141, + "id": 316, + "levelOverrides": Array [ + Object { + "level": 0, + "overrideLevel": null, + "overrideStart": 1, + }, + ], + }, + Object { + "abstractNumId": 93, + "id": 317, + "levelOverrides": Array [ + Object { + "level": 0, + "overrideLevel": null, + "overrideStart": 1, + }, + ], + }, + Object { + "abstractNumId": 93, + "id": 318, + "levelOverrides": Array [ + Object { + "level": 0, + "overrideLevel": null, + "overrideStart": 1, + }, + ], + }, + Object { + "abstractNumId": 141, + "id": 319, + "levelOverrides": Array [ + Object { + "level": 0, + "overrideLevel": null, + "overrideStart": 1, + }, + ], + }, + Object { + "abstractNumId": 141, + "id": 320, + "levelOverrides": Array [ + Object { + "level": 0, + "overrideLevel": null, + "overrideStart": 1, + }, + ], + }, + Object { + "abstractNumId": 141, + "id": 321, + "levelOverrides": Array [ + Object { + "level": 0, + "overrideLevel": null, + "overrideStart": 1, + }, + ], + }, + Object { + "abstractNumId": 153, + "id": 322, + "levelOverrides": Array [ + Object { + "level": 0, + "overrideLevel": null, + "overrideStart": 1, + }, + ], + }, + Object { + "abstractNumId": 141, + "id": 323, + "levelOverrides": Array [ + Object { + "level": 0, + "overrideLevel": null, + "overrideStart": 1, + }, + ], + }, + Object { + "abstractNumId": 141, + "id": 324, + "levelOverrides": Array [ + Object { + "level": 0, + "overrideLevel": null, + "overrideStart": 1, + }, + ], + }, + Object { + "abstractNumId": 141, + "id": 325, + "levelOverrides": Array [ + Object { + "level": 0, + "overrideLevel": null, + "overrideStart": 1, + }, + ], + }, + Object { + "abstractNumId": 141, + "id": 326, + "levelOverrides": Array [ + Object { + "level": 0, + "overrideLevel": null, + "overrideStart": 1, + }, + ], + }, + Object { + "abstractNumId": 141, + "id": 327, + "levelOverrides": Array [ + Object { + "level": 0, + "overrideLevel": null, + "overrideStart": 1, + }, + ], + }, + Object { + "abstractNumId": 141, + "id": 328, + "levelOverrides": Array [ + Object { + "level": 0, + "overrideLevel": null, + "overrideStart": 1, + }, + ], + }, + Object { + "abstractNumId": 141, + "id": 329, + "levelOverrides": Array [ + Object { + "level": 0, + "overrideLevel": null, + "overrideStart": 1, + }, + ], + }, + Object { + "abstractNumId": 141, + "id": 330, + "levelOverrides": Array [ + Object { + "level": 0, + "overrideLevel": null, + "overrideStart": 1, + }, + ], + }, + Object { + "abstractNumId": 141, + "id": 331, + "levelOverrides": Array [ + Object { + "level": 0, + "overrideLevel": null, + "overrideStart": 1, + }, + ], + }, + Object { + "abstractNumId": 141, + "id": 332, + "levelOverrides": Array [ + Object { + "level": 0, + "overrideLevel": null, + "overrideStart": 1, + }, + ], + }, + Object { + "abstractNumId": 141, + "id": 333, + "levelOverrides": Array [ + Object { + "level": 0, + "overrideLevel": null, + "overrideStart": 1, + }, + ], + }, + Object { + "abstractNumId": 141, + "id": 334, + "levelOverrides": Array [ + Object { + "level": 0, + "overrideLevel": null, + "overrideStart": 1, + }, + ], + }, + Object { + "abstractNumId": 141, + "id": 335, + "levelOverrides": Array [ + Object { + "level": 0, + "overrideLevel": null, + "overrideStart": 1, + }, + ], + }, + Object { + "abstractNumId": 141, + "id": 336, + "levelOverrides": Array [ + Object { + "level": 0, + "overrideLevel": null, + "overrideStart": 1, + }, + ], + }, + Object { + "abstractNumId": 141, + "id": 337, + "levelOverrides": Array [ + Object { + "level": 0, + "overrideLevel": null, + "overrideStart": 1, + }, + ], + }, + Object { + "abstractNumId": 141, + "id": 338, + "levelOverrides": Array [ + Object { + "level": 0, + "overrideLevel": null, + "overrideStart": 1, + }, + ], + }, + Object { + "abstractNumId": 141, + "id": 339, + "levelOverrides": Array [ + Object { + "level": 0, + "overrideLevel": null, + "overrideStart": 1, + }, + ], + }, + Object { + "abstractNumId": 141, + "id": 340, + "levelOverrides": Array [ + Object { + "level": 0, + "overrideLevel": null, + "overrideStart": 1, + }, + ], + }, + Object { + "abstractNumId": 141, + "id": 341, + "levelOverrides": Array [ + Object { + "level": 0, + "overrideLevel": null, + "overrideStart": 1, + }, + ], + }, + Object { + "abstractNumId": 141, + "id": 342, + "levelOverrides": Array [ + Object { + "level": 0, + "overrideLevel": null, + "overrideStart": 1, + }, + ], + }, + Object { + "abstractNumId": 141, + "id": 343, + "levelOverrides": Array [ + Object { + "level": 0, + "overrideLevel": null, + "overrideStart": 1, + }, + ], + }, + Object { + "abstractNumId": 141, + "id": 344, + "levelOverrides": Array [ + Object { + "level": 0, + "overrideLevel": null, + "overrideStart": 1, + }, + ], + }, + Object { + "abstractNumId": 141, + "id": 345, + "levelOverrides": Array [ + Object { + "level": 0, + "overrideLevel": null, + "overrideStart": 1, + }, + ], + }, + Object { + "abstractNumId": 141, + "id": 346, + "levelOverrides": Array [ + Object { + "level": 0, + "overrideLevel": null, + "overrideStart": 1, + }, + ], + }, + Object { + "abstractNumId": 93, + "id": 347, + "levelOverrides": Array [ + Object { + "level": 0, + "overrideLevel": null, + "overrideStart": 1, + }, + ], + }, + Object { + "abstractNumId": 141, + "id": 348, + "levelOverrides": Array [ + Object { + "level": 0, + "overrideLevel": null, + "overrideStart": 1, + }, + ], + }, + Object { + "abstractNumId": 141, + "id": 349, + "levelOverrides": Array [ + Object { + "level": 0, + "overrideLevel": null, + "overrideStart": 1, + }, + ], + }, + Object { + "abstractNumId": 93, + "id": 350, + "levelOverrides": Array [ + Object { + "level": 0, + "overrideLevel": null, + "overrideStart": 1, + }, + ], + }, + Object { + "abstractNumId": 141, + "id": 351, + "levelOverrides": Array [ + Object { + "level": 0, + "overrideLevel": null, + "overrideStart": 1, + }, + ], + }, + Object { + "abstractNumId": 160, + "id": 352, + "levelOverrides": Array [], + }, + Object { + "abstractNumId": 141, + "id": 353, + "levelOverrides": Array [ + Object { + "level": 0, + "overrideLevel": null, + "overrideStart": 1, + }, + ], + }, + Object { + "abstractNumId": 141, + "id": 354, + "levelOverrides": Array [ + Object { + "level": 0, + "overrideLevel": null, + "overrideStart": 1, + }, + ], + }, + Object { + "abstractNumId": 141, + "id": 355, + "levelOverrides": Array [ + Object { + "level": 0, + "overrideLevel": null, + "overrideStart": 1, + }, + ], + }, + Object { + "abstractNumId": 141, + "id": 356, + "levelOverrides": Array [ + Object { + "level": 0, + "overrideLevel": null, + "overrideStart": 1, + }, + ], + }, + Object { + "abstractNumId": 141, + "id": 357, + "levelOverrides": Array [ + Object { + "level": 0, + "overrideLevel": null, + "overrideStart": 1, + }, + ], + }, + Object { + "abstractNumId": 141, + "id": 358, + "levelOverrides": Array [ + Object { + "level": 0, + "overrideLevel": null, + "overrideStart": 1, + }, + ], + }, + Object { + "abstractNumId": 93, + "id": 359, + "levelOverrides": Array [ + Object { + "level": 0, + "overrideLevel": null, + "overrideStart": 1, + }, + ], + }, + Object { + "abstractNumId": 93, + "id": 360, + "levelOverrides": Array [ + Object { + "level": 0, + "overrideLevel": null, + "overrideStart": 1, + }, + ], + }, + Object { + "abstractNumId": 93, + "id": 361, + "levelOverrides": Array [ + Object { + "level": 0, + "overrideLevel": null, + "overrideStart": 1, + }, + ], + }, + Object { + "abstractNumId": 93, + "id": 362, + "levelOverrides": Array [ + Object { + "level": 0, + "overrideLevel": null, + "overrideStart": 1, + }, + ], + }, + Object { + "abstractNumId": 153, + "id": 363, + "levelOverrides": Array [ + Object { + "level": 0, + "overrideLevel": null, + "overrideStart": 1, + }, + ], + }, + Object { + "abstractNumId": 141, + "id": 364, + "levelOverrides": Array [ + Object { + "level": 0, + "overrideLevel": null, + "overrideStart": 1, + }, + ], + }, + Object { + "abstractNumId": 104, + "id": 365, + "levelOverrides": Array [], + }, + Object { + "abstractNumId": 93, + "id": 366, + "levelOverrides": Array [ + Object { + "level": 0, + "overrideLevel": null, + "overrideStart": 1, + }, + ], + }, + Object { + "abstractNumId": 153, + "id": 367, + "levelOverrides": Array [ + Object { + "level": 0, + "overrideLevel": null, + "overrideStart": 1, + }, + ], + }, + Object { + "abstractNumId": 153, + "id": 368, + "levelOverrides": Array [ + Object { + "level": 0, + "overrideLevel": null, + "overrideStart": 1, + }, + ], + }, + Object { + "abstractNumId": 153, + "id": 369, + "levelOverrides": Array [ + Object { + "level": 0, + "overrideLevel": null, + "overrideStart": 1, + }, + ], + }, + Object { + "abstractNumId": 153, + "id": 370, + "levelOverrides": Array [ + Object { + "level": 0, + "overrideLevel": null, + "overrideStart": 1, + }, + ], + }, + Object { + "abstractNumId": 153, + "id": 371, + "levelOverrides": Array [ + Object { + "level": 0, + "overrideLevel": null, + "overrideStart": 1, + }, + ], + }, + Object { + "abstractNumId": 153, + "id": 372, + "levelOverrides": Array [ + Object { + "level": 0, + "overrideLevel": null, + "overrideStart": 1, + }, + ], + }, + Object { + "abstractNumId": 153, + "id": 373, + "levelOverrides": Array [ + Object { + "level": 0, + "overrideLevel": null, + "overrideStart": 1, + }, + ], + }, + Object { + "abstractNumId": 141, + "id": 374, + "levelOverrides": Array [ + Object { + "level": 0, + "overrideLevel": null, + "overrideStart": 1, + }, + ], + }, + Object { + "abstractNumId": 141, + "id": 375, + "levelOverrides": Array [ + Object { + "level": 0, + "overrideLevel": null, + "overrideStart": 1, + }, + ], + }, + Object { + "abstractNumId": 141, + "id": 376, + "levelOverrides": Array [ + Object { + "level": 0, + "overrideLevel": null, + "overrideStart": 1, + }, + ], + }, + Object { + "abstractNumId": 141, + "id": 377, + "levelOverrides": Array [ + Object { + "level": 0, + "overrideLevel": null, + "overrideStart": 1, + }, + ], + }, + Object { + "abstractNumId": 113, + "id": 378, + "levelOverrides": Array [], + }, + Object { + "abstractNumId": 141, + "id": 379, + "levelOverrides": Array [ + Object { + "level": 0, + "overrideLevel": null, + "overrideStart": 1, + }, + ], + }, + Object { + "abstractNumId": 81, + "id": 380, + "levelOverrides": Array [], + }, + Object { + "abstractNumId": 141, + "id": 381, + "levelOverrides": Array [ + Object { + "level": 0, + "overrideLevel": null, + "overrideStart": 1, + }, + ], + }, + Object { + "abstractNumId": 141, + "id": 382, + "levelOverrides": Array [ + Object { + "level": 0, + "overrideLevel": null, + "overrideStart": 1, + }, + ], + }, + Object { + "abstractNumId": 141, + "id": 383, + "levelOverrides": Array [ + Object { + "level": 0, + "overrideLevel": null, + "overrideStart": 1, + }, + ], + }, + Object { + "abstractNumId": 141, + "id": 384, + "levelOverrides": Array [ + Object { + "level": 0, + "overrideLevel": null, + "overrideStart": 1, + }, + ], + }, + Object { + "abstractNumId": 141, + "id": 385, + "levelOverrides": Array [ + Object { + "level": 0, + "overrideLevel": null, + "overrideStart": 1, + }, + ], + }, + Object { + "abstractNumId": 141, + "id": 386, + "levelOverrides": Array [ + Object { + "level": 0, + "overrideLevel": null, + "overrideStart": 1, + }, + ], + }, + Object { + "abstractNumId": 141, + "id": 387, + "levelOverrides": Array [ + Object { + "level": 0, + "overrideLevel": null, + "overrideStart": 1, + }, + ], + }, + Object { + "abstractNumId": 119, + "id": 388, + "levelOverrides": Array [], + }, + Object { + "abstractNumId": 93, + "id": 389, + "levelOverrides": Array [ + Object { + "level": 0, + "overrideLevel": null, + "overrideStart": 1, + }, + ], + }, + Object { + "abstractNumId": 93, + "id": 390, + "levelOverrides": Array [ + Object { + "level": 0, + "overrideLevel": null, + "overrideStart": 1, + }, + ], + }, + Object { + "abstractNumId": 141, + "id": 391, + "levelOverrides": Array [ + Object { + "level": 0, + "overrideLevel": null, + "overrideStart": 1, + }, + ], + }, + Object { + "abstractNumId": 93, + "id": 392, + "levelOverrides": Array [ + Object { + "level": 0, + "overrideLevel": null, + "overrideStart": 1, + }, + ], + }, + Object { + "abstractNumId": 141, + "id": 393, + "levelOverrides": Array [ + Object { + "level": 0, + "overrideLevel": null, + "overrideStart": 1, + }, + ], + }, + Object { + "abstractNumId": 93, + "id": 394, + "levelOverrides": Array [ + Object { + "level": 0, + "overrideLevel": null, + "overrideStart": 1, + }, + ], + }, + Object { + "abstractNumId": 141, + "id": 395, + "levelOverrides": Array [ + Object { + "level": 0, + "overrideLevel": null, + "overrideStart": 1, + }, + ], + }, + Object { + "abstractNumId": 141, + "id": 396, + "levelOverrides": Array [ + Object { + "level": 0, + "overrideLevel": null, + "overrideStart": 1, + }, + ], + }, + Object { + "abstractNumId": 141, + "id": 397, + "levelOverrides": Array [ + Object { + "level": 0, + "overrideLevel": null, + "overrideStart": 1, + }, + ], + }, + Object { + "abstractNumId": 141, + "id": 398, + "levelOverrides": Array [ + Object { + "level": 0, + "overrideLevel": null, + "overrideStart": 1, + }, + ], + }, + Object { + "abstractNumId": 141, + "id": 399, + "levelOverrides": Array [ + Object { + "level": 0, + "overrideLevel": null, + "overrideStart": 1, + }, + ], + }, + Object { + "abstractNumId": 141, + "id": 400, + "levelOverrides": Array [ + Object { + "level": 0, + "overrideLevel": null, + "overrideStart": 1, + }, + ], + }, + Object { + "abstractNumId": 93, + "id": 401, + "levelOverrides": Array [ + Object { + "level": 0, + "overrideLevel": null, + "overrideStart": 1, + }, + ], + }, + Object { + "abstractNumId": 93, + "id": 402, + "levelOverrides": Array [ + Object { + "level": 0, + "overrideLevel": null, + "overrideStart": 1, + }, + ], + }, + Object { + "abstractNumId": 93, + "id": 403, + "levelOverrides": Array [ + Object { + "level": 0, + "overrideLevel": null, + "overrideStart": 1, + }, + ], + }, + Object { + "abstractNumId": 93, + "id": 404, + "levelOverrides": Array [ + Object { + "level": 0, + "overrideLevel": null, + "overrideStart": 1, + }, + ], + }, + Object { + "abstractNumId": 93, + "id": 405, + "levelOverrides": Array [ + Object { + "level": 0, + "overrideLevel": null, + "overrideStart": 1, + }, + ], + }, + Object { + "abstractNumId": 93, + "id": 406, + "levelOverrides": Array [ + Object { + "level": 0, + "overrideLevel": null, + "overrideStart": 1, + }, + ], + }, + Object { + "abstractNumId": 141, + "id": 407, + "levelOverrides": Array [ + Object { + "level": 0, + "overrideLevel": null, + "overrideStart": 1, + }, + ], + }, + Object { + "abstractNumId": 141, + "id": 408, + "levelOverrides": Array [ + Object { + "level": 0, + "overrideLevel": null, + "overrideStart": 1, + }, + ], + }, + Object { + "abstractNumId": 141, + "id": 409, + "levelOverrides": Array [ + Object { + "level": 0, + "overrideLevel": null, + "overrideStart": 1, + }, + ], + }, + Object { + "abstractNumId": 141, + "id": 410, + "levelOverrides": Array [ + Object { + "level": 0, + "overrideLevel": null, + "overrideStart": 1, + }, + ], + }, + Object { + "abstractNumId": 141, + "id": 411, + "levelOverrides": Array [ + Object { + "level": 0, + "overrideLevel": null, + "overrideStart": 1, + }, + ], + }, + Object { + "abstractNumId": 141, + "id": 412, + "levelOverrides": Array [ + Object { + "level": 0, + "overrideLevel": null, + "overrideStart": 1, + }, + ], + }, + Object { + "abstractNumId": 141, + "id": 413, + "levelOverrides": Array [ + Object { + "level": 0, + "overrideLevel": null, + "overrideStart": 1, + }, + ], + }, + Object { + "abstractNumId": 141, + "id": 414, + "levelOverrides": Array [ + Object { + "level": 0, + "overrideLevel": null, + "overrideStart": 1, + }, + ], + }, + Object { + "abstractNumId": 141, + "id": 415, + "levelOverrides": Array [ + Object { + "level": 0, + "overrideLevel": null, + "overrideStart": 1, + }, + ], + }, + Object { + "abstractNumId": 141, + "id": 416, + "levelOverrides": Array [ + Object { + "level": 0, + "overrideLevel": null, + "overrideStart": 1, + }, + ], + }, + Object { + "abstractNumId": 141, + "id": 417, + "levelOverrides": Array [ + Object { + "level": 0, + "overrideLevel": null, + "overrideStart": 1, + }, + ], + }, + Object { + "abstractNumId": 141, + "id": 418, + "levelOverrides": Array [ + Object { + "level": 0, + "overrideLevel": null, + "overrideStart": 1, + }, + ], + }, + Object { + "abstractNumId": 141, + "id": 419, + "levelOverrides": Array [ + Object { + "level": 0, + "overrideLevel": null, + "overrideStart": 1, + }, + ], + }, + Object { + "abstractNumId": 141, + "id": 420, + "levelOverrides": Array [ + Object { + "level": 0, + "overrideLevel": null, + "overrideStart": 1, + }, + ], + }, + Object { + "abstractNumId": 141, + "id": 421, + "levelOverrides": Array [ + Object { + "level": 0, + "overrideLevel": null, + "overrideStart": 1, + }, + ], + }, + Object { + "abstractNumId": 141, + "id": 422, + "levelOverrides": Array [ + Object { + "level": 0, + "overrideLevel": null, + "overrideStart": 1, + }, + ], + }, + Object { + "abstractNumId": 141, + "id": 423, + "levelOverrides": Array [ + Object { + "level": 0, + "overrideLevel": null, + "overrideStart": 1, + }, + ], + }, + Object { + "abstractNumId": 141, + "id": 424, + "levelOverrides": Array [ + Object { + "level": 0, + "overrideLevel": null, + "overrideStart": 1, + }, + ], + }, + Object { + "abstractNumId": 141, + "id": 425, + "levelOverrides": Array [ + Object { + "level": 0, + "overrideLevel": null, + "overrideStart": 1, + }, + ], + }, + Object { + "abstractNumId": 141, + "id": 426, + "levelOverrides": Array [ + Object { + "level": 0, + "overrideLevel": null, + "overrideStart": 1, + }, + ], + }, + Object { + "abstractNumId": 141, + "id": 427, + "levelOverrides": Array [ + Object { + "level": 0, + "overrideLevel": null, + "overrideStart": 1, + }, + ], + }, + Object { + "abstractNumId": 141, + "id": 428, + "levelOverrides": Array [ + Object { + "level": 0, + "overrideLevel": null, + "overrideStart": 1, + }, + ], + }, + Object { + "abstractNumId": 141, + "id": 429, + "levelOverrides": Array [ + Object { + "level": 0, + "overrideLevel": null, + "overrideStart": 1, + }, + ], + }, + Object { + "abstractNumId": 141, + "id": 430, + "levelOverrides": Array [ + Object { + "level": 0, + "overrideLevel": null, + "overrideStart": 1, + }, + ], + }, + Object { + "abstractNumId": 141, + "id": 431, + "levelOverrides": Array [ + Object { + "level": 0, + "overrideLevel": null, + "overrideStart": 1, + }, + ], + }, + Object { + "abstractNumId": 134, + "id": 432, + "levelOverrides": Array [ + Object { + "level": 0, + "overrideLevel": null, + "overrideStart": 1, + }, + ], + }, + Object { + "abstractNumId": 134, + "id": 433, + "levelOverrides": Array [ + Object { + "level": 0, + "overrideLevel": null, + "overrideStart": 1, + }, + ], + }, + Object { + "abstractNumId": 17, + "id": 434, + "levelOverrides": Array [ + Object { + "level": 0, + "overrideLevel": null, + "overrideStart": null, + }, + Object { + "level": 1, + "overrideLevel": null, + "overrideStart": 1, + }, + Object { + "level": 2, + "overrideLevel": null, + "overrideStart": 5, + }, + Object { + "level": 3, + "overrideLevel": null, + "overrideStart": 1, + }, + Object { + "level": 4, + "overrideLevel": null, + "overrideStart": 2, + }, + Object { + "level": 5, + "overrideLevel": null, + "overrideStart": 1, + }, + Object { + "level": 6, + "overrideLevel": null, + "overrideStart": 1, + }, + Object { + "level": 7, + "overrideLevel": null, + "overrideStart": null, + }, + Object { + "level": 8, + "overrideLevel": null, + "overrideStart": null, + }, + ], + }, + Object { + "abstractNumId": 134, + "id": 435, + "levelOverrides": Array [ + Object { + "level": 0, + "overrideLevel": null, + "overrideStart": 1, + }, + ], + }, + Object { + "abstractNumId": 134, + "id": 436, + "levelOverrides": Array [ + Object { + "level": 0, + "overrideLevel": null, + "overrideStart": 1, + }, + ], + }, + Object { + "abstractNumId": 134, + "id": 437, + "levelOverrides": Array [ + Object { + "level": 0, + "overrideLevel": null, + "overrideStart": 1, + }, + ], + }, + Object { + "abstractNumId": 99, + "id": 438, + "levelOverrides": Array [], + }, + Object { + "abstractNumId": 16, + "id": 439, + "levelOverrides": Array [], + }, + Object { + "abstractNumId": 105, + "id": 440, + "levelOverrides": Array [], + }, + Object { + "abstractNumId": 58, + "id": 441, + "levelOverrides": Array [], + }, + Object { + "abstractNumId": 134, + "id": 442, + "levelOverrides": Array [], + }, + Object { + "abstractNumId": 134, + "id": 443, + "levelOverrides": Array [ + Object { + "level": 0, + "overrideLevel": null, + "overrideStart": 1, + }, + ], + }, + Object { + "abstractNumId": 41, + "id": 444, + "levelOverrides": Array [], + }, + Object { + "abstractNumId": 157, + "id": 445, + "levelOverrides": Array [], + }, + Object { + "abstractNumId": 127, + "id": 446, + "levelOverrides": Array [], + }, + Object { + "abstractNumId": 46, + "id": 447, + "levelOverrides": Array [], + }, + Object { + "abstractNumId": 57, + "id": 448, + "levelOverrides": Array [], + }, + Object { + "abstractNumId": 134, + "id": 449, + "levelOverrides": Array [ + Object { + "level": 0, + "overrideLevel": null, + "overrideStart": 1, + }, + ], + }, + Object { + "abstractNumId": 134, + "id": 450, + "levelOverrides": Array [ + Object { + "level": 0, + "overrideLevel": null, + "overrideStart": 1, + }, + ], + }, + Object { + "abstractNumId": 66, + "id": 451, + "levelOverrides": Array [], + }, + Object { + "abstractNumId": 134, + "id": 452, + "levelOverrides": Array [ + Object { + "level": 0, + "overrideLevel": null, + "overrideStart": 1, + }, + ], + }, + Object { + "abstractNumId": 134, + "id": 453, + "levelOverrides": Array [ + Object { + "level": 0, + "overrideLevel": null, + "overrideStart": 1, + }, + ], + }, + Object { + "abstractNumId": 68, + "id": 454, + "levelOverrides": Array [], + }, + Object { + "abstractNumId": 158, + "id": 455, + "levelOverrides": Array [], + }, + Object { + "abstractNumId": 106, + "id": 456, + "levelOverrides": Array [], + }, + Object { + "abstractNumId": 126, + "id": 457, + "levelOverrides": Array [], + }, + Object { + "abstractNumId": 22, + "id": 458, + "levelOverrides": Array [], + }, + Object { + "abstractNumId": 108, + "id": 459, + "levelOverrides": Array [], + }, + Object { + "abstractNumId": 125, + "id": 460, + "levelOverrides": Array [], + }, + Object { + "abstractNumId": 38, + "id": 461, + "levelOverrides": Array [], + }, + Object { + "abstractNumId": 11, + "id": 462, + "levelOverrides": Array [], + }, + Object { + "abstractNumId": 55, + "id": 463, + "levelOverrides": Array [], + }, + Object { + "abstractNumId": 134, + "id": 464, + "levelOverrides": Array [ + Object { + "level": 0, + "overrideLevel": null, + "overrideStart": 1, + }, + ], + }, + Object { + "abstractNumId": 134, + "id": 465, + "levelOverrides": Array [ + Object { + "level": 0, + "overrideLevel": null, + "overrideStart": 1, + }, + ], + }, + Object { + "abstractNumId": 134, + "id": 466, + "levelOverrides": Array [ + Object { + "level": 0, + "overrideLevel": null, + "overrideStart": 1, + }, + ], + }, + Object { + "abstractNumId": 134, + "id": 467, + "levelOverrides": Array [ + Object { + "level": 0, + "overrideLevel": null, + "overrideStart": 1, + }, + ], + }, + Object { + "abstractNumId": 134, + "id": 468, + "levelOverrides": Array [ + Object { + "level": 0, + "overrideLevel": null, + "overrideStart": 1, + }, + ], + }, + Object { + "abstractNumId": 134, + "id": 469, + "levelOverrides": Array [ + Object { + "level": 0, + "overrideLevel": null, + "overrideStart": 1, + }, + ], + }, + Object { + "abstractNumId": 134, + "id": 470, + "levelOverrides": Array [ + Object { + "level": 0, + "overrideLevel": null, + "overrideStart": 1, + }, + ], + }, + Object { + "abstractNumId": 134, + "id": 471, + "levelOverrides": Array [ + Object { + "level": 0, + "overrideLevel": null, + "overrideStart": 1, + }, + ], + }, + Object { + "abstractNumId": 134, + "id": 472, + "levelOverrides": Array [ + Object { + "level": 0, + "overrideLevel": null, + "overrideStart": 1, + }, + ], + }, + Object { + "abstractNumId": 134, + "id": 473, + "levelOverrides": Array [ + Object { + "level": 0, + "overrideLevel": null, + "overrideStart": 1, + }, + ], + }, + Object { + "abstractNumId": 134, + "id": 474, + "levelOverrides": Array [ + Object { + "level": 0, + "overrideLevel": null, + "overrideStart": 1, + }, + ], + }, + Object { + "abstractNumId": 134, + "id": 475, + "levelOverrides": Array [ + Object { + "level": 0, + "overrideLevel": null, + "overrideStart": 1, + }, + ], + }, + Object { + "abstractNumId": 134, + "id": 476, + "levelOverrides": Array [ + Object { + "level": 0, + "overrideLevel": null, + "overrideStart": 1, + }, + ], + }, + Object { + "abstractNumId": 134, + "id": 477, + "levelOverrides": Array [ + Object { + "level": 0, + "overrideLevel": null, + "overrideStart": 1, + }, + ], + }, + Object { + "abstractNumId": 134, + "id": 478, + "levelOverrides": Array [ + Object { + "level": 0, + "overrideLevel": null, + "overrideStart": 1, + }, + ], + }, + Object { + "abstractNumId": 134, + "id": 479, + "levelOverrides": Array [ + Object { + "level": 0, + "overrideLevel": null, + "overrideStart": 1, + }, + ], + }, + Object { + "abstractNumId": 134, + "id": 480, + "levelOverrides": Array [ + Object { + "level": 0, + "overrideLevel": null, + "overrideStart": 1, + }, + ], + }, + Object { + "abstractNumId": 134, + "id": 481, + "levelOverrides": Array [ + Object { + "level": 0, + "overrideLevel": null, + "overrideStart": 1, + }, + ], + }, + Object { + "abstractNumId": 96, + "id": 482, + "levelOverrides": Array [], + }, + Object { + "abstractNumId": 62, + "id": 483, + "levelOverrides": Array [], + }, + Object { + "abstractNumId": 83, + "id": 484, + "levelOverrides": Array [], + }, + Object { + "abstractNumId": 51, + "id": 485, + "levelOverrides": Array [], + }, + ], + }, + "rels": Object { + "rels": Array [ + Array [ + "http://schemas.openxmlformats.org/package/2006/relationships/metadata/core-properties", + "rId1", + "docProps/core.xml", + ], + Array [ + "http://schemas.openxmlformats.org/officeDocument/2006/relationships/extended-properties", + "rId2", + "docProps/app.xml", + ], + Array [ + "http://schemas.openxmlformats.org/officeDocument/2006/relationships/officeDocument", + "rId3", + "word/document.xml", + ], + Array [ + "http://schemas.openxmlformats.org/officeDocument/2006/relationships/custom-properties", + "rId4", + "docProps/custom.xml", + ], + ], + }, + "settings": Object { + "adjustLineHeightInTable": false, + "defaultTabStop": 851, + "docId": "BF832BC0-91B3-4538-AB66-1291F36977FA", + "docVars": Array [ + Object { + "name": "DocLay", + "val": "YES", + }, + Object { + "name": "ValidCPLLPP", + "val": "0", + }, + Object { + "name": "ViewGrid", + "val": "0", + }, + ], + "evenAndOddHeaders": false, + "zoom": 100, + }, + "styles": Object { + "docDefaults": Object { + "runPropertyDefault": Object { + "runProperty": Object { + "fonts": Object { + "ascii": "Century", + "cs": "Times New Roman", + "eastAsia": "Mincho", + "hiAnsi": "Century", + }, + }, + }, + }, + "styles": Array [ + Object { + "basedOn": null, + "name": "Normal", + "next": null, + "paragraphProperty": Object { + "alignment": "both", + "lineSpacing": Object { + "line": 360, + "lineRule": "atLeast", + }, + "runProperty": Object {}, + "tabs": Array [], + }, + "runProperty": Object { + "fonts": Object { + "ascii": "MS P明朝", + "eastAsia": "MS P明朝", + "hiAnsi": "Arial", + }, + "sz": 21, + "szCs": 21, + }, + "styleId": "a7", + "styleType": "paragraph", + "tableCellProperty": Object { + "borders": null, + "gridSpan": null, + "shading": null, + "textDirection": null, + "verticalAlign": null, + "verticalMerge": null, + "width": null, + }, + "tableProperty": Object { + "borders": Object { + "bottom": Object { + "borderType": "single", + "color": "000000", + "position": "bottom", + "size": 2, + "space": 0, + }, + "insideH": Object { + "borderType": "single", + "color": "000000", + "position": "insideH", + "size": 2, + "space": 0, + }, + "insideV": Object { + "borderType": "single", + "color": "000000", + "position": "insideV", + "size": 2, + "space": 0, + }, + "left": Object { + "borderType": "single", + "color": "000000", + "position": "left", + "size": 2, + "space": 0, + }, + "right": Object { + "borderType": "single", + "color": "000000", + "position": "right", + "size": 2, + "space": 0, + }, + "top": Object { + "borderType": "single", + "color": "000000", + "position": "top", + "size": 2, + "space": 0, + }, + }, + "justification": "left", + "width": Object { + "width": 0, + "widthType": "auto", + }, + }, + }, + Object { + "basedOn": "a7", + "name": "heading 1", + "next": null, + "paragraphProperty": Object { + "keepNext": true, + "lineSpacing": Object { + "before": 360, + "line": 280, + "lineRule": "atLeast", + }, + "numberingProperty": Object { + "id": 2, + "level": null, + }, + "outlineLvl": 0, + "runProperty": Object {}, + "tabs": Array [], + }, + "runProperty": Object { + "bold": true, + "boldCs": true, + "fonts": Object { + "ascii": "MS Pゴシック", + "eastAsia": "MS Pゴシック", + "hiAnsi": "Arial Black", + }, + "sz": 32, + "szCs": 32, + }, + "styleId": "1", + "styleType": "paragraph", + "tableCellProperty": Object { + "borders": null, + "gridSpan": null, + "shading": null, + "textDirection": null, + "verticalAlign": null, + "verticalMerge": null, + "width": null, + }, + "tableProperty": Object { + "borders": Object { + "bottom": Object { + "borderType": "single", + "color": "000000", + "position": "bottom", + "size": 2, + "space": 0, + }, + "insideH": Object { + "borderType": "single", + "color": "000000", + "position": "insideH", + "size": 2, + "space": 0, + }, + "insideV": Object { + "borderType": "single", + "color": "000000", + "position": "insideV", + "size": 2, + "space": 0, + }, + "left": Object { + "borderType": "single", + "color": "000000", + "position": "left", + "size": 2, + "space": 0, + }, + "right": Object { + "borderType": "single", + "color": "000000", + "position": "right", + "size": 2, + "space": 0, + }, + "top": Object { + "borderType": "single", + "color": "000000", + "position": "top", + "size": 2, + "space": 0, + }, + }, + "justification": "left", + "width": Object { + "width": 0, + "widthType": "auto", + }, + }, + }, + Object { + "basedOn": "a7", + "name": "heading 2", + "next": null, + "paragraphProperty": Object { + "indent": Object { + "end": null, + "firstLineChars": null, + "hangingChars": null, + "specialIndent": null, + "start": 1134, + "startChars": null, + }, + "keepNext": true, + "lineSpacing": Object { + "after": 120, + "before": 480, + "line": 240, + "lineRule": "auto", + }, + "numberingProperty": Object { + "id": 2, + "level": 1, + }, + "outlineLvl": 1, + "runProperty": Object {}, + "tabs": Array [], + }, + "runProperty": Object { + "bold": true, + "boldCs": true, + "fonts": Object { + "ascii": "MS UI Gothic", + "eastAsia": "MS UI Gothic", + "hiAnsi": "MS UI Gothic", + }, + "sz": 28, + "szCs": 28, + }, + "styleId": "22", + "styleType": "paragraph", + "tableCellProperty": Object { + "borders": null, + "gridSpan": null, + "shading": null, + "textDirection": null, + "verticalAlign": null, + "verticalMerge": null, + "width": null, + }, + "tableProperty": Object { + "borders": Object { + "bottom": Object { + "borderType": "single", + "color": "000000", + "position": "bottom", + "size": 2, + "space": 0, + }, + "insideH": Object { + "borderType": "single", + "color": "000000", + "position": "insideH", + "size": 2, + "space": 0, + }, + "insideV": Object { + "borderType": "single", + "color": "000000", + "position": "insideV", + "size": 2, + "space": 0, + }, + "left": Object { + "borderType": "single", + "color": "000000", + "position": "left", + "size": 2, + "space": 0, + }, + "right": Object { + "borderType": "single", + "color": "000000", + "position": "right", + "size": 2, + "space": 0, + }, + "top": Object { + "borderType": "single", + "color": "000000", + "position": "top", + "size": 2, + "space": 0, + }, + }, + "justification": "left", + "width": Object { + "width": 0, + "widthType": "auto", + }, + }, + }, + Object { + "basedOn": "a7", + "name": "heading 3", + "next": null, + "paragraphProperty": Object { + "indent": Object { + "end": null, + "firstLineChars": null, + "hangingChars": null, + "specialIndent": Object { + "type": "hanging", + "val": 840, + }, + "start": 840, + "startChars": null, + }, + "keepNext": true, + "lineSpacing": Object { + "before": 240, + "line": 280, + "lineRule": "exact", + }, + "numberingProperty": Object { + "id": 2, + "level": 2, + }, + "outlineLvl": 2, + "runProperty": Object {}, + "tabs": Array [], + }, + "runProperty": Object { + "bold": true, + "boldCs": true, + "fonts": Object { + "ascii": "MS Pゴシック", + "eastAsia": "MS Pゴシック", + "hiAnsi": "MS Pゴシック", + }, + }, + "styleId": "31", + "styleType": "paragraph", + "tableCellProperty": Object { + "borders": null, + "gridSpan": null, + "shading": null, + "textDirection": null, + "verticalAlign": null, + "verticalMerge": null, + "width": null, + }, + "tableProperty": Object { + "borders": Object { + "bottom": Object { + "borderType": "single", + "color": "000000", + "position": "bottom", + "size": 2, + "space": 0, + }, + "insideH": Object { + "borderType": "single", + "color": "000000", + "position": "insideH", + "size": 2, + "space": 0, + }, + "insideV": Object { + "borderType": "single", + "color": "000000", + "position": "insideV", + "size": 2, + "space": 0, + }, + "left": Object { + "borderType": "single", + "color": "000000", + "position": "left", + "size": 2, + "space": 0, + }, + "right": Object { + "borderType": "single", + "color": "000000", + "position": "right", + "size": 2, + "space": 0, + }, + "top": Object { + "borderType": "single", + "color": "000000", + "position": "top", + "size": 2, + "space": 0, + }, + }, + "justification": "left", + "width": Object { + "width": 0, + "widthType": "auto", + }, + }, + }, + Object { + "basedOn": "a7", + "name": "heading 4", + "next": null, + "paragraphProperty": Object { + "keepNext": true, + "lineSpacing": Object { + "before": 120, + "line": 240, + "lineRule": "exact", + }, + "numberingProperty": Object { + "id": 2, + "level": 3, + }, + "outlineLvl": 3, + "runProperty": Object {}, + "tabs": Array [], + }, + "runProperty": Object { + "bold": true, + "boldCs": true, + "fonts": Object { + "ascii": "MS Pゴシック", + "eastAsia": "MS Pゴシック", + }, + }, + "styleId": "41", + "styleType": "paragraph", + "tableCellProperty": Object { + "borders": null, + "gridSpan": null, + "shading": null, + "textDirection": null, + "verticalAlign": null, + "verticalMerge": null, + "width": null, + }, + "tableProperty": Object { + "borders": Object { + "bottom": Object { + "borderType": "single", + "color": "000000", + "position": "bottom", + "size": 2, + "space": 0, + }, + "insideH": Object { + "borderType": "single", + "color": "000000", + "position": "insideH", + "size": 2, + "space": 0, + }, + "insideV": Object { + "borderType": "single", + "color": "000000", + "position": "insideV", + "size": 2, + "space": 0, + }, + "left": Object { + "borderType": "single", + "color": "000000", + "position": "left", + "size": 2, + "space": 0, + }, + "right": Object { + "borderType": "single", + "color": "000000", + "position": "right", + "size": 2, + "space": 0, + }, + "top": Object { + "borderType": "single", + "color": "000000", + "position": "top", + "size": 2, + "space": 0, + }, + }, + "justification": "left", + "width": Object { + "width": 0, + "widthType": "auto", + }, + }, + }, + Object { + "basedOn": "a7", + "name": "heading 5", + "next": null, + "paragraphProperty": Object { + "keepNext": true, + "lineSpacing": Object { + "line": 280, + "lineRule": "atLeast", + }, + "outlineLvl": 4, + "runProperty": Object {}, + "tabs": Array [], + }, + "runProperty": Object { + "bold": true, + "boldCs": true, + "fonts": Object { + "ascii": "MS Pゴシック", + "eastAsia": "MS Pゴシック", + "hiAnsi": "MS Pゴシック", + }, + "sz": 20, + "szCs": 20, + }, + "styleId": "51", + "styleType": "paragraph", + "tableCellProperty": Object { + "borders": null, + "gridSpan": null, + "shading": null, + "textDirection": null, + "verticalAlign": null, + "verticalMerge": null, + "width": null, + }, + "tableProperty": Object { + "borders": Object { + "bottom": Object { + "borderType": "single", + "color": "000000", + "position": "bottom", + "size": 2, + "space": 0, + }, + "insideH": Object { + "borderType": "single", + "color": "000000", + "position": "insideH", + "size": 2, + "space": 0, + }, + "insideV": Object { + "borderType": "single", + "color": "000000", + "position": "insideV", + "size": 2, + "space": 0, + }, + "left": Object { + "borderType": "single", + "color": "000000", + "position": "left", + "size": 2, + "space": 0, + }, + "right": Object { + "borderType": "single", + "color": "000000", + "position": "right", + "size": 2, + "space": 0, + }, + "top": Object { + "borderType": "single", + "color": "000000", + "position": "top", + "size": 2, + "space": 0, + }, + }, + "justification": "left", + "width": Object { + "width": 0, + "widthType": "auto", + }, + }, + }, + Object { + "basedOn": "a7", + "name": "heading 6", + "next": null, + "paragraphProperty": Object { + "alignment": "right", + "keepNext": true, + "outlineLvl": 5, + "runProperty": Object {}, + "tabs": Array [], + }, + "runProperty": Object { + "bold": true, + "boldCs": true, + "fonts": Object { + "ascii": "Times New Roman", + "eastAsia": "MS Pゴシック", + }, + "sz": 22, + "szCs": 22, + }, + "styleId": "60", + "styleType": "paragraph", + "tableCellProperty": Object { + "borders": null, + "gridSpan": null, + "shading": null, + "textDirection": null, + "verticalAlign": null, + "verticalMerge": null, + "width": null, + }, + "tableProperty": Object { + "borders": Object { + "bottom": Object { + "borderType": "single", + "color": "000000", + "position": "bottom", + "size": 2, + "space": 0, + }, + "insideH": Object { + "borderType": "single", + "color": "000000", + "position": "insideH", + "size": 2, + "space": 0, + }, + "insideV": Object { + "borderType": "single", + "color": "000000", + "position": "insideV", + "size": 2, + "space": 0, + }, + "left": Object { + "borderType": "single", + "color": "000000", + "position": "left", + "size": 2, + "space": 0, + }, + "right": Object { + "borderType": "single", + "color": "000000", + "position": "right", + "size": 2, + "space": 0, + }, + "top": Object { + "borderType": "single", + "color": "000000", + "position": "top", + "size": 2, + "space": 0, + }, + }, + "justification": "left", + "width": Object { + "width": 0, + "widthType": "auto", + }, + }, + }, + Object { + "basedOn": "a7", + "name": "heading 7", + "next": null, + "paragraphProperty": Object { + "indent": Object { + "end": null, + "firstLineChars": null, + "hangingChars": null, + "specialIndent": Object { + "type": "hanging", + "val": 2342, + }, + "start": 2342, + "startChars": null, + }, + "keepNext": true, + "lineSpacing": Object { + "after": 480, + "before": 480, + "line": 240, + "lineRule": "atLeast", + }, + "outlineLvl": 6, + "runProperty": Object {}, + "tabs": Array [], + }, + "runProperty": Object { + "fonts": Object { + "ascii": "Arial Black", + "eastAsia": "Mincho", + "hiAnsi": "Arial Black", + }, + "sz": 36, + "szCs": 36, + }, + "styleId": "7", + "styleType": "paragraph", + "tableCellProperty": Object { + "borders": null, + "gridSpan": null, + "shading": null, + "textDirection": null, + "verticalAlign": null, + "verticalMerge": null, + "width": null, + }, + "tableProperty": Object { + "borders": Object { + "bottom": Object { + "borderType": "single", + "color": "000000", + "position": "bottom", + "size": 2, + "space": 0, + }, + "insideH": Object { + "borderType": "single", + "color": "000000", + "position": "insideH", + "size": 2, + "space": 0, + }, + "insideV": Object { + "borderType": "single", + "color": "000000", + "position": "insideV", + "size": 2, + "space": 0, + }, + "left": Object { + "borderType": "single", + "color": "000000", + "position": "left", + "size": 2, + "space": 0, + }, + "right": Object { + "borderType": "single", + "color": "000000", + "position": "right", + "size": 2, + "space": 0, + }, + "top": Object { + "borderType": "single", + "color": "000000", + "position": "top", + "size": 2, + "space": 0, + }, + }, + "justification": "left", + "width": Object { + "width": 0, + "widthType": "auto", + }, + }, + }, + Object { + "basedOn": "a7", + "name": "heading 8", + "next": null, + "paragraphProperty": Object { + "indent": Object { + "end": null, + "firstLineChars": null, + "hangingChars": null, + "specialIndent": null, + "start": 21, + "startChars": 10, + }, + "keepNext": true, + "lineSpacing": Object { + "line": 240, + "lineRule": "atLeast", + }, + "outlineLvl": 7, + "runProperty": Object {}, + "tabs": Array [], + }, + "runProperty": Object { + "bold": true, + "boldCs": true, + "characterSpacing": -3, + "sz": 22, + "szCs": 22, + }, + "styleId": "8", + "styleType": "paragraph", + "tableCellProperty": Object { + "borders": null, + "gridSpan": null, + "shading": null, + "textDirection": null, + "verticalAlign": null, + "verticalMerge": null, + "width": null, + }, + "tableProperty": Object { + "borders": Object { + "bottom": Object { + "borderType": "single", + "color": "000000", + "position": "bottom", + "size": 2, + "space": 0, + }, + "insideH": Object { + "borderType": "single", + "color": "000000", + "position": "insideH", + "size": 2, + "space": 0, + }, + "insideV": Object { + "borderType": "single", + "color": "000000", + "position": "insideV", + "size": 2, + "space": 0, + }, + "left": Object { + "borderType": "single", + "color": "000000", + "position": "left", + "size": 2, + "space": 0, + }, + "right": Object { + "borderType": "single", + "color": "000000", + "position": "right", + "size": 2, + "space": 0, + }, + "top": Object { + "borderType": "single", + "color": "000000", + "position": "top", + "size": 2, + "space": 0, + }, + }, + "justification": "left", + "width": Object { + "width": 0, + "widthType": "auto", + }, + }, + }, + Object { + "basedOn": "a7", + "name": "heading 9", + "next": null, + "paragraphProperty": Object { + "indent": Object { + "end": null, + "firstLineChars": null, + "hangingChars": null, + "specialIndent": null, + "start": 1200, + "startChars": 1200, + }, + "keepNext": true, + "outlineLvl": 8, + "runProperty": Object {}, + "tabs": Array [], + }, + "runProperty": Object {}, + "styleId": "9", + "styleType": "paragraph", + "tableCellProperty": Object { + "borders": null, + "gridSpan": null, + "shading": null, + "textDirection": null, + "verticalAlign": null, + "verticalMerge": null, + "width": null, + }, + "tableProperty": Object { + "borders": Object { + "bottom": Object { + "borderType": "single", + "color": "000000", + "position": "bottom", + "size": 2, + "space": 0, + }, + "insideH": Object { + "borderType": "single", + "color": "000000", + "position": "insideH", + "size": 2, + "space": 0, + }, + "insideV": Object { + "borderType": "single", + "color": "000000", + "position": "insideV", + "size": 2, + "space": 0, + }, + "left": Object { + "borderType": "single", + "color": "000000", + "position": "left", + "size": 2, + "space": 0, + }, + "right": Object { + "borderType": "single", + "color": "000000", + "position": "right", + "size": 2, + "space": 0, + }, + "top": Object { + "borderType": "single", + "color": "000000", + "position": "top", + "size": 2, + "space": 0, + }, + }, + "justification": "left", + "width": Object { + "width": 0, + "widthType": "auto", + }, + }, + }, + Object { + "basedOn": null, + "name": "Default Paragraph Font", + "next": null, + "paragraphProperty": Object { + "runProperty": Object {}, + "tabs": Array [], + }, + "runProperty": Object {}, + "styleId": "a9", + "styleType": "character", + "tableCellProperty": Object { + "borders": null, + "gridSpan": null, + "shading": null, + "textDirection": null, + "verticalAlign": null, + "verticalMerge": null, + "width": null, + }, + "tableProperty": Object { + "borders": Object { + "bottom": Object { + "borderType": "single", + "color": "000000", + "position": "bottom", + "size": 2, + "space": 0, + }, + "insideH": Object { + "borderType": "single", + "color": "000000", + "position": "insideH", + "size": 2, + "space": 0, + }, + "insideV": Object { + "borderType": "single", + "color": "000000", + "position": "insideV", + "size": 2, + "space": 0, + }, + "left": Object { + "borderType": "single", + "color": "000000", + "position": "left", + "size": 2, + "space": 0, + }, + "right": Object { + "borderType": "single", + "color": "000000", + "position": "right", + "size": 2, + "space": 0, + }, + "top": Object { + "borderType": "single", + "color": "000000", + "position": "top", + "size": 2, + "space": 0, + }, + }, + "justification": "left", + "width": Object { + "width": 0, + "widthType": "auto", + }, + }, + }, + Object { + "basedOn": null, + "name": "Normal Table", + "next": null, + "paragraphProperty": Object { + "runProperty": Object {}, + "tabs": Array [], + }, + "runProperty": Object {}, + "styleId": "aa", + "styleType": "table", + "tableCellProperty": Object { + "borders": null, + "gridSpan": null, + "shading": null, + "textDirection": null, + "verticalAlign": null, + "verticalMerge": null, + "width": null, + }, + "tableProperty": Object { + "borders": Object { + "bottom": null, + "insideH": null, + "insideV": null, + "left": null, + "right": null, + "top": null, + }, + "justification": "left", + "margins": Object { + "bottom": Object { + "val": 0, + "widthType": "dxa", + }, + "left": Object { + "val": 108, + "widthType": "dxa", + }, + "right": Object { + "val": 108, + "widthType": "dxa", + }, + "top": Object { + "val": 0, + "widthType": "dxa", + }, + }, + "width": Object { + "width": 0, + "widthType": "auto", + }, + }, + }, + Object { + "basedOn": null, + "name": "No List", + "next": null, + "paragraphProperty": Object { + "runProperty": Object {}, + "tabs": Array [], + }, + "runProperty": Object {}, + "styleId": "ab", + "styleType": "numbering", + "tableCellProperty": Object { + "borders": null, + "gridSpan": null, + "shading": null, + "textDirection": null, + "verticalAlign": null, + "verticalMerge": null, + "width": null, + }, + "tableProperty": Object { + "borders": Object { + "bottom": Object { + "borderType": "single", + "color": "000000", + "position": "bottom", + "size": 2, + "space": 0, + }, + "insideH": Object { + "borderType": "single", + "color": "000000", + "position": "insideH", + "size": 2, + "space": 0, + }, + "insideV": Object { + "borderType": "single", + "color": "000000", + "position": "insideV", + "size": 2, + "space": 0, + }, + "left": Object { + "borderType": "single", + "color": "000000", + "position": "left", + "size": 2, + "space": 0, + }, + "right": Object { + "borderType": "single", + "color": "000000", + "position": "right", + "size": 2, + "space": 0, + }, + "top": Object { + "borderType": "single", + "color": "000000", + "position": "top", + "size": 2, + "space": 0, + }, + }, + "justification": "left", + "width": Object { + "width": 0, + "widthType": "auto", + }, + }, + }, + Object { + "basedOn": "a7", + "name": "Normal Indent", + "next": null, + "paragraphProperty": Object { + "indent": Object { + "end": null, + "firstLineChars": null, + "hangingChars": null, + "specialIndent": null, + "start": 851, + "startChars": null, + }, + "runProperty": Object {}, + "tabs": Array [], + }, + "runProperty": Object {}, + "styleId": "a8", + "styleType": "paragraph", + "tableCellProperty": Object { + "borders": null, + "gridSpan": null, + "shading": null, + "textDirection": null, + "verticalAlign": null, + "verticalMerge": null, + "width": null, + }, + "tableProperty": Object { + "borders": Object { + "bottom": Object { + "borderType": "single", + "color": "000000", + "position": "bottom", + "size": 2, + "space": 0, + }, + "insideH": Object { + "borderType": "single", + "color": "000000", + "position": "insideH", + "size": 2, + "space": 0, + }, + "insideV": Object { + "borderType": "single", + "color": "000000", + "position": "insideV", + "size": 2, + "space": 0, + }, + "left": Object { + "borderType": "single", + "color": "000000", + "position": "left", + "size": 2, + "space": 0, + }, + "right": Object { + "borderType": "single", + "color": "000000", + "position": "right", + "size": 2, + "space": 0, + }, + "top": Object { + "borderType": "single", + "color": "000000", + "position": "top", + "size": 2, + "space": 0, + }, + }, + "justification": "left", + "width": Object { + "width": 0, + "widthType": "auto", + }, + }, + }, + Object { + "basedOn": "a7", + "name": "header", + "next": null, + "paragraphProperty": Object { + "runProperty": Object {}, + "tabs": Array [], + }, + "runProperty": Object {}, + "styleId": "ac", + "styleType": "paragraph", + "tableCellProperty": Object { + "borders": null, + "gridSpan": null, + "shading": null, + "textDirection": null, + "verticalAlign": null, + "verticalMerge": null, + "width": null, + }, + "tableProperty": Object { + "borders": Object { + "bottom": Object { + "borderType": "single", + "color": "000000", + "position": "bottom", + "size": 2, + "space": 0, + }, + "insideH": Object { + "borderType": "single", + "color": "000000", + "position": "insideH", + "size": 2, + "space": 0, + }, + "insideV": Object { + "borderType": "single", + "color": "000000", + "position": "insideV", + "size": 2, + "space": 0, + }, + "left": Object { + "borderType": "single", + "color": "000000", + "position": "left", + "size": 2, + "space": 0, + }, + "right": Object { + "borderType": "single", + "color": "000000", + "position": "right", + "size": 2, + "space": 0, + }, + "top": Object { + "borderType": "single", + "color": "000000", + "position": "top", + "size": 2, + "space": 0, + }, + }, + "justification": "left", + "width": Object { + "width": 0, + "widthType": "auto", + }, + }, + }, + Object { + "basedOn": "a7", + "name": "footer", + "next": null, + "paragraphProperty": Object { + "runProperty": Object {}, + "tabs": Array [], + }, + "runProperty": Object {}, + "styleId": "ad", + "styleType": "paragraph", + "tableCellProperty": Object { + "borders": null, + "gridSpan": null, + "shading": null, + "textDirection": null, + "verticalAlign": null, + "verticalMerge": null, + "width": null, + }, + "tableProperty": Object { + "borders": Object { + "bottom": Object { + "borderType": "single", + "color": "000000", + "position": "bottom", + "size": 2, + "space": 0, + }, + "insideH": Object { + "borderType": "single", + "color": "000000", + "position": "insideH", + "size": 2, + "space": 0, + }, + "insideV": Object { + "borderType": "single", + "color": "000000", + "position": "insideV", + "size": 2, + "space": 0, + }, + "left": Object { + "borderType": "single", + "color": "000000", + "position": "left", + "size": 2, + "space": 0, + }, + "right": Object { + "borderType": "single", + "color": "000000", + "position": "right", + "size": 2, + "space": 0, + }, + "top": Object { + "borderType": "single", + "color": "000000", + "position": "top", + "size": 2, + "space": 0, + }, + }, + "justification": "left", + "width": Object { + "width": 0, + "widthType": "auto", + }, + }, + }, + Object { + "basedOn": "a9", + "name": "page number", + "next": null, + "paragraphProperty": Object { + "runProperty": Object {}, + "tabs": Array [], + }, + "runProperty": Object {}, + "styleId": "ae", + "styleType": "character", + "tableCellProperty": Object { + "borders": null, + "gridSpan": null, + "shading": null, + "textDirection": null, + "verticalAlign": null, + "verticalMerge": null, + "width": null, + }, + "tableProperty": Object { + "borders": Object { + "bottom": Object { + "borderType": "single", + "color": "000000", + "position": "bottom", + "size": 2, + "space": 0, + }, + "insideH": Object { + "borderType": "single", + "color": "000000", + "position": "insideH", + "size": 2, + "space": 0, + }, + "insideV": Object { + "borderType": "single", + "color": "000000", + "position": "insideV", + "size": 2, + "space": 0, + }, + "left": Object { + "borderType": "single", + "color": "000000", + "position": "left", + "size": 2, + "space": 0, + }, + "right": Object { + "borderType": "single", + "color": "000000", + "position": "right", + "size": 2, + "space": 0, + }, + "top": Object { + "borderType": "single", + "color": "000000", + "position": "top", + "size": 2, + "space": 0, + }, + }, + "justification": "left", + "width": Object { + "width": 0, + "widthType": "auto", + }, + }, + }, + Object { + "basedOn": "a7", + "name": "Body Text Indent", + "next": null, + "paragraphProperty": Object { + "indent": Object { + "end": null, + "firstLineChars": 105, + "hangingChars": null, + "specialIndent": Object { + "type": "firstLine", + "val": 210, + }, + "start": 1680, + "startChars": 800, + }, + "lineSpacing": Object { + "before": 120, + "line": 280, + "lineRule": "exact", + }, + "runProperty": Object {}, + "tabs": Array [], + }, + "runProperty": Object { + "fonts": Object { + "ascii": "Arial", + "eastAsia": "MS Pゴシック", + }, + "sz": 20, + "szCs": 20, + }, + "styleId": "af", + "styleType": "paragraph", + "tableCellProperty": Object { + "borders": null, + "gridSpan": null, + "shading": null, + "textDirection": null, + "verticalAlign": null, + "verticalMerge": null, + "width": null, + }, + "tableProperty": Object { + "borders": Object { + "bottom": Object { + "borderType": "single", + "color": "000000", + "position": "bottom", + "size": 2, + "space": 0, + }, + "insideH": Object { + "borderType": "single", + "color": "000000", + "position": "insideH", + "size": 2, + "space": 0, + }, + "insideV": Object { + "borderType": "single", + "color": "000000", + "position": "insideV", + "size": 2, + "space": 0, + }, + "left": Object { + "borderType": "single", + "color": "000000", + "position": "left", + "size": 2, + "space": 0, + }, + "right": Object { + "borderType": "single", + "color": "000000", + "position": "right", + "size": 2, + "space": 0, + }, + "top": Object { + "borderType": "single", + "color": "000000", + "position": "top", + "size": 2, + "space": 0, + }, + }, + "justification": "left", + "width": Object { + "width": 0, + "widthType": "auto", + }, + }, + }, + Object { + "basedOn": "a7", + "name": "Body Text Indent 2", + "next": null, + "paragraphProperty": Object { + "indent": Object { + "end": null, + "firstLineChars": null, + "hangingChars": null, + "specialIndent": null, + "start": 1588, + "startChars": null, + }, + "lineSpacing": Object { + "before": 120, + "line": 280, + "lineRule": "exact", + }, + "runProperty": Object {}, + "tabs": Array [], + }, + "runProperty": Object {}, + "styleId": "23", + "styleType": "paragraph", + "tableCellProperty": Object { + "borders": null, + "gridSpan": null, + "shading": null, + "textDirection": null, + "verticalAlign": null, + "verticalMerge": null, + "width": null, + }, + "tableProperty": Object { + "borders": Object { + "bottom": Object { + "borderType": "single", + "color": "000000", + "position": "bottom", + "size": 2, + "space": 0, + }, + "insideH": Object { + "borderType": "single", + "color": "000000", + "position": "insideH", + "size": 2, + "space": 0, + }, + "insideV": Object { + "borderType": "single", + "color": "000000", + "position": "insideV", + "size": 2, + "space": 0, + }, + "left": Object { + "borderType": "single", + "color": "000000", + "position": "left", + "size": 2, + "space": 0, + }, + "right": Object { + "borderType": "single", + "color": "000000", + "position": "right", + "size": 2, + "space": 0, + }, + "top": Object { + "borderType": "single", + "color": "000000", + "position": "top", + "size": 2, + "space": 0, + }, + }, + "justification": "left", + "width": Object { + "width": 0, + "widthType": "auto", + }, + }, + }, + Object { + "basedOn": null, + "name": "annotation reference", + "next": null, + "paragraphProperty": Object { + "runProperty": Object {}, + "tabs": Array [], + }, + "runProperty": Object { + "sz": 18, + "szCs": 18, + }, + "styleId": "af1", + "styleType": "character", + "tableCellProperty": Object { + "borders": null, + "gridSpan": null, + "shading": null, + "textDirection": null, + "verticalAlign": null, + "verticalMerge": null, + "width": null, + }, + "tableProperty": Object { + "borders": Object { + "bottom": Object { + "borderType": "single", + "color": "000000", + "position": "bottom", + "size": 2, + "space": 0, + }, + "insideH": Object { + "borderType": "single", + "color": "000000", + "position": "insideH", + "size": 2, + "space": 0, + }, + "insideV": Object { + "borderType": "single", + "color": "000000", + "position": "insideV", + "size": 2, + "space": 0, + }, + "left": Object { + "borderType": "single", + "color": "000000", + "position": "left", + "size": 2, + "space": 0, + }, + "right": Object { + "borderType": "single", + "color": "000000", + "position": "right", + "size": 2, + "space": 0, + }, + "top": Object { + "borderType": "single", + "color": "000000", + "position": "top", + "size": 2, + "space": 0, + }, + }, + "justification": "left", + "width": Object { + "width": 0, + "widthType": "auto", + }, + }, + }, + Object { + "basedOn": "a7", + "name": "スタンプ", + "next": null, + "paragraphProperty": Object { + "lineSpacing": Object { + "line": 240, + "lineRule": "atLeast", + }, + "runProperty": Object {}, + "tabs": Array [], + }, + "runProperty": Object { + "fonts": Object { + "ascii": "Arial", + "eastAsia": "MS ゴシック", + "hiAnsi": "Times New Roman", + }, + }, + "styleId": "af2", + "styleType": "paragraph", + "tableCellProperty": Object { + "borders": null, + "gridSpan": null, + "shading": null, + "textDirection": null, + "verticalAlign": null, + "verticalMerge": null, + "width": null, + }, + "tableProperty": Object { + "borders": Object { + "bottom": Object { + "borderType": "single", + "color": "000000", + "position": "bottom", + "size": 2, + "space": 0, + }, + "insideH": Object { + "borderType": "single", + "color": "000000", + "position": "insideH", + "size": 2, + "space": 0, + }, + "insideV": Object { + "borderType": "single", + "color": "000000", + "position": "insideV", + "size": 2, + "space": 0, + }, + "left": Object { + "borderType": "single", + "color": "000000", + "position": "left", + "size": 2, + "space": 0, + }, + "right": Object { + "borderType": "single", + "color": "000000", + "position": "right", + "size": 2, + "space": 0, + }, + "top": Object { + "borderType": "single", + "color": "000000", + "position": "top", + "size": 2, + "space": 0, + }, + }, + "justification": "left", + "width": Object { + "width": 0, + "widthType": "auto", + }, + }, + }, + Object { + "basedOn": "a7", + "name": "annotation text", + "next": null, + "paragraphProperty": Object { + "alignment": "left", + "runProperty": Object {}, + "tabs": Array [], + }, + "runProperty": Object { + "fonts": Object { + "ascii": "Arial", + "eastAsia": "MS ゴシック", + "hiAnsi": "Times New Roman", + }, + }, + "styleId": "af3", + "styleType": "paragraph", + "tableCellProperty": Object { + "borders": null, + "gridSpan": null, + "shading": null, + "textDirection": null, + "verticalAlign": null, + "verticalMerge": null, + "width": null, + }, + "tableProperty": Object { + "borders": Object { + "bottom": Object { + "borderType": "single", + "color": "000000", + "position": "bottom", + "size": 2, + "space": 0, + }, + "insideH": Object { + "borderType": "single", + "color": "000000", + "position": "insideH", + "size": 2, + "space": 0, + }, + "insideV": Object { + "borderType": "single", + "color": "000000", + "position": "insideV", + "size": 2, + "space": 0, + }, + "left": Object { + "borderType": "single", + "color": "000000", + "position": "left", + "size": 2, + "space": 0, + }, + "right": Object { + "borderType": "single", + "color": "000000", + "position": "right", + "size": 2, + "space": 0, + }, + "top": Object { + "borderType": "single", + "color": "000000", + "position": "top", + "size": 2, + "space": 0, + }, + }, + "justification": "left", + "width": Object { + "width": 0, + "widthType": "auto", + }, + }, + }, + Object { + "basedOn": "a7", + "name": "(a) sentence", + "next": null, + "paragraphProperty": Object { + "lineSpacing": Object { + "before": 120, + "line": 280, + "lineRule": "exact", + }, + "numberingProperty": Object { + "id": 4, + "level": null, + }, + "runProperty": Object {}, + "tabs": Array [], + }, + "runProperty": Object { + "fonts": Object { + "ascii": "MS Pゴシック", + "eastAsia": "MS Pゴシック", + "hiAnsi": "MS Pゴシック", + }, + "sz": 20, + "szCs": 20, + }, + "styleId": "asentence", + "styleType": "paragraph", + "tableCellProperty": Object { + "borders": null, + "gridSpan": null, + "shading": null, + "textDirection": null, + "verticalAlign": null, + "verticalMerge": null, + "width": null, + }, + "tableProperty": Object { + "borders": Object { + "bottom": Object { + "borderType": "single", + "color": "000000", + "position": "bottom", + "size": 2, + "space": 0, + }, + "insideH": Object { + "borderType": "single", + "color": "000000", + "position": "insideH", + "size": 2, + "space": 0, + }, + "insideV": Object { + "borderType": "single", + "color": "000000", + "position": "insideV", + "size": 2, + "space": 0, + }, + "left": Object { + "borderType": "single", + "color": "000000", + "position": "left", + "size": 2, + "space": 0, + }, + "right": Object { + "borderType": "single", + "color": "000000", + "position": "right", + "size": 2, + "space": 0, + }, + "top": Object { + "borderType": "single", + "color": "000000", + "position": "top", + "size": 2, + "space": 0, + }, + }, + "justification": "left", + "width": Object { + "width": 0, + "widthType": "auto", + }, + }, + }, + Object { + "basedOn": "a7", + "name": "(a)本文", + "next": null, + "paragraphProperty": Object { + "indent": Object { + "end": null, + "firstLineChars": null, + "hangingChars": null, + "specialIndent": Object { + "type": "hanging", + "val": 454, + }, + "start": 2042, + "startChars": null, + }, + "lineSpacing": Object { + "before": 120, + "line": 280, + "lineRule": "exact", + }, + "numberingProperty": Object { + "id": 31, + "level": null, + }, + "runProperty": Object {}, + "tabs": Array [], + }, + "runProperty": Object {}, + "styleId": "a4", + "styleType": "paragraph", + "tableCellProperty": Object { + "borders": null, + "gridSpan": null, + "shading": null, + "textDirection": null, + "verticalAlign": null, + "verticalMerge": null, + "width": null, + }, + "tableProperty": Object { + "borders": Object { + "bottom": Object { + "borderType": "single", + "color": "000000", + "position": "bottom", + "size": 2, + "space": 0, + }, + "insideH": Object { + "borderType": "single", + "color": "000000", + "position": "insideH", + "size": 2, + "space": 0, + }, + "insideV": Object { + "borderType": "single", + "color": "000000", + "position": "insideV", + "size": 2, + "space": 0, + }, + "left": Object { + "borderType": "single", + "color": "000000", + "position": "left", + "size": 2, + "space": 0, + }, + "right": Object { + "borderType": "single", + "color": "000000", + "position": "right", + "size": 2, + "space": 0, + }, + "top": Object { + "borderType": "single", + "color": "000000", + "position": "top", + "size": 2, + "space": 0, + }, + }, + "justification": "left", + "width": Object { + "width": 0, + "widthType": "auto", + }, + }, + }, + Object { + "basedOn": "a7", + "name": "名詞句", + "next": null, + "paragraphProperty": Object { + "indent": Object { + "end": null, + "firstLineChars": null, + "hangingChars": null, + "specialIndent": Object { + "type": "hanging", + "val": 357, + }, + "start": 1951, + "startChars": null, + }, + "lineSpacing": Object { + "before": 60, + "line": 280, + "lineRule": "exact", + }, + "numberingProperty": Object { + "id": 21, + "level": null, + }, + "runProperty": Object {}, + "tabs": Array [], + }, + "runProperty": Object { + "fonts": Object { + "ascii": "MS Pゴシック", + "eastAsia": "MS Pゴシック", + "hiAnsi": "MS Pゴシック", + }, + "sz": 20, + "szCs": 20, + }, + "styleId": "a3", + "styleType": "paragraph", + "tableCellProperty": Object { + "borders": null, + "gridSpan": null, + "shading": null, + "textDirection": null, + "verticalAlign": null, + "verticalMerge": null, + "width": null, + }, + "tableProperty": Object { + "borders": Object { + "bottom": Object { + "borderType": "single", + "color": "000000", + "position": "bottom", + "size": 2, + "space": 0, + }, + "insideH": Object { + "borderType": "single", + "color": "000000", + "position": "insideH", + "size": 2, + "space": 0, + }, + "insideV": Object { + "borderType": "single", + "color": "000000", + "position": "insideV", + "size": 2, + "space": 0, + }, + "left": Object { + "borderType": "single", + "color": "000000", + "position": "left", + "size": 2, + "space": 0, + }, + "right": Object { + "borderType": "single", + "color": "000000", + "position": "right", + "size": 2, + "space": 0, + }, + "top": Object { + "borderType": "single", + "color": "000000", + "position": "top", + "size": 2, + "space": 0, + }, + }, + "justification": "left", + "width": Object { + "width": 0, + "widthType": "auto", + }, + }, + }, + Object { + "basedOn": "a7", + "name": "並列1", + "next": null, + "paragraphProperty": Object { + "indent": Object { + "end": null, + "firstLineChars": null, + "hangingChars": null, + "specialIndent": null, + "start": 2160, + "startChars": null, + }, + "lineSpacing": Object { + "before": 120, + "line": 280, + "lineRule": "exact", + }, + "numberingProperty": Object { + "id": 19, + "level": null, + }, + "runProperty": Object {}, + "tabs": Array [], + }, + "runProperty": Object { + "fonts": Object { + "ascii": "MS Pゴシック", + "eastAsia": "MS Pゴシック", + }, + "sz": 20, + "szCs": 20, + }, + "styleId": "a2", + "styleType": "paragraph", + "tableCellProperty": Object { + "borders": null, + "gridSpan": null, + "shading": null, + "textDirection": null, + "verticalAlign": null, + "verticalMerge": null, + "width": null, + }, + "tableProperty": Object { + "borders": Object { + "bottom": Object { + "borderType": "single", + "color": "000000", + "position": "bottom", + "size": 2, + "space": 0, + }, + "insideH": Object { + "borderType": "single", + "color": "000000", + "position": "insideH", + "size": 2, + "space": 0, + }, + "insideV": Object { + "borderType": "single", + "color": "000000", + "position": "insideV", + "size": 2, + "space": 0, + }, + "left": Object { + "borderType": "single", + "color": "000000", + "position": "left", + "size": 2, + "space": 0, + }, + "right": Object { + "borderType": "single", + "color": "000000", + "position": "right", + "size": 2, + "space": 0, + }, + "top": Object { + "borderType": "single", + "color": "000000", + "position": "top", + "size": 2, + "space": 0, + }, + }, + "justification": "left", + "width": Object { + "width": 0, + "widthType": "auto", + }, + }, + }, + Object { + "basedOn": "a7", + "name": "注記", + "next": null, + "paragraphProperty": Object { + "indent": Object { + "end": null, + "firstLineChars": null, + "hangingChars": null, + "specialIndent": null, + "start": 1980, + "startChars": null, + }, + "lineSpacing": Object { + "before": 120, + "line": 280, + "lineRule": "exact", + }, + "numberingProperty": Object { + "id": 3, + "level": null, + }, + "runProperty": Object {}, + "tabs": Array [], + }, + "runProperty": Object { + "fonts": Object { + "ascii": "MS Pゴシック", + "eastAsia": "MS Pゴシック", + }, + "italic": true, + "italicCs": true, + "sz": 20, + "szCs": 20, + }, + "styleId": "a1", + "styleType": "paragraph", + "tableCellProperty": Object { + "borders": null, + "gridSpan": null, + "shading": null, + "textDirection": null, + "verticalAlign": null, + "verticalMerge": null, + "width": null, + }, + "tableProperty": Object { + "borders": Object { + "bottom": Object { + "borderType": "single", + "color": "000000", + "position": "bottom", + "size": 2, + "space": 0, + }, + "insideH": Object { + "borderType": "single", + "color": "000000", + "position": "insideH", + "size": 2, + "space": 0, + }, + "insideV": Object { + "borderType": "single", + "color": "000000", + "position": "insideV", + "size": 2, + "space": 0, + }, + "left": Object { + "borderType": "single", + "color": "000000", + "position": "left", + "size": 2, + "space": 0, + }, + "right": Object { + "borderType": "single", + "color": "000000", + "position": "right", + "size": 2, + "space": 0, + }, + "top": Object { + "borderType": "single", + "color": "000000", + "position": "top", + "size": 2, + "space": 0, + }, + }, + "justification": "left", + "width": Object { + "width": 0, + "widthType": "auto", + }, + }, + }, + Object { + "basedOn": "a7", + "name": "toc 1", + "next": null, + "paragraphProperty": Object { + "lineSpacing": Object { + "after": 120, + "afterLines": 50, + "before": 120, + "beforeLines": 50, + "line": 280, + "lineRule": "atLeast", + }, + "runProperty": Object {}, + "tabs": Array [], + }, + "runProperty": Object { + "bold": true, + "boldCs": true, + "fonts": Object { + "ascii": "Arial Black", + "eastAsia": "MS Pゴシック", + "hiAnsi": "Arial Black", + }, + "sz": 24, + "szCs": 24, + }, + "styleId": "11", + "styleType": "paragraph", + "tableCellProperty": Object { + "borders": null, + "gridSpan": null, + "shading": null, + "textDirection": null, + "verticalAlign": null, + "verticalMerge": null, + "width": null, + }, + "tableProperty": Object { + "borders": Object { + "bottom": Object { + "borderType": "single", + "color": "000000", + "position": "bottom", + "size": 2, + "space": 0, + }, + "insideH": Object { + "borderType": "single", + "color": "000000", + "position": "insideH", + "size": 2, + "space": 0, + }, + "insideV": Object { + "borderType": "single", + "color": "000000", + "position": "insideV", + "size": 2, + "space": 0, + }, + "left": Object { + "borderType": "single", + "color": "000000", + "position": "left", + "size": 2, + "space": 0, + }, + "right": Object { + "borderType": "single", + "color": "000000", + "position": "right", + "size": 2, + "space": 0, + }, + "top": Object { + "borderType": "single", + "color": "000000", + "position": "top", + "size": 2, + "space": 0, + }, + }, + "justification": "left", + "width": Object { + "width": 0, + "widthType": "auto", + }, + }, + }, + Object { + "basedOn": "af", + "name": "(a)タイトル", + "next": null, + "paragraphProperty": Object { + "indent": Object { + "end": null, + "firstLineChars": 0, + "hangingChars": null, + "specialIndent": Object { + "type": "firstLine", + "val": 0, + }, + "start": 0, + "startChars": 0, + }, + "lineSpacing": Object { + "before": 240, + }, + "numberingProperty": Object { + "id": 442, + "level": 1, + }, + "runProperty": Object {}, + "tabs": Array [], + }, + "runProperty": Object {}, + "styleId": "a6", + "styleType": "paragraph", + "tableCellProperty": Object { + "borders": null, + "gridSpan": null, + "shading": null, + "textDirection": null, + "verticalAlign": null, + "verticalMerge": null, + "width": null, + }, + "tableProperty": Object { + "borders": Object { + "bottom": Object { + "borderType": "single", + "color": "000000", + "position": "bottom", + "size": 2, + "space": 0, + }, + "insideH": Object { + "borderType": "single", + "color": "000000", + "position": "insideH", + "size": 2, + "space": 0, + }, + "insideV": Object { + "borderType": "single", + "color": "000000", + "position": "insideV", + "size": 2, + "space": 0, + }, + "left": Object { + "borderType": "single", + "color": "000000", + "position": "left", + "size": 2, + "space": 0, + }, + "right": Object { + "borderType": "single", + "color": "000000", + "position": "right", + "size": 2, + "space": 0, + }, + "top": Object { + "borderType": "single", + "color": "000000", + "position": "top", + "size": 2, + "space": 0, + }, + }, + "justification": "left", + "width": Object { + "width": 0, + "widthType": "auto", + }, + }, + }, + Object { + "basedOn": "a7", + "name": "参照2", + "next": null, + "paragraphProperty": Object { + "indent": Object { + "end": null, + "firstLineChars": null, + "hangingChars": null, + "specialIndent": null, + "start": 1980, + "startChars": null, + }, + "lineSpacing": Object { + "before": 120, + "line": 280, + "lineRule": "exact", + }, + "numberingProperty": Object { + "id": 15, + "level": null, + }, + "runProperty": Object {}, + "tabs": Array [], + }, + "runProperty": Object { + "fonts": Object { + "ascii": "MS Pゴシック", + "eastAsia": "MS Pゴシック", + }, + "italic": true, + "italicCs": true, + "sz": 20, + "szCs": 20, + }, + "styleId": "21", + "styleType": "paragraph", + "tableCellProperty": Object { + "borders": null, + "gridSpan": null, + "shading": null, + "textDirection": null, + "verticalAlign": null, + "verticalMerge": null, + "width": null, + }, + "tableProperty": Object { + "borders": Object { + "bottom": Object { + "borderType": "single", + "color": "000000", + "position": "bottom", + "size": 2, + "space": 0, + }, + "insideH": Object { + "borderType": "single", + "color": "000000", + "position": "insideH", + "size": 2, + "space": 0, + }, + "insideV": Object { + "borderType": "single", + "color": "000000", + "position": "insideV", + "size": 2, + "space": 0, + }, + "left": Object { + "borderType": "single", + "color": "000000", + "position": "left", + "size": 2, + "space": 0, + }, + "right": Object { + "borderType": "single", + "color": "000000", + "position": "right", + "size": 2, + "space": 0, + }, + "top": Object { + "borderType": "single", + "color": "000000", + "position": "top", + "size": 2, + "space": 0, + }, + }, + "justification": "left", + "width": Object { + "width": 0, + "widthType": "auto", + }, + }, + }, + Object { + "basedOn": "a7", + "name": "toc 2", + "next": null, + "paragraphProperty": Object { + "indent": Object { + "end": null, + "firstLineChars": null, + "hangingChars": null, + "specialIndent": null, + "start": 630, + "startChars": 300, + }, + "lineSpacing": Object { + "line": 280, + "lineRule": "atLeast", + }, + "runProperty": Object {}, + "tabs": Array [], + }, + "runProperty": Object { + "fonts": Object { + "ascii": "Arial", + "eastAsia": "MS Pゴシック", + }, + "sz": 20, + "szCs": 20, + }, + "styleId": "25", + "styleType": "paragraph", + "tableCellProperty": Object { + "borders": null, + "gridSpan": null, + "shading": null, + "textDirection": null, + "verticalAlign": null, + "verticalMerge": null, + "width": null, + }, + "tableProperty": Object { + "borders": Object { + "bottom": Object { + "borderType": "single", + "color": "000000", + "position": "bottom", + "size": 2, + "space": 0, + }, + "insideH": Object { + "borderType": "single", + "color": "000000", + "position": "insideH", + "size": 2, + "space": 0, + }, + "insideV": Object { + "borderType": "single", + "color": "000000", + "position": "insideV", + "size": 2, + "space": 0, + }, + "left": Object { + "borderType": "single", + "color": "000000", + "position": "left", + "size": 2, + "space": 0, + }, + "right": Object { + "borderType": "single", + "color": "000000", + "position": "right", + "size": 2, + "space": 0, + }, + "top": Object { + "borderType": "single", + "color": "000000", + "position": "top", + "size": 2, + "space": 0, + }, + }, + "justification": "left", + "width": Object { + "width": 0, + "widthType": "auto", + }, + }, + }, + Object { + "basedOn": "a7", + "name": "toc 3", + "next": null, + "paragraphProperty": Object { + "indent": Object { + "end": null, + "firstLineChars": null, + "hangingChars": 525, + "specialIndent": Object { + "type": "hanging", + "val": 1050, + }, + "start": 2520, + "startChars": 700, + }, + "lineSpacing": Object { + "line": 280, + "lineRule": "atLeast", + }, + "runProperty": Object {}, + "tabs": Array [], + }, + "runProperty": Object { + "fonts": Object { + "ascii": "Arial", + "eastAsia": "MS Pゴシック", + }, + "sz": 20, + "szCs": 20, + }, + "styleId": "32", + "styleType": "paragraph", + "tableCellProperty": Object { + "borders": null, + "gridSpan": null, + "shading": null, + "textDirection": null, + "verticalAlign": null, + "verticalMerge": null, + "width": null, + }, + "tableProperty": Object { + "borders": Object { + "bottom": Object { + "borderType": "single", + "color": "000000", + "position": "bottom", + "size": 2, + "space": 0, + }, + "insideH": Object { + "borderType": "single", + "color": "000000", + "position": "insideH", + "size": 2, + "space": 0, + }, + "insideV": Object { + "borderType": "single", + "color": "000000", + "position": "insideV", + "size": 2, + "space": 0, + }, + "left": Object { + "borderType": "single", + "color": "000000", + "position": "left", + "size": 2, + "space": 0, + }, + "right": Object { + "borderType": "single", + "color": "000000", + "position": "right", + "size": 2, + "space": 0, + }, + "top": Object { + "borderType": "single", + "color": "000000", + "position": "top", + "size": 2, + "space": 0, + }, + }, + "justification": "left", + "width": Object { + "width": 0, + "widthType": "auto", + }, + }, + }, + Object { + "basedOn": "a7", + "name": "toc 4", + "next": null, + "paragraphProperty": Object { + "indent": Object { + "end": null, + "firstLineChars": null, + "hangingChars": 540, + "specialIndent": Object { + "type": "hanging", + "val": 1080, + }, + "start": 3419, + "startChars": 1114, + }, + "lineSpacing": Object { + "line": 240, + "lineRule": "atLeast", + }, + "runProperty": Object {}, + "tabs": Array [], + }, + "runProperty": Object { + "fonts": Object { + "ascii": "Arial", + "eastAsia": "MS Pゴシック", + }, + "italic": true, + "italicCs": true, + "sz": 20, + "szCs": 20, + }, + "styleId": "42", + "styleType": "paragraph", + "tableCellProperty": Object { + "borders": null, + "gridSpan": null, + "shading": null, + "textDirection": null, + "verticalAlign": null, + "verticalMerge": null, + "width": null, + }, + "tableProperty": Object { + "borders": Object { + "bottom": Object { + "borderType": "single", + "color": "000000", + "position": "bottom", + "size": 2, + "space": 0, + }, + "insideH": Object { + "borderType": "single", + "color": "000000", + "position": "insideH", + "size": 2, + "space": 0, + }, + "insideV": Object { + "borderType": "single", + "color": "000000", + "position": "insideV", + "size": 2, + "space": 0, + }, + "left": Object { + "borderType": "single", + "color": "000000", + "position": "left", + "size": 2, + "space": 0, + }, + "right": Object { + "borderType": "single", + "color": "000000", + "position": "right", + "size": 2, + "space": 0, + }, + "top": Object { + "borderType": "single", + "color": "000000", + "position": "top", + "size": 2, + "space": 0, + }, + }, + "justification": "left", + "width": Object { + "width": 0, + "widthType": "auto", + }, + }, + }, + Object { + "basedOn": "a7", + "name": "toc 5", + "next": null, + "paragraphProperty": Object { + "indent": Object { + "end": null, + "firstLineChars": null, + "hangingChars": null, + "specialIndent": null, + "start": 840, + "startChars": 400, + }, + "runProperty": Object {}, + "tabs": Array [], + }, + "runProperty": Object {}, + "styleId": "52", + "styleType": "paragraph", + "tableCellProperty": Object { + "borders": null, + "gridSpan": null, + "shading": null, + "textDirection": null, + "verticalAlign": null, + "verticalMerge": null, + "width": null, + }, + "tableProperty": Object { + "borders": Object { + "bottom": Object { + "borderType": "single", + "color": "000000", + "position": "bottom", + "size": 2, + "space": 0, + }, + "insideH": Object { + "borderType": "single", + "color": "000000", + "position": "insideH", + "size": 2, + "space": 0, + }, + "insideV": Object { + "borderType": "single", + "color": "000000", + "position": "insideV", + "size": 2, + "space": 0, + }, + "left": Object { + "borderType": "single", + "color": "000000", + "position": "left", + "size": 2, + "space": 0, + }, + "right": Object { + "borderType": "single", + "color": "000000", + "position": "right", + "size": 2, + "space": 0, + }, + "top": Object { + "borderType": "single", + "color": "000000", + "position": "top", + "size": 2, + "space": 0, + }, + }, + "justification": "left", + "width": Object { + "width": 0, + "widthType": "auto", + }, + }, + }, + Object { + "basedOn": "a7", + "name": "toc 6", + "next": null, + "paragraphProperty": Object { + "indent": Object { + "end": null, + "firstLineChars": null, + "hangingChars": null, + "specialIndent": Object { + "type": "firstLine", + "val": 300, + }, + "start": null, + "startChars": null, + }, + "numberingProperty": Object { + "id": 30, + "level": 1, + }, + "runProperty": Object {}, + "tabs": Array [], + }, + "runProperty": Object { + "fonts": Object { + "ascii": "MS Pゴシック", + "eastAsia": "MS Pゴシック", + }, + }, + "styleId": "6", + "styleType": "paragraph", + "tableCellProperty": Object { + "borders": null, + "gridSpan": null, + "shading": null, + "textDirection": null, + "verticalAlign": null, + "verticalMerge": null, + "width": null, + }, + "tableProperty": Object { + "borders": Object { + "bottom": Object { + "borderType": "single", + "color": "000000", + "position": "bottom", + "size": 2, + "space": 0, + }, + "insideH": Object { + "borderType": "single", + "color": "000000", + "position": "insideH", + "size": 2, + "space": 0, + }, + "insideV": Object { + "borderType": "single", + "color": "000000", + "position": "insideV", + "size": 2, + "space": 0, + }, + "left": Object { + "borderType": "single", + "color": "000000", + "position": "left", + "size": 2, + "space": 0, + }, + "right": Object { + "borderType": "single", + "color": "000000", + "position": "right", + "size": 2, + "space": 0, + }, + "top": Object { + "borderType": "single", + "color": "000000", + "position": "top", + "size": 2, + "space": 0, + }, + }, + "justification": "left", + "width": Object { + "width": 0, + "widthType": "auto", + }, + }, + }, + Object { + "basedOn": "a7", + "name": "toc 7", + "next": null, + "paragraphProperty": Object { + "indent": Object { + "end": null, + "firstLineChars": null, + "hangingChars": null, + "specialIndent": null, + "start": 1260, + "startChars": 600, + }, + "runProperty": Object {}, + "tabs": Array [], + }, + "runProperty": Object {}, + "styleId": "70", + "styleType": "paragraph", + "tableCellProperty": Object { + "borders": null, + "gridSpan": null, + "shading": null, + "textDirection": null, + "verticalAlign": null, + "verticalMerge": null, + "width": null, + }, + "tableProperty": Object { + "borders": Object { + "bottom": Object { + "borderType": "single", + "color": "000000", + "position": "bottom", + "size": 2, + "space": 0, + }, + "insideH": Object { + "borderType": "single", + "color": "000000", + "position": "insideH", + "size": 2, + "space": 0, + }, + "insideV": Object { + "borderType": "single", + "color": "000000", + "position": "insideV", + "size": 2, + "space": 0, + }, + "left": Object { + "borderType": "single", + "color": "000000", + "position": "left", + "size": 2, + "space": 0, + }, + "right": Object { + "borderType": "single", + "color": "000000", + "position": "right", + "size": 2, + "space": 0, + }, + "top": Object { + "borderType": "single", + "color": "000000", + "position": "top", + "size": 2, + "space": 0, + }, + }, + "justification": "left", + "width": Object { + "width": 0, + "widthType": "auto", + }, + }, + }, + Object { + "basedOn": "a7", + "name": "toc 8", + "next": null, + "paragraphProperty": Object { + "indent": Object { + "end": null, + "firstLineChars": null, + "hangingChars": null, + "specialIndent": null, + "start": 1470, + "startChars": 700, + }, + "runProperty": Object {}, + "tabs": Array [], + }, + "runProperty": Object {}, + "styleId": "80", + "styleType": "paragraph", + "tableCellProperty": Object { + "borders": null, + "gridSpan": null, + "shading": null, + "textDirection": null, + "verticalAlign": null, + "verticalMerge": null, + "width": null, + }, + "tableProperty": Object { + "borders": Object { + "bottom": Object { + "borderType": "single", + "color": "000000", + "position": "bottom", + "size": 2, + "space": 0, + }, + "insideH": Object { + "borderType": "single", + "color": "000000", + "position": "insideH", + "size": 2, + "space": 0, + }, + "insideV": Object { + "borderType": "single", + "color": "000000", + "position": "insideV", + "size": 2, + "space": 0, + }, + "left": Object { + "borderType": "single", + "color": "000000", + "position": "left", + "size": 2, + "space": 0, + }, + "right": Object { + "borderType": "single", + "color": "000000", + "position": "right", + "size": 2, + "space": 0, + }, + "top": Object { + "borderType": "single", + "color": "000000", + "position": "top", + "size": 2, + "space": 0, + }, + }, + "justification": "left", + "width": Object { + "width": 0, + "widthType": "auto", + }, + }, + }, + Object { + "basedOn": "a7", + "name": "toc 9", + "next": null, + "paragraphProperty": Object { + "indent": Object { + "end": null, + "firstLineChars": null, + "hangingChars": null, + "specialIndent": null, + "start": 1680, + "startChars": 800, + }, + "runProperty": Object {}, + "tabs": Array [], + }, + "runProperty": Object {}, + "styleId": "90", + "styleType": "paragraph", + "tableCellProperty": Object { + "borders": null, + "gridSpan": null, + "shading": null, + "textDirection": null, + "verticalAlign": null, + "verticalMerge": null, + "width": null, + }, + "tableProperty": Object { + "borders": Object { + "bottom": Object { + "borderType": "single", + "color": "000000", + "position": "bottom", + "size": 2, + "space": 0, + }, + "insideH": Object { + "borderType": "single", + "color": "000000", + "position": "insideH", + "size": 2, + "space": 0, + }, + "insideV": Object { + "borderType": "single", + "color": "000000", + "position": "insideV", + "size": 2, + "space": 0, + }, + "left": Object { + "borderType": "single", + "color": "000000", + "position": "left", + "size": 2, + "space": 0, + }, + "right": Object { + "borderType": "single", + "color": "000000", + "position": "right", + "size": 2, + "space": 0, + }, + "top": Object { + "borderType": "single", + "color": "000000", + "position": "top", + "size": 2, + "space": 0, + }, + }, + "justification": "left", + "width": Object { + "width": 0, + "widthType": "auto", + }, + }, + }, + Object { + "basedOn": null, + "name": "Hyperlink", + "next": null, + "paragraphProperty": Object { + "runProperty": Object {}, + "tabs": Array [], + }, + "runProperty": Object { + "color": "0000FF", + "underline": "single", + }, + "styleId": "af5", + "styleType": "character", + "tableCellProperty": Object { + "borders": null, + "gridSpan": null, + "shading": null, + "textDirection": null, + "verticalAlign": null, + "verticalMerge": null, + "width": null, + }, + "tableProperty": Object { + "borders": Object { + "bottom": Object { + "borderType": "single", + "color": "000000", + "position": "bottom", + "size": 2, + "space": 0, + }, + "insideH": Object { + "borderType": "single", + "color": "000000", + "position": "insideH", + "size": 2, + "space": 0, + }, + "insideV": Object { + "borderType": "single", + "color": "000000", + "position": "insideV", + "size": 2, + "space": 0, + }, + "left": Object { + "borderType": "single", + "color": "000000", + "position": "left", + "size": 2, + "space": 0, + }, + "right": Object { + "borderType": "single", + "color": "000000", + "position": "right", + "size": 2, + "space": 0, + }, + "top": Object { + "borderType": "single", + "color": "000000", + "position": "top", + "size": 2, + "space": 0, + }, + }, + "justification": "left", + "width": Object { + "width": 0, + "widthType": "auto", + }, + }, + }, + Object { + "basedOn": "a7", + "name": "Title", + "next": null, + "paragraphProperty": Object { + "alignment": "center", + "lineSpacing": Object { + "line": 240, + "lineRule": "auto", + }, + "runProperty": Object {}, + "tabs": Array [], + }, + "runProperty": Object { + "fonts": Object { + "ascii": "Arial Black", + "eastAsia": "ゴシック", + "hiAnsi": "Arial Black", + }, + "sz": 44, + "szCs": 44, + }, + "styleId": "af6", + "styleType": "paragraph", + "tableCellProperty": Object { + "borders": null, + "gridSpan": null, + "shading": null, + "textDirection": null, + "verticalAlign": null, + "verticalMerge": null, + "width": null, + }, + "tableProperty": Object { + "borders": Object { + "bottom": Object { + "borderType": "single", + "color": "000000", + "position": "bottom", + "size": 2, + "space": 0, + }, + "insideH": Object { + "borderType": "single", + "color": "000000", + "position": "insideH", + "size": 2, + "space": 0, + }, + "insideV": Object { + "borderType": "single", + "color": "000000", + "position": "insideV", + "size": 2, + "space": 0, + }, + "left": Object { + "borderType": "single", + "color": "000000", + "position": "left", + "size": 2, + "space": 0, + }, + "right": Object { + "borderType": "single", + "color": "000000", + "position": "right", + "size": 2, + "space": 0, + }, + "top": Object { + "borderType": "single", + "color": "000000", + "position": "top", + "size": 2, + "space": 0, + }, + }, + "justification": "left", + "width": Object { + "width": 0, + "widthType": "auto", + }, + }, + }, + Object { + "basedOn": "a7", + "name": "Subtitle", + "next": null, + "paragraphProperty": Object { + "alignment": "center", + "lineSpacing": Object { + "line": 240, + "lineRule": "auto", + }, + "runProperty": Object {}, + "tabs": Array [], + }, + "runProperty": Object { + "fonts": Object { + "ascii": "Arial Black", + "eastAsia": "ゴシック", + "hiAnsi": "Arial Black", + }, + "sz": 52, + "szCs": 52, + }, + "styleId": "af7", + "styleType": "paragraph", + "tableCellProperty": Object { + "borders": null, + "gridSpan": null, + "shading": null, + "textDirection": null, + "verticalAlign": null, + "verticalMerge": null, + "width": null, + }, + "tableProperty": Object { + "borders": Object { + "bottom": Object { + "borderType": "single", + "color": "000000", + "position": "bottom", + "size": 2, + "space": 0, + }, + "insideH": Object { + "borderType": "single", + "color": "000000", + "position": "insideH", + "size": 2, + "space": 0, + }, + "insideV": Object { + "borderType": "single", + "color": "000000", + "position": "insideV", + "size": 2, + "space": 0, + }, + "left": Object { + "borderType": "single", + "color": "000000", + "position": "left", + "size": 2, + "space": 0, + }, + "right": Object { + "borderType": "single", + "color": "000000", + "position": "right", + "size": 2, + "space": 0, + }, + "top": Object { + "borderType": "single", + "color": "000000", + "position": "top", + "size": 2, + "space": 0, + }, + }, + "justification": "left", + "width": Object { + "width": 0, + "widthType": "auto", + }, + }, + }, + Object { + "basedOn": "a7", + "name": "(a)文章", + "next": null, + "paragraphProperty": Object { + "lineSpacing": Object { + "before": 120, + "line": 280, + "lineRule": "exact", + }, + "numberingProperty": Object { + "id": 20, + "level": null, + }, + "runProperty": Object {}, + "tabs": Array [], + }, + "runProperty": Object { + "fonts": Object { + "ascii": "Times New Roman", + "eastAsia": "MS ゴシック", + "hiAnsi": "Times New Roman", + }, + "sz": 24, + "szCs": 24, + }, + "styleId": "a5", + "styleType": "paragraph", + "tableCellProperty": Object { + "borders": null, + "gridSpan": null, + "shading": null, + "textDirection": null, + "verticalAlign": null, + "verticalMerge": null, + "width": null, + }, + "tableProperty": Object { + "borders": Object { + "bottom": Object { + "borderType": "single", + "color": "000000", + "position": "bottom", + "size": 2, + "space": 0, + }, + "insideH": Object { + "borderType": "single", + "color": "000000", + "position": "insideH", + "size": 2, + "space": 0, + }, + "insideV": Object { + "borderType": "single", + "color": "000000", + "position": "insideV", + "size": 2, + "space": 0, + }, + "left": Object { + "borderType": "single", + "color": "000000", + "position": "left", + "size": 2, + "space": 0, + }, + "right": Object { + "borderType": "single", + "color": "000000", + "position": "right", + "size": 2, + "space": 0, + }, + "top": Object { + "borderType": "single", + "color": "000000", + "position": "top", + "size": 2, + "space": 0, + }, + }, + "justification": "left", + "width": Object { + "width": 0, + "widthType": "auto", + }, + }, + }, + Object { + "basedOn": "a7", + "name": "参照1", + "next": null, + "paragraphProperty": Object { + "lineSpacing": Object { + "before": 120, + "line": 280, + "lineRule": "exact", + }, + "numberingProperty": Object { + "id": 16, + "level": null, + }, + "runProperty": Object {}, + "tabs": Array [], + }, + "runProperty": Object { + "characterSpacing": -3, + "color": "0000FF", + "fonts": Object { + "hiAnsi": "Times New Roman", + }, + "italic": true, + "italicCs": true, + "sz": 20, + "szCs": 20, + }, + "styleId": "10", + "styleType": "paragraph", + "tableCellProperty": Object { + "borders": null, + "gridSpan": null, + "shading": null, + "textDirection": null, + "verticalAlign": null, + "verticalMerge": null, + "width": null, + }, + "tableProperty": Object { + "borders": Object { + "bottom": Object { + "borderType": "single", + "color": "000000", + "position": "bottom", + "size": 2, + "space": 0, + }, + "insideH": Object { + "borderType": "single", + "color": "000000", + "position": "insideH", + "size": 2, + "space": 0, + }, + "insideV": Object { + "borderType": "single", + "color": "000000", + "position": "insideV", + "size": 2, + "space": 0, + }, + "left": Object { + "borderType": "single", + "color": "000000", + "position": "left", + "size": 2, + "space": 0, + }, + "right": Object { + "borderType": "single", + "color": "000000", + "position": "right", + "size": 2, + "space": 0, + }, + "top": Object { + "borderType": "single", + "color": "000000", + "position": "top", + "size": 2, + "space": 0, + }, + }, + "justification": "left", + "width": Object { + "width": 0, + "widthType": "auto", + }, + }, + }, + Object { + "basedOn": "a7", + "name": "Noun phrase", + "next": null, + "paragraphProperty": Object { + "lineSpacing": Object { + "before": 60, + "line": 280, + "lineRule": "exact", + }, + "numberingProperty": Object { + "id": 18, + "level": null, + }, + "runProperty": Object {}, + "tabs": Array [], + }, + "runProperty": Object { + "fonts": Object { + "ascii": "Times New Roman", + "eastAsia": "ゴシック", + "hiAnsi": "Times New Roman", + }, + "sz": 24, + "szCs": 24, + }, + "styleId": "Nounphrase", + "styleType": "paragraph", + "tableCellProperty": Object { + "borders": null, + "gridSpan": null, + "shading": null, + "textDirection": null, + "verticalAlign": null, + "verticalMerge": null, + "width": null, + }, + "tableProperty": Object { + "borders": Object { + "bottom": Object { + "borderType": "single", + "color": "000000", + "position": "bottom", + "size": 2, + "space": 0, + }, + "insideH": Object { + "borderType": "single", + "color": "000000", + "position": "insideH", + "size": 2, + "space": 0, + }, + "insideV": Object { + "borderType": "single", + "color": "000000", + "position": "insideV", + "size": 2, + "space": 0, + }, + "left": Object { + "borderType": "single", + "color": "000000", + "position": "left", + "size": 2, + "space": 0, + }, + "right": Object { + "borderType": "single", + "color": "000000", + "position": "right", + "size": 2, + "space": 0, + }, + "top": Object { + "borderType": "single", + "color": "000000", + "position": "top", + "size": 2, + "space": 0, + }, + }, + "justification": "left", + "width": Object { + "width": 0, + "widthType": "auto", + }, + }, + }, + Object { + "basedOn": "a7", + "name": "Noun Phrase2", + "next": null, + "paragraphProperty": Object { + "lineSpacing": Object { + "before": 60, + "line": 280, + "lineRule": "atLeast", + }, + "numberingProperty": Object { + "id": 17, + "level": null, + }, + "runProperty": Object {}, + "tabs": Array [], + }, + "runProperty": Object { + "fonts": Object { + "ascii": "Times New Roman", + "eastAsia": "Mincho", + "hiAnsi": "Times New Roman", + }, + "sz": 24, + "szCs": 24, + }, + "styleId": "NounPhrase2", + "styleType": "paragraph", + "tableCellProperty": Object { + "borders": null, + "gridSpan": null, + "shading": null, + "textDirection": null, + "verticalAlign": null, + "verticalMerge": null, + "width": null, + }, + "tableProperty": Object { + "borders": Object { + "bottom": Object { + "borderType": "single", + "color": "000000", + "position": "bottom", + "size": 2, + "space": 0, + }, + "insideH": Object { + "borderType": "single", + "color": "000000", + "position": "insideH", + "size": 2, + "space": 0, + }, + "insideV": Object { + "borderType": "single", + "color": "000000", + "position": "insideV", + "size": 2, + "space": 0, + }, + "left": Object { + "borderType": "single", + "color": "000000", + "position": "left", + "size": 2, + "space": 0, + }, + "right": Object { + "borderType": "single", + "color": "000000", + "position": "right", + "size": 2, + "space": 0, + }, + "top": Object { + "borderType": "single", + "color": "000000", + "position": "top", + "size": 2, + "space": 0, + }, + }, + "justification": "left", + "width": Object { + "width": 0, + "widthType": "auto", + }, + }, + }, + Object { + "basedOn": "a7", + "name": "Bullet 1", + "next": null, + "paragraphProperty": Object { + "indent": Object { + "end": null, + "firstLineChars": null, + "hangingChars": null, + "specialIndent": Object { + "type": "hanging", + "val": 454, + }, + "start": 1588, + "startChars": null, + }, + "lineSpacing": Object { + "before": 120, + "line": 280, + "lineRule": "exact", + }, + "numberingProperty": Object { + "id": 1, + "level": null, + }, + "runProperty": Object {}, + "tabs": Array [], + }, + "runProperty": Object { + "fonts": Object { + "ascii": "Times New Roman", + "eastAsia": "ゴシック", + "hiAnsi": "Times New Roman", + }, + "sz": 24, + "szCs": 24, + }, + "styleId": "Bullet10", + "styleType": "paragraph", + "tableCellProperty": Object { + "borders": null, + "gridSpan": null, + "shading": null, + "textDirection": null, + "verticalAlign": null, + "verticalMerge": null, + "width": null, + }, + "tableProperty": Object { + "borders": Object { + "bottom": Object { + "borderType": "single", + "color": "000000", + "position": "bottom", + "size": 2, + "space": 0, + }, + "insideH": Object { + "borderType": "single", + "color": "000000", + "position": "insideH", + "size": 2, + "space": 0, + }, + "insideV": Object { + "borderType": "single", + "color": "000000", + "position": "insideV", + "size": 2, + "space": 0, + }, + "left": Object { + "borderType": "single", + "color": "000000", + "position": "left", + "size": 2, + "space": 0, + }, + "right": Object { + "borderType": "single", + "color": "000000", + "position": "right", + "size": 2, + "space": 0, + }, + "top": Object { + "borderType": "single", + "color": "000000", + "position": "top", + "size": 2, + "space": 0, + }, + }, + "justification": "left", + "width": Object { + "width": 0, + "widthType": "auto", + }, + }, + }, + Object { + "basedOn": "a7", + "name": "名詞句並列1", + "next": null, + "paragraphProperty": Object { + "indent": Object { + "end": null, + "firstLineChars": null, + "hangingChars": null, + "specialIndent": Object { + "type": "hanging", + "val": 227, + }, + "start": 1588, + "startChars": null, + }, + "lineSpacing": Object { + "before": 60, + "line": 280, + "lineRule": "exact", + }, + "runProperty": Object {}, + "tabs": Array [], + }, + "runProperty": Object { + "fonts": Object { + "ascii": "Times New Roman", + "eastAsia": "MS ゴシック", + "hiAnsi": "Times New Roman", + }, + "sz": 24, + "szCs": 24, + }, + "styleId": "12", + "styleType": "paragraph", + "tableCellProperty": Object { + "borders": null, + "gridSpan": null, + "shading": null, + "textDirection": null, + "verticalAlign": null, + "verticalMerge": null, + "width": null, + }, + "tableProperty": Object { + "borders": Object { + "bottom": Object { + "borderType": "single", + "color": "000000", + "position": "bottom", + "size": 2, + "space": 0, + }, + "insideH": Object { + "borderType": "single", + "color": "000000", + "position": "insideH", + "size": 2, + "space": 0, + }, + "insideV": Object { + "borderType": "single", + "color": "000000", + "position": "insideV", + "size": 2, + "space": 0, + }, + "left": Object { + "borderType": "single", + "color": "000000", + "position": "left", + "size": 2, + "space": 0, + }, + "right": Object { + "borderType": "single", + "color": "000000", + "position": "right", + "size": 2, + "space": 0, + }, + "top": Object { + "borderType": "single", + "color": "000000", + "position": "top", + "size": 2, + "space": 0, + }, + }, + "justification": "left", + "width": Object { + "width": 0, + "widthType": "auto", + }, + }, + }, + Object { + "basedOn": "12", + "name": "注記1", + "next": null, + "paragraphProperty": Object { + "indent": Object { + "end": null, + "firstLineChars": 89, + "hangingChars": null, + "specialIndent": Object { + "type": "firstLine", + "val": 178, + }, + "start": 1, + "startChars": null, + }, + "lineSpacing": Object { + "before": 120, + }, + "runProperty": Object {}, + "tabs": Array [], + }, + "runProperty": Object { + "fonts": Object { + "ascii": "MS UI Gothic", + "eastAsia": "MS UI Gothic", + "hiAnsi": "MS UI Gothic", + }, + "sz": 20, + "szCs": 20, + }, + "styleId": "13", + "styleType": "paragraph", + "tableCellProperty": Object { + "borders": null, + "gridSpan": null, + "shading": null, + "textDirection": null, + "verticalAlign": null, + "verticalMerge": null, + "width": null, + }, + "tableProperty": Object { + "borders": Object { + "bottom": Object { + "borderType": "single", + "color": "000000", + "position": "bottom", + "size": 2, + "space": 0, + }, + "insideH": Object { + "borderType": "single", + "color": "000000", + "position": "insideH", + "size": 2, + "space": 0, + }, + "insideV": Object { + "borderType": "single", + "color": "000000", + "position": "insideV", + "size": 2, + "space": 0, + }, + "left": Object { + "borderType": "single", + "color": "000000", + "position": "left", + "size": 2, + "space": 0, + }, + "right": Object { + "borderType": "single", + "color": "000000", + "position": "right", + "size": 2, + "space": 0, + }, + "top": Object { + "borderType": "single", + "color": "000000", + "position": "top", + "size": 2, + "space": 0, + }, + }, + "justification": "left", + "width": Object { + "width": 0, + "widthType": "auto", + }, + }, + }, + Object { + "basedOn": "a7", + "name": "(1) sentence", + "next": null, + "paragraphProperty": Object { + "alignment": "left", + "lineSpacing": Object { + "before": 120, + "line": 280, + "lineRule": "exact", + }, + "numberingProperty": Object { + "id": 32, + "level": null, + }, + "runProperty": Object {}, + "tabs": Array [], + }, + "runProperty": Object { + "fonts": Object { + "ascii": "MS Pゴシック", + "eastAsia": "MS Pゴシック", + "hiAnsi": "Times New Roman", + }, + "sz": 20, + "szCs": 20, + }, + "styleId": "1sentence", + "styleType": "paragraph", + "tableCellProperty": Object { + "borders": null, + "gridSpan": null, + "shading": null, + "textDirection": null, + "verticalAlign": null, + "verticalMerge": null, + "width": null, + }, + "tableProperty": Object { + "borders": Object { + "bottom": Object { + "borderType": "single", + "color": "000000", + "position": "bottom", + "size": 2, + "space": 0, + }, + "insideH": Object { + "borderType": "single", + "color": "000000", + "position": "insideH", + "size": 2, + "space": 0, + }, + "insideV": Object { + "borderType": "single", + "color": "000000", + "position": "insideV", + "size": 2, + "space": 0, + }, + "left": Object { + "borderType": "single", + "color": "000000", + "position": "left", + "size": 2, + "space": 0, + }, + "right": Object { + "borderType": "single", + "color": "000000", + "position": "right", + "size": 2, + "space": 0, + }, + "top": Object { + "borderType": "single", + "color": "000000", + "position": "top", + "size": 2, + "space": 0, + }, + }, + "justification": "left", + "width": Object { + "width": 0, + "widthType": "auto", + }, + }, + }, + Object { + "basedOn": "a7", + "name": "Body Text Indent 3", + "next": null, + "paragraphProperty": Object { + "indent": Object { + "end": null, + "firstLineChars": null, + "hangingChars": null, + "specialIndent": null, + "start": 1134, + "startChars": null, + }, + "runProperty": Object {}, + "tabs": Array [], + }, + "runProperty": Object { + "color": "FF0000", + }, + "styleId": "33", + "styleType": "paragraph", + "tableCellProperty": Object { + "borders": null, + "gridSpan": null, + "shading": null, + "textDirection": null, + "verticalAlign": null, + "verticalMerge": null, + "width": null, + }, + "tableProperty": Object { + "borders": Object { + "bottom": Object { + "borderType": "single", + "color": "000000", + "position": "bottom", + "size": 2, + "space": 0, + }, + "insideH": Object { + "borderType": "single", + "color": "000000", + "position": "insideH", + "size": 2, + "space": 0, + }, + "insideV": Object { + "borderType": "single", + "color": "000000", + "position": "insideV", + "size": 2, + "space": 0, + }, + "left": Object { + "borderType": "single", + "color": "000000", + "position": "left", + "size": 2, + "space": 0, + }, + "right": Object { + "borderType": "single", + "color": "000000", + "position": "right", + "size": 2, + "space": 0, + }, + "top": Object { + "borderType": "single", + "color": "000000", + "position": "top", + "size": 2, + "space": 0, + }, + }, + "justification": "left", + "width": Object { + "width": 0, + "widthType": "auto", + }, + }, + }, + Object { + "basedOn": null, + "name": "FollowedHyperlink", + "next": null, + "paragraphProperty": Object { + "runProperty": Object {}, + "tabs": Array [], + }, + "runProperty": Object { + "color": "800080", + "underline": "single", + }, + "styleId": "af8", + "styleType": "character", + "tableCellProperty": Object { + "borders": null, + "gridSpan": null, + "shading": null, + "textDirection": null, + "verticalAlign": null, + "verticalMerge": null, + "width": null, + }, + "tableProperty": Object { + "borders": Object { + "bottom": Object { + "borderType": "single", + "color": "000000", + "position": "bottom", + "size": 2, + "space": 0, + }, + "insideH": Object { + "borderType": "single", + "color": "000000", + "position": "insideH", + "size": 2, + "space": 0, + }, + "insideV": Object { + "borderType": "single", + "color": "000000", + "position": "insideV", + "size": 2, + "space": 0, + }, + "left": Object { + "borderType": "single", + "color": "000000", + "position": "left", + "size": 2, + "space": 0, + }, + "right": Object { + "borderType": "single", + "color": "000000", + "position": "right", + "size": 2, + "space": 0, + }, + "top": Object { + "borderType": "single", + "color": "000000", + "position": "top", + "size": 2, + "space": 0, + }, + }, + "justification": "left", + "width": Object { + "width": 0, + "widthType": "auto", + }, + }, + }, + Object { + "basedOn": null, + "name": "List Number", + "next": null, + "paragraphProperty": Object { + "indent": Object { + "end": null, + "firstLineChars": 0, + "hangingChars": null, + "specialIndent": Object { + "type": "hanging", + "val": 567, + }, + "start": 1701, + "startChars": null, + }, + "keepNext": true, + "lineSpacing": Object { + "before": 240, + "line": 280, + "lineRule": "atLeast", + }, + "numberingProperty": Object { + "id": 10, + "level": null, + }, + "runProperty": Object {}, + "tabs": Array [], + }, + "runProperty": Object { + "fonts": Object { + "ascii": "Arial", + "hiAnsi": "Arial", + }, + "sz": 24, + "szCs": 24, + }, + "styleId": "a", + "styleType": "paragraph", + "tableCellProperty": Object { + "borders": null, + "gridSpan": null, + "shading": null, + "textDirection": null, + "verticalAlign": null, + "verticalMerge": null, + "width": null, + }, + "tableProperty": Object { + "borders": Object { + "bottom": Object { + "borderType": "single", + "color": "000000", + "position": "bottom", + "size": 2, + "space": 0, + }, + "insideH": Object { + "borderType": "single", + "color": "000000", + "position": "insideH", + "size": 2, + "space": 0, + }, + "insideV": Object { + "borderType": "single", + "color": "000000", + "position": "insideV", + "size": 2, + "space": 0, + }, + "left": Object { + "borderType": "single", + "color": "000000", + "position": "left", + "size": 2, + "space": 0, + }, + "right": Object { + "borderType": "single", + "color": "000000", + "position": "right", + "size": 2, + "space": 0, + }, + "top": Object { + "borderType": "single", + "color": "000000", + "position": "top", + "size": 2, + "space": 0, + }, + }, + "justification": "left", + "width": Object { + "width": 0, + "widthType": "auto", + }, + }, + }, + Object { + "basedOn": null, + "name": "Reference2", + "next": null, + "paragraphProperty": Object { + "alignment": "both", + "indent": Object { + "end": null, + "firstLineChars": null, + "hangingChars": null, + "specialIndent": Object { + "type": "hanging", + "val": 535, + }, + "start": null, + "startChars": null, + }, + "lineSpacing": Object { + "before": 120, + "line": 240, + "lineRule": "atLeast", + }, + "numberingProperty": Object { + "id": 22, + "level": null, + }, + "runProperty": Object {}, + "tabs": Array [], + }, + "runProperty": Object { + "fonts": Object { + "ascii": "Times New Roman", + "hiAnsi": "Times New Roman", + }, + "italic": true, + "italicCs": true, + }, + "styleId": "Reference2", + "styleType": "paragraph", + "tableCellProperty": Object { + "borders": null, + "gridSpan": null, + "shading": null, + "textDirection": null, + "verticalAlign": null, + "verticalMerge": null, + "width": null, + }, + "tableProperty": Object { + "borders": Object { + "bottom": Object { + "borderType": "single", + "color": "000000", + "position": "bottom", + "size": 2, + "space": 0, + }, + "insideH": Object { + "borderType": "single", + "color": "000000", + "position": "insideH", + "size": 2, + "space": 0, + }, + "insideV": Object { + "borderType": "single", + "color": "000000", + "position": "insideV", + "size": 2, + "space": 0, + }, + "left": Object { + "borderType": "single", + "color": "000000", + "position": "left", + "size": 2, + "space": 0, + }, + "right": Object { + "borderType": "single", + "color": "000000", + "position": "right", + "size": 2, + "space": 0, + }, + "top": Object { + "borderType": "single", + "color": "000000", + "position": "top", + "size": 2, + "space": 0, + }, + }, + "justification": "left", + "width": Object { + "width": 0, + "widthType": "auto", + }, + }, + }, + Object { + "basedOn": null, + "name": "F_Hyperlink", + "next": null, + "paragraphProperty": Object { + "runProperty": Object {}, + "tabs": Array [], + }, + "runProperty": Object { + "bold": true, + "boldCs": true, + "color": "0000FF", + "underline": "single", + }, + "styleId": "FHyperlink", + "styleType": "character", + "tableCellProperty": Object { + "borders": null, + "gridSpan": null, + "shading": null, + "textDirection": null, + "verticalAlign": null, + "verticalMerge": null, + "width": null, + }, + "tableProperty": Object { + "borders": Object { + "bottom": Object { + "borderType": "single", + "color": "000000", + "position": "bottom", + "size": 2, + "space": 0, + }, + "insideH": Object { + "borderType": "single", + "color": "000000", + "position": "insideH", + "size": 2, + "space": 0, + }, + "insideV": Object { + "borderType": "single", + "color": "000000", + "position": "insideV", + "size": 2, + "space": 0, + }, + "left": Object { + "borderType": "single", + "color": "000000", + "position": "left", + "size": 2, + "space": 0, + }, + "right": Object { + "borderType": "single", + "color": "000000", + "position": "right", + "size": 2, + "space": 0, + }, + "top": Object { + "borderType": "single", + "color": "000000", + "position": "top", + "size": 2, + "space": 0, + }, + }, + "justification": "left", + "width": Object { + "width": 0, + "widthType": "auto", + }, + }, + }, + Object { + "basedOn": null, + "name": "F_Bold", + "next": null, + "paragraphProperty": Object { + "runProperty": Object {}, + "tabs": Array [], + }, + "runProperty": Object { + "bold": true, + "boldCs": true, + }, + "styleId": "FBold", + "styleType": "character", + "tableCellProperty": Object { + "borders": null, + "gridSpan": null, + "shading": null, + "textDirection": null, + "verticalAlign": null, + "verticalMerge": null, + "width": null, + }, + "tableProperty": Object { + "borders": Object { + "bottom": Object { + "borderType": "single", + "color": "000000", + "position": "bottom", + "size": 2, + "space": 0, + }, + "insideH": Object { + "borderType": "single", + "color": "000000", + "position": "insideH", + "size": 2, + "space": 0, + }, + "insideV": Object { + "borderType": "single", + "color": "000000", + "position": "insideV", + "size": 2, + "space": 0, + }, + "left": Object { + "borderType": "single", + "color": "000000", + "position": "left", + "size": 2, + "space": 0, + }, + "right": Object { + "borderType": "single", + "color": "000000", + "position": "right", + "size": 2, + "space": 0, + }, + "top": Object { + "borderType": "single", + "color": "000000", + "position": "top", + "size": 2, + "space": 0, + }, + }, + "justification": "left", + "width": Object { + "width": 0, + "widthType": "auto", + }, + }, + }, + Object { + "basedOn": null, + "name": "Sentence indent2", + "next": null, + "paragraphProperty": Object { + "alignment": "both", + "indent": Object { + "end": null, + "firstLineChars": null, + "hangingChars": null, + "specialIndent": null, + "start": 1701, + "startChars": null, + }, + "lineSpacing": Object { + "before": 120, + "line": 280, + "lineRule": "atLeast", + }, + "runProperty": Object {}, + "tabs": Array [], + }, + "runProperty": Object { + "fonts": Object { + "ascii": "Times New Roman", + "hiAnsi": "Times New Roman", + }, + "sz": 24, + "szCs": 24, + }, + "styleId": "Sentenceindent2", + "styleType": "paragraph", + "tableCellProperty": Object { + "borders": null, + "gridSpan": null, + "shading": null, + "textDirection": null, + "verticalAlign": null, + "verticalMerge": null, + "width": null, + }, + "tableProperty": Object { + "borders": Object { + "bottom": Object { + "borderType": "single", + "color": "000000", + "position": "bottom", + "size": 2, + "space": 0, + }, + "insideH": Object { + "borderType": "single", + "color": "000000", + "position": "insideH", + "size": 2, + "space": 0, + }, + "insideV": Object { + "borderType": "single", + "color": "000000", + "position": "insideV", + "size": 2, + "space": 0, + }, + "left": Object { + "borderType": "single", + "color": "000000", + "position": "left", + "size": 2, + "space": 0, + }, + "right": Object { + "borderType": "single", + "color": "000000", + "position": "right", + "size": 2, + "space": 0, + }, + "top": Object { + "borderType": "single", + "color": "000000", + "position": "top", + "size": 2, + "space": 0, + }, + }, + "justification": "left", + "width": Object { + "width": 0, + "widthType": "auto", + }, + }, + }, + Object { + "basedOn": null, + "name": "F_BOLD&ALLCAPITAL", + "next": null, + "paragraphProperty": Object { + "runProperty": Object {}, + "tabs": Array [], + }, + "runProperty": Object { + "bold": true, + "boldCs": true, + }, + "styleId": "FBOLDALLCAPITAL", + "styleType": "character", + "tableCellProperty": Object { + "borders": null, + "gridSpan": null, + "shading": null, + "textDirection": null, + "verticalAlign": null, + "verticalMerge": null, + "width": null, + }, + "tableProperty": Object { + "borders": Object { + "bottom": Object { + "borderType": "single", + "color": "000000", + "position": "bottom", + "size": 2, + "space": 0, + }, + "insideH": Object { + "borderType": "single", + "color": "000000", + "position": "insideH", + "size": 2, + "space": 0, + }, + "insideV": Object { + "borderType": "single", + "color": "000000", + "position": "insideV", + "size": 2, + "space": 0, + }, + "left": Object { + "borderType": "single", + "color": "000000", + "position": "left", + "size": 2, + "space": 0, + }, + "right": Object { + "borderType": "single", + "color": "000000", + "position": "right", + "size": 2, + "space": 0, + }, + "top": Object { + "borderType": "single", + "color": "000000", + "position": "top", + "size": 2, + "space": 0, + }, + }, + "justification": "left", + "width": Object { + "width": 0, + "widthType": "auto", + }, + }, + }, + Object { + "basedOn": null, + "name": "Definition_sentence", + "next": null, + "paragraphProperty": Object { + "alignment": "both", + "indent": Object { + "end": null, + "firstLineChars": null, + "hangingChars": null, + "specialIndent": null, + "start": 233, + "startChars": null, + }, + "lineSpacing": Object { + "line": 240, + "lineRule": "atLeast", + }, + "numberingProperty": Object { + "id": null, + "level": null, + }, + "runProperty": Object {}, + "tabs": Array [], + }, + "runProperty": Object { + "fonts": Object { + "ascii": "Times New Roman", + "hiAnsi": "Times New Roman", + }, + "sz": 24, + "szCs": 24, + }, + "styleId": "Definitionsentence", + "styleType": "paragraph", + "tableCellProperty": Object { + "borders": null, + "gridSpan": null, + "shading": null, + "textDirection": null, + "verticalAlign": null, + "verticalMerge": null, + "width": null, + }, + "tableProperty": Object { + "borders": Object { + "bottom": Object { + "borderType": "single", + "color": "000000", + "position": "bottom", + "size": 2, + "space": 0, + }, + "insideH": Object { + "borderType": "single", + "color": "000000", + "position": "insideH", + "size": 2, + "space": 0, + }, + "insideV": Object { + "borderType": "single", + "color": "000000", + "position": "insideV", + "size": 2, + "space": 0, + }, + "left": Object { + "borderType": "single", + "color": "000000", + "position": "left", + "size": 2, + "space": 0, + }, + "right": Object { + "borderType": "single", + "color": "000000", + "position": "right", + "size": 2, + "space": 0, + }, + "top": Object { + "borderType": "single", + "color": "000000", + "position": "top", + "size": 2, + "space": 0, + }, + }, + "justification": "left", + "width": Object { + "width": 0, + "widthType": "auto", + }, + }, + }, + Object { + "basedOn": null, + "name": "F_Bold-Smallcap", + "next": null, + "paragraphProperty": Object { + "runProperty": Object {}, + "tabs": Array [], + }, + "runProperty": Object { + "bold": true, + "boldCs": true, + }, + "styleId": "FBold-Smallcap", + "styleType": "character", + "tableCellProperty": Object { + "borders": null, + "gridSpan": null, + "shading": null, + "textDirection": null, + "verticalAlign": null, + "verticalMerge": null, + "width": null, + }, + "tableProperty": Object { + "borders": Object { + "bottom": Object { + "borderType": "single", + "color": "000000", + "position": "bottom", + "size": 2, + "space": 0, + }, + "insideH": Object { + "borderType": "single", + "color": "000000", + "position": "insideH", + "size": 2, + "space": 0, + }, + "insideV": Object { + "borderType": "single", + "color": "000000", + "position": "insideV", + "size": 2, + "space": 0, + }, + "left": Object { + "borderType": "single", + "color": "000000", + "position": "left", + "size": 2, + "space": 0, + }, + "right": Object { + "borderType": "single", + "color": "000000", + "position": "right", + "size": 2, + "space": 0, + }, + "top": Object { + "borderType": "single", + "color": "000000", + "position": "top", + "size": 2, + "space": 0, + }, + }, + "justification": "left", + "width": Object { + "width": 0, + "widthType": "auto", + }, + }, + }, + Object { + "basedOn": null, + "name": "List Number 2", + "next": null, + "paragraphProperty": Object { + "alignment": "both", + "lineSpacing": Object { + "before": 120, + "line": 280, + "lineRule": "atLeast", + }, + "numberingProperty": Object { + "id": 11, + "level": null, + }, + "runProperty": Object {}, + "tabs": Array [], + }, + "runProperty": Object { + "fonts": Object { + "ascii": "Times New Roman", + "hiAnsi": "Times New Roman", + }, + "sz": 24, + "szCs": 24, + }, + "styleId": "2", + "styleType": "paragraph", + "tableCellProperty": Object { + "borders": null, + "gridSpan": null, + "shading": null, + "textDirection": null, + "verticalAlign": null, + "verticalMerge": null, + "width": null, + }, + "tableProperty": Object { + "borders": Object { + "bottom": Object { + "borderType": "single", + "color": "000000", + "position": "bottom", + "size": 2, + "space": 0, + }, + "insideH": Object { + "borderType": "single", + "color": "000000", + "position": "insideH", + "size": 2, + "space": 0, + }, + "insideV": Object { + "borderType": "single", + "color": "000000", + "position": "insideV", + "size": 2, + "space": 0, + }, + "left": Object { + "borderType": "single", + "color": "000000", + "position": "left", + "size": 2, + "space": 0, + }, + "right": Object { + "borderType": "single", + "color": "000000", + "position": "right", + "size": 2, + "space": 0, + }, + "top": Object { + "borderType": "single", + "color": "000000", + "position": "top", + "size": 2, + "space": 0, + }, + }, + "justification": "left", + "width": Object { + "width": 0, + "widthType": "auto", + }, + }, + }, + Object { + "basedOn": null, + "name": "Note1", + "next": null, + "paragraphProperty": Object { + "alignment": "both", + "lineSpacing": Object { + "before": 120, + "line": 280, + "lineRule": "atLeast", + }, + "numberingProperty": Object { + "id": 23, + "level": null, + }, + "runProperty": Object {}, + "tabs": Array [], + }, + "runProperty": Object { + "fonts": Object { + "ascii": "Times New Roman", + "hiAnsi": "Times New Roman", + }, + "italic": true, + "italicCs": true, + }, + "styleId": "Note1", + "styleType": "paragraph", + "tableCellProperty": Object { + "borders": null, + "gridSpan": null, + "shading": null, + "textDirection": null, + "verticalAlign": null, + "verticalMerge": null, + "width": null, + }, + "tableProperty": Object { + "borders": Object { + "bottom": Object { + "borderType": "single", + "color": "000000", + "position": "bottom", + "size": 2, + "space": 0, + }, + "insideH": Object { + "borderType": "single", + "color": "000000", + "position": "insideH", + "size": 2, + "space": 0, + }, + "insideV": Object { + "borderType": "single", + "color": "000000", + "position": "insideV", + "size": 2, + "space": 0, + }, + "left": Object { + "borderType": "single", + "color": "000000", + "position": "left", + "size": 2, + "space": 0, + }, + "right": Object { + "borderType": "single", + "color": "000000", + "position": "right", + "size": 2, + "space": 0, + }, + "top": Object { + "borderType": "single", + "color": "000000", + "position": "top", + "size": 2, + "space": 0, + }, + }, + "justification": "left", + "width": Object { + "width": 0, + "widthType": "auto", + }, + }, + }, + Object { + "basedOn": null, + "name": "Reference1", + "next": null, + "paragraphProperty": Object { + "indent": Object { + "end": null, + "firstLineChars": null, + "hangingChars": null, + "specialIndent": Object { + "type": "hanging", + "val": 454, + }, + "start": 1588, + "startChars": null, + }, + "lineSpacing": Object { + "before": 120, + "line": 280, + "lineRule": "atLeast", + }, + "runProperty": Object {}, + "tabs": Array [], + }, + "runProperty": Object { + "characterSpacing": -3, + "fonts": Object { + "ascii": "Times New Roman", + "eastAsia": "MS ゴシック", + "hiAnsi": "Times New Roman", + }, + "italic": true, + "italicCs": true, + }, + "styleId": "Reference1", + "styleType": "paragraph", + "tableCellProperty": Object { + "borders": null, + "gridSpan": null, + "shading": null, + "textDirection": null, + "verticalAlign": null, + "verticalMerge": null, + "width": null, + }, + "tableProperty": Object { + "borders": Object { + "bottom": Object { + "borderType": "single", + "color": "000000", + "position": "bottom", + "size": 2, + "space": 0, + }, + "insideH": Object { + "borderType": "single", + "color": "000000", + "position": "insideH", + "size": 2, + "space": 0, + }, + "insideV": Object { + "borderType": "single", + "color": "000000", + "position": "insideV", + "size": 2, + "space": 0, + }, + "left": Object { + "borderType": "single", + "color": "000000", + "position": "left", + "size": 2, + "space": 0, + }, + "right": Object { + "borderType": "single", + "color": "000000", + "position": "right", + "size": 2, + "space": 0, + }, + "top": Object { + "borderType": "single", + "color": "000000", + "position": "top", + "size": 2, + "space": 0, + }, + }, + "justification": "left", + "width": Object { + "width": 0, + "widthType": "auto", + }, + }, + }, + Object { + "basedOn": null, + "name": "Sentence indent1", + "next": null, + "paragraphProperty": Object { + "alignment": "both", + "indent": Object { + "end": null, + "firstLineChars": null, + "hangingChars": null, + "specialIndent": null, + "start": 1134, + "startChars": null, + }, + "lineSpacing": Object { + "before": 120, + "line": 280, + "lineRule": "atLeast", + }, + "runProperty": Object {}, + "tabs": Array [], + }, + "runProperty": Object { + "fonts": Object { + "ascii": "MS P明朝", + "eastAsia": "MS P明朝", + "hiAnsi": "Times New Roman", + }, + "sz": 21, + "szCs": 21, + }, + "styleId": "Sentenceindent1", + "styleType": "paragraph", + "tableCellProperty": Object { + "borders": null, + "gridSpan": null, + "shading": null, + "textDirection": null, + "verticalAlign": null, + "verticalMerge": null, + "width": null, + }, + "tableProperty": Object { + "borders": Object { + "bottom": Object { + "borderType": "single", + "color": "000000", + "position": "bottom", + "size": 2, + "space": 0, + }, + "insideH": Object { + "borderType": "single", + "color": "000000", + "position": "insideH", + "size": 2, + "space": 0, + }, + "insideV": Object { + "borderType": "single", + "color": "000000", + "position": "insideV", + "size": 2, + "space": 0, + }, + "left": Object { + "borderType": "single", + "color": "000000", + "position": "left", + "size": 2, + "space": 0, + }, + "right": Object { + "borderType": "single", + "color": "000000", + "position": "right", + "size": 2, + "space": 0, + }, + "top": Object { + "borderType": "single", + "color": "000000", + "position": "top", + "size": 2, + "space": 0, + }, + }, + "justification": "left", + "width": Object { + "width": 0, + "widthType": "auto", + }, + }, + }, + Object { + "basedOn": null, + "name": "Bullet1", + "next": null, + "paragraphProperty": Object { + "alignment": "both", + "indent": Object { + "end": null, + "firstLineChars": null, + "hangingChars": null, + "specialIndent": null, + "start": 1980, + "startChars": null, + }, + "lineSpacing": Object { + "before": 120, + "line": 280, + "lineRule": "atLeast", + }, + "numberingProperty": Object { + "id": 27, + "level": null, + }, + "runProperty": Object {}, + "tabs": Array [], + }, + "runProperty": Object { + "fonts": Object { + "ascii": "MS P明朝", + "eastAsia": "MS P明朝", + "hiAnsi": "Times New Roman", + }, + "sz": 21, + "szCs": 21, + }, + "styleId": "Bullet1", + "styleType": "paragraph", + "tableCellProperty": Object { + "borders": null, + "gridSpan": null, + "shading": null, + "textDirection": null, + "verticalAlign": null, + "verticalMerge": null, + "width": null, + }, + "tableProperty": Object { + "borders": Object { + "bottom": Object { + "borderType": "single", + "color": "000000", + "position": "bottom", + "size": 2, + "space": 0, + }, + "insideH": Object { + "borderType": "single", + "color": "000000", + "position": "insideH", + "size": 2, + "space": 0, + }, + "insideV": Object { + "borderType": "single", + "color": "000000", + "position": "insideV", + "size": 2, + "space": 0, + }, + "left": Object { + "borderType": "single", + "color": "000000", + "position": "left", + "size": 2, + "space": 0, + }, + "right": Object { + "borderType": "single", + "color": "000000", + "position": "right", + "size": 2, + "space": 0, + }, + "top": Object { + "borderType": "single", + "color": "000000", + "position": "top", + "size": 2, + "space": 0, + }, + }, + "justification": "left", + "width": Object { + "width": 0, + "widthType": "auto", + }, + }, + }, + Object { + "basedOn": null, + "name": "List Number 3", + "next": null, + "paragraphProperty": Object { + "keepNext": true, + "lineSpacing": Object { + "before": 240, + "line": 280, + "lineRule": "atLeast", + }, + "numberingProperty": Object { + "id": 12, + "level": null, + }, + "runProperty": Object {}, + "tabs": Array [], + }, + "runProperty": Object { + "fonts": Object { + "ascii": "Arial", + "hiAnsi": "Arial", + }, + "sz": 24, + "szCs": 24, + }, + "styleId": "3", + "styleType": "paragraph", + "tableCellProperty": Object { + "borders": null, + "gridSpan": null, + "shading": null, + "textDirection": null, + "verticalAlign": null, + "verticalMerge": null, + "width": null, + }, + "tableProperty": Object { + "borders": Object { + "bottom": Object { + "borderType": "single", + "color": "000000", + "position": "bottom", + "size": 2, + "space": 0, + }, + "insideH": Object { + "borderType": "single", + "color": "000000", + "position": "insideH", + "size": 2, + "space": 0, + }, + "insideV": Object { + "borderType": "single", + "color": "000000", + "position": "insideV", + "size": 2, + "space": 0, + }, + "left": Object { + "borderType": "single", + "color": "000000", + "position": "left", + "size": 2, + "space": 0, + }, + "right": Object { + "borderType": "single", + "color": "000000", + "position": "right", + "size": 2, + "space": 0, + }, + "top": Object { + "borderType": "single", + "color": "000000", + "position": "top", + "size": 2, + "space": 0, + }, + }, + "justification": "left", + "width": Object { + "width": 0, + "widthType": "auto", + }, + }, + }, + Object { + "basedOn": null, + "name": "Note2", + "next": null, + "paragraphProperty": Object { + "alignment": "both", + "lineSpacing": Object { + "before": 120, + "line": 280, + "lineRule": "atLeast", + }, + "numberingProperty": Object { + "id": 25, + "level": null, + }, + "runProperty": Object {}, + "tabs": Array [], + }, + "runProperty": Object { + "color": "000000", + "fonts": Object { + "ascii": "Times New Roman", + "hiAnsi": "Times New Roman", + }, + "italic": true, + "italicCs": true, + }, + "styleId": "Note2", + "styleType": "paragraph", + "tableCellProperty": Object { + "borders": null, + "gridSpan": null, + "shading": null, + "textDirection": null, + "verticalAlign": null, + "verticalMerge": null, + "width": null, + }, + "tableProperty": Object { + "borders": Object { + "bottom": Object { + "borderType": "single", + "color": "000000", + "position": "bottom", + "size": 2, + "space": 0, + }, + "insideH": Object { + "borderType": "single", + "color": "000000", + "position": "insideH", + "size": 2, + "space": 0, + }, + "insideV": Object { + "borderType": "single", + "color": "000000", + "position": "insideV", + "size": 2, + "space": 0, + }, + "left": Object { + "borderType": "single", + "color": "000000", + "position": "left", + "size": 2, + "space": 0, + }, + "right": Object { + "borderType": "single", + "color": "000000", + "position": "right", + "size": 2, + "space": 0, + }, + "top": Object { + "borderType": "single", + "color": "000000", + "position": "top", + "size": 2, + "space": 0, + }, + }, + "justification": "left", + "width": Object { + "width": 0, + "widthType": "auto", + }, + }, + }, + Object { + "basedOn": null, + "name": "Note3", + "next": null, + "paragraphProperty": Object { + "alignment": "both", + "lineSpacing": Object { + "before": 120, + "line": 280, + "lineRule": "atLeast", + }, + "numberingProperty": Object { + "id": 26, + "level": null, + }, + "runProperty": Object {}, + "tabs": Array [], + }, + "runProperty": Object { + "fonts": Object { + "ascii": "Times New Roman", + "hiAnsi": "Times New Roman", + }, + "italic": true, + "italicCs": true, + }, + "styleId": "Note3", + "styleType": "paragraph", + "tableCellProperty": Object { + "borders": null, + "gridSpan": null, + "shading": null, + "textDirection": null, + "verticalAlign": null, + "verticalMerge": null, + "width": null, + }, + "tableProperty": Object { + "borders": Object { + "bottom": Object { + "borderType": "single", + "color": "000000", + "position": "bottom", + "size": 2, + "space": 0, + }, + "insideH": Object { + "borderType": "single", + "color": "000000", + "position": "insideH", + "size": 2, + "space": 0, + }, + "insideV": Object { + "borderType": "single", + "color": "000000", + "position": "insideV", + "size": 2, + "space": 0, + }, + "left": Object { + "borderType": "single", + "color": "000000", + "position": "left", + "size": 2, + "space": 0, + }, + "right": Object { + "borderType": "single", + "color": "000000", + "position": "right", + "size": 2, + "space": 0, + }, + "top": Object { + "borderType": "single", + "color": "000000", + "position": "top", + "size": 2, + "space": 0, + }, + }, + "justification": "left", + "width": Object { + "width": 0, + "widthType": "auto", + }, + }, + }, + Object { + "basedOn": null, + "name": "Bullet2", + "next": null, + "paragraphProperty": Object { + "alignment": "both", + "indent": Object { + "end": null, + "firstLineChars": null, + "hangingChars": null, + "specialIndent": Object { + "type": "hanging", + "val": 567, + }, + "start": 2268, + "startChars": null, + }, + "lineSpacing": Object { + "before": 120, + "line": 280, + "lineRule": "atLeast", + }, + "numberingProperty": Object { + "id": 24, + "level": null, + }, + "runProperty": Object {}, + "tabs": Array [], + }, + "runProperty": Object { + "fonts": Object { + "ascii": "Times New Roman", + "hiAnsi": "Times New Roman", + }, + "sz": 24, + "szCs": 24, + }, + "styleId": "Bullet2", + "styleType": "paragraph", + "tableCellProperty": Object { + "borders": null, + "gridSpan": null, + "shading": null, + "textDirection": null, + "verticalAlign": null, + "verticalMerge": null, + "width": null, + }, + "tableProperty": Object { + "borders": Object { + "bottom": Object { + "borderType": "single", + "color": "000000", + "position": "bottom", + "size": 2, + "space": 0, + }, + "insideH": Object { + "borderType": "single", + "color": "000000", + "position": "insideH", + "size": 2, + "space": 0, + }, + "insideV": Object { + "borderType": "single", + "color": "000000", + "position": "insideV", + "size": 2, + "space": 0, + }, + "left": Object { + "borderType": "single", + "color": "000000", + "position": "left", + "size": 2, + "space": 0, + }, + "right": Object { + "borderType": "single", + "color": "000000", + "position": "right", + "size": 2, + "space": 0, + }, + "top": Object { + "borderType": "single", + "color": "000000", + "position": "top", + "size": 2, + "space": 0, + }, + }, + "justification": "left", + "width": Object { + "width": 0, + "widthType": "auto", + }, + }, + }, + Object { + "basedOn": null, + "name": "Sentence indent3", + "next": null, + "paragraphProperty": Object { + "alignment": "both", + "indent": Object { + "end": null, + "firstLineChars": null, + "hangingChars": null, + "specialIndent": null, + "start": 2268, + "startChars": null, + }, + "lineSpacing": Object { + "before": 120, + "line": 280, + "lineRule": "atLeast", + }, + "runProperty": Object {}, + "tabs": Array [], + }, + "runProperty": Object { + "fonts": Object { + "ascii": "Times New Roman", + "eastAsia": "ゴシック", + "hiAnsi": "Times New Roman", + }, + "sz": 24, + "szCs": 24, + }, + "styleId": "Sentenceindent3", + "styleType": "paragraph", + "tableCellProperty": Object { + "borders": null, + "gridSpan": null, + "shading": null, + "textDirection": null, + "verticalAlign": null, + "verticalMerge": null, + "width": null, + }, + "tableProperty": Object { + "borders": Object { + "bottom": Object { + "borderType": "single", + "color": "000000", + "position": "bottom", + "size": 2, + "space": 0, + }, + "insideH": Object { + "borderType": "single", + "color": "000000", + "position": "insideH", + "size": 2, + "space": 0, + }, + "insideV": Object { + "borderType": "single", + "color": "000000", + "position": "insideV", + "size": 2, + "space": 0, + }, + "left": Object { + "borderType": "single", + "color": "000000", + "position": "left", + "size": 2, + "space": 0, + }, + "right": Object { + "borderType": "single", + "color": "000000", + "position": "right", + "size": 2, + "space": 0, + }, + "top": Object { + "borderType": "single", + "color": "000000", + "position": "top", + "size": 2, + "space": 0, + }, + }, + "justification": "left", + "width": Object { + "width": 0, + "widthType": "auto", + }, + }, + }, + Object { + "basedOn": "a7", + "name": "Body Text", + "next": null, + "paragraphProperty": Object { + "runProperty": Object {}, + "tabs": Array [], + }, + "runProperty": Object { + "sz": 18, + "szCs": 18, + }, + "styleId": "af9", + "styleType": "paragraph", + "tableCellProperty": Object { + "borders": null, + "gridSpan": null, + "shading": null, + "textDirection": null, + "verticalAlign": null, + "verticalMerge": null, + "width": null, + }, + "tableProperty": Object { + "borders": Object { + "bottom": Object { + "borderType": "single", + "color": "000000", + "position": "bottom", + "size": 2, + "space": 0, + }, + "insideH": Object { + "borderType": "single", + "color": "000000", + "position": "insideH", + "size": 2, + "space": 0, + }, + "insideV": Object { + "borderType": "single", + "color": "000000", + "position": "insideV", + "size": 2, + "space": 0, + }, + "left": Object { + "borderType": "single", + "color": "000000", + "position": "left", + "size": 2, + "space": 0, + }, + "right": Object { + "borderType": "single", + "color": "000000", + "position": "right", + "size": 2, + "space": 0, + }, + "top": Object { + "borderType": "single", + "color": "000000", + "position": "top", + "size": 2, + "space": 0, + }, + }, + "justification": "left", + "width": Object { + "width": 0, + "widthType": "auto", + }, + }, + }, + Object { + "basedOn": "a7", + "name": "font5", + "next": null, + "paragraphProperty": Object { + "alignment": "left", + "lineSpacing": Object { + "after": 100, + "before": 100, + "line": 240, + "lineRule": "auto", + }, + "runProperty": Object {}, + "tabs": Array [], + "widowControl": true, + }, + "runProperty": Object { + "fonts": Object { + "ascii": "MS Pゴシック", + "eastAsia": "MS Pゴシック", + "hiAnsi": "Century", + "hint": "eastAsia", + }, + "sz": 12, + "szCs": 12, + }, + "styleId": "font5", + "styleType": "paragraph", + "tableCellProperty": Object { + "borders": null, + "gridSpan": null, + "shading": null, + "textDirection": null, + "verticalAlign": null, + "verticalMerge": null, + "width": null, + }, + "tableProperty": Object { + "borders": Object { + "bottom": Object { + "borderType": "single", + "color": "000000", + "position": "bottom", + "size": 2, + "space": 0, + }, + "insideH": Object { + "borderType": "single", + "color": "000000", + "position": "insideH", + "size": 2, + "space": 0, + }, + "insideV": Object { + "borderType": "single", + "color": "000000", + "position": "insideV", + "size": 2, + "space": 0, + }, + "left": Object { + "borderType": "single", + "color": "000000", + "position": "left", + "size": 2, + "space": 0, + }, + "right": Object { + "borderType": "single", + "color": "000000", + "position": "right", + "size": 2, + "space": 0, + }, + "top": Object { + "borderType": "single", + "color": "000000", + "position": "top", + "size": 2, + "space": 0, + }, + }, + "justification": "left", + "width": Object { + "width": 0, + "widthType": "auto", + }, + }, + }, + Object { + "basedOn": "a7", + "name": "(a)箇条書き", + "next": null, + "paragraphProperty": Object { + "runProperty": Object {}, + "tabs": Array [], + }, + "runProperty": Object {}, + "styleId": "afb", + "styleType": "paragraph", + "tableCellProperty": Object { + "borders": null, + "gridSpan": null, + "shading": null, + "textDirection": null, + "verticalAlign": null, + "verticalMerge": null, + "width": null, + }, + "tableProperty": Object { + "borders": Object { + "bottom": Object { + "borderType": "single", + "color": "000000", + "position": "bottom", + "size": 2, + "space": 0, + }, + "insideH": Object { + "borderType": "single", + "color": "000000", + "position": "insideH", + "size": 2, + "space": 0, + }, + "insideV": Object { + "borderType": "single", + "color": "000000", + "position": "insideV", + "size": 2, + "space": 0, + }, + "left": Object { + "borderType": "single", + "color": "000000", + "position": "left", + "size": 2, + "space": 0, + }, + "right": Object { + "borderType": "single", + "color": "000000", + "position": "right", + "size": 2, + "space": 0, + }, + "top": Object { + "borderType": "single", + "color": "000000", + "position": "top", + "size": 2, + "space": 0, + }, + }, + "justification": "left", + "width": Object { + "width": 0, + "widthType": "auto", + }, + }, + }, + Object { + "basedOn": "a7", + "name": "並列", + "next": null, + "paragraphProperty": Object { + "indent": Object { + "end": null, + "firstLineChars": null, + "hangingChars": null, + "specialIndent": Object { + "type": "hanging", + "val": 454, + }, + "start": 2160, + "startChars": null, + }, + "lineSpacing": Object { + "before": 120, + "line": 280, + "lineRule": "exact", + }, + "runProperty": Object {}, + "tabs": Array [], + }, + "runProperty": Object { + "fonts": Object { + "ascii": "MS Pゴシック", + "eastAsia": "MS Pゴシック", + "hiAnsi": "Wingdings", + }, + "sz": 20, + "szCs": 20, + }, + "styleId": "afc", + "styleType": "paragraph", + "tableCellProperty": Object { + "borders": null, + "gridSpan": null, + "shading": null, + "textDirection": null, + "verticalAlign": null, + "verticalMerge": null, + "width": null, + }, + "tableProperty": Object { + "borders": Object { + "bottom": Object { + "borderType": "single", + "color": "000000", + "position": "bottom", + "size": 2, + "space": 0, + }, + "insideH": Object { + "borderType": "single", + "color": "000000", + "position": "insideH", + "size": 2, + "space": 0, + }, + "insideV": Object { + "borderType": "single", + "color": "000000", + "position": "insideV", + "size": 2, + "space": 0, + }, + "left": Object { + "borderType": "single", + "color": "000000", + "position": "left", + "size": 2, + "space": 0, + }, + "right": Object { + "borderType": "single", + "color": "000000", + "position": "right", + "size": 2, + "space": 0, + }, + "top": Object { + "borderType": "single", + "color": "000000", + "position": "top", + "size": 2, + "space": 0, + }, + }, + "justification": "left", + "width": Object { + "width": 0, + "widthType": "auto", + }, + }, + }, + Object { + "basedOn": "a7", + "name": "Date", + "next": null, + "paragraphProperty": Object { + "alignment": "right", + "lineSpacing": Object { + "line": 240, + "lineRule": "auto", + }, + "runProperty": Object {}, + "tabs": Array [], + }, + "runProperty": Object { + "fonts": Object { + "ascii": "Century", + "eastAsia": "Mincho", + "hiAnsi": "Century", + }, + "sz": 36, + "szCs": 36, + }, + "styleId": "afd", + "styleType": "paragraph", + "tableCellProperty": Object { + "borders": null, + "gridSpan": null, + "shading": null, + "textDirection": null, + "verticalAlign": null, + "verticalMerge": null, + "width": null, + }, + "tableProperty": Object { + "borders": Object { + "bottom": Object { + "borderType": "single", + "color": "000000", + "position": "bottom", + "size": 2, + "space": 0, + }, + "insideH": Object { + "borderType": "single", + "color": "000000", + "position": "insideH", + "size": 2, + "space": 0, + }, + "insideV": Object { + "borderType": "single", + "color": "000000", + "position": "insideV", + "size": 2, + "space": 0, + }, + "left": Object { + "borderType": "single", + "color": "000000", + "position": "left", + "size": 2, + "space": 0, + }, + "right": Object { + "borderType": "single", + "color": "000000", + "position": "right", + "size": 2, + "space": 0, + }, + "top": Object { + "borderType": "single", + "color": "000000", + "position": "top", + "size": 2, + "space": 0, + }, + }, + "justification": "left", + "width": Object { + "width": 0, + "widthType": "auto", + }, + }, + }, + Object { + "basedOn": "a7", + "name": "Closing", + "next": null, + "paragraphProperty": Object { + "alignment": "right", + "lineSpacing": Object { + "line": 240, + "lineRule": "auto", + }, + "runProperty": Object {}, + "tabs": Array [], + }, + "runProperty": Object { + "fonts": Object { + "ascii": "Century", + "eastAsia": "Mincho", + "hiAnsi": "Century", + }, + "sz": 24, + "szCs": 24, + }, + "styleId": "afe", + "styleType": "paragraph", + "tableCellProperty": Object { + "borders": null, + "gridSpan": null, + "shading": null, + "textDirection": null, + "verticalAlign": null, + "verticalMerge": null, + "width": null, + }, + "tableProperty": Object { + "borders": Object { + "bottom": Object { + "borderType": "single", + "color": "000000", + "position": "bottom", + "size": 2, + "space": 0, + }, + "insideH": Object { + "borderType": "single", + "color": "000000", + "position": "insideH", + "size": 2, + "space": 0, + }, + "insideV": Object { + "borderType": "single", + "color": "000000", + "position": "insideV", + "size": 2, + "space": 0, + }, + "left": Object { + "borderType": "single", + "color": "000000", + "position": "left", + "size": 2, + "space": 0, + }, + "right": Object { + "borderType": "single", + "color": "000000", + "position": "right", + "size": 2, + "space": 0, + }, + "top": Object { + "borderType": "single", + "color": "000000", + "position": "top", + "size": 2, + "space": 0, + }, + }, + "justification": "left", + "width": Object { + "width": 0, + "widthType": "auto", + }, + }, + }, + Object { + "basedOn": "a7", + "name": "本文 21", + "next": null, + "paragraphProperty": Object { + "alignment": "left", + "indent": Object { + "end": null, + "firstLineChars": null, + "hangingChars": null, + "specialIndent": Object { + "type": "hanging", + "val": 2160, + }, + "start": 3060, + "startChars": null, + }, + "lineSpacing": Object { + "line": 240, + "lineRule": "auto", + }, + "runProperty": Object {}, + "tabs": Array [], + }, + "runProperty": Object { + "fonts": Object { + "ascii": "MS 明朝", + "eastAsia": "MS 明朝", + "hiAnsi": "Century", + }, + "sz": 22, + "szCs": 22, + }, + "styleId": "210", + "styleType": "paragraph", + "tableCellProperty": Object { + "borders": null, + "gridSpan": null, + "shading": null, + "textDirection": null, + "verticalAlign": null, + "verticalMerge": null, + "width": null, + }, + "tableProperty": Object { + "borders": Object { + "bottom": Object { + "borderType": "single", + "color": "000000", + "position": "bottom", + "size": 2, + "space": 0, + }, + "insideH": Object { + "borderType": "single", + "color": "000000", + "position": "insideH", + "size": 2, + "space": 0, + }, + "insideV": Object { + "borderType": "single", + "color": "000000", + "position": "insideV", + "size": 2, + "space": 0, + }, + "left": Object { + "borderType": "single", + "color": "000000", + "position": "left", + "size": 2, + "space": 0, + }, + "right": Object { + "borderType": "single", + "color": "000000", + "position": "right", + "size": 2, + "space": 0, + }, + "top": Object { + "borderType": "single", + "color": "000000", + "position": "top", + "size": 2, + "space": 0, + }, + }, + "justification": "left", + "width": Object { + "width": 0, + "widthType": "auto", + }, + }, + }, + Object { + "basedOn": "a7", + "name": "本文インデント2", + "next": null, + "paragraphProperty": Object { + "indent": Object { + "end": null, + "firstLineChars": null, + "hangingChars": null, + "specialIndent": null, + "start": 1588, + "startChars": null, + }, + "lineSpacing": Object { + "before": 120, + "line": 280, + "lineRule": "exact", + }, + "runProperty": Object {}, + "tabs": Array [], + }, + "runProperty": Object { + "fonts": Object { + "hiAnsi": "Times New Roman", + }, + }, + "styleId": "26", + "styleType": "paragraph", + "tableCellProperty": Object { + "borders": null, + "gridSpan": null, + "shading": null, + "textDirection": null, + "verticalAlign": null, + "verticalMerge": null, + "width": null, + }, + "tableProperty": Object { + "borders": Object { + "bottom": Object { + "borderType": "single", + "color": "000000", + "position": "bottom", + "size": 2, + "space": 0, + }, + "insideH": Object { + "borderType": "single", + "color": "000000", + "position": "insideH", + "size": 2, + "space": 0, + }, + "insideV": Object { + "borderType": "single", + "color": "000000", + "position": "insideV", + "size": 2, + "space": 0, + }, + "left": Object { + "borderType": "single", + "color": "000000", + "position": "left", + "size": 2, + "space": 0, + }, + "right": Object { + "borderType": "single", + "color": "000000", + "position": "right", + "size": 2, + "space": 0, + }, + "top": Object { + "borderType": "single", + "color": "000000", + "position": "top", + "size": 2, + "space": 0, + }, + }, + "justification": "left", + "width": Object { + "width": 0, + "widthType": "auto", + }, + }, + }, + Object { + "basedOn": "a7", + "name": "日付1", + "next": null, + "paragraphProperty": Object { + "alignment": "right", + "lineSpacing": Object { + "line": 240, + "lineRule": "auto", + }, + "runProperty": Object {}, + "tabs": Array [], + }, + "runProperty": Object { + "fonts": Object { + "ascii": "Mincho", + "eastAsia": "MS 明朝", + "hiAnsi": "Century", + }, + "sz": 24, + "szCs": 24, + }, + "styleId": "14", + "styleType": "paragraph", + "tableCellProperty": Object { + "borders": null, + "gridSpan": null, + "shading": null, + "textDirection": null, + "verticalAlign": null, + "verticalMerge": null, + "width": null, + }, + "tableProperty": Object { + "borders": Object { + "bottom": Object { + "borderType": "single", + "color": "000000", + "position": "bottom", + "size": 2, + "space": 0, + }, + "insideH": Object { + "borderType": "single", + "color": "000000", + "position": "insideH", + "size": 2, + "space": 0, + }, + "insideV": Object { + "borderType": "single", + "color": "000000", + "position": "insideV", + "size": 2, + "space": 0, + }, + "left": Object { + "borderType": "single", + "color": "000000", + "position": "left", + "size": 2, + "space": 0, + }, + "right": Object { + "borderType": "single", + "color": "000000", + "position": "right", + "size": 2, + "space": 0, + }, + "top": Object { + "borderType": "single", + "color": "000000", + "position": "top", + "size": 2, + "space": 0, + }, + }, + "justification": "left", + "width": Object { + "width": 0, + "widthType": "auto", + }, + }, + }, + Object { + "basedOn": "Nounphrase", + "name": "Reference", + "next": null, + "paragraphProperty": Object { + "numberingProperty": Object { + "id": 28, + "level": null, + }, + "runProperty": Object {}, + "tabs": Array [], + }, + "runProperty": Object { + "fonts": Object { + "eastAsia": "Mincho", + }, + "italic": true, + "italicCs": true, + "sz": 20, + "szCs": 20, + }, + "styleId": "Reference", + "styleType": "paragraph", + "tableCellProperty": Object { + "borders": null, + "gridSpan": null, + "shading": null, + "textDirection": null, + "verticalAlign": null, + "verticalMerge": null, + "width": null, + }, + "tableProperty": Object { + "borders": Object { + "bottom": Object { + "borderType": "single", + "color": "000000", + "position": "bottom", + "size": 2, + "space": 0, + }, + "insideH": Object { + "borderType": "single", + "color": "000000", + "position": "insideH", + "size": 2, + "space": 0, + }, + "insideV": Object { + "borderType": "single", + "color": "000000", + "position": "insideV", + "size": 2, + "space": 0, + }, + "left": Object { + "borderType": "single", + "color": "000000", + "position": "left", + "size": 2, + "space": 0, + }, + "right": Object { + "borderType": "single", + "color": "000000", + "position": "right", + "size": 2, + "space": 0, + }, + "top": Object { + "borderType": "single", + "color": "000000", + "position": "top", + "size": 2, + "space": 0, + }, + }, + "justification": "left", + "width": Object { + "width": 0, + "widthType": "auto", + }, + }, + }, + Object { + "basedOn": "a7", + "name": "Note Heading", + "next": null, + "paragraphProperty": Object { + "alignment": "center", + "lineSpacing": Object { + "line": 240, + "lineRule": "auto", + }, + "runProperty": Object {}, + "tabs": Array [], + }, + "runProperty": Object { + "fonts": Object { + "ascii": "Times New Roman", + "eastAsia": "Mincho", + "hiAnsi": "Times New Roman", + }, + }, + "styleId": "aff", + "styleType": "paragraph", + "tableCellProperty": Object { + "borders": null, + "gridSpan": null, + "shading": null, + "textDirection": null, + "verticalAlign": null, + "verticalMerge": null, + "width": null, + }, + "tableProperty": Object { + "borders": Object { + "bottom": Object { + "borderType": "single", + "color": "000000", + "position": "bottom", + "size": 2, + "space": 0, + }, + "insideH": Object { + "borderType": "single", + "color": "000000", + "position": "insideH", + "size": 2, + "space": 0, + }, + "insideV": Object { + "borderType": "single", + "color": "000000", + "position": "insideV", + "size": 2, + "space": 0, + }, + "left": Object { + "borderType": "single", + "color": "000000", + "position": "left", + "size": 2, + "space": 0, + }, + "right": Object { + "borderType": "single", + "color": "000000", + "position": "right", + "size": 2, + "space": 0, + }, + "top": Object { + "borderType": "single", + "color": "000000", + "position": "top", + "size": 2, + "space": 0, + }, + }, + "justification": "left", + "width": Object { + "width": 0, + "widthType": "auto", + }, + }, + }, + Object { + "basedOn": "af7", + "name": "表紙の日付他", + "next": null, + "paragraphProperty": Object { + "alignment": "right", + "keepLines": true, + "keepNext": true, + "lineSpacing": Object { + "after": 120, + }, + "runProperty": Object {}, + "tabs": Array [], + "widowControl": true, + }, + "runProperty": Object { + "bold": true, + "boldCs": true, + "fonts": Object { + "ascii": "Arial", + "eastAsia": "MS ゴシック", + "hiAnsi": "Arial", + }, + "sz": 28, + "szCs": 28, + }, + "styleId": "aff0", + "styleType": "paragraph", + "tableCellProperty": Object { + "borders": null, + "gridSpan": null, + "shading": null, + "textDirection": null, + "verticalAlign": null, + "verticalMerge": null, + "width": null, + }, + "tableProperty": Object { + "borders": Object { + "bottom": Object { + "borderType": "single", + "color": "000000", + "position": "bottom", + "size": 2, + "space": 0, + }, + "insideH": Object { + "borderType": "single", + "color": "000000", + "position": "insideH", + "size": 2, + "space": 0, + }, + "insideV": Object { + "borderType": "single", + "color": "000000", + "position": "insideV", + "size": 2, + "space": 0, + }, + "left": Object { + "borderType": "single", + "color": "000000", + "position": "left", + "size": 2, + "space": 0, + }, + "right": Object { + "borderType": "single", + "color": "000000", + "position": "right", + "size": 2, + "space": 0, + }, + "top": Object { + "borderType": "single", + "color": "000000", + "position": "top", + "size": 2, + "space": 0, + }, + }, + "justification": "left", + "width": Object { + "width": 0, + "widthType": "auto", + }, + }, + }, + Object { + "basedOn": "a7", + "name": "xl31", + "next": null, + "paragraphProperty": Object { + "alignment": "center", + "lineSpacing": Object { + "after": 100, + "before": 100, + "line": 240, + "lineRule": "auto", + }, + "runProperty": Object {}, + "tabs": Array [], + "widowControl": true, + }, + "runProperty": Object { + "fonts": Object { + "ascii": "MS Pゴシック", + "eastAsia": "MS Pゴシック", + "hiAnsi": "Century", + }, + "sz": 20, + "szCs": 20, + }, + "styleId": "xl31", + "styleType": "paragraph", + "tableCellProperty": Object { + "borders": null, + "gridSpan": null, + "shading": null, + "textDirection": null, + "verticalAlign": null, + "verticalMerge": null, + "width": null, + }, + "tableProperty": Object { + "borders": Object { + "bottom": Object { + "borderType": "single", + "color": "000000", + "position": "bottom", + "size": 2, + "space": 0, + }, + "insideH": Object { + "borderType": "single", + "color": "000000", + "position": "insideH", + "size": 2, + "space": 0, + }, + "insideV": Object { + "borderType": "single", + "color": "000000", + "position": "insideV", + "size": 2, + "space": 0, + }, + "left": Object { + "borderType": "single", + "color": "000000", + "position": "left", + "size": 2, + "space": 0, + }, + "right": Object { + "borderType": "single", + "color": "000000", + "position": "right", + "size": 2, + "space": 0, + }, + "top": Object { + "borderType": "single", + "color": "000000", + "position": "top", + "size": 2, + "space": 0, + }, + }, + "justification": "left", + "width": Object { + "width": 0, + "widthType": "auto", + }, + }, + }, + Object { + "basedOn": "a7", + "name": "table of figures", + "next": null, + "paragraphProperty": Object { + "indent": Object { + "end": null, + "firstLineChars": null, + "hangingChars": 200, + "specialIndent": Object { + "type": "hanging", + "val": 425, + }, + "start": 850, + "startChars": 200, + }, + "runProperty": Object {}, + "tabs": Array [], + }, + "runProperty": Object {}, + "styleId": "aff1", + "styleType": "paragraph", + "tableCellProperty": Object { + "borders": null, + "gridSpan": null, + "shading": null, + "textDirection": null, + "verticalAlign": null, + "verticalMerge": null, + "width": null, + }, + "tableProperty": Object { + "borders": Object { + "bottom": Object { + "borderType": "single", + "color": "000000", + "position": "bottom", + "size": 2, + "space": 0, + }, + "insideH": Object { + "borderType": "single", + "color": "000000", + "position": "insideH", + "size": 2, + "space": 0, + }, + "insideV": Object { + "borderType": "single", + "color": "000000", + "position": "insideV", + "size": 2, + "space": 0, + }, + "left": Object { + "borderType": "single", + "color": "000000", + "position": "left", + "size": 2, + "space": 0, + }, + "right": Object { + "borderType": "single", + "color": "000000", + "position": "right", + "size": 2, + "space": 0, + }, + "top": Object { + "borderType": "single", + "color": "000000", + "position": "top", + "size": 2, + "space": 0, + }, + }, + "justification": "left", + "width": Object { + "width": 0, + "widthType": "auto", + }, + }, + }, + Object { + "basedOn": "a7", + "name": "index 1", + "next": null, + "paragraphProperty": Object { + "indent": Object { + "end": null, + "firstLineChars": null, + "hangingChars": 100, + "specialIndent": Object { + "type": "hanging", + "val": 210, + }, + "start": 210, + "startChars": null, + }, + "runProperty": Object {}, + "tabs": Array [], + }, + "runProperty": Object {}, + "styleId": "15", + "styleType": "paragraph", + "tableCellProperty": Object { + "borders": null, + "gridSpan": null, + "shading": null, + "textDirection": null, + "verticalAlign": null, + "verticalMerge": null, + "width": null, + }, + "tableProperty": Object { + "borders": Object { + "bottom": Object { + "borderType": "single", + "color": "000000", + "position": "bottom", + "size": 2, + "space": 0, + }, + "insideH": Object { + "borderType": "single", + "color": "000000", + "position": "insideH", + "size": 2, + "space": 0, + }, + "insideV": Object { + "borderType": "single", + "color": "000000", + "position": "insideV", + "size": 2, + "space": 0, + }, + "left": Object { + "borderType": "single", + "color": "000000", + "position": "left", + "size": 2, + "space": 0, + }, + "right": Object { + "borderType": "single", + "color": "000000", + "position": "right", + "size": 2, + "space": 0, + }, + "top": Object { + "borderType": "single", + "color": "000000", + "position": "top", + "size": 2, + "space": 0, + }, + }, + "justification": "left", + "width": Object { + "width": 0, + "widthType": "auto", + }, + }, + }, + Object { + "basedOn": "a7", + "name": "index 2", + "next": null, + "paragraphProperty": Object { + "indent": Object { + "end": null, + "firstLineChars": null, + "hangingChars": 100, + "specialIndent": Object { + "type": "hanging", + "val": 210, + }, + "start": 100, + "startChars": 100, + }, + "runProperty": Object {}, + "tabs": Array [], + }, + "runProperty": Object {}, + "styleId": "27", + "styleType": "paragraph", + "tableCellProperty": Object { + "borders": null, + "gridSpan": null, + "shading": null, + "textDirection": null, + "verticalAlign": null, + "verticalMerge": null, + "width": null, + }, + "tableProperty": Object { + "borders": Object { + "bottom": Object { + "borderType": "single", + "color": "000000", + "position": "bottom", + "size": 2, + "space": 0, + }, + "insideH": Object { + "borderType": "single", + "color": "000000", + "position": "insideH", + "size": 2, + "space": 0, + }, + "insideV": Object { + "borderType": "single", + "color": "000000", + "position": "insideV", + "size": 2, + "space": 0, + }, + "left": Object { + "borderType": "single", + "color": "000000", + "position": "left", + "size": 2, + "space": 0, + }, + "right": Object { + "borderType": "single", + "color": "000000", + "position": "right", + "size": 2, + "space": 0, + }, + "top": Object { + "borderType": "single", + "color": "000000", + "position": "top", + "size": 2, + "space": 0, + }, + }, + "justification": "left", + "width": Object { + "width": 0, + "widthType": "auto", + }, + }, + }, + Object { + "basedOn": "a7", + "name": "index 3", + "next": null, + "paragraphProperty": Object { + "indent": Object { + "end": null, + "firstLineChars": null, + "hangingChars": 100, + "specialIndent": Object { + "type": "hanging", + "val": 210, + }, + "start": 200, + "startChars": 200, + }, + "runProperty": Object {}, + "tabs": Array [], + }, + "runProperty": Object {}, + "styleId": "35", + "styleType": "paragraph", + "tableCellProperty": Object { + "borders": null, + "gridSpan": null, + "shading": null, + "textDirection": null, + "verticalAlign": null, + "verticalMerge": null, + "width": null, + }, + "tableProperty": Object { + "borders": Object { + "bottom": Object { + "borderType": "single", + "color": "000000", + "position": "bottom", + "size": 2, + "space": 0, + }, + "insideH": Object { + "borderType": "single", + "color": "000000", + "position": "insideH", + "size": 2, + "space": 0, + }, + "insideV": Object { + "borderType": "single", + "color": "000000", + "position": "insideV", + "size": 2, + "space": 0, + }, + "left": Object { + "borderType": "single", + "color": "000000", + "position": "left", + "size": 2, + "space": 0, + }, + "right": Object { + "borderType": "single", + "color": "000000", + "position": "right", + "size": 2, + "space": 0, + }, + "top": Object { + "borderType": "single", + "color": "000000", + "position": "top", + "size": 2, + "space": 0, + }, + }, + "justification": "left", + "width": Object { + "width": 0, + "widthType": "auto", + }, + }, + }, + Object { + "basedOn": "a7", + "name": "index 4", + "next": null, + "paragraphProperty": Object { + "indent": Object { + "end": null, + "firstLineChars": null, + "hangingChars": 100, + "specialIndent": Object { + "type": "hanging", + "val": 210, + }, + "start": 300, + "startChars": 300, + }, + "runProperty": Object {}, + "tabs": Array [], + }, + "runProperty": Object {}, + "styleId": "43", + "styleType": "paragraph", + "tableCellProperty": Object { + "borders": null, + "gridSpan": null, + "shading": null, + "textDirection": null, + "verticalAlign": null, + "verticalMerge": null, + "width": null, + }, + "tableProperty": Object { + "borders": Object { + "bottom": Object { + "borderType": "single", + "color": "000000", + "position": "bottom", + "size": 2, + "space": 0, + }, + "insideH": Object { + "borderType": "single", + "color": "000000", + "position": "insideH", + "size": 2, + "space": 0, + }, + "insideV": Object { + "borderType": "single", + "color": "000000", + "position": "insideV", + "size": 2, + "space": 0, + }, + "left": Object { + "borderType": "single", + "color": "000000", + "position": "left", + "size": 2, + "space": 0, + }, + "right": Object { + "borderType": "single", + "color": "000000", + "position": "right", + "size": 2, + "space": 0, + }, + "top": Object { + "borderType": "single", + "color": "000000", + "position": "top", + "size": 2, + "space": 0, + }, + }, + "justification": "left", + "width": Object { + "width": 0, + "widthType": "auto", + }, + }, + }, + Object { + "basedOn": "a7", + "name": "index 5", + "next": null, + "paragraphProperty": Object { + "indent": Object { + "end": null, + "firstLineChars": null, + "hangingChars": 100, + "specialIndent": Object { + "type": "hanging", + "val": 210, + }, + "start": 400, + "startChars": 400, + }, + "runProperty": Object {}, + "tabs": Array [], + }, + "runProperty": Object {}, + "styleId": "53", + "styleType": "paragraph", + "tableCellProperty": Object { + "borders": null, + "gridSpan": null, + "shading": null, + "textDirection": null, + "verticalAlign": null, + "verticalMerge": null, + "width": null, + }, + "tableProperty": Object { + "borders": Object { + "bottom": Object { + "borderType": "single", + "color": "000000", + "position": "bottom", + "size": 2, + "space": 0, + }, + "insideH": Object { + "borderType": "single", + "color": "000000", + "position": "insideH", + "size": 2, + "space": 0, + }, + "insideV": Object { + "borderType": "single", + "color": "000000", + "position": "insideV", + "size": 2, + "space": 0, + }, + "left": Object { + "borderType": "single", + "color": "000000", + "position": "left", + "size": 2, + "space": 0, + }, + "right": Object { + "borderType": "single", + "color": "000000", + "position": "right", + "size": 2, + "space": 0, + }, + "top": Object { + "borderType": "single", + "color": "000000", + "position": "top", + "size": 2, + "space": 0, + }, + }, + "justification": "left", + "width": Object { + "width": 0, + "widthType": "auto", + }, + }, + }, + Object { + "basedOn": "a7", + "name": "index 6", + "next": null, + "paragraphProperty": Object { + "indent": Object { + "end": null, + "firstLineChars": null, + "hangingChars": 100, + "specialIndent": Object { + "type": "hanging", + "val": 210, + }, + "start": 500, + "startChars": 500, + }, + "runProperty": Object {}, + "tabs": Array [], + }, + "runProperty": Object {}, + "styleId": "61", + "styleType": "paragraph", + "tableCellProperty": Object { + "borders": null, + "gridSpan": null, + "shading": null, + "textDirection": null, + "verticalAlign": null, + "verticalMerge": null, + "width": null, + }, + "tableProperty": Object { + "borders": Object { + "bottom": Object { + "borderType": "single", + "color": "000000", + "position": "bottom", + "size": 2, + "space": 0, + }, + "insideH": Object { + "borderType": "single", + "color": "000000", + "position": "insideH", + "size": 2, + "space": 0, + }, + "insideV": Object { + "borderType": "single", + "color": "000000", + "position": "insideV", + "size": 2, + "space": 0, + }, + "left": Object { + "borderType": "single", + "color": "000000", + "position": "left", + "size": 2, + "space": 0, + }, + "right": Object { + "borderType": "single", + "color": "000000", + "position": "right", + "size": 2, + "space": 0, + }, + "top": Object { + "borderType": "single", + "color": "000000", + "position": "top", + "size": 2, + "space": 0, + }, + }, + "justification": "left", + "width": Object { + "width": 0, + "widthType": "auto", + }, + }, + }, + Object { + "basedOn": "a7", + "name": "index 7", + "next": null, + "paragraphProperty": Object { + "indent": Object { + "end": null, + "firstLineChars": null, + "hangingChars": 100, + "specialIndent": Object { + "type": "hanging", + "val": 210, + }, + "start": 600, + "startChars": 600, + }, + "runProperty": Object {}, + "tabs": Array [], + }, + "runProperty": Object {}, + "styleId": "71", + "styleType": "paragraph", + "tableCellProperty": Object { + "borders": null, + "gridSpan": null, + "shading": null, + "textDirection": null, + "verticalAlign": null, + "verticalMerge": null, + "width": null, + }, + "tableProperty": Object { + "borders": Object { + "bottom": Object { + "borderType": "single", + "color": "000000", + "position": "bottom", + "size": 2, + "space": 0, + }, + "insideH": Object { + "borderType": "single", + "color": "000000", + "position": "insideH", + "size": 2, + "space": 0, + }, + "insideV": Object { + "borderType": "single", + "color": "000000", + "position": "insideV", + "size": 2, + "space": 0, + }, + "left": Object { + "borderType": "single", + "color": "000000", + "position": "left", + "size": 2, + "space": 0, + }, + "right": Object { + "borderType": "single", + "color": "000000", + "position": "right", + "size": 2, + "space": 0, + }, + "top": Object { + "borderType": "single", + "color": "000000", + "position": "top", + "size": 2, + "space": 0, + }, + }, + "justification": "left", + "width": Object { + "width": 0, + "widthType": "auto", + }, + }, + }, + Object { + "basedOn": "a7", + "name": "index 8", + "next": null, + "paragraphProperty": Object { + "indent": Object { + "end": null, + "firstLineChars": null, + "hangingChars": 100, + "specialIndent": Object { + "type": "hanging", + "val": 210, + }, + "start": 700, + "startChars": 700, + }, + "runProperty": Object {}, + "tabs": Array [], + }, + "runProperty": Object {}, + "styleId": "81", + "styleType": "paragraph", + "tableCellProperty": Object { + "borders": null, + "gridSpan": null, + "shading": null, + "textDirection": null, + "verticalAlign": null, + "verticalMerge": null, + "width": null, + }, + "tableProperty": Object { + "borders": Object { + "bottom": Object { + "borderType": "single", + "color": "000000", + "position": "bottom", + "size": 2, + "space": 0, + }, + "insideH": Object { + "borderType": "single", + "color": "000000", + "position": "insideH", + "size": 2, + "space": 0, + }, + "insideV": Object { + "borderType": "single", + "color": "000000", + "position": "insideV", + "size": 2, + "space": 0, + }, + "left": Object { + "borderType": "single", + "color": "000000", + "position": "left", + "size": 2, + "space": 0, + }, + "right": Object { + "borderType": "single", + "color": "000000", + "position": "right", + "size": 2, + "space": 0, + }, + "top": Object { + "borderType": "single", + "color": "000000", + "position": "top", + "size": 2, + "space": 0, + }, + }, + "justification": "left", + "width": Object { + "width": 0, + "widthType": "auto", + }, + }, + }, + Object { + "basedOn": "a7", + "name": "index 9", + "next": null, + "paragraphProperty": Object { + "indent": Object { + "end": null, + "firstLineChars": null, + "hangingChars": 100, + "specialIndent": Object { + "type": "hanging", + "val": 210, + }, + "start": 800, + "startChars": 800, + }, + "runProperty": Object {}, + "tabs": Array [], + }, + "runProperty": Object {}, + "styleId": "91", + "styleType": "paragraph", + "tableCellProperty": Object { + "borders": null, + "gridSpan": null, + "shading": null, + "textDirection": null, + "verticalAlign": null, + "verticalMerge": null, + "width": null, + }, + "tableProperty": Object { + "borders": Object { + "bottom": Object { + "borderType": "single", + "color": "000000", + "position": "bottom", + "size": 2, + "space": 0, + }, + "insideH": Object { + "borderType": "single", + "color": "000000", + "position": "insideH", + "size": 2, + "space": 0, + }, + "insideV": Object { + "borderType": "single", + "color": "000000", + "position": "insideV", + "size": 2, + "space": 0, + }, + "left": Object { + "borderType": "single", + "color": "000000", + "position": "left", + "size": 2, + "space": 0, + }, + "right": Object { + "borderType": "single", + "color": "000000", + "position": "right", + "size": 2, + "space": 0, + }, + "top": Object { + "borderType": "single", + "color": "000000", + "position": "top", + "size": 2, + "space": 0, + }, + }, + "justification": "left", + "width": Object { + "width": 0, + "widthType": "auto", + }, + }, + }, + Object { + "basedOn": "a7", + "name": "index heading", + "next": null, + "paragraphProperty": Object { + "runProperty": Object {}, + "tabs": Array [], + }, + "runProperty": Object {}, + "styleId": "aff2", + "styleType": "paragraph", + "tableCellProperty": Object { + "borders": null, + "gridSpan": null, + "shading": null, + "textDirection": null, + "verticalAlign": null, + "verticalMerge": null, + "width": null, + }, + "tableProperty": Object { + "borders": Object { + "bottom": Object { + "borderType": "single", + "color": "000000", + "position": "bottom", + "size": 2, + "space": 0, + }, + "insideH": Object { + "borderType": "single", + "color": "000000", + "position": "insideH", + "size": 2, + "space": 0, + }, + "insideV": Object { + "borderType": "single", + "color": "000000", + "position": "insideV", + "size": 2, + "space": 0, + }, + "left": Object { + "borderType": "single", + "color": "000000", + "position": "left", + "size": 2, + "space": 0, + }, + "right": Object { + "borderType": "single", + "color": "000000", + "position": "right", + "size": 2, + "space": 0, + }, + "top": Object { + "borderType": "single", + "color": "000000", + "position": "top", + "size": 2, + "space": 0, + }, + }, + "justification": "left", + "width": Object { + "width": 0, + "widthType": "auto", + }, + }, + }, + Object { + "basedOn": "a7", + "name": "Body Text 2", + "next": null, + "paragraphProperty": Object { + "runProperty": Object {}, + "tabs": Array [], + }, + "runProperty": Object { + "fonts": Object { + "ascii": "MS Pゴシック", + "eastAsia": "MS Pゴシック", + }, + "sz": 20, + "szCs": 20, + }, + "styleId": "28", + "styleType": "paragraph", + "tableCellProperty": Object { + "borders": null, + "gridSpan": null, + "shading": null, + "textDirection": null, + "verticalAlign": null, + "verticalMerge": null, + "width": null, + }, + "tableProperty": Object { + "borders": Object { + "bottom": Object { + "borderType": "single", + "color": "000000", + "position": "bottom", + "size": 2, + "space": 0, + }, + "insideH": Object { + "borderType": "single", + "color": "000000", + "position": "insideH", + "size": 2, + "space": 0, + }, + "insideV": Object { + "borderType": "single", + "color": "000000", + "position": "insideV", + "size": 2, + "space": 0, + }, + "left": Object { + "borderType": "single", + "color": "000000", + "position": "left", + "size": 2, + "space": 0, + }, + "right": Object { + "borderType": "single", + "color": "000000", + "position": "right", + "size": 2, + "space": 0, + }, + "top": Object { + "borderType": "single", + "color": "000000", + "position": "top", + "size": 2, + "space": 0, + }, + }, + "justification": "left", + "width": Object { + "width": 0, + "widthType": "auto", + }, + }, + }, + Object { + "basedOn": "a7", + "name": "HTML Address", + "next": null, + "paragraphProperty": Object { + "runProperty": Object {}, + "tabs": Array [], + }, + "runProperty": Object { + "italic": true, + "italicCs": true, + }, + "styleId": "HTML", + "styleType": "paragraph", + "tableCellProperty": Object { + "borders": null, + "gridSpan": null, + "shading": null, + "textDirection": null, + "verticalAlign": null, + "verticalMerge": null, + "width": null, + }, + "tableProperty": Object { + "borders": Object { + "bottom": Object { + "borderType": "single", + "color": "000000", + "position": "bottom", + "size": 2, + "space": 0, + }, + "insideH": Object { + "borderType": "single", + "color": "000000", + "position": "insideH", + "size": 2, + "space": 0, + }, + "insideV": Object { + "borderType": "single", + "color": "000000", + "position": "insideV", + "size": 2, + "space": 0, + }, + "left": Object { + "borderType": "single", + "color": "000000", + "position": "left", + "size": 2, + "space": 0, + }, + "right": Object { + "borderType": "single", + "color": "000000", + "position": "right", + "size": 2, + "space": 0, + }, + "top": Object { + "borderType": "single", + "color": "000000", + "position": "top", + "size": 2, + "space": 0, + }, + }, + "justification": "left", + "width": Object { + "width": 0, + "widthType": "auto", + }, + }, + }, + Object { + "basedOn": "a7", + "name": "HTML Preformatted", + "next": null, + "paragraphProperty": Object { + "runProperty": Object {}, + "tabs": Array [], + }, + "runProperty": Object { + "fonts": Object { + "ascii": "Courier New", + "cs": "Courier New", + "hiAnsi": "Courier New", + }, + "sz": 20, + "szCs": 20, + }, + "styleId": "HTML0", + "styleType": "paragraph", + "tableCellProperty": Object { + "borders": null, + "gridSpan": null, + "shading": null, + "textDirection": null, + "verticalAlign": null, + "verticalMerge": null, + "width": null, + }, + "tableProperty": Object { + "borders": Object { + "bottom": Object { + "borderType": "single", + "color": "000000", + "position": "bottom", + "size": 2, + "space": 0, + }, + "insideH": Object { + "borderType": "single", + "color": "000000", + "position": "insideH", + "size": 2, + "space": 0, + }, + "insideV": Object { + "borderType": "single", + "color": "000000", + "position": "insideV", + "size": 2, + "space": 0, + }, + "left": Object { + "borderType": "single", + "color": "000000", + "position": "left", + "size": 2, + "space": 0, + }, + "right": Object { + "borderType": "single", + "color": "000000", + "position": "right", + "size": 2, + "space": 0, + }, + "top": Object { + "borderType": "single", + "color": "000000", + "position": "top", + "size": 2, + "space": 0, + }, + }, + "justification": "left", + "width": Object { + "width": 0, + "widthType": "auto", + }, + }, + }, + Object { + "basedOn": "a7", + "name": "Block Text", + "next": null, + "paragraphProperty": Object { + "indent": Object { + "end": 1440, + "firstLineChars": null, + "hangingChars": null, + "specialIndent": null, + "start": 1440, + "startChars": 700, + }, + "runProperty": Object {}, + "tabs": Array [], + }, + "runProperty": Object {}, + "styleId": "aff3", + "styleType": "paragraph", + "tableCellProperty": Object { + "borders": null, + "gridSpan": null, + "shading": null, + "textDirection": null, + "verticalAlign": null, + "verticalMerge": null, + "width": null, + }, + "tableProperty": Object { + "borders": Object { + "bottom": Object { + "borderType": "single", + "color": "000000", + "position": "bottom", + "size": 2, + "space": 0, + }, + "insideH": Object { + "borderType": "single", + "color": "000000", + "position": "insideH", + "size": 2, + "space": 0, + }, + "insideV": Object { + "borderType": "single", + "color": "000000", + "position": "insideV", + "size": 2, + "space": 0, + }, + "left": Object { + "borderType": "single", + "color": "000000", + "position": "left", + "size": 2, + "space": 0, + }, + "right": Object { + "borderType": "single", + "color": "000000", + "position": "right", + "size": 2, + "space": 0, + }, + "top": Object { + "borderType": "single", + "color": "000000", + "position": "top", + "size": 2, + "space": 0, + }, + }, + "justification": "left", + "width": Object { + "width": 0, + "widthType": "auto", + }, + }, + }, + Object { + "basedOn": null, + "name": "macro", + "next": null, + "paragraphProperty": Object { + "runProperty": Object {}, + "tabs": Array [], + }, + "runProperty": Object { + "fonts": Object { + "ascii": "Courier New", + "cs": "Courier New", + "eastAsia": "MS 明朝", + "hiAnsi": "Courier New", + }, + "sz": 18, + "szCs": 18, + }, + "styleId": "aff4", + "styleType": "paragraph", + "tableCellProperty": Object { + "borders": null, + "gridSpan": null, + "shading": null, + "textDirection": null, + "verticalAlign": null, + "verticalMerge": null, + "width": null, + }, + "tableProperty": Object { + "borders": Object { + "bottom": Object { + "borderType": "single", + "color": "000000", + "position": "bottom", + "size": 2, + "space": 0, + }, + "insideH": Object { + "borderType": "single", + "color": "000000", + "position": "insideH", + "size": 2, + "space": 0, + }, + "insideV": Object { + "borderType": "single", + "color": "000000", + "position": "insideV", + "size": 2, + "space": 0, + }, + "left": Object { + "borderType": "single", + "color": "000000", + "position": "left", + "size": 2, + "space": 0, + }, + "right": Object { + "borderType": "single", + "color": "000000", + "position": "right", + "size": 2, + "space": 0, + }, + "top": Object { + "borderType": "single", + "color": "000000", + "position": "top", + "size": 2, + "space": 0, + }, + }, + "justification": "left", + "width": Object { + "width": 0, + "widthType": "auto", + }, + }, + }, + Object { + "basedOn": "a7", + "name": "Message Header", + "next": null, + "paragraphProperty": Object { + "indent": Object { + "end": null, + "firstLineChars": null, + "hangingChars": 400, + "specialIndent": Object { + "type": "hanging", + "val": 960, + }, + "start": 960, + "startChars": null, + }, + "runProperty": Object {}, + "tabs": Array [], + }, + "runProperty": Object { + "fonts": Object { + "ascii": "Arial", + "cs": "Arial", + }, + "sz": 24, + "szCs": 24, + }, + "styleId": "aff5", + "styleType": "paragraph", + "tableCellProperty": Object { + "borders": null, + "gridSpan": null, + "shading": null, + "textDirection": null, + "verticalAlign": null, + "verticalMerge": null, + "width": null, + }, + "tableProperty": Object { + "borders": Object { + "bottom": Object { + "borderType": "single", + "color": "000000", + "position": "bottom", + "size": 2, + "space": 0, + }, + "insideH": Object { + "borderType": "single", + "color": "000000", + "position": "insideH", + "size": 2, + "space": 0, + }, + "insideV": Object { + "borderType": "single", + "color": "000000", + "position": "insideV", + "size": 2, + "space": 0, + }, + "left": Object { + "borderType": "single", + "color": "000000", + "position": "left", + "size": 2, + "space": 0, + }, + "right": Object { + "borderType": "single", + "color": "000000", + "position": "right", + "size": 2, + "space": 0, + }, + "top": Object { + "borderType": "single", + "color": "000000", + "position": "top", + "size": 2, + "space": 0, + }, + }, + "justification": "left", + "width": Object { + "width": 0, + "widthType": "auto", + }, + }, + }, + Object { + "basedOn": "a7", + "name": "Salutation", + "next": null, + "paragraphProperty": Object { + "runProperty": Object {}, + "tabs": Array [], + }, + "runProperty": Object {}, + "styleId": "aff6", + "styleType": "paragraph", + "tableCellProperty": Object { + "borders": null, + "gridSpan": null, + "shading": null, + "textDirection": null, + "verticalAlign": null, + "verticalMerge": null, + "width": null, + }, + "tableProperty": Object { + "borders": Object { + "bottom": Object { + "borderType": "single", + "color": "000000", + "position": "bottom", + "size": 2, + "space": 0, + }, + "insideH": Object { + "borderType": "single", + "color": "000000", + "position": "insideH", + "size": 2, + "space": 0, + }, + "insideV": Object { + "borderType": "single", + "color": "000000", + "position": "insideV", + "size": 2, + "space": 0, + }, + "left": Object { + "borderType": "single", + "color": "000000", + "position": "left", + "size": 2, + "space": 0, + }, + "right": Object { + "borderType": "single", + "color": "000000", + "position": "right", + "size": 2, + "space": 0, + }, + "top": Object { + "borderType": "single", + "color": "000000", + "position": "top", + "size": 2, + "space": 0, + }, + }, + "justification": "left", + "width": Object { + "width": 0, + "widthType": "auto", + }, + }, + }, + Object { + "basedOn": "a7", + "name": "envelope address", + "next": null, + "paragraphProperty": Object { + "indent": Object { + "end": null, + "firstLineChars": null, + "hangingChars": null, + "specialIndent": null, + "start": 100, + "startChars": 1400, + }, + "runProperty": Object {}, + "tabs": Array [], + }, + "runProperty": Object { + "fonts": Object { + "ascii": "Arial", + "cs": "Arial", + }, + "sz": 24, + "szCs": 24, + }, + "styleId": "aff7", + "styleType": "paragraph", + "tableCellProperty": Object { + "borders": null, + "gridSpan": null, + "shading": null, + "textDirection": null, + "verticalAlign": null, + "verticalMerge": null, + "width": null, + }, + "tableProperty": Object { + "borders": Object { + "bottom": Object { + "borderType": "single", + "color": "000000", + "position": "bottom", + "size": 2, + "space": 0, + }, + "insideH": Object { + "borderType": "single", + "color": "000000", + "position": "insideH", + "size": 2, + "space": 0, + }, + "insideV": Object { + "borderType": "single", + "color": "000000", + "position": "insideV", + "size": 2, + "space": 0, + }, + "left": Object { + "borderType": "single", + "color": "000000", + "position": "left", + "size": 2, + "space": 0, + }, + "right": Object { + "borderType": "single", + "color": "000000", + "position": "right", + "size": 2, + "space": 0, + }, + "top": Object { + "borderType": "single", + "color": "000000", + "position": "top", + "size": 2, + "space": 0, + }, + }, + "justification": "left", + "width": Object { + "width": 0, + "widthType": "auto", + }, + }, + }, + Object { + "basedOn": "a7", + "name": "List", + "next": null, + "paragraphProperty": Object { + "indent": Object { + "end": null, + "firstLineChars": null, + "hangingChars": 200, + "specialIndent": Object { + "type": "hanging", + "val": 200, + }, + "start": 200, + "startChars": null, + }, + "runProperty": Object {}, + "tabs": Array [], + }, + "runProperty": Object {}, + "styleId": "aff8", + "styleType": "paragraph", + "tableCellProperty": Object { + "borders": null, + "gridSpan": null, + "shading": null, + "textDirection": null, + "verticalAlign": null, + "verticalMerge": null, + "width": null, + }, + "tableProperty": Object { + "borders": Object { + "bottom": Object { + "borderType": "single", + "color": "000000", + "position": "bottom", + "size": 2, + "space": 0, + }, + "insideH": Object { + "borderType": "single", + "color": "000000", + "position": "insideH", + "size": 2, + "space": 0, + }, + "insideV": Object { + "borderType": "single", + "color": "000000", + "position": "insideV", + "size": 2, + "space": 0, + }, + "left": Object { + "borderType": "single", + "color": "000000", + "position": "left", + "size": 2, + "space": 0, + }, + "right": Object { + "borderType": "single", + "color": "000000", + "position": "right", + "size": 2, + "space": 0, + }, + "top": Object { + "borderType": "single", + "color": "000000", + "position": "top", + "size": 2, + "space": 0, + }, + }, + "justification": "left", + "width": Object { + "width": 0, + "widthType": "auto", + }, + }, + }, + Object { + "basedOn": "a7", + "name": "List 2", + "next": null, + "paragraphProperty": Object { + "indent": Object { + "end": null, + "firstLineChars": null, + "hangingChars": 200, + "specialIndent": Object { + "type": "hanging", + "val": 200, + }, + "start": 100, + "startChars": 200, + }, + "runProperty": Object {}, + "tabs": Array [], + }, + "runProperty": Object {}, + "styleId": "2a", + "styleType": "paragraph", + "tableCellProperty": Object { + "borders": null, + "gridSpan": null, + "shading": null, + "textDirection": null, + "verticalAlign": null, + "verticalMerge": null, + "width": null, + }, + "tableProperty": Object { + "borders": Object { + "bottom": Object { + "borderType": "single", + "color": "000000", + "position": "bottom", + "size": 2, + "space": 0, + }, + "insideH": Object { + "borderType": "single", + "color": "000000", + "position": "insideH", + "size": 2, + "space": 0, + }, + "insideV": Object { + "borderType": "single", + "color": "000000", + "position": "insideV", + "size": 2, + "space": 0, + }, + "left": Object { + "borderType": "single", + "color": "000000", + "position": "left", + "size": 2, + "space": 0, + }, + "right": Object { + "borderType": "single", + "color": "000000", + "position": "right", + "size": 2, + "space": 0, + }, + "top": Object { + "borderType": "single", + "color": "000000", + "position": "top", + "size": 2, + "space": 0, + }, + }, + "justification": "left", + "width": Object { + "width": 0, + "widthType": "auto", + }, + }, + }, + Object { + "basedOn": "a7", + "name": "List 3", + "next": null, + "paragraphProperty": Object { + "indent": Object { + "end": null, + "firstLineChars": null, + "hangingChars": 200, + "specialIndent": Object { + "type": "hanging", + "val": 200, + }, + "start": 100, + "startChars": 400, + }, + "runProperty": Object {}, + "tabs": Array [], + }, + "runProperty": Object {}, + "styleId": "36", + "styleType": "paragraph", + "tableCellProperty": Object { + "borders": null, + "gridSpan": null, + "shading": null, + "textDirection": null, + "verticalAlign": null, + "verticalMerge": null, + "width": null, + }, + "tableProperty": Object { + "borders": Object { + "bottom": Object { + "borderType": "single", + "color": "000000", + "position": "bottom", + "size": 2, + "space": 0, + }, + "insideH": Object { + "borderType": "single", + "color": "000000", + "position": "insideH", + "size": 2, + "space": 0, + }, + "insideV": Object { + "borderType": "single", + "color": "000000", + "position": "insideV", + "size": 2, + "space": 0, + }, + "left": Object { + "borderType": "single", + "color": "000000", + "position": "left", + "size": 2, + "space": 0, + }, + "right": Object { + "borderType": "single", + "color": "000000", + "position": "right", + "size": 2, + "space": 0, + }, + "top": Object { + "borderType": "single", + "color": "000000", + "position": "top", + "size": 2, + "space": 0, + }, + }, + "justification": "left", + "width": Object { + "width": 0, + "widthType": "auto", + }, + }, + }, + Object { + "basedOn": "a7", + "name": "List 4", + "next": null, + "paragraphProperty": Object { + "indent": Object { + "end": null, + "firstLineChars": null, + "hangingChars": 200, + "specialIndent": Object { + "type": "hanging", + "val": 200, + }, + "start": 100, + "startChars": 600, + }, + "runProperty": Object {}, + "tabs": Array [], + }, + "runProperty": Object {}, + "styleId": "44", + "styleType": "paragraph", + "tableCellProperty": Object { + "borders": null, + "gridSpan": null, + "shading": null, + "textDirection": null, + "verticalAlign": null, + "verticalMerge": null, + "width": null, + }, + "tableProperty": Object { + "borders": Object { + "bottom": Object { + "borderType": "single", + "color": "000000", + "position": "bottom", + "size": 2, + "space": 0, + }, + "insideH": Object { + "borderType": "single", + "color": "000000", + "position": "insideH", + "size": 2, + "space": 0, + }, + "insideV": Object { + "borderType": "single", + "color": "000000", + "position": "insideV", + "size": 2, + "space": 0, + }, + "left": Object { + "borderType": "single", + "color": "000000", + "position": "left", + "size": 2, + "space": 0, + }, + "right": Object { + "borderType": "single", + "color": "000000", + "position": "right", + "size": 2, + "space": 0, + }, + "top": Object { + "borderType": "single", + "color": "000000", + "position": "top", + "size": 2, + "space": 0, + }, + }, + "justification": "left", + "width": Object { + "width": 0, + "widthType": "auto", + }, + }, + }, + Object { + "basedOn": "a7", + "name": "List 5", + "next": null, + "paragraphProperty": Object { + "indent": Object { + "end": null, + "firstLineChars": null, + "hangingChars": 200, + "specialIndent": Object { + "type": "hanging", + "val": 200, + }, + "start": 100, + "startChars": 800, + }, + "runProperty": Object {}, + "tabs": Array [], + }, + "runProperty": Object {}, + "styleId": "54", + "styleType": "paragraph", + "tableCellProperty": Object { + "borders": null, + "gridSpan": null, + "shading": null, + "textDirection": null, + "verticalAlign": null, + "verticalMerge": null, + "width": null, + }, + "tableProperty": Object { + "borders": Object { + "bottom": Object { + "borderType": "single", + "color": "000000", + "position": "bottom", + "size": 2, + "space": 0, + }, + "insideH": Object { + "borderType": "single", + "color": "000000", + "position": "insideH", + "size": 2, + "space": 0, + }, + "insideV": Object { + "borderType": "single", + "color": "000000", + "position": "insideV", + "size": 2, + "space": 0, + }, + "left": Object { + "borderType": "single", + "color": "000000", + "position": "left", + "size": 2, + "space": 0, + }, + "right": Object { + "borderType": "single", + "color": "000000", + "position": "right", + "size": 2, + "space": 0, + }, + "top": Object { + "borderType": "single", + "color": "000000", + "position": "top", + "size": 2, + "space": 0, + }, + }, + "justification": "left", + "width": Object { + "width": 0, + "widthType": "auto", + }, + }, + }, + Object { + "basedOn": "a7", + "name": "table of authorities", + "next": null, + "paragraphProperty": Object { + "indent": Object { + "end": null, + "firstLineChars": null, + "hangingChars": 100, + "specialIndent": Object { + "type": "hanging", + "val": 210, + }, + "start": 210, + "startChars": null, + }, + "runProperty": Object {}, + "tabs": Array [], + }, + "runProperty": Object {}, + "styleId": "aff9", + "styleType": "paragraph", + "tableCellProperty": Object { + "borders": null, + "gridSpan": null, + "shading": null, + "textDirection": null, + "verticalAlign": null, + "verticalMerge": null, + "width": null, + }, + "tableProperty": Object { + "borders": Object { + "bottom": Object { + "borderType": "single", + "color": "000000", + "position": "bottom", + "size": 2, + "space": 0, + }, + "insideH": Object { + "borderType": "single", + "color": "000000", + "position": "insideH", + "size": 2, + "space": 0, + }, + "insideV": Object { + "borderType": "single", + "color": "000000", + "position": "insideV", + "size": 2, + "space": 0, + }, + "left": Object { + "borderType": "single", + "color": "000000", + "position": "left", + "size": 2, + "space": 0, + }, + "right": Object { + "borderType": "single", + "color": "000000", + "position": "right", + "size": 2, + "space": 0, + }, + "top": Object { + "borderType": "single", + "color": "000000", + "position": "top", + "size": 2, + "space": 0, + }, + }, + "justification": "left", + "width": Object { + "width": 0, + "widthType": "auto", + }, + }, + }, + Object { + "basedOn": "a7", + "name": "toa heading", + "next": null, + "paragraphProperty": Object { + "lineSpacing": Object { + "before": 180, + }, + "runProperty": Object {}, + "tabs": Array [], + }, + "runProperty": Object { + "fonts": Object { + "ascii": "Arial", + "cs": "Arial", + "eastAsia": "MS ゴシック", + }, + "sz": 24, + "szCs": 24, + }, + "styleId": "affa", + "styleType": "paragraph", + "tableCellProperty": Object { + "borders": null, + "gridSpan": null, + "shading": null, + "textDirection": null, + "verticalAlign": null, + "verticalMerge": null, + "width": null, + }, + "tableProperty": Object { + "borders": Object { + "bottom": Object { + "borderType": "single", + "color": "000000", + "position": "bottom", + "size": 2, + "space": 0, + }, + "insideH": Object { + "borderType": "single", + "color": "000000", + "position": "insideH", + "size": 2, + "space": 0, + }, + "insideV": Object { + "borderType": "single", + "color": "000000", + "position": "insideV", + "size": 2, + "space": 0, + }, + "left": Object { + "borderType": "single", + "color": "000000", + "position": "left", + "size": 2, + "space": 0, + }, + "right": Object { + "borderType": "single", + "color": "000000", + "position": "right", + "size": 2, + "space": 0, + }, + "top": Object { + "borderType": "single", + "color": "000000", + "position": "top", + "size": 2, + "space": 0, + }, + }, + "justification": "left", + "width": Object { + "width": 0, + "widthType": "auto", + }, + }, + }, + Object { + "basedOn": "a7", + "name": "List Bullet", + "next": null, + "paragraphProperty": Object { + "numberingProperty": Object { + "id": 5, + "level": null, + }, + "runProperty": Object {}, + "tabs": Array [], + }, + "runProperty": Object {}, + "styleId": "a0", + "styleType": "paragraph", + "tableCellProperty": Object { + "borders": null, + "gridSpan": null, + "shading": null, + "textDirection": null, + "verticalAlign": null, + "verticalMerge": null, + "width": null, + }, + "tableProperty": Object { + "borders": Object { + "bottom": Object { + "borderType": "single", + "color": "000000", + "position": "bottom", + "size": 2, + "space": 0, + }, + "insideH": Object { + "borderType": "single", + "color": "000000", + "position": "insideH", + "size": 2, + "space": 0, + }, + "insideV": Object { + "borderType": "single", + "color": "000000", + "position": "insideV", + "size": 2, + "space": 0, + }, + "left": Object { + "borderType": "single", + "color": "000000", + "position": "left", + "size": 2, + "space": 0, + }, + "right": Object { + "borderType": "single", + "color": "000000", + "position": "right", + "size": 2, + "space": 0, + }, + "top": Object { + "borderType": "single", + "color": "000000", + "position": "top", + "size": 2, + "space": 0, + }, + }, + "justification": "left", + "width": Object { + "width": 0, + "widthType": "auto", + }, + }, + }, + Object { + "basedOn": "a7", + "name": "List Bullet 2", + "next": null, + "paragraphProperty": Object { + "numberingProperty": Object { + "id": 6, + "level": null, + }, + "runProperty": Object {}, + "tabs": Array [], + }, + "runProperty": Object {}, + "styleId": "20", + "styleType": "paragraph", + "tableCellProperty": Object { + "borders": null, + "gridSpan": null, + "shading": null, + "textDirection": null, + "verticalAlign": null, + "verticalMerge": null, + "width": null, + }, + "tableProperty": Object { + "borders": Object { + "bottom": Object { + "borderType": "single", + "color": "000000", + "position": "bottom", + "size": 2, + "space": 0, + }, + "insideH": Object { + "borderType": "single", + "color": "000000", + "position": "insideH", + "size": 2, + "space": 0, + }, + "insideV": Object { + "borderType": "single", + "color": "000000", + "position": "insideV", + "size": 2, + "space": 0, + }, + "left": Object { + "borderType": "single", + "color": "000000", + "position": "left", + "size": 2, + "space": 0, + }, + "right": Object { + "borderType": "single", + "color": "000000", + "position": "right", + "size": 2, + "space": 0, + }, + "top": Object { + "borderType": "single", + "color": "000000", + "position": "top", + "size": 2, + "space": 0, + }, + }, + "justification": "left", + "width": Object { + "width": 0, + "widthType": "auto", + }, + }, + }, + Object { + "basedOn": "a7", + "name": "List Bullet 3", + "next": null, + "paragraphProperty": Object { + "numberingProperty": Object { + "id": 7, + "level": null, + }, + "runProperty": Object {}, + "tabs": Array [], + }, + "runProperty": Object {}, + "styleId": "30", + "styleType": "paragraph", + "tableCellProperty": Object { + "borders": null, + "gridSpan": null, + "shading": null, + "textDirection": null, + "verticalAlign": null, + "verticalMerge": null, + "width": null, + }, + "tableProperty": Object { + "borders": Object { + "bottom": Object { + "borderType": "single", + "color": "000000", + "position": "bottom", + "size": 2, + "space": 0, + }, + "insideH": Object { + "borderType": "single", + "color": "000000", + "position": "insideH", + "size": 2, + "space": 0, + }, + "insideV": Object { + "borderType": "single", + "color": "000000", + "position": "insideV", + "size": 2, + "space": 0, + }, + "left": Object { + "borderType": "single", + "color": "000000", + "position": "left", + "size": 2, + "space": 0, + }, + "right": Object { + "borderType": "single", + "color": "000000", + "position": "right", + "size": 2, + "space": 0, + }, + "top": Object { + "borderType": "single", + "color": "000000", + "position": "top", + "size": 2, + "space": 0, + }, + }, + "justification": "left", + "width": Object { + "width": 0, + "widthType": "auto", + }, + }, + }, + Object { + "basedOn": "a7", + "name": "List Bullet 4", + "next": null, + "paragraphProperty": Object { + "numberingProperty": Object { + "id": 8, + "level": null, + }, + "runProperty": Object {}, + "tabs": Array [], + }, + "runProperty": Object {}, + "styleId": "40", + "styleType": "paragraph", + "tableCellProperty": Object { + "borders": null, + "gridSpan": null, + "shading": null, + "textDirection": null, + "verticalAlign": null, + "verticalMerge": null, + "width": null, + }, + "tableProperty": Object { + "borders": Object { + "bottom": Object { + "borderType": "single", + "color": "000000", + "position": "bottom", + "size": 2, + "space": 0, + }, + "insideH": Object { + "borderType": "single", + "color": "000000", + "position": "insideH", + "size": 2, + "space": 0, + }, + "insideV": Object { + "borderType": "single", + "color": "000000", + "position": "insideV", + "size": 2, + "space": 0, + }, + "left": Object { + "borderType": "single", + "color": "000000", + "position": "left", + "size": 2, + "space": 0, + }, + "right": Object { + "borderType": "single", + "color": "000000", + "position": "right", + "size": 2, + "space": 0, + }, + "top": Object { + "borderType": "single", + "color": "000000", + "position": "top", + "size": 2, + "space": 0, + }, + }, + "justification": "left", + "width": Object { + "width": 0, + "widthType": "auto", + }, + }, + }, + Object { + "basedOn": "a7", + "name": "List Bullet 5", + "next": null, + "paragraphProperty": Object { + "indent": Object { + "end": null, + "firstLineChars": null, + "hangingChars": 202, + "specialIndent": Object { + "type": "hanging", + "val": 424, + }, + "start": 2975, + "startChars": 1215, + }, + "numberingProperty": Object { + "id": 9, + "level": null, + }, + "runProperty": Object {}, + "tabs": Array [], + }, + "runProperty": Object {}, + "styleId": "50", + "styleType": "paragraph", + "tableCellProperty": Object { + "borders": null, + "gridSpan": null, + "shading": null, + "textDirection": null, + "verticalAlign": null, + "verticalMerge": null, + "width": null, + }, + "tableProperty": Object { + "borders": Object { + "bottom": Object { + "borderType": "single", + "color": "000000", + "position": "bottom", + "size": 2, + "space": 0, + }, + "insideH": Object { + "borderType": "single", + "color": "000000", + "position": "insideH", + "size": 2, + "space": 0, + }, + "insideV": Object { + "borderType": "single", + "color": "000000", + "position": "insideV", + "size": 2, + "space": 0, + }, + "left": Object { + "borderType": "single", + "color": "000000", + "position": "left", + "size": 2, + "space": 0, + }, + "right": Object { + "borderType": "single", + "color": "000000", + "position": "right", + "size": 2, + "space": 0, + }, + "top": Object { + "borderType": "single", + "color": "000000", + "position": "top", + "size": 2, + "space": 0, + }, + }, + "justification": "left", + "width": Object { + "width": 0, + "widthType": "auto", + }, + }, + }, + Object { + "basedOn": "a7", + "name": "List Continue", + "next": null, + "paragraphProperty": Object { + "indent": Object { + "end": null, + "firstLineChars": null, + "hangingChars": null, + "specialIndent": null, + "start": 425, + "startChars": 200, + }, + "lineSpacing": Object { + "after": 180, + }, + "runProperty": Object {}, + "tabs": Array [], + }, + "runProperty": Object {}, + "styleId": "affb", + "styleType": "paragraph", + "tableCellProperty": Object { + "borders": null, + "gridSpan": null, + "shading": null, + "textDirection": null, + "verticalAlign": null, + "verticalMerge": null, + "width": null, + }, + "tableProperty": Object { + "borders": Object { + "bottom": Object { + "borderType": "single", + "color": "000000", + "position": "bottom", + "size": 2, + "space": 0, + }, + "insideH": Object { + "borderType": "single", + "color": "000000", + "position": "insideH", + "size": 2, + "space": 0, + }, + "insideV": Object { + "borderType": "single", + "color": "000000", + "position": "insideV", + "size": 2, + "space": 0, + }, + "left": Object { + "borderType": "single", + "color": "000000", + "position": "left", + "size": 2, + "space": 0, + }, + "right": Object { + "borderType": "single", + "color": "000000", + "position": "right", + "size": 2, + "space": 0, + }, + "top": Object { + "borderType": "single", + "color": "000000", + "position": "top", + "size": 2, + "space": 0, + }, + }, + "justification": "left", + "width": Object { + "width": 0, + "widthType": "auto", + }, + }, + }, + Object { + "basedOn": "a7", + "name": "List Continue 2", + "next": null, + "paragraphProperty": Object { + "indent": Object { + "end": null, + "firstLineChars": null, + "hangingChars": null, + "specialIndent": null, + "start": 850, + "startChars": 400, + }, + "lineSpacing": Object { + "after": 180, + }, + "runProperty": Object {}, + "tabs": Array [], + }, + "runProperty": Object {}, + "styleId": "2b", + "styleType": "paragraph", + "tableCellProperty": Object { + "borders": null, + "gridSpan": null, + "shading": null, + "textDirection": null, + "verticalAlign": null, + "verticalMerge": null, + "width": null, + }, + "tableProperty": Object { + "borders": Object { + "bottom": Object { + "borderType": "single", + "color": "000000", + "position": "bottom", + "size": 2, + "space": 0, + }, + "insideH": Object { + "borderType": "single", + "color": "000000", + "position": "insideH", + "size": 2, + "space": 0, + }, + "insideV": Object { + "borderType": "single", + "color": "000000", + "position": "insideV", + "size": 2, + "space": 0, + }, + "left": Object { + "borderType": "single", + "color": "000000", + "position": "left", + "size": 2, + "space": 0, + }, + "right": Object { + "borderType": "single", + "color": "000000", + "position": "right", + "size": 2, + "space": 0, + }, + "top": Object { + "borderType": "single", + "color": "000000", + "position": "top", + "size": 2, + "space": 0, + }, + }, + "justification": "left", + "width": Object { + "width": 0, + "widthType": "auto", + }, + }, + }, + Object { + "basedOn": "a7", + "name": "List Continue 3", + "next": null, + "paragraphProperty": Object { + "indent": Object { + "end": null, + "firstLineChars": null, + "hangingChars": null, + "specialIndent": null, + "start": 1275, + "startChars": 600, + }, + "lineSpacing": Object { + "after": 180, + }, + "runProperty": Object {}, + "tabs": Array [], + }, + "runProperty": Object {}, + "styleId": "37", + "styleType": "paragraph", + "tableCellProperty": Object { + "borders": null, + "gridSpan": null, + "shading": null, + "textDirection": null, + "verticalAlign": null, + "verticalMerge": null, + "width": null, + }, + "tableProperty": Object { + "borders": Object { + "bottom": Object { + "borderType": "single", + "color": "000000", + "position": "bottom", + "size": 2, + "space": 0, + }, + "insideH": Object { + "borderType": "single", + "color": "000000", + "position": "insideH", + "size": 2, + "space": 0, + }, + "insideV": Object { + "borderType": "single", + "color": "000000", + "position": "insideV", + "size": 2, + "space": 0, + }, + "left": Object { + "borderType": "single", + "color": "000000", + "position": "left", + "size": 2, + "space": 0, + }, + "right": Object { + "borderType": "single", + "color": "000000", + "position": "right", + "size": 2, + "space": 0, + }, + "top": Object { + "borderType": "single", + "color": "000000", + "position": "top", + "size": 2, + "space": 0, + }, + }, + "justification": "left", + "width": Object { + "width": 0, + "widthType": "auto", + }, + }, + }, + Object { + "basedOn": "a7", + "name": "List Continue 4", + "next": null, + "paragraphProperty": Object { + "indent": Object { + "end": null, + "firstLineChars": null, + "hangingChars": null, + "specialIndent": null, + "start": 1700, + "startChars": 800, + }, + "lineSpacing": Object { + "after": 180, + }, + "runProperty": Object {}, + "tabs": Array [], + }, + "runProperty": Object {}, + "styleId": "45", + "styleType": "paragraph", + "tableCellProperty": Object { + "borders": null, + "gridSpan": null, + "shading": null, + "textDirection": null, + "verticalAlign": null, + "verticalMerge": null, + "width": null, + }, + "tableProperty": Object { + "borders": Object { + "bottom": Object { + "borderType": "single", + "color": "000000", + "position": "bottom", + "size": 2, + "space": 0, + }, + "insideH": Object { + "borderType": "single", + "color": "000000", + "position": "insideH", + "size": 2, + "space": 0, + }, + "insideV": Object { + "borderType": "single", + "color": "000000", + "position": "insideV", + "size": 2, + "space": 0, + }, + "left": Object { + "borderType": "single", + "color": "000000", + "position": "left", + "size": 2, + "space": 0, + }, + "right": Object { + "borderType": "single", + "color": "000000", + "position": "right", + "size": 2, + "space": 0, + }, + "top": Object { + "borderType": "single", + "color": "000000", + "position": "top", + "size": 2, + "space": 0, + }, + }, + "justification": "left", + "width": Object { + "width": 0, + "widthType": "auto", + }, + }, + }, + Object { + "basedOn": "a7", + "name": "List Continue 5", + "next": null, + "paragraphProperty": Object { + "indent": Object { + "end": null, + "firstLineChars": null, + "hangingChars": null, + "specialIndent": null, + "start": 2125, + "startChars": 1000, + }, + "lineSpacing": Object { + "after": 180, + }, + "runProperty": Object {}, + "tabs": Array [], + }, + "runProperty": Object {}, + "styleId": "55", + "styleType": "paragraph", + "tableCellProperty": Object { + "borders": null, + "gridSpan": null, + "shading": null, + "textDirection": null, + "verticalAlign": null, + "verticalMerge": null, + "width": null, + }, + "tableProperty": Object { + "borders": Object { + "bottom": Object { + "borderType": "single", + "color": "000000", + "position": "bottom", + "size": 2, + "space": 0, + }, + "insideH": Object { + "borderType": "single", + "color": "000000", + "position": "insideH", + "size": 2, + "space": 0, + }, + "insideV": Object { + "borderType": "single", + "color": "000000", + "position": "insideV", + "size": 2, + "space": 0, + }, + "left": Object { + "borderType": "single", + "color": "000000", + "position": "left", + "size": 2, + "space": 0, + }, + "right": Object { + "borderType": "single", + "color": "000000", + "position": "right", + "size": 2, + "space": 0, + }, + "top": Object { + "borderType": "single", + "color": "000000", + "position": "top", + "size": 2, + "space": 0, + }, + }, + "justification": "left", + "width": Object { + "width": 0, + "widthType": "auto", + }, + }, + }, + Object { + "basedOn": "a7", + "name": "footnote text", + "next": null, + "paragraphProperty": Object { + "alignment": "left", + "runProperty": Object {}, + "tabs": Array [], + }, + "runProperty": Object {}, + "styleId": "affc", + "styleType": "paragraph", + "tableCellProperty": Object { + "borders": null, + "gridSpan": null, + "shading": null, + "textDirection": null, + "verticalAlign": null, + "verticalMerge": null, + "width": null, + }, + "tableProperty": Object { + "borders": Object { + "bottom": Object { + "borderType": "single", + "color": "000000", + "position": "bottom", + "size": 2, + "space": 0, + }, + "insideH": Object { + "borderType": "single", + "color": "000000", + "position": "insideH", + "size": 2, + "space": 0, + }, + "insideV": Object { + "borderType": "single", + "color": "000000", + "position": "insideV", + "size": 2, + "space": 0, + }, + "left": Object { + "borderType": "single", + "color": "000000", + "position": "left", + "size": 2, + "space": 0, + }, + "right": Object { + "borderType": "single", + "color": "000000", + "position": "right", + "size": 2, + "space": 0, + }, + "top": Object { + "borderType": "single", + "color": "000000", + "position": "top", + "size": 2, + "space": 0, + }, + }, + "justification": "left", + "width": Object { + "width": 0, + "widthType": "auto", + }, + }, + }, + Object { + "basedOn": "a7", + "name": "Document Map", + "next": null, + "paragraphProperty": Object { + "runProperty": Object {}, + "tabs": Array [], + }, + "runProperty": Object { + "fonts": Object { + "ascii": "Arial", + "eastAsia": "MS ゴシック", + }, + }, + "styleId": "affd", + "styleType": "paragraph", + "tableCellProperty": Object { + "borders": null, + "gridSpan": null, + "shading": null, + "textDirection": null, + "verticalAlign": null, + "verticalMerge": null, + "width": null, + }, + "tableProperty": Object { + "borders": Object { + "bottom": Object { + "borderType": "single", + "color": "000000", + "position": "bottom", + "size": 2, + "space": 0, + }, + "insideH": Object { + "borderType": "single", + "color": "000000", + "position": "insideH", + "size": 2, + "space": 0, + }, + "insideV": Object { + "borderType": "single", + "color": "000000", + "position": "insideV", + "size": 2, + "space": 0, + }, + "left": Object { + "borderType": "single", + "color": "000000", + "position": "left", + "size": 2, + "space": 0, + }, + "right": Object { + "borderType": "single", + "color": "000000", + "position": "right", + "size": 2, + "space": 0, + }, + "top": Object { + "borderType": "single", + "color": "000000", + "position": "top", + "size": 2, + "space": 0, + }, + }, + "justification": "left", + "width": Object { + "width": 0, + "widthType": "auto", + }, + }, + }, + Object { + "basedOn": "a7", + "name": "envelope return", + "next": null, + "paragraphProperty": Object { + "runProperty": Object {}, + "tabs": Array [], + }, + "runProperty": Object { + "fonts": Object { + "ascii": "Arial", + "cs": "Arial", + }, + }, + "styleId": "affe", + "styleType": "paragraph", + "tableCellProperty": Object { + "borders": null, + "gridSpan": null, + "shading": null, + "textDirection": null, + "verticalAlign": null, + "verticalMerge": null, + "width": null, + }, + "tableProperty": Object { + "borders": Object { + "bottom": Object { + "borderType": "single", + "color": "000000", + "position": "bottom", + "size": 2, + "space": 0, + }, + "insideH": Object { + "borderType": "single", + "color": "000000", + "position": "insideH", + "size": 2, + "space": 0, + }, + "insideV": Object { + "borderType": "single", + "color": "000000", + "position": "insideV", + "size": 2, + "space": 0, + }, + "left": Object { + "borderType": "single", + "color": "000000", + "position": "left", + "size": 2, + "space": 0, + }, + "right": Object { + "borderType": "single", + "color": "000000", + "position": "right", + "size": 2, + "space": 0, + }, + "top": Object { + "borderType": "single", + "color": "000000", + "position": "top", + "size": 2, + "space": 0, + }, + }, + "justification": "left", + "width": Object { + "width": 0, + "widthType": "auto", + }, + }, + }, + Object { + "basedOn": "a7", + "name": "Signature", + "next": null, + "paragraphProperty": Object { + "alignment": "right", + "runProperty": Object {}, + "tabs": Array [], + }, + "runProperty": Object {}, + "styleId": "afff", + "styleType": "paragraph", + "tableCellProperty": Object { + "borders": null, + "gridSpan": null, + "shading": null, + "textDirection": null, + "verticalAlign": null, + "verticalMerge": null, + "width": null, + }, + "tableProperty": Object { + "borders": Object { + "bottom": Object { + "borderType": "single", + "color": "000000", + "position": "bottom", + "size": 2, + "space": 0, + }, + "insideH": Object { + "borderType": "single", + "color": "000000", + "position": "insideH", + "size": 2, + "space": 0, + }, + "insideV": Object { + "borderType": "single", + "color": "000000", + "position": "insideV", + "size": 2, + "space": 0, + }, + "left": Object { + "borderType": "single", + "color": "000000", + "position": "left", + "size": 2, + "space": 0, + }, + "right": Object { + "borderType": "single", + "color": "000000", + "position": "right", + "size": 2, + "space": 0, + }, + "top": Object { + "borderType": "single", + "color": "000000", + "position": "top", + "size": 2, + "space": 0, + }, + }, + "justification": "left", + "width": Object { + "width": 0, + "widthType": "auto", + }, + }, + }, + Object { + "basedOn": "a7", + "name": "Plain Text", + "next": null, + "paragraphProperty": Object { + "runProperty": Object {}, + "tabs": Array [], + }, + "runProperty": Object { + "fonts": Object { + "ascii": "MS 明朝", + "cs": "Courier New", + "eastAsia": "MS 明朝", + "hiAnsi": "Courier New", + }, + }, + "styleId": "afff0", + "styleType": "paragraph", + "tableCellProperty": Object { + "borders": null, + "gridSpan": null, + "shading": null, + "textDirection": null, + "verticalAlign": null, + "verticalMerge": null, + "width": null, + }, + "tableProperty": Object { + "borders": Object { + "bottom": Object { + "borderType": "single", + "color": "000000", + "position": "bottom", + "size": 2, + "space": 0, + }, + "insideH": Object { + "borderType": "single", + "color": "000000", + "position": "insideH", + "size": 2, + "space": 0, + }, + "insideV": Object { + "borderType": "single", + "color": "000000", + "position": "insideV", + "size": 2, + "space": 0, + }, + "left": Object { + "borderType": "single", + "color": "000000", + "position": "left", + "size": 2, + "space": 0, + }, + "right": Object { + "borderType": "single", + "color": "000000", + "position": "right", + "size": 2, + "space": 0, + }, + "top": Object { + "borderType": "single", + "color": "000000", + "position": "top", + "size": 2, + "space": 0, + }, + }, + "justification": "left", + "width": Object { + "width": 0, + "widthType": "auto", + }, + }, + }, + Object { + "basedOn": "a7", + "name": "caption", + "next": null, + "paragraphProperty": Object { + "lineSpacing": Object { + "after": 240, + "before": 120, + }, + "runProperty": Object {}, + "tabs": Array [], + }, + "runProperty": Object { + "bold": true, + "boldCs": true, + "sz": 20, + "szCs": 20, + }, + "styleId": "afff1", + "styleType": "paragraph", + "tableCellProperty": Object { + "borders": null, + "gridSpan": null, + "shading": null, + "textDirection": null, + "verticalAlign": null, + "verticalMerge": null, + "width": null, + }, + "tableProperty": Object { + "borders": Object { + "bottom": Object { + "borderType": "single", + "color": "000000", + "position": "bottom", + "size": 2, + "space": 0, + }, + "insideH": Object { + "borderType": "single", + "color": "000000", + "position": "insideH", + "size": 2, + "space": 0, + }, + "insideV": Object { + "borderType": "single", + "color": "000000", + "position": "insideV", + "size": 2, + "space": 0, + }, + "left": Object { + "borderType": "single", + "color": "000000", + "position": "left", + "size": 2, + "space": 0, + }, + "right": Object { + "borderType": "single", + "color": "000000", + "position": "right", + "size": 2, + "space": 0, + }, + "top": Object { + "borderType": "single", + "color": "000000", + "position": "top", + "size": 2, + "space": 0, + }, + }, + "justification": "left", + "width": Object { + "width": 0, + "widthType": "auto", + }, + }, + }, + Object { + "basedOn": "a7", + "name": "List Number 4", + "next": null, + "paragraphProperty": Object { + "numberingProperty": Object { + "id": 13, + "level": null, + }, + "runProperty": Object {}, + "tabs": Array [], + }, + "runProperty": Object {}, + "styleId": "4", + "styleType": "paragraph", + "tableCellProperty": Object { + "borders": null, + "gridSpan": null, + "shading": null, + "textDirection": null, + "verticalAlign": null, + "verticalMerge": null, + "width": null, + }, + "tableProperty": Object { + "borders": Object { + "bottom": Object { + "borderType": "single", + "color": "000000", + "position": "bottom", + "size": 2, + "space": 0, + }, + "insideH": Object { + "borderType": "single", + "color": "000000", + "position": "insideH", + "size": 2, + "space": 0, + }, + "insideV": Object { + "borderType": "single", + "color": "000000", + "position": "insideV", + "size": 2, + "space": 0, + }, + "left": Object { + "borderType": "single", + "color": "000000", + "position": "left", + "size": 2, + "space": 0, + }, + "right": Object { + "borderType": "single", + "color": "000000", + "position": "right", + "size": 2, + "space": 0, + }, + "top": Object { + "borderType": "single", + "color": "000000", + "position": "top", + "size": 2, + "space": 0, + }, + }, + "justification": "left", + "width": Object { + "width": 0, + "widthType": "auto", + }, + }, + }, + Object { + "basedOn": "a7", + "name": "List Number 5", + "next": null, + "paragraphProperty": Object { + "numberingProperty": Object { + "id": 14, + "level": null, + }, + "runProperty": Object {}, + "tabs": Array [], + }, + "runProperty": Object {}, + "styleId": "5", + "styleType": "paragraph", + "tableCellProperty": Object { + "borders": null, + "gridSpan": null, + "shading": null, + "textDirection": null, + "verticalAlign": null, + "verticalMerge": null, + "width": null, + }, + "tableProperty": Object { + "borders": Object { + "bottom": Object { + "borderType": "single", + "color": "000000", + "position": "bottom", + "size": 2, + "space": 0, + }, + "insideH": Object { + "borderType": "single", + "color": "000000", + "position": "insideH", + "size": 2, + "space": 0, + }, + "insideV": Object { + "borderType": "single", + "color": "000000", + "position": "insideV", + "size": 2, + "space": 0, + }, + "left": Object { + "borderType": "single", + "color": "000000", + "position": "left", + "size": 2, + "space": 0, + }, + "right": Object { + "borderType": "single", + "color": "000000", + "position": "right", + "size": 2, + "space": 0, + }, + "top": Object { + "borderType": "single", + "color": "000000", + "position": "top", + "size": 2, + "space": 0, + }, + }, + "justification": "left", + "width": Object { + "width": 0, + "widthType": "auto", + }, + }, + }, + Object { + "basedOn": "a7", + "name": "E-mail Signature", + "next": null, + "paragraphProperty": Object { + "runProperty": Object {}, + "tabs": Array [], + }, + "runProperty": Object {}, + "styleId": "afff2", + "styleType": "paragraph", + "tableCellProperty": Object { + "borders": null, + "gridSpan": null, + "shading": null, + "textDirection": null, + "verticalAlign": null, + "verticalMerge": null, + "width": null, + }, + "tableProperty": Object { + "borders": Object { + "bottom": Object { + "borderType": "single", + "color": "000000", + "position": "bottom", + "size": 2, + "space": 0, + }, + "insideH": Object { + "borderType": "single", + "color": "000000", + "position": "insideH", + "size": 2, + "space": 0, + }, + "insideV": Object { + "borderType": "single", + "color": "000000", + "position": "insideV", + "size": 2, + "space": 0, + }, + "left": Object { + "borderType": "single", + "color": "000000", + "position": "left", + "size": 2, + "space": 0, + }, + "right": Object { + "borderType": "single", + "color": "000000", + "position": "right", + "size": 2, + "space": 0, + }, + "top": Object { + "borderType": "single", + "color": "000000", + "position": "top", + "size": 2, + "space": 0, + }, + }, + "justification": "left", + "width": Object { + "width": 0, + "widthType": "auto", + }, + }, + }, + Object { + "basedOn": "a7", + "name": "Normal (Web)", + "next": null, + "paragraphProperty": Object { + "runProperty": Object {}, + "tabs": Array [], + }, + "runProperty": Object { + "fonts": Object { + "ascii": "Times New Roman", + "hiAnsi": "Times New Roman", + }, + "sz": 24, + "szCs": 24, + }, + "styleId": "Web", + "styleType": "paragraph", + "tableCellProperty": Object { + "borders": null, + "gridSpan": null, + "shading": null, + "textDirection": null, + "verticalAlign": null, + "verticalMerge": null, + "width": null, + }, + "tableProperty": Object { + "borders": Object { + "bottom": Object { + "borderType": "single", + "color": "000000", + "position": "bottom", + "size": 2, + "space": 0, + }, + "insideH": Object { + "borderType": "single", + "color": "000000", + "position": "insideH", + "size": 2, + "space": 0, + }, + "insideV": Object { + "borderType": "single", + "color": "000000", + "position": "insideV", + "size": 2, + "space": 0, + }, + "left": Object { + "borderType": "single", + "color": "000000", + "position": "left", + "size": 2, + "space": 0, + }, + "right": Object { + "borderType": "single", + "color": "000000", + "position": "right", + "size": 2, + "space": 0, + }, + "top": Object { + "borderType": "single", + "color": "000000", + "position": "top", + "size": 2, + "space": 0, + }, + }, + "justification": "left", + "width": Object { + "width": 0, + "widthType": "auto", + }, + }, + }, + Object { + "basedOn": "a7", + "name": "endnote text", + "next": null, + "paragraphProperty": Object { + "alignment": "left", + "runProperty": Object {}, + "tabs": Array [], + }, + "runProperty": Object {}, + "styleId": "afff3", + "styleType": "paragraph", + "tableCellProperty": Object { + "borders": null, + "gridSpan": null, + "shading": null, + "textDirection": null, + "verticalAlign": null, + "verticalMerge": null, + "width": null, + }, + "tableProperty": Object { + "borders": Object { + "bottom": Object { + "borderType": "single", + "color": "000000", + "position": "bottom", + "size": 2, + "space": 0, + }, + "insideH": Object { + "borderType": "single", + "color": "000000", + "position": "insideH", + "size": 2, + "space": 0, + }, + "insideV": Object { + "borderType": "single", + "color": "000000", + "position": "insideV", + "size": 2, + "space": 0, + }, + "left": Object { + "borderType": "single", + "color": "000000", + "position": "left", + "size": 2, + "space": 0, + }, + "right": Object { + "borderType": "single", + "color": "000000", + "position": "right", + "size": 2, + "space": 0, + }, + "top": Object { + "borderType": "single", + "color": "000000", + "position": "top", + "size": 2, + "space": 0, + }, + }, + "justification": "left", + "width": Object { + "width": 0, + "widthType": "auto", + }, + }, + }, + Object { + "basedOn": "a7", + "name": "Body Text 3", + "next": null, + "paragraphProperty": Object { + "runProperty": Object {}, + "tabs": Array [], + }, + "runProperty": Object { + "sz": 16, + "szCs": 16, + }, + "styleId": "38", + "styleType": "paragraph", + "tableCellProperty": Object { + "borders": null, + "gridSpan": null, + "shading": null, + "textDirection": null, + "verticalAlign": null, + "verticalMerge": null, + "width": null, + }, + "tableProperty": Object { + "borders": Object { + "bottom": Object { + "borderType": "single", + "color": "000000", + "position": "bottom", + "size": 2, + "space": 0, + }, + "insideH": Object { + "borderType": "single", + "color": "000000", + "position": "insideH", + "size": 2, + "space": 0, + }, + "insideV": Object { + "borderType": "single", + "color": "000000", + "position": "insideV", + "size": 2, + "space": 0, + }, + "left": Object { + "borderType": "single", + "color": "000000", + "position": "left", + "size": 2, + "space": 0, + }, + "right": Object { + "borderType": "single", + "color": "000000", + "position": "right", + "size": 2, + "space": 0, + }, + "top": Object { + "borderType": "single", + "color": "000000", + "position": "top", + "size": 2, + "space": 0, + }, + }, + "justification": "left", + "width": Object { + "width": 0, + "widthType": "auto", + }, + }, + }, + Object { + "basedOn": "af9", + "name": "Body Text First Indent", + "next": null, + "paragraphProperty": Object { + "indent": Object { + "end": null, + "firstLineChars": 100, + "hangingChars": null, + "specialIndent": Object { + "type": "firstLine", + "val": 210, + }, + "start": null, + "startChars": null, + }, + "runProperty": Object {}, + "tabs": Array [], + }, + "runProperty": Object { + "sz": 21, + "szCs": 21, + }, + "styleId": "afff4", + "styleType": "paragraph", + "tableCellProperty": Object { + "borders": null, + "gridSpan": null, + "shading": null, + "textDirection": null, + "verticalAlign": null, + "verticalMerge": null, + "width": null, + }, + "tableProperty": Object { + "borders": Object { + "bottom": Object { + "borderType": "single", + "color": "000000", + "position": "bottom", + "size": 2, + "space": 0, + }, + "insideH": Object { + "borderType": "single", + "color": "000000", + "position": "insideH", + "size": 2, + "space": 0, + }, + "insideV": Object { + "borderType": "single", + "color": "000000", + "position": "insideV", + "size": 2, + "space": 0, + }, + "left": Object { + "borderType": "single", + "color": "000000", + "position": "left", + "size": 2, + "space": 0, + }, + "right": Object { + "borderType": "single", + "color": "000000", + "position": "right", + "size": 2, + "space": 0, + }, + "top": Object { + "borderType": "single", + "color": "000000", + "position": "top", + "size": 2, + "space": 0, + }, + }, + "justification": "left", + "width": Object { + "width": 0, + "widthType": "auto", + }, + }, + }, + Object { + "basedOn": "af", + "name": "Body Text First Indent 2", + "next": null, + "paragraphProperty": Object { + "indent": Object { + "end": null, + "firstLineChars": 100, + "hangingChars": null, + "specialIndent": Object { + "type": "firstLine", + "val": 100, + }, + "start": 851, + "startChars": 400, + }, + "lineSpacing": Object { + "before": 0, + "line": 360, + "lineRule": "atLeast", + }, + "runProperty": Object {}, + "tabs": Array [], + }, + "runProperty": Object { + "fonts": Object { + "ascii": "MS P明朝", + "eastAsia": "MS P明朝", + }, + "sz": 21, + "szCs": 21, + }, + "styleId": "2c", + "styleType": "paragraph", + "tableCellProperty": Object { + "borders": null, + "gridSpan": null, + "shading": null, + "textDirection": null, + "verticalAlign": null, + "verticalMerge": null, + "width": null, + }, + "tableProperty": Object { + "borders": Object { + "bottom": Object { + "borderType": "single", + "color": "000000", + "position": "bottom", + "size": 2, + "space": 0, + }, + "insideH": Object { + "borderType": "single", + "color": "000000", + "position": "insideH", + "size": 2, + "space": 0, + }, + "insideV": Object { + "borderType": "single", + "color": "000000", + "position": "insideV", + "size": 2, + "space": 0, + }, + "left": Object { + "borderType": "single", + "color": "000000", + "position": "left", + "size": 2, + "space": 0, + }, + "right": Object { + "borderType": "single", + "color": "000000", + "position": "right", + "size": 2, + "space": 0, + }, + "top": Object { + "borderType": "single", + "color": "000000", + "position": "top", + "size": 2, + "space": 0, + }, + }, + "justification": "left", + "width": Object { + "width": 0, + "widthType": "auto", + }, + }, + }, + Object { + "basedOn": "a7", + "name": "Balloon Text", + "next": null, + "paragraphProperty": Object { + "lineSpacing": Object { + "line": 240, + "lineRule": "auto", + }, + "runProperty": Object {}, + "tabs": Array [], + }, + "runProperty": Object { + "fonts": Object { + "ascii": "Arial", + "eastAsia": "MS ゴシック", + }, + "sz": 18, + "szCs": 18, + }, + "styleId": "afff6", + "styleType": "paragraph", + "tableCellProperty": Object { + "borders": null, + "gridSpan": null, + "shading": null, + "textDirection": null, + "verticalAlign": null, + "verticalMerge": null, + "width": null, + }, + "tableProperty": Object { + "borders": Object { + "bottom": Object { + "borderType": "single", + "color": "000000", + "position": "bottom", + "size": 2, + "space": 0, + }, + "insideH": Object { + "borderType": "single", + "color": "000000", + "position": "insideH", + "size": 2, + "space": 0, + }, + "insideV": Object { + "borderType": "single", + "color": "000000", + "position": "insideV", + "size": 2, + "space": 0, + }, + "left": Object { + "borderType": "single", + "color": "000000", + "position": "left", + "size": 2, + "space": 0, + }, + "right": Object { + "borderType": "single", + "color": "000000", + "position": "right", + "size": 2, + "space": 0, + }, + "top": Object { + "borderType": "single", + "color": "000000", + "position": "top", + "size": 2, + "space": 0, + }, + }, + "justification": "left", + "width": Object { + "width": 0, + "widthType": "auto", + }, + }, + }, + Object { + "basedOn": null, + "name": "吹き出し (文字)", + "next": null, + "paragraphProperty": Object { + "runProperty": Object {}, + "tabs": Array [], + }, + "runProperty": Object { + "fonts": Object { + "ascii": "Arial", + "cs": "Times New Roman", + "eastAsia": "MS ゴシック", + "hiAnsi": "Arial", + }, + "sz": 18, + "szCs": 18, + }, + "styleId": "afff7", + "styleType": "character", + "tableCellProperty": Object { + "borders": null, + "gridSpan": null, + "shading": null, + "textDirection": null, + "verticalAlign": null, + "verticalMerge": null, + "width": null, + }, + "tableProperty": Object { + "borders": Object { + "bottom": Object { + "borderType": "single", + "color": "000000", + "position": "bottom", + "size": 2, + "space": 0, + }, + "insideH": Object { + "borderType": "single", + "color": "000000", + "position": "insideH", + "size": 2, + "space": 0, + }, + "insideV": Object { + "borderType": "single", + "color": "000000", + "position": "insideV", + "size": 2, + "space": 0, + }, + "left": Object { + "borderType": "single", + "color": "000000", + "position": "left", + "size": 2, + "space": 0, + }, + "right": Object { + "borderType": "single", + "color": "000000", + "position": "right", + "size": 2, + "space": 0, + }, + "top": Object { + "borderType": "single", + "color": "000000", + "position": "top", + "size": 2, + "space": 0, + }, + }, + "justification": "left", + "width": Object { + "width": 0, + "widthType": "auto", + }, + }, + }, + Object { + "basedOn": "a2", + "name": "★NEWスタイル", + "next": null, + "paragraphProperty": Object { + "indent": Object { + "end": null, + "firstLineChars": null, + "hangingChars": null, + "specialIndent": null, + "start": 2340, + "startChars": null, + }, + "runProperty": Object {}, + "tabs": Array [], + }, + "runProperty": Object {}, + "styleId": "NEW", + "styleType": "paragraph", + "tableCellProperty": Object { + "borders": null, + "gridSpan": null, + "shading": null, + "textDirection": null, + "verticalAlign": null, + "verticalMerge": null, + "width": null, + }, + "tableProperty": Object { + "borders": Object { + "bottom": Object { + "borderType": "single", + "color": "000000", + "position": "bottom", + "size": 2, + "space": 0, + }, + "insideH": Object { + "borderType": "single", + "color": "000000", + "position": "insideH", + "size": 2, + "space": 0, + }, + "insideV": Object { + "borderType": "single", + "color": "000000", + "position": "insideV", + "size": 2, + "space": 0, + }, + "left": Object { + "borderType": "single", + "color": "000000", + "position": "left", + "size": 2, + "space": 0, + }, + "right": Object { + "borderType": "single", + "color": "000000", + "position": "right", + "size": 2, + "space": 0, + }, + "top": Object { + "borderType": "single", + "color": "000000", + "position": "top", + "size": 2, + "space": 0, + }, + }, + "justification": "left", + "width": Object { + "width": 0, + "widthType": "auto", + }, + }, + }, + Object { + "basedOn": null, + "name": "コメント文字列 (文字)", + "next": null, + "paragraphProperty": Object { + "runProperty": Object {}, + "tabs": Array [], + }, + "runProperty": Object { + "fonts": Object { + "ascii": "Arial", + "eastAsia": "MS ゴシック", + "hiAnsi": "Times New Roman", + }, + "sz": 21, + "szCs": 21, + }, + "styleId": "af4", + "styleType": "character", + "tableCellProperty": Object { + "borders": null, + "gridSpan": null, + "shading": null, + "textDirection": null, + "verticalAlign": null, + "verticalMerge": null, + "width": null, + }, + "tableProperty": Object { + "borders": Object { + "bottom": Object { + "borderType": "single", + "color": "000000", + "position": "bottom", + "size": 2, + "space": 0, + }, + "insideH": Object { + "borderType": "single", + "color": "000000", + "position": "insideH", + "size": 2, + "space": 0, + }, + "insideV": Object { + "borderType": "single", + "color": "000000", + "position": "insideV", + "size": 2, + "space": 0, + }, + "left": Object { + "borderType": "single", + "color": "000000", + "position": "left", + "size": 2, + "space": 0, + }, + "right": Object { + "borderType": "single", + "color": "000000", + "position": "right", + "size": 2, + "space": 0, + }, + "top": Object { + "borderType": "single", + "color": "000000", + "position": "top", + "size": 2, + "space": 0, + }, + }, + "justification": "left", + "width": Object { + "width": 0, + "widthType": "auto", + }, + }, + }, + Object { + "basedOn": null, + "name": "HTML Typewriter", + "next": null, + "paragraphProperty": Object { + "runProperty": Object {}, + "tabs": Array [], + }, + "runProperty": Object { + "fonts": Object { + "ascii": "Arial Unicode MS", + "cs": "Arial Unicode MS", + "eastAsia": "Arial Unicode MS", + "hiAnsi": "Arial Unicode MS", + }, + "sz": 20, + "szCs": 20, + }, + "styleId": "HTML1", + "styleType": "character", + "tableCellProperty": Object { + "borders": null, + "gridSpan": null, + "shading": null, + "textDirection": null, + "verticalAlign": null, + "verticalMerge": null, + "width": null, + }, + "tableProperty": Object { + "borders": Object { + "bottom": Object { + "borderType": "single", + "color": "000000", + "position": "bottom", + "size": 2, + "space": 0, + }, + "insideH": Object { + "borderType": "single", + "color": "000000", + "position": "insideH", + "size": 2, + "space": 0, + }, + "insideV": Object { + "borderType": "single", + "color": "000000", + "position": "insideV", + "size": 2, + "space": 0, + }, + "left": Object { + "borderType": "single", + "color": "000000", + "position": "left", + "size": 2, + "space": 0, + }, + "right": Object { + "borderType": "single", + "color": "000000", + "position": "right", + "size": 2, + "space": 0, + }, + "top": Object { + "borderType": "single", + "color": "000000", + "position": "top", + "size": 2, + "space": 0, + }, + }, + "justification": "left", + "width": Object { + "width": 0, + "widthType": "auto", + }, + }, + }, + Object { + "basedOn": "aa", + "name": "Table Grid", + "next": null, + "paragraphProperty": Object { + "runProperty": Object {}, + "tabs": Array [], + }, + "runProperty": Object { + "fonts": Object { + "eastAsia": "MS 明朝", + }, + }, + "styleId": "afff8", + "styleType": "table", + "tableCellProperty": Object { + "borders": null, + "gridSpan": null, + "shading": null, + "textDirection": null, + "verticalAlign": null, + "verticalMerge": null, + "width": null, + }, + "tableProperty": Object { + "borders": Object { + "bottom": Object { + "borderType": "single", + "color": "auto", + "position": "bottom", + "size": 4, + "space": 0, + }, + "insideH": Object { + "borderType": "single", + "color": "auto", + "position": "insideH", + "size": 4, + "space": 0, + }, + "insideV": Object { + "borderType": "single", + "color": "auto", + "position": "insideV", + "size": 4, + "space": 0, + }, + "left": Object { + "borderType": "single", + "color": "auto", + "position": "left", + "size": 4, + "space": 0, + }, + "right": Object { + "borderType": "single", + "color": "auto", + "position": "right", + "size": 4, + "space": 0, + }, + "top": Object { + "borderType": "single", + "color": "auto", + "position": "top", + "size": 4, + "space": 0, + }, + }, + "justification": "left", + "width": Object { + "width": 0, + "widthType": "auto", + }, + }, + }, + Object { + "basedOn": null, + "name": "本文 (文字)", + "next": null, + "paragraphProperty": Object { + "runProperty": Object {}, + "tabs": Array [], + }, + "runProperty": Object { + "fonts": Object { + "ascii": "MS P明朝", + "eastAsia": "MS P明朝", + "hiAnsi": "Arial", + }, + "sz": 18, + "szCs": 18, + }, + "styleId": "afa", + "styleType": "character", + "tableCellProperty": Object { + "borders": null, + "gridSpan": null, + "shading": null, + "textDirection": null, + "verticalAlign": null, + "verticalMerge": null, + "width": null, + }, + "tableProperty": Object { + "borders": Object { + "bottom": Object { + "borderType": "single", + "color": "000000", + "position": "bottom", + "size": 2, + "space": 0, + }, + "insideH": Object { + "borderType": "single", + "color": "000000", + "position": "insideH", + "size": 2, + "space": 0, + }, + "insideV": Object { + "borderType": "single", + "color": "000000", + "position": "insideV", + "size": 2, + "space": 0, + }, + "left": Object { + "borderType": "single", + "color": "000000", + "position": "left", + "size": 2, + "space": 0, + }, + "right": Object { + "borderType": "single", + "color": "000000", + "position": "right", + "size": 2, + "space": 0, + }, + "top": Object { + "borderType": "single", + "color": "000000", + "position": "top", + "size": 2, + "space": 0, + }, + }, + "justification": "left", + "width": Object { + "width": 0, + "widthType": "auto", + }, + }, + }, + Object { + "basedOn": null, + "name": "本文インデント (文字)", + "next": null, + "paragraphProperty": Object { + "runProperty": Object {}, + "tabs": Array [], + }, + "runProperty": Object { + "fonts": Object { + "ascii": "Arial", + "eastAsia": "MS Pゴシック", + "hiAnsi": "Arial", + }, + }, + "styleId": "af0", + "styleType": "character", + "tableCellProperty": Object { + "borders": null, + "gridSpan": null, + "shading": null, + "textDirection": null, + "verticalAlign": null, + "verticalMerge": null, + "width": null, + }, + "tableProperty": Object { + "borders": Object { + "bottom": Object { + "borderType": "single", + "color": "000000", + "position": "bottom", + "size": 2, + "space": 0, + }, + "insideH": Object { + "borderType": "single", + "color": "000000", + "position": "insideH", + "size": 2, + "space": 0, + }, + "insideV": Object { + "borderType": "single", + "color": "000000", + "position": "insideV", + "size": 2, + "space": 0, + }, + "left": Object { + "borderType": "single", + "color": "000000", + "position": "left", + "size": 2, + "space": 0, + }, + "right": Object { + "borderType": "single", + "color": "000000", + "position": "right", + "size": 2, + "space": 0, + }, + "top": Object { + "borderType": "single", + "color": "000000", + "position": "top", + "size": 2, + "space": 0, + }, + }, + "justification": "left", + "width": Object { + "width": 0, + "widthType": "auto", + }, + }, + }, + Object { + "basedOn": "aa", + "name": "Light List Accent 5", + "next": null, + "paragraphProperty": Object { + "lineSpacing": Object { + "after": 0, + "before": 0, + "line": 240, + "lineRule": "auto", + }, + "runProperty": Object {}, + "tabs": Array [], + }, + "runProperty": Object { + "bold": true, + "boldCs": true, + }, + "styleId": "2e", + "styleType": "table", + "tableCellProperty": Object { + "borders": Object { + "bottom": Object { + "borderType": "single", + "color": "4BACC6", + "position": "bottom", + "size": 8, + "space": 0, + }, + "insideH": null, + "insideV": null, + "left": Object { + "borderType": "single", + "color": "4BACC6", + "position": "left", + "size": 8, + "space": 0, + }, + "right": Object { + "borderType": "single", + "color": "4BACC6", + "position": "right", + "size": 8, + "space": 0, + }, + "tl2br": null, + "top": Object { + "borderType": "single", + "color": "4BACC6", + "position": "top", + "size": 8, + "space": 0, + }, + "tr2bl": null, + }, + "gridSpan": null, + "shading": null, + "textDirection": null, + "verticalAlign": null, + "verticalMerge": null, + "width": null, + }, + "tableProperty": Object { + "borders": Object { + "bottom": null, + "insideH": null, + "insideV": null, + "left": null, + "right": null, + "top": null, + }, + "justification": "left", + "width": Object { + "width": 0, + "widthType": "auto", + }, + }, + }, + Object { + "basedOn": "aa", + "name": "Light Shading Accent 3", + "next": null, + "paragraphProperty": Object { + "lineSpacing": Object { + "after": 0, + "before": 0, + "line": 240, + "lineRule": "auto", + }, + "runProperty": Object {}, + "tabs": Array [], + }, + "runProperty": Object { + "bold": true, + "boldCs": true, + }, + "styleId": "16", + "styleType": "table", + "tableCellProperty": Object { + "borders": Object { + "bottom": null, + "insideH": Object { + "borderType": "nil", + "color": "000000", + "position": "insideH", + "size": 4, + "space": 0, + }, + "insideV": Object { + "borderType": "nil", + "color": "000000", + "position": "insideV", + "size": 4, + "space": 0, + }, + "left": Object { + "borderType": "nil", + "color": "000000", + "position": "left", + "size": 4, + "space": 0, + }, + "right": Object { + "borderType": "nil", + "color": "000000", + "position": "right", + "size": 4, + "space": 0, + }, + "tl2br": null, + "top": null, + "tr2bl": null, + }, + "gridSpan": null, + "shading": Object { + "color": "auto", + "fill": "E6EED5", + "shdType": "clear", + }, + "textDirection": null, + "verticalAlign": null, + "verticalMerge": null, + "width": null, + }, + "tableProperty": Object { + "borders": Object { + "bottom": null, + "insideH": null, + "insideV": null, + "left": null, + "right": null, + "top": null, + }, + "justification": "left", + "width": Object { + "width": 0, + "widthType": "auto", + }, + }, + }, + Object { + "basedOn": null, + "name": "Revision", + "next": null, + "paragraphProperty": Object { + "runProperty": Object {}, + "tabs": Array [], + }, + "runProperty": Object { + "fonts": Object { + "eastAsia": "MS 明朝", + }, + "sz": 21, + "szCs": 21, + }, + "styleId": "afff9", + "styleType": "paragraph", + "tableCellProperty": Object { + "borders": null, + "gridSpan": null, + "shading": null, + "textDirection": null, + "verticalAlign": null, + "verticalMerge": null, + "width": null, + }, + "tableProperty": Object { + "borders": Object { + "bottom": Object { + "borderType": "single", + "color": "000000", + "position": "bottom", + "size": 2, + "space": 0, + }, + "insideH": Object { + "borderType": "single", + "color": "000000", + "position": "insideH", + "size": 2, + "space": 0, + }, + "insideV": Object { + "borderType": "single", + "color": "000000", + "position": "insideV", + "size": 2, + "space": 0, + }, + "left": Object { + "borderType": "single", + "color": "000000", + "position": "left", + "size": 2, + "space": 0, + }, + "right": Object { + "borderType": "single", + "color": "000000", + "position": "right", + "size": 2, + "space": 0, + }, + "top": Object { + "borderType": "single", + "color": "000000", + "position": "top", + "size": 2, + "space": 0, + }, + }, + "justification": "left", + "width": Object { + "width": 0, + "widthType": "auto", + }, + }, + }, + Object { + "basedOn": null, + "name": "本文字下げ 2 (文字)", + "next": null, + "paragraphProperty": Object { + "runProperty": Object {}, + "tabs": Array [], + }, + "runProperty": Object { + "fonts": Object { + "ascii": "MS P明朝", + "eastAsia": "MS P明朝", + "hiAnsi": "Arial", + }, + "sz": 21, + "szCs": 21, + }, + "styleId": "2d", + "styleType": "character", + "tableCellProperty": Object { + "borders": null, + "gridSpan": null, + "shading": null, + "textDirection": null, + "verticalAlign": null, + "verticalMerge": null, + "width": null, + }, + "tableProperty": Object { + "borders": Object { + "bottom": Object { + "borderType": "single", + "color": "000000", + "position": "bottom", + "size": 2, + "space": 0, + }, + "insideH": Object { + "borderType": "single", + "color": "000000", + "position": "insideH", + "size": 2, + "space": 0, + }, + "insideV": Object { + "borderType": "single", + "color": "000000", + "position": "insideV", + "size": 2, + "space": 0, + }, + "left": Object { + "borderType": "single", + "color": "000000", + "position": "left", + "size": 2, + "space": 0, + }, + "right": Object { + "borderType": "single", + "color": "000000", + "position": "right", + "size": 2, + "space": 0, + }, + "top": Object { + "borderType": "single", + "color": "000000", + "position": "top", + "size": 2, + "space": 0, + }, + }, + "justification": "left", + "width": Object { + "width": 0, + "widthType": "auto", + }, + }, + }, + Object { + "basedOn": null, + "name": "本文インデント 2 (文字)", + "next": null, + "paragraphProperty": Object { + "runProperty": Object {}, + "tabs": Array [], + }, + "runProperty": Object { + "fonts": Object { + "ascii": "MS P明朝", + "eastAsia": "MS P明朝", + "hiAnsi": "Arial", + }, + "sz": 21, + "szCs": 21, + }, + "styleId": "24", + "styleType": "character", + "tableCellProperty": Object { + "borders": null, + "gridSpan": null, + "shading": null, + "textDirection": null, + "verticalAlign": null, + "verticalMerge": null, + "width": null, + }, + "tableProperty": Object { + "borders": Object { + "bottom": Object { + "borderType": "single", + "color": "000000", + "position": "bottom", + "size": 2, + "space": 0, + }, + "insideH": Object { + "borderType": "single", + "color": "000000", + "position": "insideH", + "size": 2, + "space": 0, + }, + "insideV": Object { + "borderType": "single", + "color": "000000", + "position": "insideV", + "size": 2, + "space": 0, + }, + "left": Object { + "borderType": "single", + "color": "000000", + "position": "left", + "size": 2, + "space": 0, + }, + "right": Object { + "borderType": "single", + "color": "000000", + "position": "right", + "size": 2, + "space": 0, + }, + "top": Object { + "borderType": "single", + "color": "000000", + "position": "top", + "size": 2, + "space": 0, + }, + }, + "justification": "left", + "width": Object { + "width": 0, + "widthType": "auto", + }, + }, + }, + Object { + "basedOn": "af", + "name": "★スタイル2", + "next": null, + "paragraphProperty": Object { + "runProperty": Object {}, + "tabs": Array [], + }, + "runProperty": Object { + "fonts": Object { + "ascii": "MS Pゴシック", + }, + }, + "styleId": "2f", + "styleType": "paragraph", + "tableCellProperty": Object { + "borders": null, + "gridSpan": null, + "shading": null, + "textDirection": null, + "verticalAlign": null, + "verticalMerge": null, + "width": null, + }, + "tableProperty": Object { + "borders": Object { + "bottom": Object { + "borderType": "single", + "color": "000000", + "position": "bottom", + "size": 2, + "space": 0, + }, + "insideH": Object { + "borderType": "single", + "color": "000000", + "position": "insideH", + "size": 2, + "space": 0, + }, + "insideV": Object { + "borderType": "single", + "color": "000000", + "position": "insideV", + "size": 2, + "space": 0, + }, + "left": Object { + "borderType": "single", + "color": "000000", + "position": "left", + "size": 2, + "space": 0, + }, + "right": Object { + "borderType": "single", + "color": "000000", + "position": "right", + "size": 2, + "space": 0, + }, + "top": Object { + "borderType": "single", + "color": "000000", + "position": "top", + "size": 2, + "space": 0, + }, + }, + "justification": "left", + "width": Object { + "width": 0, + "widthType": "auto", + }, + }, + }, + Object { + "basedOn": null, + "name": "本文 2 (文字)", + "next": null, + "paragraphProperty": Object { + "runProperty": Object {}, + "tabs": Array [], + }, + "runProperty": Object { + "fonts": Object { + "ascii": "MS Pゴシック", + "eastAsia": "MS Pゴシック", + "hiAnsi": "Arial", + }, + }, + "styleId": "29", + "styleType": "character", + "tableCellProperty": Object { + "borders": null, + "gridSpan": null, + "shading": null, + "textDirection": null, + "verticalAlign": null, + "verticalMerge": null, + "width": null, + }, + "tableProperty": Object { + "borders": Object { + "bottom": Object { + "borderType": "single", + "color": "000000", + "position": "bottom", + "size": 2, + "space": 0, + }, + "insideH": Object { + "borderType": "single", + "color": "000000", + "position": "insideH", + "size": 2, + "space": 0, + }, + "insideV": Object { + "borderType": "single", + "color": "000000", + "position": "insideV", + "size": 2, + "space": 0, + }, + "left": Object { + "borderType": "single", + "color": "000000", + "position": "left", + "size": 2, + "space": 0, + }, + "right": Object { + "borderType": "single", + "color": "000000", + "position": "right", + "size": 2, + "space": 0, + }, + "top": Object { + "borderType": "single", + "color": "000000", + "position": "top", + "size": 2, + "space": 0, + }, + }, + "justification": "left", + "width": Object { + "width": 0, + "widthType": "auto", + }, + }, + }, + Object { + "basedOn": null, + "name": "本文 3 (文字)", + "next": null, + "paragraphProperty": Object { + "runProperty": Object {}, + "tabs": Array [], + }, + "runProperty": Object { + "fonts": Object { + "ascii": "MS P明朝", + "eastAsia": "MS P明朝", + "hiAnsi": "Arial", + }, + "sz": 16, + "szCs": 16, + }, + "styleId": "39", + "styleType": "character", + "tableCellProperty": Object { + "borders": null, + "gridSpan": null, + "shading": null, + "textDirection": null, + "verticalAlign": null, + "verticalMerge": null, + "width": null, + }, + "tableProperty": Object { + "borders": Object { + "bottom": Object { + "borderType": "single", + "color": "000000", + "position": "bottom", + "size": 2, + "space": 0, + }, + "insideH": Object { + "borderType": "single", + "color": "000000", + "position": "insideH", + "size": 2, + "space": 0, + }, + "insideV": Object { + "borderType": "single", + "color": "000000", + "position": "insideV", + "size": 2, + "space": 0, + }, + "left": Object { + "borderType": "single", + "color": "000000", + "position": "left", + "size": 2, + "space": 0, + }, + "right": Object { + "borderType": "single", + "color": "000000", + "position": "right", + "size": 2, + "space": 0, + }, + "top": Object { + "borderType": "single", + "color": "000000", + "position": "top", + "size": 2, + "space": 0, + }, + }, + "justification": "left", + "width": Object { + "width": 0, + "widthType": "auto", + }, + }, + }, + Object { + "basedOn": null, + "name": "本文インデント 3 (文字)", + "next": null, + "paragraphProperty": Object { + "runProperty": Object {}, + "tabs": Array [], + }, + "runProperty": Object { + "color": "FF0000", + "fonts": Object { + "ascii": "MS P明朝", + "eastAsia": "MS P明朝", + "hiAnsi": "Arial", + }, + "sz": 21, + "szCs": 21, + }, + "styleId": "34", + "styleType": "character", + "tableCellProperty": Object { + "borders": null, + "gridSpan": null, + "shading": null, + "textDirection": null, + "verticalAlign": null, + "verticalMerge": null, + "width": null, + }, + "tableProperty": Object { + "borders": Object { + "bottom": Object { + "borderType": "single", + "color": "000000", + "position": "bottom", + "size": 2, + "space": 0, + }, + "insideH": Object { + "borderType": "single", + "color": "000000", + "position": "insideH", + "size": 2, + "space": 0, + }, + "insideV": Object { + "borderType": "single", + "color": "000000", + "position": "insideV", + "size": 2, + "space": 0, + }, + "left": Object { + "borderType": "single", + "color": "000000", + "position": "left", + "size": 2, + "space": 0, + }, + "right": Object { + "borderType": "single", + "color": "000000", + "position": "right", + "size": 2, + "space": 0, + }, + "top": Object { + "borderType": "single", + "color": "000000", + "position": "top", + "size": 2, + "space": 0, + }, + }, + "justification": "left", + "width": Object { + "width": 0, + "widthType": "auto", + }, + }, + }, + Object { + "basedOn": null, + "name": "本文字下げ (文字)", + "next": null, + "paragraphProperty": Object { + "runProperty": Object {}, + "tabs": Array [], + }, + "runProperty": Object { + "fonts": Object { + "ascii": "MS P明朝", + "eastAsia": "MS P明朝", + "hiAnsi": "Arial", + }, + "sz": 21, + "szCs": 21, + }, + "styleId": "afff5", + "styleType": "character", + "tableCellProperty": Object { + "borders": null, + "gridSpan": null, + "shading": null, + "textDirection": null, + "verticalAlign": null, + "verticalMerge": null, + "width": null, + }, + "tableProperty": Object { + "borders": Object { + "bottom": Object { + "borderType": "single", + "color": "000000", + "position": "bottom", + "size": 2, + "space": 0, + }, + "insideH": Object { + "borderType": "single", + "color": "000000", + "position": "insideH", + "size": 2, + "space": 0, + }, + "insideV": Object { + "borderType": "single", + "color": "000000", + "position": "insideV", + "size": 2, + "space": 0, + }, + "left": Object { + "borderType": "single", + "color": "000000", + "position": "left", + "size": 2, + "space": 0, + }, + "right": Object { + "borderType": "single", + "color": "000000", + "position": "right", + "size": 2, + "space": 0, + }, + "top": Object { + "borderType": "single", + "color": "000000", + "position": "top", + "size": 2, + "space": 0, + }, + }, + "justification": "left", + "width": Object { + "width": 0, + "widthType": "auto", + }, + }, + }, + Object { + "basedOn": "1", + "name": "TOC Heading", + "next": null, + "paragraphProperty": Object { + "lineSpacing": Object { + "before": 0, + "line": 240, + "lineRule": "auto", + }, + "numberingProperty": Object { + "id": 0, + "level": null, + }, + "outlineLvl": 9, + "runProperty": Object {}, + "tabs": Array [], + }, + "runProperty": Object { + "bold": false, + "boldCs": false, + "fonts": Object { + "ascii": "Arial", + "eastAsia": "MS ゴシック", + "hiAnsi": "Arial", + }, + "sz": 24, + "szCs": 24, + }, + "styleId": "afffa", + "styleType": "paragraph", + "tableCellProperty": Object { + "borders": null, + "gridSpan": null, + "shading": null, + "textDirection": null, + "verticalAlign": null, + "verticalMerge": null, + "width": null, + }, + "tableProperty": Object { + "borders": Object { + "bottom": Object { + "borderType": "single", + "color": "000000", + "position": "bottom", + "size": 2, + "space": 0, + }, + "insideH": Object { + "borderType": "single", + "color": "000000", + "position": "insideH", + "size": 2, + "space": 0, + }, + "insideV": Object { + "borderType": "single", + "color": "000000", + "position": "insideV", + "size": 2, + "space": 0, + }, + "left": Object { + "borderType": "single", + "color": "000000", + "position": "left", + "size": 2, + "space": 0, + }, + "right": Object { + "borderType": "single", + "color": "000000", + "position": "right", + "size": 2, + "space": 0, + }, + "top": Object { + "borderType": "single", + "color": "000000", + "position": "top", + "size": 2, + "space": 0, + }, + }, + "justification": "left", + "width": Object { + "width": 0, + "widthType": "auto", + }, + }, + }, + Object { + "basedOn": "af3", + "name": "annotation subject", + "next": null, + "paragraphProperty": Object { + "runProperty": Object {}, + "tabs": Array [], + }, + "runProperty": Object { + "bold": true, + "boldCs": true, + "fonts": Object { + "ascii": "MS P明朝", + "eastAsia": "MS P明朝", + "hiAnsi": "Arial", + }, + }, + "styleId": "afffb", + "styleType": "paragraph", + "tableCellProperty": Object { + "borders": null, + "gridSpan": null, + "shading": null, + "textDirection": null, + "verticalAlign": null, + "verticalMerge": null, + "width": null, + }, + "tableProperty": Object { + "borders": Object { + "bottom": Object { + "borderType": "single", + "color": "000000", + "position": "bottom", + "size": 2, + "space": 0, + }, + "insideH": Object { + "borderType": "single", + "color": "000000", + "position": "insideH", + "size": 2, + "space": 0, + }, + "insideV": Object { + "borderType": "single", + "color": "000000", + "position": "insideV", + "size": 2, + "space": 0, + }, + "left": Object { + "borderType": "single", + "color": "000000", + "position": "left", + "size": 2, + "space": 0, + }, + "right": Object { + "borderType": "single", + "color": "000000", + "position": "right", + "size": 2, + "space": 0, + }, + "top": Object { + "borderType": "single", + "color": "000000", + "position": "top", + "size": 2, + "space": 0, + }, + }, + "justification": "left", + "width": Object { + "width": 0, + "widthType": "auto", + }, + }, + }, + Object { + "basedOn": null, + "name": "コメント内容 (文字)", + "next": null, + "paragraphProperty": Object { + "runProperty": Object {}, + "tabs": Array [], + }, + "runProperty": Object { + "bold": true, + "boldCs": true, + "fonts": Object { + "ascii": "MS P明朝", + "eastAsia": "MS P明朝", + "hiAnsi": "Arial", + }, + "sz": 21, + "szCs": 21, + }, + "styleId": "afffc", + "styleType": "character", + "tableCellProperty": Object { + "borders": null, + "gridSpan": null, + "shading": null, + "textDirection": null, + "verticalAlign": null, + "verticalMerge": null, + "width": null, + }, + "tableProperty": Object { + "borders": Object { + "bottom": Object { + "borderType": "single", + "color": "000000", + "position": "bottom", + "size": 2, + "space": 0, + }, + "insideH": Object { + "borderType": "single", + "color": "000000", + "position": "insideH", + "size": 2, + "space": 0, + }, + "insideV": Object { + "borderType": "single", + "color": "000000", + "position": "insideV", + "size": 2, + "space": 0, + }, + "left": Object { + "borderType": "single", + "color": "000000", + "position": "left", + "size": 2, + "space": 0, + }, + "right": Object { + "borderType": "single", + "color": "000000", + "position": "right", + "size": 2, + "space": 0, + }, + "top": Object { + "borderType": "single", + "color": "000000", + "position": "top", + "size": 2, + "space": 0, + }, + }, + "justification": "left", + "width": Object { + "width": 0, + "widthType": "auto", + }, + }, + }, + Object { + "basedOn": null, + "name": "Intense Reference", + "next": null, + "paragraphProperty": Object { + "runProperty": Object {}, + "tabs": Array [], + }, + "runProperty": Object { + "bold": true, + "boldCs": true, + "characterSpacing": 5, + "color": "C0504D", + "underline": "single", + }, + "styleId": "2f0", + "styleType": "character", + "tableCellProperty": Object { + "borders": null, + "gridSpan": null, + "shading": null, + "textDirection": null, + "verticalAlign": null, + "verticalMerge": null, + "width": null, + }, + "tableProperty": Object { + "borders": Object { + "bottom": Object { + "borderType": "single", + "color": "000000", + "position": "bottom", + "size": 2, + "space": 0, + }, + "insideH": Object { + "borderType": "single", + "color": "000000", + "position": "insideH", + "size": 2, + "space": 0, + }, + "insideV": Object { + "borderType": "single", + "color": "000000", + "position": "insideV", + "size": 2, + "space": 0, + }, + "left": Object { + "borderType": "single", + "color": "000000", + "position": "left", + "size": 2, + "space": 0, + }, + "right": Object { + "borderType": "single", + "color": "000000", + "position": "right", + "size": 2, + "space": 0, + }, + "top": Object { + "borderType": "single", + "color": "000000", + "position": "top", + "size": 2, + "space": 0, + }, + }, + "justification": "left", + "width": Object { + "width": 0, + "widthType": "auto", + }, + }, + }, + Object { + "basedOn": null, + "name": "Default", + "next": null, + "paragraphProperty": Object { + "runProperty": Object {}, + "tabs": Array [], + }, + "runProperty": Object { + "color": "000000", + "fonts": Object { + "ascii": "Wingdings 2", + "cs": "Wingdings 2", + "eastAsia": "MS 明朝", + "hiAnsi": "Wingdings 2", + }, + "sz": 24, + "szCs": 24, + }, + "styleId": "Default", + "styleType": "paragraph", + "tableCellProperty": Object { + "borders": null, + "gridSpan": null, + "shading": null, + "textDirection": null, + "verticalAlign": null, + "verticalMerge": null, + "width": null, + }, + "tableProperty": Object { + "borders": Object { + "bottom": Object { + "borderType": "single", + "color": "000000", + "position": "bottom", + "size": 2, + "space": 0, + }, + "insideH": Object { + "borderType": "single", + "color": "000000", + "position": "insideH", + "size": 2, + "space": 0, + }, + "insideV": Object { + "borderType": "single", + "color": "000000", + "position": "insideV", + "size": 2, + "space": 0, + }, + "left": Object { + "borderType": "single", + "color": "000000", + "position": "left", + "size": 2, + "space": 0, + }, + "right": Object { + "borderType": "single", + "color": "000000", + "position": "right", + "size": 2, + "space": 0, + }, + "top": Object { + "borderType": "single", + "color": "000000", + "position": "top", + "size": 2, + "space": 0, + }, + }, + "justification": "left", + "width": Object { + "width": 0, + "widthType": "auto", + }, + }, + }, + Object { + "basedOn": null, + "name": "Subtle Reference", + "next": null, + "paragraphProperty": Object { + "runProperty": Object {}, + "tabs": Array [], + }, + "runProperty": Object { + "color": "5A5A5A", + }, + "styleId": "afffd", + "styleType": "character", + "tableCellProperty": Object { + "borders": null, + "gridSpan": null, + "shading": null, + "textDirection": null, + "verticalAlign": null, + "verticalMerge": null, + "width": null, + }, + "tableProperty": Object { + "borders": Object { + "bottom": Object { + "borderType": "single", + "color": "000000", + "position": "bottom", + "size": 2, + "space": 0, + }, + "insideH": Object { + "borderType": "single", + "color": "000000", + "position": "insideH", + "size": 2, + "space": 0, + }, + "insideV": Object { + "borderType": "single", + "color": "000000", + "position": "insideV", + "size": 2, + "space": 0, + }, + "left": Object { + "borderType": "single", + "color": "000000", + "position": "left", + "size": 2, + "space": 0, + }, + "right": Object { + "borderType": "single", + "color": "000000", + "position": "right", + "size": 2, + "space": 0, + }, + "top": Object { + "borderType": "single", + "color": "000000", + "position": "top", + "size": 2, + "space": 0, + }, + }, + "justification": "left", + "width": Object { + "width": 0, + "widthType": "auto", + }, + }, + }, + Object { + "basedOn": null, + "name": "Table Bullet1", + "next": null, + "paragraphProperty": Object { + "lineSpacing": Object { + "before": 20, + "line": 200, + "lineRule": "atLeast", + }, + "numberingProperty": Object { + "id": 454, + "level": null, + }, + "runProperty": Object {}, + "tabs": Array [], + }, + "runProperty": Object { + "fonts": Object { + "ascii": "Times New Roman", + "hiAnsi": "Times New Roman", + }, + }, + "styleId": "TableBullet1", + "styleType": "paragraph", + "tableCellProperty": Object { + "borders": null, + "gridSpan": null, + "shading": null, + "textDirection": null, + "verticalAlign": null, + "verticalMerge": null, + "width": null, + }, + "tableProperty": Object { + "borders": Object { + "bottom": Object { + "borderType": "single", + "color": "000000", + "position": "bottom", + "size": 2, + "space": 0, + }, + "insideH": Object { + "borderType": "single", + "color": "000000", + "position": "insideH", + "size": 2, + "space": 0, + }, + "insideV": Object { + "borderType": "single", + "color": "000000", + "position": "insideV", + "size": 2, + "space": 0, + }, + "left": Object { + "borderType": "single", + "color": "000000", + "position": "left", + "size": 2, + "space": 0, + }, + "right": Object { + "borderType": "single", + "color": "000000", + "position": "right", + "size": 2, + "space": 0, + }, + "top": Object { + "borderType": "single", + "color": "000000", + "position": "top", + "size": 2, + "space": 0, + }, + }, + "justification": "left", + "width": Object { + "width": 0, + "widthType": "auto", + }, + }, + }, + Object { + "basedOn": null, + "name": "endnote reference", + "next": null, + "paragraphProperty": Object { + "runProperty": Object {}, + "tabs": Array [], + }, + "runProperty": Object { + "vertAlign": "superscript", + }, + "styleId": "afffe", + "styleType": "character", + "tableCellProperty": Object { + "borders": null, + "gridSpan": null, + "shading": null, + "textDirection": null, + "verticalAlign": null, + "verticalMerge": null, + "width": null, + }, + "tableProperty": Object { + "borders": Object { + "bottom": Object { + "borderType": "single", + "color": "000000", + "position": "bottom", + "size": 2, + "space": 0, + }, + "insideH": Object { + "borderType": "single", + "color": "000000", + "position": "insideH", + "size": 2, + "space": 0, + }, + "insideV": Object { + "borderType": "single", + "color": "000000", + "position": "insideV", + "size": 2, + "space": 0, + }, + "left": Object { + "borderType": "single", + "color": "000000", + "position": "left", + "size": 2, + "space": 0, + }, + "right": Object { + "borderType": "single", + "color": "000000", + "position": "right", + "size": 2, + "space": 0, + }, + "top": Object { + "borderType": "single", + "color": "000000", + "position": "top", + "size": 2, + "space": 0, + }, + }, + "justification": "left", + "width": Object { + "width": 0, + "widthType": "auto", + }, + }, + }, + ], + }, + "taskpanes": null, + "taskpanesRels": Object { + "rels": Array [], + }, + "themes": Array [ + Object { + "fontSchema": Object { + "majorFont": Object { + "cs": "", + "ea": "", + "fonts": Array [ + Object { + "script": "Jpan", + "typeface": "游ゴシック Light", + }, + Object { + "script": "Hang", + "typeface": "맑은 고딕", + }, + Object { + "script": "Hans", + "typeface": "等线 Light", + }, + Object { + "script": "Hant", + "typeface": "新細明體", + }, + Object { + "script": "Arab", + "typeface": "Times New Roman", + }, + Object { + "script": "Hebr", + "typeface": "Times New Roman", + }, + Object { + "script": "Thai", + "typeface": "Angsana New", + }, + Object { + "script": "Ethi", + "typeface": "Nyala", + }, + Object { + "script": "Beng", + "typeface": "Vrinda", + }, + Object { + "script": "Gujr", + "typeface": "Shruti", + }, + Object { + "script": "Khmr", + "typeface": "MoolBoran", + }, + Object { + "script": "Knda", + "typeface": "Tunga", + }, + Object { + "script": "Guru", + "typeface": "Raavi", + }, + Object { + "script": "Cans", + "typeface": "Euphemia", + }, + Object { + "script": "Cher", + "typeface": "Plantagenet Cherokee", + }, + Object { + "script": "Yiii", + "typeface": "Microsoft Yi Baiti", + }, + Object { + "script": "Tibt", + "typeface": "Microsoft Himalaya", + }, + Object { + "script": "Thaa", + "typeface": "MV Boli", + }, + Object { + "script": "Deva", + "typeface": "Mangal", + }, + Object { + "script": "Telu", + "typeface": "Gautami", + }, + Object { + "script": "Taml", + "typeface": "Latha", + }, + Object { + "script": "Syrc", + "typeface": "Estrangelo Edessa", + }, + Object { + "script": "Orya", + "typeface": "Kalinga", + }, + Object { + "script": "Mlym", + "typeface": "Kartika", + }, + Object { + "script": "Laoo", + "typeface": "DokChampa", + }, + Object { + "script": "Sinh", + "typeface": "Iskoola Pota", + }, + Object { + "script": "Mong", + "typeface": "Mongolian Baiti", + }, + Object { + "script": "Viet", + "typeface": "Times New Roman", + }, + Object { + "script": "Uigh", + "typeface": "Microsoft Uighur", + }, + Object { + "script": "Geor", + "typeface": "Sylfaen", + }, + Object { + "script": "Armn", + "typeface": "Arial", + }, + Object { + "script": "Bugi", + "typeface": "Leelawadee UI", + }, + Object { + "script": "Bopo", + "typeface": "Microsoft JhengHei", + }, + Object { + "script": "Java", + "typeface": "Javanese Text", + }, + Object { + "script": "Lisu", + "typeface": "Segoe UI", + }, + Object { + "script": "Mymr", + "typeface": "Myanmar Text", + }, + Object { + "script": "Nkoo", + "typeface": "Ebrima", + }, + Object { + "script": "Olck", + "typeface": "Nirmala UI", + }, + Object { + "script": "Osma", + "typeface": "Ebrima", + }, + Object { + "script": "Phag", + "typeface": "Phagspa", + }, + Object { + "script": "Syrn", + "typeface": "Estrangelo Edessa", + }, + Object { + "script": "Syrj", + "typeface": "Estrangelo Edessa", + }, + Object { + "script": "Syre", + "typeface": "Estrangelo Edessa", + }, + Object { + "script": "Sora", + "typeface": "Nirmala UI", + }, + Object { + "script": "Tale", + "typeface": "Microsoft Tai Le", + }, + Object { + "script": "Talu", + "typeface": "Microsoft New Tai Lue", + }, + Object { + "script": "Tfng", + "typeface": "Ebrima", + }, + ], + "latin": "游ゴシック Light", + }, + "minorFont": Object { + "cs": "", + "ea": "", + "fonts": Array [ + Object { + "script": "Jpan", + "typeface": "游明朝", + }, + Object { + "script": "Hang", + "typeface": "맑은 고딕", + }, + Object { + "script": "Hans", + "typeface": "等线", + }, + Object { + "script": "Hant", + "typeface": "新細明體", + }, + Object { + "script": "Arab", + "typeface": "Arial", + }, + Object { + "script": "Hebr", + "typeface": "Arial", + }, + Object { + "script": "Thai", + "typeface": "Cordia New", + }, + Object { + "script": "Ethi", + "typeface": "Nyala", + }, + Object { + "script": "Beng", + "typeface": "Vrinda", + }, + Object { + "script": "Gujr", + "typeface": "Shruti", + }, + Object { + "script": "Khmr", + "typeface": "DaunPenh", + }, + Object { + "script": "Knda", + "typeface": "Tunga", + }, + Object { + "script": "Guru", + "typeface": "Raavi", + }, + Object { + "script": "Cans", + "typeface": "Euphemia", + }, + Object { + "script": "Cher", + "typeface": "Plantagenet Cherokee", + }, + Object { + "script": "Yiii", + "typeface": "Microsoft Yi Baiti", + }, + Object { + "script": "Tibt", + "typeface": "Microsoft Himalaya", + }, + Object { + "script": "Thaa", + "typeface": "MV Boli", + }, + Object { + "script": "Deva", + "typeface": "Mangal", + }, + Object { + "script": "Telu", + "typeface": "Gautami", + }, + Object { + "script": "Taml", + "typeface": "Latha", + }, + Object { + "script": "Syrc", + "typeface": "Estrangelo Edessa", + }, + Object { + "script": "Orya", + "typeface": "Kalinga", + }, + Object { + "script": "Mlym", + "typeface": "Kartika", + }, + Object { + "script": "Laoo", + "typeface": "DokChampa", + }, + Object { + "script": "Sinh", + "typeface": "Iskoola Pota", + }, + Object { + "script": "Mong", + "typeface": "Mongolian Baiti", + }, + Object { + "script": "Viet", + "typeface": "Arial", + }, + Object { + "script": "Uigh", + "typeface": "Microsoft Uighur", + }, + Object { + "script": "Geor", + "typeface": "Sylfaen", + }, + Object { + "script": "Armn", + "typeface": "Arial", + }, + Object { + "script": "Bugi", + "typeface": "Leelawadee UI", + }, + Object { + "script": "Bopo", + "typeface": "Microsoft JhengHei", + }, + Object { + "script": "Java", + "typeface": "Javanese Text", + }, + Object { + "script": "Lisu", + "typeface": "Segoe UI", + }, + Object { + "script": "Mymr", + "typeface": "Myanmar Text", + }, + Object { + "script": "Nkoo", + "typeface": "Ebrima", + }, + Object { + "script": "Olck", + "typeface": "Nirmala UI", + }, + Object { + "script": "Osma", + "typeface": "Ebrima", + }, + Object { + "script": "Phag", + "typeface": "Phagspa", + }, + Object { + "script": "Syrn", + "typeface": "Estrangelo Edessa", + }, + Object { + "script": "Syrj", + "typeface": "Estrangelo Edessa", + }, + Object { + "script": "Syre", + "typeface": "Estrangelo Edessa", + }, + Object { + "script": "Sora", + "typeface": "Nirmala UI", + }, + Object { + "script": "Tale", + "typeface": "Microsoft Tai Le", + }, + Object { + "script": "Talu", + "typeface": "Microsoft New Tai Lue", + }, + Object { + "script": "Tfng", + "typeface": "Ebrima", + }, + ], + "latin": "游明朝", + }, + }, + }, + ], + "webExtensions": Array [], + "webSettings": Object { + "divs": Array [ + Object { + "divsChild": Array [], + "id": "184095413", + "marginBottom": 0, + "marginLeft": 0, + "marginRight": 0, + "marginTop": 0, + }, + Object { + "divsChild": Array [], + "id": "184486977", + "marginBottom": 0, + "marginLeft": 0, + "marginRight": 0, + "marginTop": 0, + }, + Object { + "divsChild": Array [], + "id": "208612972", + "marginBottom": 0, + "marginLeft": 0, + "marginRight": 0, + "marginTop": 0, + }, + Object { + "divsChild": Array [], + "id": "210922914", + "marginBottom": 0, + "marginLeft": 0, + "marginRight": 0, + "marginTop": 0, + }, + Object { + "divsChild": Array [], + "id": "212812263", + "marginBottom": 0, + "marginLeft": 0, + "marginRight": 0, + "marginTop": 0, + }, + Object { + "divsChild": Array [], + "id": "224804106", + "marginBottom": 0, + "marginLeft": 0, + "marginRight": 0, + "marginTop": 0, + }, + Object { + "divsChild": Array [], + "id": "426312069", + "marginBottom": 0, + "marginLeft": 0, + "marginRight": 0, + "marginTop": 0, + }, + Object { + "divsChild": Array [], + "id": "439254259", + "marginBottom": 0, + "marginLeft": 0, + "marginRight": 0, + "marginTop": 0, + }, + Object { + "divsChild": Array [], + "id": "472799645", + "marginBottom": 0, + "marginLeft": 0, + "marginRight": 0, + "marginTop": 0, + }, + Object { + "divsChild": Array [], + "id": "483089288", + "marginBottom": 0, + "marginLeft": 0, + "marginRight": 0, + "marginTop": 0, + }, + Object { + "divsChild": Array [ + Object { + "divsChild": Array [], + "id": "476648699", + "marginBottom": 0, + "marginLeft": 0, + "marginRight": 0, + "marginTop": 0, + }, + Object { + "divsChild": Array [], + "id": "543909121", + "marginBottom": 0, + "marginLeft": 0, + "marginRight": 0, + "marginTop": 0, + }, + Object { + "divsChild": Array [], + "id": "1314606153", + "marginBottom": 0, + "marginLeft": 0, + "marginRight": 0, + "marginTop": 0, + }, + Object { + "divsChild": Array [], + "id": "1666592811", + "marginBottom": 0, + "marginLeft": 0, + "marginRight": 0, + "marginTop": 0, + }, + Object { + "divsChild": Array [], + "id": "1830361099", + "marginBottom": 0, + "marginLeft": 0, + "marginRight": 0, + "marginTop": 0, + }, + Object { + "divsChild": Array [], + "id": "1947613540", + "marginBottom": 0, + "marginLeft": 0, + "marginRight": 0, + "marginTop": 0, + }, + Object { + "divsChild": Array [], + "id": "2121148439", + "marginBottom": 0, + "marginLeft": 0, + "marginRight": 0, + "marginTop": 0, + }, + ], + "id": "491264713", + "marginBottom": 0, + "marginLeft": 0, + "marginRight": 0, + "marginTop": 0, + }, + Object { + "divsChild": Array [], + "id": "535506433", + "marginBottom": 0, + "marginLeft": 0, + "marginRight": 0, + "marginTop": 0, + }, + Object { + "divsChild": Array [], + "id": "730080836", + "marginBottom": 0, + "marginLeft": 0, + "marginRight": 0, + "marginTop": 0, + }, + Object { + "divsChild": Array [], + "id": "741873928", + "marginBottom": 0, + "marginLeft": 0, + "marginRight": 0, + "marginTop": 0, + }, + Object { + "divsChild": Array [], + "id": "745344172", + "marginBottom": 0, + "marginLeft": 0, + "marginRight": 0, + "marginTop": 0, + }, + Object { + "divsChild": Array [], + "id": "794493682", + "marginBottom": 0, + "marginLeft": 0, + "marginRight": 0, + "marginTop": 0, + }, + Object { + "divsChild": Array [], + "id": "816066318", + "marginBottom": 0, + "marginLeft": 0, + "marginRight": 0, + "marginTop": 0, + }, + Object { + "divsChild": Array [], + "id": "1098717801", + "marginBottom": 0, + "marginLeft": 0, + "marginRight": 0, + "marginTop": 0, + }, + Object { + "divsChild": Array [], + "id": "1202784290", + "marginBottom": 0, + "marginLeft": 0, + "marginRight": 0, + "marginTop": 0, + }, + Object { + "divsChild": Array [], + "id": "1225023401", + "marginBottom": 0, + "marginLeft": 0, + "marginRight": 0, + "marginTop": 0, + }, + Object { + "divsChild": Array [], + "id": "1277373860", + "marginBottom": 0, + "marginLeft": 0, + "marginRight": 0, + "marginTop": 0, + }, + Object { + "divsChild": Array [], + "id": "1308053172", + "marginBottom": 0, + "marginLeft": 0, + "marginRight": 0, + "marginTop": 0, + }, + Object { + "divsChild": Array [], + "id": "1359694210", + "marginBottom": 0, + "marginLeft": 0, + "marginRight": 0, + "marginTop": 0, + }, + Object { + "divsChild": Array [], + "id": "1360938323", + "marginBottom": 0, + "marginLeft": 0, + "marginRight": 0, + "marginTop": 0, + }, + Object { + "divsChild": Array [], + "id": "1424491985", + "marginBottom": 0, + "marginLeft": 0, + "marginRight": 0, + "marginTop": 0, + }, + Object { + "divsChild": Array [], + "id": "1520773236", + "marginBottom": 0, + "marginLeft": 0, + "marginRight": 0, + "marginTop": 0, + }, + Object { + "divsChild": Array [], + "id": "1538155121", + "marginBottom": 0, + "marginLeft": 0, + "marginRight": 0, + "marginTop": 0, + }, + Object { + "divsChild": Array [], + "id": "1560827681", + "marginBottom": 0, + "marginLeft": 0, + "marginRight": 0, + "marginTop": 0, + }, + Object { + "divsChild": Array [], + "id": "1672638584", + "marginBottom": 0, + "marginLeft": 0, + "marginRight": 0, + "marginTop": 0, + }, + Object { + "divsChild": Array [], + "id": "1723477944", + "marginBottom": 0, + "marginLeft": 0, + "marginRight": 0, + "marginTop": 0, + }, + Object { + "divsChild": Array [], + "id": "1730960472", + "marginBottom": 0, + "marginLeft": 0, + "marginRight": 0, + "marginTop": 0, + }, + Object { + "divsChild": Array [], + "id": "1745254395", + "marginBottom": 0, + "marginLeft": 0, + "marginRight": 0, + "marginTop": 0, + }, + Object { + "divsChild": Array [], + "id": "1815558208", + "marginBottom": 0, + "marginLeft": 0, + "marginRight": 0, + "marginTop": 0, + }, + Object { + "divsChild": Array [], + "id": "1880899685", + "marginBottom": 0, + "marginLeft": 0, + "marginRight": 0, + "marginTop": 0, + }, + Object { + "divsChild": Array [], + "id": "1905404845", + "marginBottom": 0, + "marginLeft": 0, + "marginRight": 0, + "marginTop": 0, + }, + Object { + "divsChild": Array [], + "id": "1948926280", + "marginBottom": 0, + "marginLeft": 0, + "marginRight": 0, + "marginTop": 0, + }, + Object { + "divsChild": Array [], + "id": "1954366303", + "marginBottom": 0, + "marginLeft": 0, + "marginRight": 0, + "marginTop": 0, + }, + Object { + "divsChild": Array [], + "id": "1993831891", + "marginBottom": 0, + "marginLeft": 0, + "marginRight": 0, + "marginTop": 0, + }, + Object { + "divsChild": Array [], + "id": "2067339773", + "marginBottom": 0, + "marginLeft": 0, + "marginRight": 0, + "marginTop": 0, + }, + ], + }, +} +`; + exports[`reader should read strike docx 1`] = ` Object { "comments": Object { diff --git a/docx-wasm/test/index.test.js b/docx-wasm/test/index.test.js index 53b8e16..cb901be 100644 --- a/docx-wasm/test/index.test.js +++ b/docx-wasm/test/index.test.js @@ -165,6 +165,12 @@ describe("reader", () => { const json = w.readDocx(buffer); expect(json).toMatchSnapshot(); }); + + test("should read sectionProperty in ppr", () => { + const buffer = readFileSync("../fixtures/section_property_in_ppr/section_property_in_ppr.docx"); + const json = w.readDocx(buffer); + expect(json).toMatchSnapshot(); + }); }); describe("writer", () => { diff --git a/fixtures/section_property_in_ppr/section_property_in_ppr.docx b/fixtures/section_property_in_ppr/section_property_in_ppr.docx new file mode 100644 index 0000000..03e1c8f Binary files /dev/null and b/fixtures/section_property_in_ppr/section_property_in_ppr.docx differ