diff --git a/CHANGELOG.md b/CHANGELOG.md index c62073d..3cabd9e 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -5,6 +5,10 @@ All notable changes to this project will be documented in this file. The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/), and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html). +## docx-wasm@0.0.228 (18. January, 2022) + +- Fixed a bug, numPr reader panic when id is none. + ## docx-wasm@0.0.226, 0.0.227 (17. January, 2022) - Add `paragraphPropertyChange` api for JS. diff --git a/docx-core/examples/reader.rs b/docx-core/examples/reader.rs index 10e7efe..8f89df7 100644 --- a/docx-core/examples/reader.rs +++ b/docx-core/examples/reader.rs @@ -4,7 +4,7 @@ use std::fs::File; use std::io::{Read, Write}; pub fn main() { - let mut file = File::open("./ppr_del.docx").unwrap(); + let mut file = File::open("./table-indent.docx").unwrap(); let mut buf = vec![]; file.read_to_end(&mut buf).unwrap(); diff --git a/docx-core/src/reader/numbering_property.rs b/docx-core/src/reader/numbering_property.rs index dc2bbd4..54afbbf 100644 --- a/docx-core/src/reader/numbering_property.rs +++ b/docx-core/src/reader/numbering_property.rs @@ -39,11 +39,12 @@ impl ElementReader for NumberingProperty { return Ok(NumberingProperty::new() .id(NumberingId::new(id.expect("should id exists")))); } - let np = NumberingProperty::new().add_num( - NumberingId::new(id.unwrap()), - IndentLevel::new(level.unwrap()), - ); - return Ok(np); + if let Some(id) = id { + let np = NumberingProperty::new() + .add_num(NumberingId::new(id), IndentLevel::new(level.unwrap())); + return Ok(np); + } + return Ok(NumberingProperty::new()); } } Err(_) => return Err(ReaderError::XMLReadError), diff --git a/docx-wasm/package.json b/docx-wasm/package.json index abab6d2..4e95a4e 100644 --- a/docx-wasm/package.json +++ b/docx-wasm/package.json @@ -1,6 +1,6 @@ { "name": "docx-wasm", - "version": "0.0.227", + "version": "0.0.228", "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 3f17ace..856bf4d 100644 --- a/docx-wasm/test/__snapshots__/index.test.js.snap +++ b/docx-wasm/test/__snapshots__/index.test.js.snap @@ -14675,6 +14675,19967 @@ Object { } `; +exports[`reader should read table indent docx 1`] = ` +Object { + "comments": Object { + "comments": Array [], + }, + "commentsExtended": Object { + "children": Array [], + }, + "contentType": Object { + "custom_xml_count": 1, + "footer_count": 1, + "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/footer1.xml": "application/vnd.openxmlformats-officedocument.wordprocessingml.footer+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": "_Toc366046525", + }, + "type": "bookmarkStart", + }, + Object { + "data": Object { + "id": 1, + "name": "_Toc406502831", + }, + "type": "bookmarkStart", + }, + ], + "hasNumbering": false, + "id": "00000003", + "property": Object { + "alignment": "left", + "lineSpacing": Object { + "before": 0, + }, + "runProperty": Object { + "fonts": Object { + "ascii_theme": "minorHAnsi", + "cs": "Arial", + "hi_ansi_theme": "minorHAnsi", + }, + "underline": "single", + }, + "tabs": Array [], + }, + }, + "type": "paragraph", + }, + Object { + "data": Object { + "grid": Array [ + 3402, + 1418, + 2410, + 1984, + 2693, + ], + "hasNumbering": false, + "property": Object { + "borders": Object { + "bottom": Object { + "borderType": "single", + "color": "auto", + "position": "bottom", + "size": 6, + "space": 0, + }, + "insideH": Object { + "borderType": "single", + "color": "auto", + "position": "insideH", + "size": 6, + "space": 0, + }, + "insideV": Object { + "borderType": "single", + "color": "auto", + "position": "insideV", + "size": 6, + "space": 0, + }, + "left": Object { + "borderType": "single", + "color": "auto", + "position": "left", + "size": 6, + "space": 0, + }, + "right": Object { + "borderType": "single", + "color": "auto", + "position": "right", + "size": 6, + "space": 0, + }, + "top": Object { + "borderType": "single", + "color": "auto", + "position": "top", + "size": 6, + "space": 0, + }, + }, + "indent": Object { + "width": -1142, + "widthType": "DXA", + }, + "justification": "left", + "layout": null, + "margins": Object { + "bottom": Object { + "val": 0, + "widthType": "DXA", + }, + "left": Object { + "val": 55, + "widthType": "DXA", + }, + "right": Object { + "val": 55, + "widthType": "DXA", + }, + "top": Object { + "val": 0, + "widthType": "DXA", + }, + }, + "style": null, + "width": Object { + "width": 11907, + "widthType": "DXA", + }, + }, + "rows": Array [ + Object { + "cells": Array [ + Object { + "children": Array [ + Object { + "data": Object { + "children": Array [], + "hasNumbering": false, + "id": "00000004", + "property": Object { + "alignment": "left", + "indent": Object { + "end": 0, + "firstLineChars": null, + "hangingChars": null, + "specialIndent": null, + "start": 0, + "startChars": null, + }, + "lineSpacing": Object { + "before": 0, + }, + "runProperty": Object { + "bold": true, + "boldCs": true, + "fonts": Object { + "ascii_theme": "minorHAnsi", + "cs": "Arial", + "hi_ansi_theme": "minorHAnsi", + }, + }, + "tabs": Array [], + }, + }, + "type": "paragraph", + }, + ], + "hasNumbering": false, + "property": Object { + "borders": null, + "gridSpan": null, + "shading": null, + "textDirection": null, + "verticalAlign": null, + "verticalMerge": null, + "width": Object { + "width": 3402, + "widthType": "DXA", + }, + }, + }, + Object { + "children": Array [ + Object { + "data": Object { + "children": Array [], + "hasNumbering": false, + "id": "00000005", + "property": Object { + "alignment": "left", + "indent": Object { + "end": 84, + "firstLineChars": null, + "hangingChars": null, + "specialIndent": null, + "start": 0, + "startChars": null, + }, + "lineSpacing": Object { + "before": 0, + }, + "runProperty": Object { + "bold": true, + "boldCs": true, + "fonts": Object { + "ascii_theme": "minorHAnsi", + "cs": "Arial", + "hi_ansi_theme": "minorHAnsi", + }, + }, + "tabs": Array [], + }, + }, + "type": "paragraph", + }, + ], + "hasNumbering": false, + "property": Object { + "borders": null, + "gridSpan": null, + "shading": null, + "textDirection": null, + "verticalAlign": null, + "verticalMerge": null, + "width": Object { + "width": 1418, + "widthType": "DXA", + }, + }, + }, + Object { + "children": Array [ + Object { + "data": Object { + "children": Array [], + "hasNumbering": false, + "id": "00000006", + "property": Object { + "alignment": "left", + "indent": Object { + "end": 84, + "firstLineChars": null, + "hangingChars": null, + "specialIndent": null, + "start": 84, + "startChars": null, + }, + "lineSpacing": Object { + "before": 0, + }, + "runProperty": Object { + "bold": true, + "boldCs": true, + "fonts": Object { + "ascii_theme": "minorHAnsi", + "cs": "Arial", + "hi_ansi_theme": "minorHAnsi", + }, + }, + "tabs": Array [], + }, + }, + "type": "paragraph", + }, + ], + "hasNumbering": false, + "property": Object { + "borders": null, + "gridSpan": null, + "shading": null, + "textDirection": null, + "verticalAlign": null, + "verticalMerge": null, + "width": Object { + "width": 2410, + "widthType": "DXA", + }, + }, + }, + Object { + "children": Array [ + Object { + "data": Object { + "children": Array [], + "hasNumbering": false, + "id": "00000007", + "property": Object { + "alignment": "left", + "indent": Object { + "end": 34, + "firstLineChars": null, + "hangingChars": null, + "specialIndent": null, + "start": 34, + "startChars": null, + }, + "lineSpacing": Object { + "before": 0, + }, + "runProperty": Object { + "bold": true, + "boldCs": true, + "fonts": Object { + "ascii_theme": "minorHAnsi", + "cs": "Arial", + "hi_ansi_theme": "minorHAnsi", + }, + }, + "tabs": Array [], + }, + }, + "type": "paragraph", + }, + ], + "hasNumbering": false, + "property": Object { + "borders": null, + "gridSpan": null, + "shading": null, + "textDirection": null, + "verticalAlign": null, + "verticalMerge": null, + "width": Object { + "width": 1984, + "widthType": "DXA", + }, + }, + }, + Object { + "children": Array [ + Object { + "data": Object { + "children": Array [], + "hasNumbering": false, + "id": "00000008", + "property": Object { + "alignment": "left", + "indent": Object { + "end": 20, + "firstLineChars": null, + "hangingChars": null, + "specialIndent": null, + "start": 20, + "startChars": null, + }, + "lineSpacing": Object { + "before": 0, + }, + "runProperty": Object { + "bold": true, + "boldCs": true, + "fonts": Object { + "ascii_theme": "minorHAnsi", + "cs": "Arial", + "hi_ansi_theme": "minorHAnsi", + }, + }, + "tabs": Array [], + }, + }, + "type": "paragraph", + }, + ], + "hasNumbering": false, + "property": Object { + "borders": null, + "gridSpan": null, + "shading": null, + "textDirection": null, + "verticalAlign": null, + "verticalMerge": null, + "width": Object { + "width": 2693, + "widthType": "DXA", + }, + }, + }, + ], + "hasNumbering": false, + "property": Object { + "gridAfter": null, + "gridBefore": null, + "heightRule": "atLeast", + "rowHeight": null, + "widthAfter": null, + "widthBefore": null, + }, + }, + Object { + "cells": Array [ + Object { + "children": Array [ + Object { + "data": Object { + "children": Array [], + "hasNumbering": false, + "id": "00000009", + "property": Object { + "alignment": "left", + "indent": Object { + "end": 0, + "firstLineChars": null, + "hangingChars": null, + "specialIndent": null, + "start": 0, + "startChars": null, + }, + "lineSpacing": Object { + "before": 0, + }, + "runProperty": Object { + "fonts": Object { + "ascii_theme": "minorHAnsi", + "cs": "Arial", + "hi_ansi_theme": "minorHAnsi", + }, + }, + "tabs": Array [], + }, + }, + "type": "paragraph", + }, + ], + "hasNumbering": false, + "property": Object { + "borders": null, + "gridSpan": null, + "shading": null, + "textDirection": null, + "verticalAlign": null, + "verticalMerge": null, + "width": Object { + "width": 3402, + "widthType": "DXA", + }, + }, + }, + Object { + "children": Array [ + Object { + "data": Object { + "children": Array [ + Object { + "data": Object { + "children": Array [ + Object { + "data": Object { + "preserveSpace": true, + "text": "l", + }, + "type": "text", + }, + ], + "runProperty": Object { + "fonts": Object { + "ascii_theme": "minorHAnsi", + "cs": "Arial", + "hi_ansi_theme": "minorHAnsi", + }, + }, + }, + "type": "run", + }, + ], + "hasNumbering": false, + "id": "0000000a", + "property": Object { + "alignment": "left", + "indent": Object { + "end": 84, + "firstLineChars": null, + "hangingChars": null, + "specialIndent": null, + "start": 0, + "startChars": null, + }, + "lineSpacing": Object { + "before": 0, + }, + "runProperty": Object { + "fonts": Object { + "ascii_theme": "minorHAnsi", + "cs": "Arial", + "hi_ansi_theme": "minorHAnsi", + }, + }, + "tabs": Array [], + }, + }, + "type": "paragraph", + }, + ], + "hasNumbering": false, + "property": Object { + "borders": null, + "gridSpan": null, + "shading": null, + "textDirection": null, + "verticalAlign": null, + "verticalMerge": null, + "width": Object { + "width": 1418, + "widthType": "DXA", + }, + }, + }, + Object { + "children": Array [ + Object { + "data": Object { + "children": Array [], + "hasNumbering": false, + "id": "0000000b", + "property": Object { + "alignment": "left", + "indent": Object { + "end": 84, + "firstLineChars": null, + "hangingChars": null, + "specialIndent": null, + "start": 0, + "startChars": null, + }, + "lineSpacing": Object { + "before": 0, + }, + "runProperty": Object { + "fonts": Object { + "ascii_theme": "minorHAnsi", + "cs": "Arial", + "hi_ansi_theme": "minorHAnsi", + }, + }, + "tabs": Array [], + }, + }, + "type": "paragraph", + }, + ], + "hasNumbering": false, + "property": Object { + "borders": null, + "gridSpan": null, + "shading": null, + "textDirection": null, + "verticalAlign": null, + "verticalMerge": null, + "width": Object { + "width": 2410, + "widthType": "DXA", + }, + }, + }, + Object { + "children": Array [ + Object { + "data": Object { + "children": Array [], + "hasNumbering": false, + "id": "0000000c", + "property": Object { + "alignment": "left", + "indent": Object { + "end": 34, + "firstLineChars": null, + "hangingChars": null, + "specialIndent": null, + "start": 0, + "startChars": null, + }, + "lineSpacing": Object { + "before": 0, + }, + "runProperty": Object { + "fonts": Object { + "ascii_theme": "minorHAnsi", + "cs": "Arial", + "hi_ansi_theme": "minorHAnsi", + }, + }, + "tabs": Array [], + }, + }, + "type": "paragraph", + }, + ], + "hasNumbering": false, + "property": Object { + "borders": null, + "gridSpan": null, + "shading": null, + "textDirection": null, + "verticalAlign": null, + "verticalMerge": null, + "width": Object { + "width": 1984, + "widthType": "DXA", + }, + }, + }, + Object { + "children": Array [ + Object { + "data": Object { + "children": Array [], + "hasNumbering": false, + "id": "0000000d", + "property": Object { + "alignment": "left", + "indent": Object { + "end": 20, + "firstLineChars": null, + "hangingChars": null, + "specialIndent": null, + "start": 0, + "startChars": null, + }, + "lineSpacing": Object { + "before": 0, + }, + "runProperty": Object {}, + "tabs": Array [], + }, + }, + "type": "paragraph", + }, + ], + "hasNumbering": false, + "property": Object { + "borders": null, + "gridSpan": null, + "shading": null, + "textDirection": null, + "verticalAlign": null, + "verticalMerge": null, + "width": Object { + "width": 2693, + "widthType": "DXA", + }, + }, + }, + ], + "hasNumbering": false, + "property": Object { + "gridAfter": null, + "gridBefore": null, + "heightRule": "atLeast", + "rowHeight": null, + "widthAfter": null, + "widthBefore": null, + }, + }, + Object { + "cells": Array [ + Object { + "children": Array [ + Object { + "data": Object { + "children": Array [], + "hasNumbering": false, + "id": "0000000e", + "property": Object { + "alignment": "left", + "indent": Object { + "end": 0, + "firstLineChars": null, + "hangingChars": null, + "specialIndent": null, + "start": 0, + "startChars": null, + }, + "lineSpacing": Object { + "before": 0, + }, + "runProperty": Object { + "fonts": Object { + "ascii_theme": "minorHAnsi", + "cs": "Arial", + "hi_ansi_theme": "minorHAnsi", + }, + }, + "tabs": Array [], + }, + }, + "type": "paragraph", + }, + ], + "hasNumbering": false, + "property": Object { + "borders": null, + "gridSpan": null, + "shading": null, + "textDirection": null, + "verticalAlign": null, + "verticalMerge": null, + "width": Object { + "width": 3402, + "widthType": "DXA", + }, + }, + }, + Object { + "children": Array [ + Object { + "data": Object { + "children": Array [], + "hasNumbering": false, + "id": "0000000f", + "property": Object { + "alignment": "left", + "indent": Object { + "end": 84, + "firstLineChars": null, + "hangingChars": null, + "specialIndent": null, + "start": 0, + "startChars": null, + }, + "lineSpacing": Object { + "before": 0, + }, + "runProperty": Object { + "fonts": Object { + "ascii_theme": "minorHAnsi", + "cs": "Arial", + "hi_ansi_theme": "minorHAnsi", + }, + }, + "tabs": Array [], + }, + }, + "type": "paragraph", + }, + ], + "hasNumbering": false, + "property": Object { + "borders": null, + "gridSpan": null, + "shading": null, + "textDirection": null, + "verticalAlign": null, + "verticalMerge": null, + "width": Object { + "width": 1418, + "widthType": "DXA", + }, + }, + }, + Object { + "children": Array [ + Object { + "data": Object { + "children": Array [], + "hasNumbering": false, + "id": "00000010", + "property": Object { + "alignment": "left", + "indent": Object { + "end": 84, + "firstLineChars": null, + "hangingChars": null, + "specialIndent": null, + "start": 0, + "startChars": null, + }, + "lineSpacing": Object { + "before": 0, + }, + "runProperty": Object { + "fonts": Object { + "ascii_theme": "minorHAnsi", + "cs": "Arial", + "hi_ansi_theme": "minorHAnsi", + }, + }, + "tabs": Array [], + }, + }, + "type": "paragraph", + }, + ], + "hasNumbering": false, + "property": Object { + "borders": null, + "gridSpan": null, + "shading": null, + "textDirection": null, + "verticalAlign": null, + "verticalMerge": null, + "width": Object { + "width": 2410, + "widthType": "DXA", + }, + }, + }, + Object { + "children": Array [ + Object { + "data": Object { + "children": Array [], + "hasNumbering": false, + "id": "00000011", + "property": Object { + "alignment": "left", + "indent": Object { + "end": 34, + "firstLineChars": null, + "hangingChars": null, + "specialIndent": null, + "start": 0, + "startChars": null, + }, + "lineSpacing": Object { + "before": 0, + }, + "runProperty": Object { + "fonts": Object { + "ascii_theme": "minorHAnsi", + "cs": "Arial", + "hi_ansi_theme": "minorHAnsi", + }, + }, + "tabs": Array [], + }, + }, + "type": "paragraph", + }, + ], + "hasNumbering": false, + "property": Object { + "borders": null, + "gridSpan": null, + "shading": null, + "textDirection": null, + "verticalAlign": null, + "verticalMerge": null, + "width": Object { + "width": 1984, + "widthType": "DXA", + }, + }, + }, + Object { + "children": Array [ + Object { + "data": Object { + "children": Array [], + "hasNumbering": false, + "id": "00000012", + "property": Object { + "alignment": "left", + "indent": Object { + "end": 20, + "firstLineChars": null, + "hangingChars": null, + "specialIndent": null, + "start": 20, + "startChars": null, + }, + "lineSpacing": Object { + "before": 0, + }, + "runProperty": Object { + "fonts": Object { + "ascii_theme": "minorHAnsi", + "cs": "Arial", + "hi_ansi_theme": "minorHAnsi", + }, + }, + "tabs": Array [], + }, + }, + "type": "paragraph", + }, + ], + "hasNumbering": false, + "property": Object { + "borders": null, + "gridSpan": null, + "shading": null, + "textDirection": null, + "verticalAlign": null, + "verticalMerge": null, + "width": Object { + "width": 2693, + "widthType": "DXA", + }, + }, + }, + ], + "hasNumbering": false, + "property": Object { + "gridAfter": null, + "gridBefore": null, + "heightRule": "atLeast", + "rowHeight": null, + "widthAfter": null, + "widthBefore": null, + }, + }, + Object { + "cells": Array [ + Object { + "children": Array [ + Object { + "data": Object { + "children": Array [], + "hasNumbering": false, + "id": "00000013", + "property": Object { + "alignment": "left", + "indent": Object { + "end": 0, + "firstLineChars": null, + "hangingChars": null, + "specialIndent": null, + "start": 0, + "startChars": null, + }, + "lineSpacing": Object { + "before": 0, + }, + "runProperty": Object { + "fonts": Object { + "ascii_theme": "minorHAnsi", + "cs": "Arial", + "hi_ansi_theme": "minorHAnsi", + }, + }, + "tabs": Array [], + }, + }, + "type": "paragraph", + }, + ], + "hasNumbering": false, + "property": Object { + "borders": null, + "gridSpan": null, + "shading": null, + "textDirection": null, + "verticalAlign": null, + "verticalMerge": null, + "width": Object { + "width": 3402, + "widthType": "DXA", + }, + }, + }, + Object { + "children": Array [ + Object { + "data": Object { + "children": Array [], + "hasNumbering": false, + "id": "00000014", + "property": Object { + "alignment": "left", + "indent": Object { + "end": 84, + "firstLineChars": null, + "hangingChars": null, + "specialIndent": null, + "start": 0, + "startChars": null, + }, + "lineSpacing": Object { + "before": 0, + }, + "runProperty": Object { + "fonts": Object { + "ascii_theme": "minorHAnsi", + "cs": "Arial", + "hi_ansi_theme": "minorHAnsi", + }, + }, + "tabs": Array [], + }, + }, + "type": "paragraph", + }, + ], + "hasNumbering": false, + "property": Object { + "borders": null, + "gridSpan": null, + "shading": null, + "textDirection": null, + "verticalAlign": null, + "verticalMerge": null, + "width": Object { + "width": 1418, + "widthType": "DXA", + }, + }, + }, + Object { + "children": Array [ + Object { + "data": Object { + "children": Array [], + "hasNumbering": false, + "id": "00000015", + "property": Object { + "alignment": "left", + "indent": Object { + "end": 84, + "firstLineChars": null, + "hangingChars": null, + "specialIndent": null, + "start": 0, + "startChars": null, + }, + "lineSpacing": Object { + "before": 0, + }, + "runProperty": Object { + "fonts": Object { + "ascii_theme": "minorHAnsi", + "cs": "Arial", + "hi_ansi_theme": "minorHAnsi", + }, + }, + "tabs": Array [], + }, + }, + "type": "paragraph", + }, + ], + "hasNumbering": false, + "property": Object { + "borders": null, + "gridSpan": null, + "shading": null, + "textDirection": null, + "verticalAlign": null, + "verticalMerge": null, + "width": Object { + "width": 2410, + "widthType": "DXA", + }, + }, + }, + Object { + "children": Array [ + Object { + "data": Object { + "children": Array [], + "hasNumbering": false, + "id": "00000016", + "property": Object { + "alignment": "left", + "indent": Object { + "end": 34, + "firstLineChars": null, + "hangingChars": null, + "specialIndent": null, + "start": 0, + "startChars": null, + }, + "lineSpacing": Object { + "before": 0, + }, + "runProperty": Object { + "fonts": Object { + "ascii_theme": "minorHAnsi", + "cs": "Arial", + "hi_ansi_theme": "minorHAnsi", + }, + }, + "tabs": Array [], + }, + }, + "type": "paragraph", + }, + ], + "hasNumbering": false, + "property": Object { + "borders": null, + "gridSpan": null, + "shading": null, + "textDirection": null, + "verticalAlign": null, + "verticalMerge": null, + "width": Object { + "width": 1984, + "widthType": "DXA", + }, + }, + }, + Object { + "children": Array [ + Object { + "data": Object { + "children": Array [], + "hasNumbering": false, + "id": "00000017", + "property": Object { + "alignment": "left", + "indent": Object { + "end": 20, + "firstLineChars": null, + "hangingChars": null, + "specialIndent": null, + "start": 20, + "startChars": null, + }, + "lineSpacing": Object { + "before": 0, + }, + "runProperty": Object { + "fonts": Object { + "ascii_theme": "minorHAnsi", + "cs": "Arial", + "hi_ansi_theme": "minorHAnsi", + }, + }, + "tabs": Array [], + }, + }, + "type": "paragraph", + }, + ], + "hasNumbering": false, + "property": Object { + "borders": null, + "gridSpan": null, + "shading": null, + "textDirection": null, + "verticalAlign": null, + "verticalMerge": null, + "width": Object { + "width": 2693, + "widthType": "DXA", + }, + }, + }, + ], + "hasNumbering": false, + "property": Object { + "gridAfter": null, + "gridBefore": null, + "heightRule": "atLeast", + "rowHeight": null, + "widthAfter": null, + "widthBefore": null, + }, + }, + Object { + "cells": Array [ + Object { + "children": Array [ + Object { + "data": Object { + "children": Array [], + "hasNumbering": false, + "id": "00000018", + "property": Object { + "alignment": "left", + "indent": Object { + "end": 0, + "firstLineChars": null, + "hangingChars": null, + "specialIndent": null, + "start": 0, + "startChars": null, + }, + "lineSpacing": Object { + "before": 0, + }, + "runProperty": Object { + "fonts": Object { + "ascii_theme": "minorHAnsi", + "cs": "Arial", + "hi_ansi_theme": "minorHAnsi", + }, + }, + "tabs": Array [], + }, + }, + "type": "paragraph", + }, + ], + "hasNumbering": false, + "property": Object { + "borders": null, + "gridSpan": null, + "shading": null, + "textDirection": null, + "verticalAlign": null, + "verticalMerge": null, + "width": Object { + "width": 3402, + "widthType": "DXA", + }, + }, + }, + Object { + "children": Array [ + Object { + "data": Object { + "children": Array [], + "hasNumbering": false, + "id": "00000019", + "property": Object { + "alignment": "left", + "indent": Object { + "end": 84, + "firstLineChars": null, + "hangingChars": null, + "specialIndent": null, + "start": 0, + "startChars": null, + }, + "lineSpacing": Object { + "before": 0, + }, + "runProperty": Object { + "fonts": Object { + "ascii_theme": "minorHAnsi", + "cs": "Arial", + "hi_ansi_theme": "minorHAnsi", + }, + }, + "tabs": Array [], + }, + }, + "type": "paragraph", + }, + ], + "hasNumbering": false, + "property": Object { + "borders": null, + "gridSpan": null, + "shading": null, + "textDirection": null, + "verticalAlign": null, + "verticalMerge": null, + "width": Object { + "width": 1418, + "widthType": "DXA", + }, + }, + }, + Object { + "children": Array [ + Object { + "data": Object { + "children": Array [], + "hasNumbering": false, + "id": "0000001a", + "property": Object { + "alignment": "left", + "indent": Object { + "end": 84, + "firstLineChars": null, + "hangingChars": null, + "specialIndent": null, + "start": 0, + "startChars": null, + }, + "lineSpacing": Object { + "before": 0, + }, + "runProperty": Object { + "fonts": Object { + "ascii_theme": "minorHAnsi", + "cs": "Arial", + "hi_ansi_theme": "minorHAnsi", + }, + }, + "tabs": Array [], + }, + }, + "type": "paragraph", + }, + ], + "hasNumbering": false, + "property": Object { + "borders": null, + "gridSpan": null, + "shading": null, + "textDirection": null, + "verticalAlign": null, + "verticalMerge": null, + "width": Object { + "width": 2410, + "widthType": "DXA", + }, + }, + }, + Object { + "children": Array [ + Object { + "data": Object { + "children": Array [], + "hasNumbering": false, + "id": "0000001b", + "property": Object { + "alignment": "left", + "indent": Object { + "end": 34, + "firstLineChars": null, + "hangingChars": null, + "specialIndent": null, + "start": 0, + "startChars": null, + }, + "lineSpacing": Object { + "before": 0, + }, + "runProperty": Object { + "fonts": Object { + "ascii_theme": "minorHAnsi", + "cs": "Arial", + "hi_ansi_theme": "minorHAnsi", + }, + }, + "tabs": Array [], + }, + }, + "type": "paragraph", + }, + ], + "hasNumbering": false, + "property": Object { + "borders": null, + "gridSpan": null, + "shading": null, + "textDirection": null, + "verticalAlign": null, + "verticalMerge": null, + "width": Object { + "width": 1984, + "widthType": "DXA", + }, + }, + }, + Object { + "children": Array [ + Object { + "data": Object { + "children": Array [], + "hasNumbering": false, + "id": "0000001c", + "property": Object { + "alignment": "left", + "indent": Object { + "end": 20, + "firstLineChars": null, + "hangingChars": null, + "specialIndent": null, + "start": 20, + "startChars": null, + }, + "lineSpacing": Object { + "before": 0, + }, + "runProperty": Object {}, + "tabs": Array [], + }, + }, + "type": "paragraph", + }, + ], + "hasNumbering": false, + "property": Object { + "borders": null, + "gridSpan": null, + "shading": null, + "textDirection": null, + "verticalAlign": null, + "verticalMerge": null, + "width": Object { + "width": 2693, + "widthType": "DXA", + }, + }, + }, + ], + "hasNumbering": false, + "property": Object { + "gridAfter": null, + "gridBefore": null, + "heightRule": "atLeast", + "rowHeight": null, + "widthAfter": null, + "widthBefore": null, + }, + }, + Object { + "cells": Array [ + Object { + "children": Array [ + Object { + "data": Object { + "children": Array [], + "hasNumbering": false, + "id": "0000001d", + "property": Object { + "alignment": "left", + "indent": Object { + "end": 0, + "firstLineChars": null, + "hangingChars": null, + "specialIndent": null, + "start": 0, + "startChars": null, + }, + "lineSpacing": Object { + "before": 0, + }, + "runProperty": Object { + "fonts": Object { + "ascii_theme": "minorHAnsi", + "cs": "Arial", + "hi_ansi_theme": "minorHAnsi", + }, + }, + "tabs": Array [], + }, + }, + "type": "paragraph", + }, + ], + "hasNumbering": false, + "property": Object { + "borders": null, + "gridSpan": null, + "shading": null, + "textDirection": null, + "verticalAlign": null, + "verticalMerge": null, + "width": Object { + "width": 3402, + "widthType": "DXA", + }, + }, + }, + Object { + "children": Array [ + Object { + "data": Object { + "children": Array [], + "hasNumbering": false, + "id": "0000001e", + "property": Object { + "alignment": "left", + "indent": Object { + "end": 84, + "firstLineChars": null, + "hangingChars": null, + "specialIndent": null, + "start": 0, + "startChars": null, + }, + "lineSpacing": Object { + "before": 0, + }, + "runProperty": Object { + "fonts": Object { + "ascii_theme": "minorHAnsi", + "cs": "Arial", + "hi_ansi_theme": "minorHAnsi", + }, + }, + "tabs": Array [], + }, + }, + "type": "paragraph", + }, + ], + "hasNumbering": false, + "property": Object { + "borders": null, + "gridSpan": null, + "shading": null, + "textDirection": null, + "verticalAlign": null, + "verticalMerge": null, + "width": Object { + "width": 1418, + "widthType": "DXA", + }, + }, + }, + Object { + "children": Array [ + Object { + "data": Object { + "children": Array [], + "hasNumbering": false, + "id": "0000001f", + "property": Object { + "alignment": "left", + "indent": Object { + "end": 84, + "firstLineChars": null, + "hangingChars": null, + "specialIndent": null, + "start": 0, + "startChars": null, + }, + "lineSpacing": Object { + "before": 0, + }, + "runProperty": Object { + "fonts": Object { + "ascii_theme": "minorHAnsi", + "cs": "Arial", + "hi_ansi_theme": "minorHAnsi", + }, + }, + "tabs": Array [], + }, + }, + "type": "paragraph", + }, + ], + "hasNumbering": false, + "property": Object { + "borders": null, + "gridSpan": null, + "shading": null, + "textDirection": null, + "verticalAlign": null, + "verticalMerge": null, + "width": Object { + "width": 2410, + "widthType": "DXA", + }, + }, + }, + Object { + "children": Array [ + Object { + "data": Object { + "children": Array [], + "hasNumbering": false, + "id": "00000020", + "property": Object { + "alignment": "left", + "indent": Object { + "end": 0, + "firstLineChars": null, + "hangingChars": null, + "specialIndent": null, + "start": 0, + "startChars": null, + }, + "lineSpacing": Object { + "before": 0, + }, + "runProperty": Object { + "fonts": Object { + "ascii_theme": "minorHAnsi", + "cs": "Arial", + "hi_ansi_theme": "minorHAnsi", + }, + }, + "tabs": Array [], + }, + }, + "type": "paragraph", + }, + ], + "hasNumbering": false, + "property": Object { + "borders": null, + "gridSpan": null, + "shading": null, + "textDirection": null, + "verticalAlign": null, + "verticalMerge": null, + "width": Object { + "width": 1984, + "widthType": "DXA", + }, + }, + }, + Object { + "children": Array [ + Object { + "data": Object { + "children": Array [], + "hasNumbering": false, + "id": "00000021", + "property": Object { + "alignment": "left", + "indent": Object { + "end": 0, + "firstLineChars": null, + "hangingChars": null, + "specialIndent": null, + "start": 0, + "startChars": null, + }, + "lineSpacing": Object { + "before": 0, + }, + "runProperty": Object { + "fonts": Object { + "ascii_theme": "minorHAnsi", + "cs": "Arial", + "hi_ansi_theme": "minorHAnsi", + }, + }, + "tabs": Array [], + }, + }, + "type": "paragraph", + }, + ], + "hasNumbering": false, + "property": Object { + "borders": null, + "gridSpan": null, + "shading": null, + "textDirection": null, + "verticalAlign": null, + "verticalMerge": null, + "width": Object { + "width": 2693, + "widthType": "DXA", + }, + }, + }, + ], + "hasNumbering": false, + "property": Object { + "gridAfter": null, + "gridBefore": null, + "heightRule": "atLeast", + "rowHeight": null, + "widthAfter": null, + "widthBefore": null, + }, + }, + Object { + "cells": Array [ + Object { + "children": Array [ + Object { + "data": Object { + "children": Array [], + "hasNumbering": false, + "id": "00000022", + "property": Object { + "alignment": "left", + "indent": Object { + "end": 0, + "firstLineChars": null, + "hangingChars": null, + "specialIndent": null, + "start": 0, + "startChars": null, + }, + "lineSpacing": Object { + "before": 0, + }, + "runProperty": Object { + "fonts": Object { + "ascii_theme": "minorHAnsi", + "cs": "Arial", + "hi_ansi_theme": "minorHAnsi", + }, + }, + "tabs": Array [], + }, + }, + "type": "paragraph", + }, + ], + "hasNumbering": false, + "property": Object { + "borders": null, + "gridSpan": null, + "shading": null, + "textDirection": null, + "verticalAlign": null, + "verticalMerge": null, + "width": Object { + "width": 3402, + "widthType": "DXA", + }, + }, + }, + Object { + "children": Array [ + Object { + "data": Object { + "children": Array [], + "hasNumbering": false, + "id": "00000023", + "property": Object { + "alignment": "left", + "indent": Object { + "end": 84, + "firstLineChars": null, + "hangingChars": null, + "specialIndent": null, + "start": 0, + "startChars": null, + }, + "lineSpacing": Object { + "before": 0, + }, + "runProperty": Object { + "fonts": Object { + "ascii_theme": "minorHAnsi", + "cs": "Arial", + "hi_ansi_theme": "minorHAnsi", + }, + }, + "tabs": Array [], + }, + }, + "type": "paragraph", + }, + ], + "hasNumbering": false, + "property": Object { + "borders": null, + "gridSpan": null, + "shading": null, + "textDirection": null, + "verticalAlign": null, + "verticalMerge": null, + "width": Object { + "width": 1418, + "widthType": "DXA", + }, + }, + }, + Object { + "children": Array [ + Object { + "data": Object { + "children": Array [], + "hasNumbering": false, + "id": "00000024", + "property": Object { + "alignment": "left", + "indent": Object { + "end": 84, + "firstLineChars": null, + "hangingChars": null, + "specialIndent": null, + "start": 0, + "startChars": null, + }, + "lineSpacing": Object { + "before": 0, + }, + "runProperty": Object { + "fonts": Object { + "ascii_theme": "minorHAnsi", + "cs": "Arial", + "hi_ansi_theme": "minorHAnsi", + }, + }, + "tabs": Array [], + }, + }, + "type": "paragraph", + }, + ], + "hasNumbering": false, + "property": Object { + "borders": null, + "gridSpan": null, + "shading": null, + "textDirection": null, + "verticalAlign": null, + "verticalMerge": null, + "width": Object { + "width": 2410, + "widthType": "DXA", + }, + }, + }, + Object { + "children": Array [ + Object { + "data": Object { + "children": Array [], + "hasNumbering": false, + "id": "00000025", + "property": Object { + "alignment": "left", + "indent": Object { + "end": 34, + "firstLineChars": null, + "hangingChars": null, + "specialIndent": null, + "start": 0, + "startChars": null, + }, + "lineSpacing": Object { + "before": 0, + }, + "runProperty": Object { + "fonts": Object { + "ascii_theme": "minorHAnsi", + "cs": "Arial", + "hi_ansi_theme": "minorHAnsi", + }, + }, + "tabs": Array [], + }, + }, + "type": "paragraph", + }, + ], + "hasNumbering": false, + "property": Object { + "borders": null, + "gridSpan": null, + "shading": null, + "textDirection": null, + "verticalAlign": null, + "verticalMerge": null, + "width": Object { + "width": 1984, + "widthType": "DXA", + }, + }, + }, + Object { + "children": Array [ + Object { + "data": Object { + "children": Array [], + "hasNumbering": false, + "id": "00000026", + "property": Object { + "alignment": "left", + "indent": Object { + "end": 20, + "firstLineChars": null, + "hangingChars": null, + "specialIndent": null, + "start": 20, + "startChars": null, + }, + "lineSpacing": Object { + "before": 0, + }, + "runProperty": Object { + "fonts": Object { + "ascii_theme": "minorHAnsi", + "cs": "Arial", + "hi_ansi_theme": "minorHAnsi", + }, + }, + "tabs": Array [], + }, + }, + "type": "paragraph", + }, + ], + "hasNumbering": false, + "property": Object { + "borders": null, + "gridSpan": null, + "shading": null, + "textDirection": null, + "verticalAlign": null, + "verticalMerge": null, + "width": Object { + "width": 2693, + "widthType": "DXA", + }, + }, + }, + ], + "hasNumbering": false, + "property": Object { + "gridAfter": null, + "gridBefore": null, + "heightRule": "atLeast", + "rowHeight": null, + "widthAfter": null, + "widthBefore": null, + }, + }, + ], + }, + "type": "table", + }, + Object { + "data": Object { + "children": Array [ + Object { + "data": Object { + "id": 2, + "name": "_GoBack", + }, + "type": "bookmarkStart", + }, + Object { + "data": Object { + "id": 0, + }, + "type": "bookmarkEnd", + }, + Object { + "data": Object { + "id": 1, + }, + "type": "bookmarkEnd", + }, + Object { + "data": Object { + "id": 2, + }, + "type": "bookmarkEnd", + }, + ], + "hasNumbering": true, + "id": "00000027", + "property": Object { + "lineSpacing": Object { + "before": 0, + }, + "numberingProperty": Object { + "id": 0, + "level": 0, + }, + "runProperty": Object { + "fonts": Object { + "ascii_theme": "minorHAnsi", + "hi_ansi_theme": "minorHAnsi", + }, + }, + "style": "1", + "tabs": Array [], + }, + }, + "type": "paragraph", + }, + ], + "hasNumbering": true, + "sectionProperty": Object { + "columns": 425, + "docGrid": Object { + "charSpace": null, + "gridType": "lines", + "linePitch": 360, + }, + "footer": Object { + "children": Array [ + Object { + "data": Object { + "children": Array [ + Object { + "data": Object { + "children": Array [ + Object { + "data": Object { + "preserveSpace": true, + "text": "For Customer and Internal Use", + }, + "type": "text", + }, + ], + "runProperty": Object { + "color": "404040", + }, + }, + "type": "run", + }, + Object { + "data": Object { + "children": Array [ + Object { + "type": "tab", + }, + ], + "runProperty": Object {}, + }, + "type": "run", + }, + Object { + "data": Object { + "children": Array [ + Object { + "type": "tab", + }, + ], + "runProperty": Object {}, + }, + "type": "run", + }, + Object { + "data": Object { + "children": Array [ + Object { + "data": Object { + "preserveSpace": true, + "text": "Page ", + }, + "type": "text", + }, + ], + "runProperty": Object { + "fonts": Object { + "ascii": "Arial", + "hi_ansi": "Arial", + }, + }, + }, + "type": "run", + }, + Object { + "data": Object { + "children": Array [ + Object { + "data": Object { + "dirty": false, + "field_char_type": "Begin", + }, + "type": "fieldChar", + }, + ], + "runProperty": Object { + "fonts": Object { + "ascii": "Arial", + "hi_ansi": "Arial", + }, + }, + }, + "type": "run", + }, + Object { + "data": Object { + "children": Array [ + Object { + "data": Object { + "data": "PAGE", + "type": "unsupported", + }, + "type": "instrText", + }, + ], + "runProperty": Object { + "fonts": Object { + "ascii": "Arial", + "hi_ansi": "Arial", + }, + }, + }, + "type": "run", + }, + Object { + "data": Object { + "children": Array [ + Object { + "data": Object { + "dirty": false, + "field_char_type": "Separate", + }, + "type": "fieldChar", + }, + ], + "runProperty": Object { + "fonts": Object { + "ascii": "Arial", + "hi_ansi": "Arial", + }, + }, + }, + "type": "run", + }, + Object { + "data": Object { + "children": Array [ + Object { + "data": Object { + "preserveSpace": true, + "text": "23", + }, + "type": "text", + }, + ], + "runProperty": Object { + "fonts": Object { + "ascii": "Arial", + "hi_ansi": "Arial", + }, + }, + }, + "type": "run", + }, + Object { + "data": Object { + "children": Array [ + Object { + "data": Object { + "dirty": false, + "field_char_type": "End", + }, + "type": "fieldChar", + }, + ], + "runProperty": Object { + "fonts": Object { + "ascii": "Arial", + "hi_ansi": "Arial", + }, + }, + }, + "type": "run", + }, + Object { + "data": Object { + "children": Array [ + Object { + "data": Object { + "preserveSpace": true, + "text": " of ", + }, + "type": "text", + }, + ], + "runProperty": Object { + "fonts": Object { + "ascii": "Arial", + "hi_ansi": "Arial", + }, + }, + }, + "type": "run", + }, + Object { + "data": Object { + "children": Array [ + Object { + "data": Object { + "dirty": false, + "field_char_type": "Begin", + }, + "type": "fieldChar", + }, + ], + "runProperty": Object { + "characterSpacing": 0, + "fonts": Object { + "ascii": "Arial", + "hi_ansi": "Arial", + }, + "sz": 20, + "szCs": 20, + }, + }, + "type": "run", + }, + Object { + "data": Object { + "children": Array [ + Object { + "data": Object { + "data": "NUMPAGES", + "type": "unsupported", + }, + "type": "instrText", + }, + ], + "runProperty": Object { + "characterSpacing": 0, + "fonts": Object { + "ascii": "Arial", + "hi_ansi": "Arial", + }, + "sz": 20, + "szCs": 20, + }, + }, + "type": "run", + }, + Object { + "data": Object { + "children": Array [ + Object { + "data": Object { + "dirty": false, + "field_char_type": "Separate", + }, + "type": "fieldChar", + }, + ], + "runProperty": Object { + "characterSpacing": 0, + "fonts": Object { + "ascii": "Arial", + "hi_ansi": "Arial", + }, + "sz": 20, + "szCs": 20, + }, + }, + "type": "run", + }, + Object { + "data": Object { + "children": Array [ + Object { + "data": Object { + "preserveSpace": true, + "text": "23", + }, + "type": "text", + }, + ], + "runProperty": Object { + "characterSpacing": 0, + "fonts": Object { + "ascii": "Arial", + "hi_ansi": "Arial", + }, + "sz": 20, + "szCs": 20, + }, + }, + "type": "run", + }, + Object { + "data": Object { + "children": Array [ + Object { + "data": Object { + "dirty": false, + "field_char_type": "End", + }, + "type": "fieldChar", + }, + ], + "runProperty": Object { + "characterSpacing": 0, + "fonts": Object { + "ascii": "Arial", + "hi_ansi": "Arial", + }, + "sz": 20, + "szCs": 20, + }, + }, + "type": "run", + }, + ], + "hasNumbering": false, + "id": "00000002", + "property": Object { + "alignment": "left", + "indent": Object { + "end": 0, + "firstLineChars": null, + "hangingChars": null, + "specialIndent": null, + "start": 0, + "startChars": null, + }, + "runProperty": Object {}, + "tabs": Array [], + }, + }, + "type": "paragraph", + }, + ], + "hasNumbering": false, + }, + "footerReference": Object { + "footerType": "default", + "id": "rId8", + }, + "header": Object { + "children": Array [ + Object { + "data": Object { + "children": Array [ + Object { + "data": Object { + "children": Array [ + Object { + "data": Object { + "breakType": "textWrapping", + }, + "type": "break", + }, + Object { + "data": Object { + "preserveSpace": true, + "text": " ", + }, + "type": "text", + }, + ], + "runProperty": Object {}, + }, + "type": "run", + }, + ], + "hasNumbering": false, + "id": "00000001", + "property": Object { + "alignment": "left", + "indent": Object { + "end": 0, + "firstLineChars": null, + "hangingChars": null, + "specialIndent": null, + "start": 0, + "startChars": null, + }, + "lineSpacing": Object { + "before": 0, + }, + "runProperty": Object { + "sz": 18, + "szCs": 18, + }, + "tabs": Array [], + }, + }, + "type": "paragraph", + }, + ], + "hasNumbering": false, + }, + "headerReference": Object { + "headerType": "default", + "id": "rId7", + }, + "pageMargin": Object { + "bottom": 1418, + "footer": 720, + "gutter": 0, + "header": 720, + "left": 1361, + "right": 1361, + "top": 1758, + }, + "pageSize": Object { + "h": 15842, + "orient": null, + "w": 12242, + }, + "titlePg": false, + }, + }, + "documentRels": Object { + "customXmlCount": 0, + "footerCount": 1, + "hasComments": false, + "hasNumberings": false, + "headerCount": 1, + "imageIds": Array [], + }, + "fontTable": Object {}, + "media": Array [], + "numberings": Object { + "abstractNums": Array [ + Object { + "id": 0, + "levels": Array [ + Object { + "format": "decimal", + "jc": "left", + "level": 0, + "levelRestart": null, + "paragraphProperty": Object { + "runProperty": Object {}, + "tabs": Array [], + }, + "pstyle": "1", + "runProperty": Object {}, + "start": 1, + "suffix": "tab", + "text": "%1.", + }, + Object { + "format": "decimal", + "jc": "left", + "level": 1, + "levelRestart": null, + "paragraphProperty": Object { + "runProperty": Object {}, + "tabs": Array [], + }, + "pstyle": "2", + "runProperty": Object {}, + "start": 1, + "suffix": "tab", + "text": "%1.%2", + }, + Object { + "format": "decimal", + "jc": "left", + "level": 2, + "levelRestart": null, + "paragraphProperty": Object { + "runProperty": Object {}, + "tabs": Array [], + }, + "pstyle": "3", + "runProperty": Object {}, + "start": 1, + "suffix": "tab", + "text": "%1.%2.%3", + }, + Object { + "format": "decimal", + "jc": "left", + "level": 3, + "levelRestart": null, + "paragraphProperty": Object { + "runProperty": Object {}, + "tabs": Array [], + }, + "pstyle": "4", + "runProperty": Object {}, + "start": 1, + "suffix": "tab", + "text": "%1.%2.%3.%4", + }, + Object { + "format": "decimal", + "jc": "left", + "level": 4, + "levelRestart": null, + "paragraphProperty": Object { + "runProperty": Object {}, + "tabs": Array [], + }, + "pstyle": "5", + "runProperty": Object {}, + "start": 1, + "suffix": "tab", + "text": "%1.%2.%3.%4.%5", + }, + Object { + "format": "decimal", + "jc": "left", + "level": 5, + "levelRestart": null, + "paragraphProperty": Object { + "runProperty": Object {}, + "tabs": Array [], + }, + "pstyle": "6", + "runProperty": Object {}, + "start": 1, + "suffix": "tab", + "text": "%1.%2.%3.%4.%5.%6", + }, + Object { + "format": "decimal", + "jc": "left", + "level": 6, + "levelRestart": null, + "paragraphProperty": Object { + "runProperty": Object {}, + "tabs": Array [], + }, + "pstyle": "7", + "runProperty": Object {}, + "start": 1, + "suffix": "tab", + "text": "%1.%2.%3.%4.%5.%6.%7", + }, + Object { + "format": "decimal", + "jc": "left", + "level": 7, + "levelRestart": null, + "paragraphProperty": Object { + "runProperty": Object {}, + "tabs": Array [], + }, + "pstyle": "8", + "runProperty": Object {}, + "start": 1, + "suffix": "tab", + "text": "%1.%2.%3.%4.%5.%6.%7.%8", + }, + Object { + "format": "decimal", + "jc": "left", + "level": 8, + "levelRestart": null, + "paragraphProperty": Object { + "runProperty": Object {}, + "tabs": Array [], + }, + "pstyle": "9", + "runProperty": Object {}, + "start": 1, + "suffix": "tab", + "text": "%1.%2.%3.%4.%5.%6.%7.%8.%9", + }, + ], + "numStyleLink": null, + "styleLink": null, + }, + Object { + "id": 1, + "levels": Array [ + Object { + "format": "decimal", + "jc": "left", + "level": 0, + "levelRestart": null, + "paragraphProperty": Object { + "indent": Object { + "end": 360, + "firstLineChars": null, + "hangingChars": null, + "specialIndent": Object { + "type": "hanging", + "val": 360, + }, + "start": 360, + "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": 1440, + "firstLineChars": null, + "hangingChars": null, + "specialIndent": Object { + "type": "hanging", + "val": 360, + }, + "start": 1440, + "startChars": null, + }, + "runProperty": Object {}, + "tabs": Array [], + }, + "pstyle": null, + "runProperty": Object {}, + "start": 1, + "suffix": "tab", + "text": "%2.", + }, + Object { + "format": "lowerRoman", + "jc": "right", + "level": 2, + "levelRestart": null, + "paragraphProperty": Object { + "indent": Object { + "end": 2160, + "firstLineChars": null, + "hangingChars": null, + "specialIndent": Object { + "type": "hanging", + "val": 180, + }, + "start": 2160, + "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": 2880, + "firstLineChars": null, + "hangingChars": null, + "specialIndent": Object { + "type": "hanging", + "val": 360, + }, + "start": 2880, + "startChars": null, + }, + "runProperty": Object {}, + "tabs": Array [], + }, + "pstyle": null, + "runProperty": Object {}, + "start": 1, + "suffix": "tab", + "text": "%4.", + }, + Object { + "format": "lowerLetter", + "jc": "left", + "level": 4, + "levelRestart": null, + "paragraphProperty": Object { + "indent": Object { + "end": 3600, + "firstLineChars": null, + "hangingChars": null, + "specialIndent": Object { + "type": "hanging", + "val": 360, + }, + "start": 3600, + "startChars": null, + }, + "runProperty": Object {}, + "tabs": Array [], + }, + "pstyle": null, + "runProperty": Object {}, + "start": 1, + "suffix": "tab", + "text": "%5.", + }, + Object { + "format": "lowerRoman", + "jc": "right", + "level": 5, + "levelRestart": null, + "paragraphProperty": Object { + "indent": Object { + "end": 4320, + "firstLineChars": null, + "hangingChars": null, + "specialIndent": Object { + "type": "hanging", + "val": 180, + }, + "start": 4320, + "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": 5040, + "firstLineChars": null, + "hangingChars": null, + "specialIndent": Object { + "type": "hanging", + "val": 360, + }, + "start": 5040, + "startChars": null, + }, + "runProperty": Object {}, + "tabs": Array [], + }, + "pstyle": null, + "runProperty": Object {}, + "start": 1, + "suffix": "tab", + "text": "%7.", + }, + Object { + "format": "lowerLetter", + "jc": "left", + "level": 7, + "levelRestart": null, + "paragraphProperty": Object { + "indent": Object { + "end": 5760, + "firstLineChars": null, + "hangingChars": null, + "specialIndent": Object { + "type": "hanging", + "val": 360, + }, + "start": 5760, + "startChars": null, + }, + "runProperty": Object {}, + "tabs": Array [], + }, + "pstyle": null, + "runProperty": Object {}, + "start": 1, + "suffix": "tab", + "text": "%8.", + }, + Object { + "format": "lowerRoman", + "jc": "right", + "level": 8, + "levelRestart": null, + "paragraphProperty": Object { + "indent": Object { + "end": 6480, + "firstLineChars": null, + "hangingChars": null, + "specialIndent": Object { + "type": "hanging", + "val": 180, + }, + "start": 6480, + "startChars": null, + }, + "runProperty": Object {}, + "tabs": Array [], + }, + "pstyle": null, + "runProperty": Object {}, + "start": 1, + "suffix": "tab", + "text": "%9.", + }, + ], + "numStyleLink": null, + "styleLink": null, + }, + Object { + "id": 2, + "levels": Array [ + Object { + "format": "decimal", + "jc": "left", + "level": 0, + "levelRestart": null, + "paragraphProperty": Object { + "indent": Object { + "end": 360, + "firstLineChars": null, + "hangingChars": null, + "specialIndent": Object { + "type": "hanging", + "val": 360, + }, + "start": 360, + "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": 1440, + "firstLineChars": null, + "hangingChars": null, + "specialIndent": Object { + "type": "hanging", + "val": 360, + }, + "start": 1440, + "startChars": null, + }, + "runProperty": Object {}, + "tabs": Array [], + }, + "pstyle": null, + "runProperty": Object {}, + "start": 1, + "suffix": "tab", + "text": "%2.", + }, + Object { + "format": "lowerRoman", + "jc": "right", + "level": 2, + "levelRestart": null, + "paragraphProperty": Object { + "indent": Object { + "end": 2160, + "firstLineChars": null, + "hangingChars": null, + "specialIndent": Object { + "type": "hanging", + "val": 180, + }, + "start": 2160, + "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": 2880, + "firstLineChars": null, + "hangingChars": null, + "specialIndent": Object { + "type": "hanging", + "val": 360, + }, + "start": 2880, + "startChars": null, + }, + "runProperty": Object {}, + "tabs": Array [], + }, + "pstyle": null, + "runProperty": Object {}, + "start": 1, + "suffix": "tab", + "text": "%4.", + }, + Object { + "format": "lowerLetter", + "jc": "left", + "level": 4, + "levelRestart": null, + "paragraphProperty": Object { + "indent": Object { + "end": 3600, + "firstLineChars": null, + "hangingChars": null, + "specialIndent": Object { + "type": "hanging", + "val": 360, + }, + "start": 3600, + "startChars": null, + }, + "runProperty": Object {}, + "tabs": Array [], + }, + "pstyle": null, + "runProperty": Object {}, + "start": 1, + "suffix": "tab", + "text": "%5.", + }, + Object { + "format": "lowerRoman", + "jc": "right", + "level": 5, + "levelRestart": null, + "paragraphProperty": Object { + "indent": Object { + "end": 4320, + "firstLineChars": null, + "hangingChars": null, + "specialIndent": Object { + "type": "hanging", + "val": 180, + }, + "start": 4320, + "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": 5040, + "firstLineChars": null, + "hangingChars": null, + "specialIndent": Object { + "type": "hanging", + "val": 360, + }, + "start": 5040, + "startChars": null, + }, + "runProperty": Object {}, + "tabs": Array [], + }, + "pstyle": null, + "runProperty": Object {}, + "start": 1, + "suffix": "tab", + "text": "%7.", + }, + Object { + "format": "lowerLetter", + "jc": "left", + "level": 7, + "levelRestart": null, + "paragraphProperty": Object { + "indent": Object { + "end": 5760, + "firstLineChars": null, + "hangingChars": null, + "specialIndent": Object { + "type": "hanging", + "val": 360, + }, + "start": 5760, + "startChars": null, + }, + "runProperty": Object {}, + "tabs": Array [], + }, + "pstyle": null, + "runProperty": Object {}, + "start": 1, + "suffix": "tab", + "text": "%8.", + }, + Object { + "format": "lowerRoman", + "jc": "right", + "level": 8, + "levelRestart": null, + "paragraphProperty": Object { + "indent": Object { + "end": 6480, + "firstLineChars": null, + "hangingChars": null, + "specialIndent": Object { + "type": "hanging", + "val": 180, + }, + "start": 6480, + "startChars": null, + }, + "runProperty": Object {}, + "tabs": Array [], + }, + "pstyle": null, + "runProperty": Object {}, + "start": 1, + "suffix": "tab", + "text": "%9.", + }, + ], + "numStyleLink": null, + "styleLink": null, + }, + Object { + "id": 3, + "levels": Array [ + Object { + "format": "decimal", + "jc": "left", + "level": 0, + "levelRestart": null, + "paragraphProperty": Object { + "runProperty": Object {}, + "tabs": Array [], + }, + "pstyle": null, + "runProperty": Object {}, + "start": 1, + "suffix": "tab", + "text": "%1.", + }, + Object { + "format": "decimal", + "jc": "left", + "level": 1, + "levelRestart": null, + "paragraphProperty": Object { + "runProperty": Object {}, + "tabs": Array [], + }, + "pstyle": null, + "runProperty": Object {}, + "start": 1, + "suffix": "tab", + "text": "%1.%2", + }, + Object { + "format": "decimal", + "jc": "left", + "level": 2, + "levelRestart": null, + "paragraphProperty": Object { + "runProperty": Object {}, + "tabs": Array [], + }, + "pstyle": null, + "runProperty": Object {}, + "start": 1, + "suffix": "tab", + "text": "%1.%2.%3", + }, + Object { + "format": "decimal", + "jc": "left", + "level": 3, + "levelRestart": null, + "paragraphProperty": Object { + "runProperty": Object {}, + "tabs": Array [], + }, + "pstyle": null, + "runProperty": Object {}, + "start": 1, + "suffix": "tab", + "text": "%1.%2.%3.%4", + }, + Object { + "format": "decimal", + "jc": "left", + "level": 4, + "levelRestart": null, + "paragraphProperty": Object { + "runProperty": Object {}, + "tabs": Array [], + }, + "pstyle": null, + "runProperty": Object {}, + "start": 1, + "suffix": "tab", + "text": "%1.%2.%3.%4.%5", + }, + Object { + "format": "decimal", + "jc": "left", + "level": 5, + "levelRestart": null, + "paragraphProperty": Object { + "runProperty": Object {}, + "tabs": Array [], + }, + "pstyle": null, + "runProperty": Object {}, + "start": 1, + "suffix": "tab", + "text": "%1.%2.%3.%4.%5.%6", + }, + Object { + "format": "decimal", + "jc": "left", + "level": 6, + "levelRestart": null, + "paragraphProperty": Object { + "runProperty": Object {}, + "tabs": Array [], + }, + "pstyle": null, + "runProperty": Object {}, + "start": 1, + "suffix": "tab", + "text": "%1.%2.%3.%4.%5.%6.%7", + }, + Object { + "format": "decimal", + "jc": "left", + "level": 7, + "levelRestart": null, + "paragraphProperty": Object { + "runProperty": Object {}, + "tabs": Array [], + }, + "pstyle": null, + "runProperty": Object {}, + "start": 1, + "suffix": "tab", + "text": "%1.%2.%3.%4.%5.%6.%7.%8", + }, + Object { + "format": "decimal", + "jc": "left", + "level": 8, + "levelRestart": null, + "paragraphProperty": Object { + "runProperty": Object {}, + "tabs": Array [], + }, + "pstyle": null, + "runProperty": Object {}, + "start": 1, + "suffix": "tab", + "text": "%1.%2.%3.%4.%5.%6.%7.%8.%9", + }, + ], + "numStyleLink": null, + "styleLink": null, + }, + Object { + "id": 4, + "levels": Array [ + Object { + "format": "decimal", + "jc": "left", + "level": 0, + "levelRestart": null, + "paragraphProperty": Object { + "runProperty": Object {}, + "tabs": Array [], + }, + "pstyle": null, + "runProperty": Object {}, + "start": 1, + "suffix": "tab", + "text": "%1.", + }, + Object { + "format": "decimal", + "jc": "left", + "level": 1, + "levelRestart": null, + "paragraphProperty": Object { + "runProperty": Object {}, + "tabs": Array [], + }, + "pstyle": null, + "runProperty": Object {}, + "start": 1, + "suffix": "tab", + "text": "%1.%2", + }, + Object { + "format": "decimal", + "jc": "left", + "level": 2, + "levelRestart": null, + "paragraphProperty": Object { + "runProperty": Object {}, + "tabs": Array [], + }, + "pstyle": null, + "runProperty": Object {}, + "start": 1, + "suffix": "tab", + "text": "%1.%2.%3", + }, + Object { + "format": "decimal", + "jc": "left", + "level": 3, + "levelRestart": null, + "paragraphProperty": Object { + "runProperty": Object {}, + "tabs": Array [], + }, + "pstyle": null, + "runProperty": Object {}, + "start": 1, + "suffix": "tab", + "text": "%1.%2.%3.%4", + }, + Object { + "format": "decimal", + "jc": "left", + "level": 4, + "levelRestart": null, + "paragraphProperty": Object { + "runProperty": Object {}, + "tabs": Array [], + }, + "pstyle": null, + "runProperty": Object {}, + "start": 1, + "suffix": "tab", + "text": "%1.%2.%3.%4.%5", + }, + Object { + "format": "decimal", + "jc": "left", + "level": 5, + "levelRestart": null, + "paragraphProperty": Object { + "runProperty": Object {}, + "tabs": Array [], + }, + "pstyle": null, + "runProperty": Object {}, + "start": 1, + "suffix": "tab", + "text": "%1.%2.%3.%4.%5.%6", + }, + Object { + "format": "decimal", + "jc": "left", + "level": 6, + "levelRestart": null, + "paragraphProperty": Object { + "runProperty": Object {}, + "tabs": Array [], + }, + "pstyle": null, + "runProperty": Object {}, + "start": 1, + "suffix": "tab", + "text": "%1.%2.%3.%4.%5.%6.%7", + }, + Object { + "format": "decimal", + "jc": "left", + "level": 7, + "levelRestart": null, + "paragraphProperty": Object { + "runProperty": Object {}, + "tabs": Array [], + }, + "pstyle": null, + "runProperty": Object {}, + "start": 1, + "suffix": "tab", + "text": "%1.%2.%3.%4.%5.%6.%7.%8", + }, + Object { + "format": "decimal", + "jc": "left", + "level": 8, + "levelRestart": null, + "paragraphProperty": Object { + "runProperty": Object {}, + "tabs": Array [], + }, + "pstyle": null, + "runProperty": Object {}, + "start": 1, + "suffix": "tab", + "text": "%1.%2.%3.%4.%5.%6.%7.%8.%9", + }, + ], + "numStyleLink": null, + "styleLink": null, + }, + Object { + "id": 5, + "levels": Array [ + Object { + "format": "decimal", + "jc": "left", + "level": 0, + "levelRestart": null, + "paragraphProperty": Object { + "runProperty": Object {}, + "tabs": Array [], + }, + "pstyle": null, + "runProperty": Object {}, + "start": 1, + "suffix": "tab", + "text": "%1.", + }, + Object { + "format": "decimal", + "jc": "left", + "level": 1, + "levelRestart": null, + "paragraphProperty": Object { + "runProperty": Object {}, + "tabs": Array [], + }, + "pstyle": null, + "runProperty": Object {}, + "start": 1, + "suffix": "tab", + "text": "%1.%2", + }, + Object { + "format": "decimal", + "jc": "left", + "level": 2, + "levelRestart": null, + "paragraphProperty": Object { + "runProperty": Object {}, + "tabs": Array [], + }, + "pstyle": null, + "runProperty": Object {}, + "start": 1, + "suffix": "tab", + "text": "%1.%2.%3", + }, + Object { + "format": "decimal", + "jc": "left", + "level": 3, + "levelRestart": null, + "paragraphProperty": Object { + "runProperty": Object {}, + "tabs": Array [], + }, + "pstyle": null, + "runProperty": Object {}, + "start": 1, + "suffix": "tab", + "text": "%1.%2.%3.%4", + }, + Object { + "format": "decimal", + "jc": "left", + "level": 4, + "levelRestart": null, + "paragraphProperty": Object { + "runProperty": Object {}, + "tabs": Array [], + }, + "pstyle": null, + "runProperty": Object {}, + "start": 1, + "suffix": "tab", + "text": "%1.%2.%3.%4.%5", + }, + Object { + "format": "decimal", + "jc": "left", + "level": 5, + "levelRestart": null, + "paragraphProperty": Object { + "runProperty": Object {}, + "tabs": Array [], + }, + "pstyle": null, + "runProperty": Object {}, + "start": 1, + "suffix": "tab", + "text": "%1.%2.%3.%4.%5.%6", + }, + Object { + "format": "decimal", + "jc": "left", + "level": 6, + "levelRestart": null, + "paragraphProperty": Object { + "runProperty": Object {}, + "tabs": Array [], + }, + "pstyle": null, + "runProperty": Object {}, + "start": 1, + "suffix": "tab", + "text": "%1.%2.%3.%4.%5.%6.%7", + }, + Object { + "format": "decimal", + "jc": "left", + "level": 7, + "levelRestart": null, + "paragraphProperty": Object { + "runProperty": Object {}, + "tabs": Array [], + }, + "pstyle": null, + "runProperty": Object {}, + "start": 1, + "suffix": "tab", + "text": "%1.%2.%3.%4.%5.%6.%7.%8", + }, + Object { + "format": "decimal", + "jc": "left", + "level": 8, + "levelRestart": null, + "paragraphProperty": Object { + "runProperty": Object {}, + "tabs": Array [], + }, + "pstyle": null, + "runProperty": Object {}, + "start": 1, + "suffix": "tab", + "text": "%1.%2.%3.%4.%5.%6.%7.%8.%9", + }, + ], + "numStyleLink": null, + "styleLink": null, + }, + Object { + "id": 6, + "levels": Array [ + Object { + "format": "decimal", + "jc": "left", + "level": 0, + "levelRestart": null, + "paragraphProperty": Object { + "indent": Object { + "end": 360, + "firstLineChars": null, + "hangingChars": null, + "specialIndent": Object { + "type": "hanging", + "val": 360, + }, + "start": 360, + "startChars": null, + }, + "runProperty": Object {}, + "tabs": Array [], + }, + "pstyle": null, + "runProperty": Object {}, + "start": 1, + "suffix": "tab", + "text": "%1.", + }, + ], + "numStyleLink": null, + "styleLink": null, + }, + Object { + "id": 7, + "levels": Array [ + Object { + "format": "decimal", + "jc": "left", + "level": 0, + "levelRestart": null, + "paragraphProperty": Object { + "indent": Object { + "end": 360, + "firstLineChars": null, + "hangingChars": null, + "specialIndent": Object { + "type": "hanging", + "val": 360, + }, + "start": 360, + "startChars": null, + }, + "runProperty": Object {}, + "tabs": Array [], + }, + "pstyle": null, + "runProperty": Object {}, + "start": 1, + "suffix": "tab", + "text": "%1.", + }, + ], + "numStyleLink": null, + "styleLink": null, + }, + Object { + "id": 8, + "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": 360, + }, + "start": 1627, + "startChars": null, + }, + "runProperty": Object {}, + "tabs": Array [], + }, + "pstyle": null, + "runProperty": Object {}, + "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": 2347, + "startChars": null, + }, + "runProperty": Object {}, + "tabs": Array [], + }, + "pstyle": null, + "runProperty": Object {}, + "start": 1, + "suffix": "tab", + "text": "o", + }, + Object { + "format": "bullet", + "jc": "left", + "level": 2, + "levelRestart": null, + "paragraphProperty": Object { + "indent": Object { + "end": null, + "firstLineChars": null, + "hangingChars": null, + "specialIndent": Object { + "type": "hanging", + "val": 360, + }, + "start": 3067, + "startChars": null, + }, + "runProperty": Object {}, + "tabs": Array [], + }, + "pstyle": null, + "runProperty": Object {}, + "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": 360, + }, + "start": 3787, + "startChars": null, + }, + "runProperty": Object {}, + "tabs": Array [], + }, + "pstyle": null, + "runProperty": Object {}, + "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": 360, + }, + "start": 4507, + "startChars": null, + }, + "runProperty": Object {}, + "tabs": Array [], + }, + "pstyle": null, + "runProperty": Object {}, + "start": 1, + "suffix": "tab", + "text": "o", + }, + Object { + "format": "bullet", + "jc": "left", + "level": 5, + "levelRestart": null, + "paragraphProperty": Object { + "indent": Object { + "end": null, + "firstLineChars": null, + "hangingChars": null, + "specialIndent": Object { + "type": "hanging", + "val": 360, + }, + "start": 5227, + "startChars": null, + }, + "runProperty": Object {}, + "tabs": Array [], + }, + "pstyle": null, + "runProperty": Object {}, + "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": 360, + }, + "start": 5947, + "startChars": null, + }, + "runProperty": Object {}, + "tabs": Array [], + }, + "pstyle": null, + "runProperty": Object {}, + "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": 360, + }, + "start": 6667, + "startChars": null, + }, + "runProperty": Object {}, + "tabs": Array [], + }, + "pstyle": null, + "runProperty": Object {}, + "start": 1, + "suffix": "tab", + "text": "o", + }, + Object { + "format": "bullet", + "jc": "left", + "level": 8, + "levelRestart": null, + "paragraphProperty": Object { + "indent": Object { + "end": null, + "firstLineChars": null, + "hangingChars": null, + "specialIndent": Object { + "type": "hanging", + "val": 360, + }, + "start": 7387, + "startChars": null, + }, + "runProperty": Object {}, + "tabs": Array [], + }, + "pstyle": null, + "runProperty": Object {}, + "start": 1, + "suffix": "tab", + "text": "", + }, + ], + "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": null, + "specialIndent": Object { + "type": "hanging", + "val": 360, + }, + "start": 1627, + "startChars": null, + }, + "runProperty": Object {}, + "tabs": Array [], + }, + "pstyle": null, + "runProperty": Object {}, + "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": 2347, + "startChars": null, + }, + "runProperty": Object {}, + "tabs": Array [], + }, + "pstyle": null, + "runProperty": Object {}, + "start": 1, + "suffix": "tab", + "text": "o", + }, + Object { + "format": "bullet", + "jc": "left", + "level": 2, + "levelRestart": null, + "paragraphProperty": Object { + "indent": Object { + "end": null, + "firstLineChars": null, + "hangingChars": null, + "specialIndent": Object { + "type": "hanging", + "val": 360, + }, + "start": 3067, + "startChars": null, + }, + "runProperty": Object {}, + "tabs": Array [], + }, + "pstyle": null, + "runProperty": Object {}, + "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": 360, + }, + "start": 3787, + "startChars": null, + }, + "runProperty": Object {}, + "tabs": Array [], + }, + "pstyle": null, + "runProperty": Object {}, + "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": 360, + }, + "start": 4507, + "startChars": null, + }, + "runProperty": Object {}, + "tabs": Array [], + }, + "pstyle": null, + "runProperty": Object {}, + "start": 1, + "suffix": "tab", + "text": "o", + }, + Object { + "format": "bullet", + "jc": "left", + "level": 5, + "levelRestart": null, + "paragraphProperty": Object { + "indent": Object { + "end": null, + "firstLineChars": null, + "hangingChars": null, + "specialIndent": Object { + "type": "hanging", + "val": 360, + }, + "start": 5227, + "startChars": null, + }, + "runProperty": Object {}, + "tabs": Array [], + }, + "pstyle": null, + "runProperty": Object {}, + "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": 360, + }, + "start": 5947, + "startChars": null, + }, + "runProperty": Object {}, + "tabs": Array [], + }, + "pstyle": null, + "runProperty": Object {}, + "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": 360, + }, + "start": 6667, + "startChars": null, + }, + "runProperty": Object {}, + "tabs": Array [], + }, + "pstyle": null, + "runProperty": Object {}, + "start": 1, + "suffix": "tab", + "text": "o", + }, + Object { + "format": "bullet", + "jc": "left", + "level": 8, + "levelRestart": null, + "paragraphProperty": Object { + "indent": Object { + "end": null, + "firstLineChars": null, + "hangingChars": null, + "specialIndent": Object { + "type": "hanging", + "val": 360, + }, + "start": 7387, + "startChars": null, + }, + "runProperty": Object {}, + "tabs": Array [], + }, + "pstyle": null, + "runProperty": Object {}, + "start": 1, + "suffix": "tab", + "text": "", + }, + ], + "numStyleLink": null, + "styleLink": null, + }, + Object { + "id": 10, + "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": 360, + }, + "start": 1627, + "startChars": null, + }, + "runProperty": Object {}, + "tabs": Array [], + }, + "pstyle": null, + "runProperty": Object {}, + "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": 2347, + "startChars": null, + }, + "runProperty": Object {}, + "tabs": Array [], + }, + "pstyle": null, + "runProperty": Object {}, + "start": 1, + "suffix": "tab", + "text": "o", + }, + Object { + "format": "bullet", + "jc": "left", + "level": 2, + "levelRestart": null, + "paragraphProperty": Object { + "indent": Object { + "end": null, + "firstLineChars": null, + "hangingChars": null, + "specialIndent": Object { + "type": "hanging", + "val": 360, + }, + "start": 3067, + "startChars": null, + }, + "runProperty": Object {}, + "tabs": Array [], + }, + "pstyle": null, + "runProperty": Object {}, + "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": 360, + }, + "start": 3787, + "startChars": null, + }, + "runProperty": Object {}, + "tabs": Array [], + }, + "pstyle": null, + "runProperty": Object {}, + "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": 360, + }, + "start": 4507, + "startChars": null, + }, + "runProperty": Object {}, + "tabs": Array [], + }, + "pstyle": null, + "runProperty": Object {}, + "start": 1, + "suffix": "tab", + "text": "o", + }, + Object { + "format": "bullet", + "jc": "left", + "level": 5, + "levelRestart": null, + "paragraphProperty": Object { + "indent": Object { + "end": null, + "firstLineChars": null, + "hangingChars": null, + "specialIndent": Object { + "type": "hanging", + "val": 360, + }, + "start": 5227, + "startChars": null, + }, + "runProperty": Object {}, + "tabs": Array [], + }, + "pstyle": null, + "runProperty": Object {}, + "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": 360, + }, + "start": 5947, + "startChars": null, + }, + "runProperty": Object {}, + "tabs": Array [], + }, + "pstyle": null, + "runProperty": Object {}, + "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": 360, + }, + "start": 6667, + "startChars": null, + }, + "runProperty": Object {}, + "tabs": Array [], + }, + "pstyle": null, + "runProperty": Object {}, + "start": 1, + "suffix": "tab", + "text": "o", + }, + Object { + "format": "bullet", + "jc": "left", + "level": 8, + "levelRestart": null, + "paragraphProperty": Object { + "indent": Object { + "end": null, + "firstLineChars": null, + "hangingChars": null, + "specialIndent": Object { + "type": "hanging", + "val": 360, + }, + "start": 7387, + "startChars": null, + }, + "runProperty": Object {}, + "tabs": Array [], + }, + "pstyle": null, + "runProperty": Object {}, + "start": 1, + "suffix": "tab", + "text": "", + }, + ], + "numStyleLink": null, + "styleLink": null, + }, + Object { + "id": 11, + "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": 720, + }, + "start": 1080, + "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": 360, + }, + "start": 1440, + "startChars": null, + }, + "runProperty": Object {}, + "tabs": Array [], + }, + "pstyle": null, + "runProperty": Object {}, + "start": 1, + "suffix": "tab", + "text": "%2.", + }, + Object { + "format": "lowerRoman", + "jc": "right", + "level": 2, + "levelRestart": null, + "paragraphProperty": Object { + "indent": Object { + "end": null, + "firstLineChars": null, + "hangingChars": null, + "specialIndent": Object { + "type": "hanging", + "val": 180, + }, + "start": 2160, + "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": 360, + }, + "start": 2880, + "startChars": null, + }, + "runProperty": Object {}, + "tabs": Array [], + }, + "pstyle": null, + "runProperty": Object {}, + "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": 3600, + "startChars": null, + }, + "runProperty": Object {}, + "tabs": Array [], + }, + "pstyle": null, + "runProperty": Object {}, + "start": 1, + "suffix": "tab", + "text": "%5.", + }, + Object { + "format": "lowerRoman", + "jc": "right", + "level": 5, + "levelRestart": null, + "paragraphProperty": Object { + "indent": Object { + "end": null, + "firstLineChars": null, + "hangingChars": null, + "specialIndent": Object { + "type": "hanging", + "val": 180, + }, + "start": 4320, + "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": 360, + }, + "start": 5040, + "startChars": null, + }, + "runProperty": Object {}, + "tabs": Array [], + }, + "pstyle": null, + "runProperty": Object {}, + "start": 1, + "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": 5760, + "startChars": null, + }, + "runProperty": Object {}, + "tabs": Array [], + }, + "pstyle": null, + "runProperty": Object {}, + "start": 1, + "suffix": "tab", + "text": "%8.", + }, + Object { + "format": "lowerRoman", + "jc": "right", + "level": 8, + "levelRestart": null, + "paragraphProperty": Object { + "indent": Object { + "end": null, + "firstLineChars": null, + "hangingChars": null, + "specialIndent": Object { + "type": "hanging", + "val": 180, + }, + "start": 6480, + "startChars": null, + }, + "runProperty": Object {}, + "tabs": Array [], + }, + "pstyle": null, + "runProperty": Object {}, + "start": 1, + "suffix": "tab", + "text": "%9.", + }, + ], + "numStyleLink": null, + "styleLink": null, + }, + Object { + "id": 12, + "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": 360, + }, + "start": 1494, + "startChars": null, + }, + "runProperty": Object {}, + "tabs": Array [], + }, + "pstyle": null, + "runProperty": Object {}, + "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": 360, + }, + "start": 2214, + "startChars": null, + }, + "runProperty": Object {}, + "tabs": Array [], + }, + "pstyle": null, + "runProperty": Object {}, + "start": 1, + "suffix": "tab", + "text": "o", + }, + Object { + "format": "decimal", + "jc": "left", + "level": 2, + "levelRestart": null, + "paragraphProperty": Object { + "indent": Object { + "end": null, + "firstLineChars": null, + "hangingChars": null, + "specialIndent": Object { + "type": "hanging", + "val": 360, + }, + "start": 2934, + "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": 3654, + "startChars": null, + }, + "runProperty": Object {}, + "tabs": Array [], + }, + "pstyle": null, + "runProperty": Object {}, + "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": 360, + }, + "start": 4374, + "startChars": null, + }, + "runProperty": Object {}, + "tabs": Array [], + }, + "pstyle": null, + "runProperty": Object {}, + "start": 1, + "suffix": "tab", + "text": "o", + }, + Object { + "format": "bullet", + "jc": "left", + "level": 5, + "levelRestart": null, + "paragraphProperty": Object { + "indent": Object { + "end": null, + "firstLineChars": null, + "hangingChars": null, + "specialIndent": Object { + "type": "hanging", + "val": 360, + }, + "start": 5094, + "startChars": null, + }, + "runProperty": Object {}, + "tabs": Array [], + }, + "pstyle": null, + "runProperty": Object {}, + "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": 360, + }, + "start": 5814, + "startChars": null, + }, + "runProperty": Object {}, + "tabs": Array [], + }, + "pstyle": null, + "runProperty": Object {}, + "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": 360, + }, + "start": 6534, + "startChars": null, + }, + "runProperty": Object {}, + "tabs": Array [], + }, + "pstyle": null, + "runProperty": Object {}, + "start": 1, + "suffix": "tab", + "text": "o", + }, + Object { + "format": "bullet", + "jc": "left", + "level": 8, + "levelRestart": null, + "paragraphProperty": Object { + "indent": Object { + "end": null, + "firstLineChars": null, + "hangingChars": null, + "specialIndent": Object { + "type": "hanging", + "val": 360, + }, + "start": 7254, + "startChars": null, + }, + "runProperty": Object {}, + "tabs": Array [], + }, + "pstyle": null, + "runProperty": Object {}, + "start": 1, + "suffix": "tab", + "text": "", + }, + ], + "numStyleLink": null, + "styleLink": null, + }, + Object { + "id": 13, + "levels": Array [ + Object { + "format": "decimal", + "jc": "left", + "level": 0, + "levelRestart": null, + "paragraphProperty": Object { + "indent": Object { + "end": 360, + "firstLineChars": null, + "hangingChars": null, + "specialIndent": Object { + "type": "hanging", + "val": 360, + }, + "start": 360, + "startChars": null, + }, + "runProperty": Object {}, + "tabs": Array [], + }, + "pstyle": null, + "runProperty": Object {}, + "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": 1440, + "startChars": null, + }, + "runProperty": Object {}, + "tabs": Array [], + }, + "pstyle": null, + "runProperty": Object {}, + "start": 0, + "suffix": "tab", + "text": "-", + }, + Object { + "format": "lowerRoman", + "jc": "right", + "level": 2, + "levelRestart": null, + "paragraphProperty": Object { + "indent": Object { + "end": 2160, + "firstLineChars": null, + "hangingChars": null, + "specialIndent": Object { + "type": "hanging", + "val": 180, + }, + "start": 2160, + "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": 2880, + "firstLineChars": null, + "hangingChars": null, + "specialIndent": Object { + "type": "hanging", + "val": 360, + }, + "start": 2880, + "startChars": null, + }, + "runProperty": Object {}, + "tabs": Array [], + }, + "pstyle": null, + "runProperty": Object {}, + "start": 1, + "suffix": "tab", + "text": "%4.", + }, + Object { + "format": "lowerLetter", + "jc": "left", + "level": 4, + "levelRestart": null, + "paragraphProperty": Object { + "indent": Object { + "end": 3600, + "firstLineChars": null, + "hangingChars": null, + "specialIndent": Object { + "type": "hanging", + "val": 360, + }, + "start": 3600, + "startChars": null, + }, + "runProperty": Object {}, + "tabs": Array [], + }, + "pstyle": null, + "runProperty": Object {}, + "start": 1, + "suffix": "tab", + "text": "%5.", + }, + Object { + "format": "lowerRoman", + "jc": "right", + "level": 5, + "levelRestart": null, + "paragraphProperty": Object { + "indent": Object { + "end": 4320, + "firstLineChars": null, + "hangingChars": null, + "specialIndent": Object { + "type": "hanging", + "val": 180, + }, + "start": 4320, + "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": 5040, + "firstLineChars": null, + "hangingChars": null, + "specialIndent": Object { + "type": "hanging", + "val": 360, + }, + "start": 5040, + "startChars": null, + }, + "runProperty": Object {}, + "tabs": Array [], + }, + "pstyle": null, + "runProperty": Object {}, + "start": 1, + "suffix": "tab", + "text": "%7.", + }, + Object { + "format": "lowerLetter", + "jc": "left", + "level": 7, + "levelRestart": null, + "paragraphProperty": Object { + "indent": Object { + "end": 5760, + "firstLineChars": null, + "hangingChars": null, + "specialIndent": Object { + "type": "hanging", + "val": 360, + }, + "start": 5760, + "startChars": null, + }, + "runProperty": Object {}, + "tabs": Array [], + }, + "pstyle": null, + "runProperty": Object {}, + "start": 1, + "suffix": "tab", + "text": "%8.", + }, + Object { + "format": "lowerRoman", + "jc": "right", + "level": 8, + "levelRestart": null, + "paragraphProperty": Object { + "indent": Object { + "end": 6480, + "firstLineChars": null, + "hangingChars": null, + "specialIndent": Object { + "type": "hanging", + "val": 180, + }, + "start": 6480, + "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": "decimal", + "jc": "left", + "level": 0, + "levelRestart": null, + "paragraphProperty": Object { + "indent": Object { + "end": null, + "firstLineChars": null, + "hangingChars": null, + "specialIndent": Object { + "type": "hanging", + "val": 360, + }, + "start": 1267, + "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": 360, + }, + "start": 1987, + "startChars": null, + }, + "runProperty": Object {}, + "tabs": Array [], + }, + "pstyle": null, + "runProperty": Object {}, + "start": 1, + "suffix": "tab", + "text": "%2.", + }, + Object { + "format": "lowerRoman", + "jc": "right", + "level": 2, + "levelRestart": null, + "paragraphProperty": Object { + "indent": Object { + "end": null, + "firstLineChars": null, + "hangingChars": null, + "specialIndent": Object { + "type": "hanging", + "val": 180, + }, + "start": 2707, + "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": 360, + }, + "start": 3427, + "startChars": null, + }, + "runProperty": Object {}, + "tabs": Array [], + }, + "pstyle": null, + "runProperty": Object {}, + "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": 4147, + "startChars": null, + }, + "runProperty": Object {}, + "tabs": Array [], + }, + "pstyle": null, + "runProperty": Object {}, + "start": 1, + "suffix": "tab", + "text": "%5.", + }, + Object { + "format": "lowerRoman", + "jc": "right", + "level": 5, + "levelRestart": null, + "paragraphProperty": Object { + "indent": Object { + "end": null, + "firstLineChars": null, + "hangingChars": null, + "specialIndent": Object { + "type": "hanging", + "val": 180, + }, + "start": 4867, + "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": 360, + }, + "start": 5587, + "startChars": null, + }, + "runProperty": Object {}, + "tabs": Array [], + }, + "pstyle": null, + "runProperty": Object {}, + "start": 1, + "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": 6307, + "startChars": null, + }, + "runProperty": Object {}, + "tabs": Array [], + }, + "pstyle": null, + "runProperty": Object {}, + "start": 1, + "suffix": "tab", + "text": "%8.", + }, + Object { + "format": "lowerRoman", + "jc": "right", + "level": 8, + "levelRestart": null, + "paragraphProperty": Object { + "indent": Object { + "end": null, + "firstLineChars": null, + "hangingChars": null, + "specialIndent": Object { + "type": "hanging", + "val": 180, + }, + "start": 7027, + "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": "bullet", + "jc": "left", + "level": 0, + "levelRestart": null, + "paragraphProperty": Object { + "indent": Object { + "end": null, + "firstLineChars": null, + "hangingChars": null, + "specialIndent": Object { + "type": "hanging", + "val": 360, + }, + "start": 1854, + "startChars": null, + }, + "runProperty": Object {}, + "tabs": Array [], + }, + "pstyle": null, + "runProperty": Object {}, + "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": 2574, + "startChars": null, + }, + "runProperty": Object {}, + "tabs": Array [], + }, + "pstyle": null, + "runProperty": Object {}, + "start": 1, + "suffix": "tab", + "text": "o", + }, + Object { + "format": "bullet", + "jc": "left", + "level": 2, + "levelRestart": null, + "paragraphProperty": Object { + "indent": Object { + "end": null, + "firstLineChars": null, + "hangingChars": null, + "specialIndent": Object { + "type": "hanging", + "val": 360, + }, + "start": 3294, + "startChars": null, + }, + "runProperty": Object {}, + "tabs": Array [], + }, + "pstyle": null, + "runProperty": Object {}, + "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": 360, + }, + "start": 4014, + "startChars": null, + }, + "runProperty": Object {}, + "tabs": Array [], + }, + "pstyle": null, + "runProperty": Object {}, + "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": 360, + }, + "start": 4734, + "startChars": null, + }, + "runProperty": Object {}, + "tabs": Array [], + }, + "pstyle": null, + "runProperty": Object {}, + "start": 1, + "suffix": "tab", + "text": "o", + }, + Object { + "format": "bullet", + "jc": "left", + "level": 5, + "levelRestart": null, + "paragraphProperty": Object { + "indent": Object { + "end": null, + "firstLineChars": null, + "hangingChars": null, + "specialIndent": Object { + "type": "hanging", + "val": 360, + }, + "start": 5454, + "startChars": null, + }, + "runProperty": Object {}, + "tabs": Array [], + }, + "pstyle": null, + "runProperty": Object {}, + "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": 360, + }, + "start": 6174, + "startChars": null, + }, + "runProperty": Object {}, + "tabs": Array [], + }, + "pstyle": null, + "runProperty": Object {}, + "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": 360, + }, + "start": 6894, + "startChars": null, + }, + "runProperty": Object {}, + "tabs": Array [], + }, + "pstyle": null, + "runProperty": Object {}, + "start": 1, + "suffix": "tab", + "text": "o", + }, + Object { + "format": "bullet", + "jc": "left", + "level": 8, + "levelRestart": null, + "paragraphProperty": Object { + "indent": Object { + "end": null, + "firstLineChars": null, + "hangingChars": null, + "specialIndent": Object { + "type": "hanging", + "val": 360, + }, + "start": 7614, + "startChars": null, + }, + "runProperty": Object {}, + "tabs": Array [], + }, + "pstyle": null, + "runProperty": Object {}, + "start": 1, + "suffix": "tab", + "text": "", + }, + ], + "numStyleLink": null, + "styleLink": null, + }, + Object { + "id": 16, + "levels": Array [ + Object { + "format": "upperRoman", + "jc": "right", + "level": 0, + "levelRestart": null, + "paragraphProperty": Object { + "indent": Object { + "end": null, + "firstLineChars": null, + "hangingChars": null, + "specialIndent": Object { + "type": "hanging", + "val": 360, + }, + "start": 1267, + "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": 360, + }, + "start": 1987, + "startChars": null, + }, + "runProperty": Object {}, + "tabs": Array [], + }, + "pstyle": null, + "runProperty": Object {}, + "start": 1, + "suffix": "tab", + "text": "%2.", + }, + Object { + "format": "lowerRoman", + "jc": "right", + "level": 2, + "levelRestart": null, + "paragraphProperty": Object { + "indent": Object { + "end": null, + "firstLineChars": null, + "hangingChars": null, + "specialIndent": Object { + "type": "hanging", + "val": 180, + }, + "start": 2707, + "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": 360, + }, + "start": 3427, + "startChars": null, + }, + "runProperty": Object {}, + "tabs": Array [], + }, + "pstyle": null, + "runProperty": Object {}, + "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": 4147, + "startChars": null, + }, + "runProperty": Object {}, + "tabs": Array [], + }, + "pstyle": null, + "runProperty": Object {}, + "start": 1, + "suffix": "tab", + "text": "%5.", + }, + Object { + "format": "lowerRoman", + "jc": "right", + "level": 5, + "levelRestart": null, + "paragraphProperty": Object { + "indent": Object { + "end": null, + "firstLineChars": null, + "hangingChars": null, + "specialIndent": Object { + "type": "hanging", + "val": 180, + }, + "start": 4867, + "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": 360, + }, + "start": 5587, + "startChars": null, + }, + "runProperty": Object {}, + "tabs": Array [], + }, + "pstyle": null, + "runProperty": Object {}, + "start": 1, + "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": 6307, + "startChars": null, + }, + "runProperty": Object {}, + "tabs": Array [], + }, + "pstyle": null, + "runProperty": Object {}, + "start": 1, + "suffix": "tab", + "text": "%8.", + }, + Object { + "format": "lowerRoman", + "jc": "right", + "level": 8, + "levelRestart": null, + "paragraphProperty": Object { + "indent": Object { + "end": null, + "firstLineChars": null, + "hangingChars": null, + "specialIndent": Object { + "type": "hanging", + "val": 180, + }, + "start": 7027, + "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": "decimal", + "jc": "left", + "level": 0, + "levelRestart": null, + "paragraphProperty": Object { + "runProperty": Object {}, + "tabs": Array [], + }, + "pstyle": null, + "runProperty": Object {}, + "start": 1, + "suffix": "tab", + "text": "%1.", + }, + Object { + "format": "decimal", + "jc": "left", + "level": 1, + "levelRestart": null, + "paragraphProperty": Object { + "runProperty": Object {}, + "tabs": Array [], + }, + "pstyle": null, + "runProperty": Object {}, + "start": 1, + "suffix": "tab", + "text": "%1.%2", + }, + Object { + "format": "decimal", + "jc": "left", + "level": 2, + "levelRestart": null, + "paragraphProperty": Object { + "runProperty": Object {}, + "tabs": Array [], + }, + "pstyle": null, + "runProperty": Object {}, + "start": 1, + "suffix": "tab", + "text": "%1.%2.%3", + }, + Object { + "format": "decimal", + "jc": "left", + "level": 3, + "levelRestart": null, + "paragraphProperty": Object { + "runProperty": Object {}, + "tabs": Array [], + }, + "pstyle": null, + "runProperty": Object {}, + "start": 1, + "suffix": "tab", + "text": "%1.%2.%3.%4", + }, + Object { + "format": "decimal", + "jc": "left", + "level": 4, + "levelRestart": null, + "paragraphProperty": Object { + "runProperty": Object {}, + "tabs": Array [], + }, + "pstyle": null, + "runProperty": Object {}, + "start": 1, + "suffix": "tab", + "text": "%1.%2.%3.%4.%5", + }, + Object { + "format": "decimal", + "jc": "left", + "level": 5, + "levelRestart": null, + "paragraphProperty": Object { + "runProperty": Object {}, + "tabs": Array [], + }, + "pstyle": null, + "runProperty": Object {}, + "start": 1, + "suffix": "tab", + "text": "%1.%2.%3.%4.%5.%6", + }, + Object { + "format": "decimal", + "jc": "left", + "level": 6, + "levelRestart": null, + "paragraphProperty": Object { + "runProperty": Object {}, + "tabs": Array [], + }, + "pstyle": null, + "runProperty": Object {}, + "start": 1, + "suffix": "tab", + "text": "%1.%2.%3.%4.%5.%6.%7", + }, + Object { + "format": "decimal", + "jc": "left", + "level": 7, + "levelRestart": null, + "paragraphProperty": Object { + "runProperty": Object {}, + "tabs": Array [], + }, + "pstyle": null, + "runProperty": Object {}, + "start": 1, + "suffix": "tab", + "text": "%1.%2.%3.%4.%5.%6.%7.%8", + }, + Object { + "format": "decimal", + "jc": "left", + "level": 8, + "levelRestart": null, + "paragraphProperty": Object { + "runProperty": Object {}, + "tabs": Array [], + }, + "pstyle": null, + "runProperty": Object {}, + "start": 1, + "suffix": "tab", + "text": "%1.%2.%3.%4.%5.%6.%7.%8.%9", + }, + ], + "numStyleLink": null, + "styleLink": null, + }, + Object { + "id": 18, + "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": 360, + }, + "start": 720, + "startChars": null, + }, + "runProperty": Object {}, + "tabs": Array [], + }, + "pstyle": null, + "runProperty": Object {}, + "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": 1440, + "startChars": null, + }, + "runProperty": Object {}, + "tabs": Array [], + }, + "pstyle": null, + "runProperty": Object {}, + "start": 1, + "suffix": "tab", + "text": "o", + }, + Object { + "format": "bullet", + "jc": "left", + "level": 2, + "levelRestart": null, + "paragraphProperty": Object { + "indent": Object { + "end": null, + "firstLineChars": null, + "hangingChars": null, + "specialIndent": Object { + "type": "hanging", + "val": 360, + }, + "start": 2160, + "startChars": null, + }, + "runProperty": Object {}, + "tabs": Array [], + }, + "pstyle": null, + "runProperty": Object {}, + "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": 360, + }, + "start": 2880, + "startChars": null, + }, + "runProperty": Object {}, + "tabs": Array [], + }, + "pstyle": null, + "runProperty": Object {}, + "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": 360, + }, + "start": 3600, + "startChars": null, + }, + "runProperty": Object {}, + "tabs": Array [], + }, + "pstyle": null, + "runProperty": Object {}, + "start": 1, + "suffix": "tab", + "text": "o", + }, + Object { + "format": "bullet", + "jc": "left", + "level": 5, + "levelRestart": null, + "paragraphProperty": Object { + "indent": Object { + "end": null, + "firstLineChars": null, + "hangingChars": null, + "specialIndent": Object { + "type": "hanging", + "val": 360, + }, + "start": 4320, + "startChars": null, + }, + "runProperty": Object {}, + "tabs": Array [], + }, + "pstyle": null, + "runProperty": Object {}, + "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": 360, + }, + "start": 5040, + "startChars": null, + }, + "runProperty": Object {}, + "tabs": Array [], + }, + "pstyle": null, + "runProperty": Object {}, + "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": 360, + }, + "start": 5760, + "startChars": null, + }, + "runProperty": Object {}, + "tabs": Array [], + }, + "pstyle": null, + "runProperty": Object {}, + "start": 1, + "suffix": "tab", + "text": "o", + }, + Object { + "format": "bullet", + "jc": "left", + "level": 8, + "levelRestart": null, + "paragraphProperty": Object { + "indent": Object { + "end": null, + "firstLineChars": null, + "hangingChars": null, + "specialIndent": Object { + "type": "hanging", + "val": 360, + }, + "start": 6480, + "startChars": null, + }, + "runProperty": Object {}, + "tabs": Array [], + }, + "pstyle": null, + "runProperty": Object {}, + "start": 1, + "suffix": "tab", + "text": "", + }, + ], + "numStyleLink": null, + "styleLink": null, + }, + Object { + "id": 19, + "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": 360, + }, + "start": 1440, + "startChars": null, + }, + "runProperty": Object {}, + "tabs": Array [], + }, + "pstyle": null, + "runProperty": Object {}, + "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": 2160, + "startChars": null, + }, + "runProperty": Object {}, + "tabs": Array [], + }, + "pstyle": null, + "runProperty": Object {}, + "start": 1, + "suffix": "tab", + "text": "o", + }, + Object { + "format": "bullet", + "jc": "left", + "level": 2, + "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 {}, + "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": 360, + }, + "start": 3600, + "startChars": null, + }, + "runProperty": Object {}, + "tabs": Array [], + }, + "pstyle": null, + "runProperty": Object {}, + "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": 360, + }, + "start": 4320, + "startChars": null, + }, + "runProperty": Object {}, + "tabs": Array [], + }, + "pstyle": null, + "runProperty": Object {}, + "start": 1, + "suffix": "tab", + "text": "o", + }, + Object { + "format": "bullet", + "jc": "left", + "level": 5, + "levelRestart": null, + "paragraphProperty": Object { + "indent": Object { + "end": null, + "firstLineChars": null, + "hangingChars": null, + "specialIndent": Object { + "type": "hanging", + "val": 360, + }, + "start": 5040, + "startChars": null, + }, + "runProperty": Object {}, + "tabs": Array [], + }, + "pstyle": null, + "runProperty": Object {}, + "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": 360, + }, + "start": 5760, + "startChars": null, + }, + "runProperty": Object {}, + "tabs": Array [], + }, + "pstyle": null, + "runProperty": Object {}, + "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": 360, + }, + "start": 6480, + "startChars": null, + }, + "runProperty": Object {}, + "tabs": Array [], + }, + "pstyle": null, + "runProperty": Object {}, + "start": 1, + "suffix": "tab", + "text": "o", + }, + Object { + "format": "bullet", + "jc": "left", + "level": 8, + "levelRestart": null, + "paragraphProperty": Object { + "indent": Object { + "end": null, + "firstLineChars": null, + "hangingChars": null, + "specialIndent": Object { + "type": "hanging", + "val": 360, + }, + "start": 7200, + "startChars": null, + }, + "runProperty": Object {}, + "tabs": Array [], + }, + "pstyle": null, + "runProperty": Object {}, + "start": 1, + "suffix": "tab", + "text": "", + }, + ], + "numStyleLink": null, + "styleLink": null, + }, + Object { + "id": 20, + "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": 360, + }, + "start": 2482, + "startChars": null, + }, + "runProperty": Object {}, + "tabs": Array [], + }, + "pstyle": null, + "runProperty": Object {}, + "start": 2, + "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": 3202, + "startChars": null, + }, + "runProperty": Object {}, + "tabs": Array [], + }, + "pstyle": null, + "runProperty": Object {}, + "start": 1, + "suffix": "tab", + "text": "o", + }, + Object { + "format": "bullet", + "jc": "left", + "level": 2, + "levelRestart": null, + "paragraphProperty": Object { + "indent": Object { + "end": null, + "firstLineChars": null, + "hangingChars": null, + "specialIndent": Object { + "type": "hanging", + "val": 360, + }, + "start": 3922, + "startChars": null, + }, + "runProperty": Object {}, + "tabs": Array [], + }, + "pstyle": null, + "runProperty": Object {}, + "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": 360, + }, + "start": 4642, + "startChars": null, + }, + "runProperty": Object {}, + "tabs": Array [], + }, + "pstyle": null, + "runProperty": Object {}, + "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": 360, + }, + "start": 5362, + "startChars": null, + }, + "runProperty": Object {}, + "tabs": Array [], + }, + "pstyle": null, + "runProperty": Object {}, + "start": 1, + "suffix": "tab", + "text": "o", + }, + Object { + "format": "bullet", + "jc": "left", + "level": 5, + "levelRestart": null, + "paragraphProperty": Object { + "indent": Object { + "end": null, + "firstLineChars": null, + "hangingChars": null, + "specialIndent": Object { + "type": "hanging", + "val": 360, + }, + "start": 6082, + "startChars": null, + }, + "runProperty": Object {}, + "tabs": Array [], + }, + "pstyle": null, + "runProperty": Object {}, + "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": 360, + }, + "start": 6802, + "startChars": null, + }, + "runProperty": Object {}, + "tabs": Array [], + }, + "pstyle": null, + "runProperty": Object {}, + "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": 360, + }, + "start": 7522, + "startChars": null, + }, + "runProperty": Object {}, + "tabs": Array [], + }, + "pstyle": null, + "runProperty": Object {}, + "start": 1, + "suffix": "tab", + "text": "o", + }, + Object { + "format": "bullet", + "jc": "left", + "level": 8, + "levelRestart": null, + "paragraphProperty": Object { + "indent": Object { + "end": null, + "firstLineChars": null, + "hangingChars": null, + "specialIndent": Object { + "type": "hanging", + "val": 360, + }, + "start": 8242, + "startChars": null, + }, + "runProperty": Object {}, + "tabs": Array [], + }, + "pstyle": null, + "runProperty": Object {}, + "start": 1, + "suffix": "tab", + "text": "", + }, + ], + "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": 360, + "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": 360, + }, + "start": 1080, + "startChars": null, + }, + "runProperty": Object {}, + "tabs": Array [], + }, + "pstyle": null, + "runProperty": Object {}, + "start": 1, + "suffix": "tab", + "text": "%2.", + }, + Object { + "format": "lowerRoman", + "jc": "right", + "level": 2, + "levelRestart": null, + "paragraphProperty": Object { + "indent": Object { + "end": null, + "firstLineChars": null, + "hangingChars": null, + "specialIndent": Object { + "type": "hanging", + "val": 180, + }, + "start": 1800, + "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": 360, + }, + "start": 2520, + "startChars": null, + }, + "runProperty": Object {}, + "tabs": Array [], + }, + "pstyle": null, + "runProperty": Object {}, + "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": 3240, + "startChars": null, + }, + "runProperty": Object {}, + "tabs": Array [], + }, + "pstyle": null, + "runProperty": Object {}, + "start": 1, + "suffix": "tab", + "text": "%5.", + }, + Object { + "format": "lowerRoman", + "jc": "right", + "level": 5, + "levelRestart": null, + "paragraphProperty": Object { + "indent": Object { + "end": null, + "firstLineChars": null, + "hangingChars": null, + "specialIndent": Object { + "type": "hanging", + "val": 180, + }, + "start": 3960, + "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": 360, + }, + "start": 4680, + "startChars": null, + }, + "runProperty": Object {}, + "tabs": Array [], + }, + "pstyle": null, + "runProperty": Object {}, + "start": 1, + "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": 5400, + "startChars": null, + }, + "runProperty": Object {}, + "tabs": Array [], + }, + "pstyle": null, + "runProperty": Object {}, + "start": 1, + "suffix": "tab", + "text": "%8.", + }, + Object { + "format": "lowerRoman", + "jc": "right", + "level": 8, + "levelRestart": null, + "paragraphProperty": Object { + "indent": Object { + "end": null, + "firstLineChars": null, + "hangingChars": null, + "specialIndent": Object { + "type": "hanging", + "val": 180, + }, + "start": 6120, + "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": 360, + }, + "start": 1339, + "startChars": null, + }, + "runProperty": Object {}, + "tabs": Array [], + }, + "pstyle": null, + "runProperty": Object {}, + "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": 1339, + "startChars": null, + }, + "runProperty": Object {}, + "tabs": Array [], + }, + "pstyle": null, + "runProperty": Object {}, + "start": 1, + "suffix": "tab", + "text": "o", + }, + Object { + "format": "bullet", + "jc": "left", + "level": 2, + "levelRestart": null, + "paragraphProperty": Object { + "indent": Object { + "end": null, + "firstLineChars": null, + "hangingChars": null, + "specialIndent": Object { + "type": "hanging", + "val": 360, + }, + "start": 2059, + "startChars": null, + }, + "runProperty": Object {}, + "tabs": Array [], + }, + "pstyle": null, + "runProperty": Object {}, + "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": 360, + }, + "start": 2779, + "startChars": null, + }, + "runProperty": Object {}, + "tabs": Array [], + }, + "pstyle": null, + "runProperty": Object {}, + "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": 360, + }, + "start": 3499, + "startChars": null, + }, + "runProperty": Object {}, + "tabs": Array [], + }, + "pstyle": null, + "runProperty": Object {}, + "start": 1, + "suffix": "tab", + "text": "o", + }, + Object { + "format": "bullet", + "jc": "left", + "level": 5, + "levelRestart": null, + "paragraphProperty": Object { + "indent": Object { + "end": null, + "firstLineChars": null, + "hangingChars": null, + "specialIndent": Object { + "type": "hanging", + "val": 360, + }, + "start": 4219, + "startChars": null, + }, + "runProperty": Object {}, + "tabs": Array [], + }, + "pstyle": null, + "runProperty": Object {}, + "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": 360, + }, + "start": 4939, + "startChars": null, + }, + "runProperty": Object {}, + "tabs": Array [], + }, + "pstyle": null, + "runProperty": Object {}, + "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": 360, + }, + "start": 5659, + "startChars": null, + }, + "runProperty": Object {}, + "tabs": Array [], + }, + "pstyle": null, + "runProperty": Object {}, + "start": 1, + "suffix": "tab", + "text": "o", + }, + Object { + "format": "bullet", + "jc": "left", + "level": 8, + "levelRestart": null, + "paragraphProperty": Object { + "indent": Object { + "end": null, + "firstLineChars": null, + "hangingChars": null, + "specialIndent": Object { + "type": "hanging", + "val": 360, + }, + "start": 6379, + "startChars": null, + }, + "runProperty": Object {}, + "tabs": Array [], + }, + "pstyle": null, + "runProperty": Object {}, + "start": 1, + "suffix": "tab", + "text": "", + }, + ], + "numStyleLink": null, + "styleLink": null, + }, + Object { + "id": 23, + "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": 360, + "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": 360, + }, + "start": 1080, + "startChars": null, + }, + "runProperty": Object {}, + "tabs": Array [], + }, + "pstyle": null, + "runProperty": Object {}, + "start": 1, + "suffix": "tab", + "text": "%2.", + }, + Object { + "format": "lowerRoman", + "jc": "right", + "level": 2, + "levelRestart": null, + "paragraphProperty": Object { + "indent": Object { + "end": null, + "firstLineChars": null, + "hangingChars": null, + "specialIndent": Object { + "type": "hanging", + "val": 180, + }, + "start": 1800, + "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": 360, + }, + "start": 2520, + "startChars": null, + }, + "runProperty": Object {}, + "tabs": Array [], + }, + "pstyle": null, + "runProperty": Object {}, + "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": 3240, + "startChars": null, + }, + "runProperty": Object {}, + "tabs": Array [], + }, + "pstyle": null, + "runProperty": Object {}, + "start": 1, + "suffix": "tab", + "text": "%5.", + }, + Object { + "format": "lowerRoman", + "jc": "right", + "level": 5, + "levelRestart": null, + "paragraphProperty": Object { + "indent": Object { + "end": null, + "firstLineChars": null, + "hangingChars": null, + "specialIndent": Object { + "type": "hanging", + "val": 180, + }, + "start": 3960, + "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": 360, + }, + "start": 4680, + "startChars": null, + }, + "runProperty": Object {}, + "tabs": Array [], + }, + "pstyle": null, + "runProperty": Object {}, + "start": 1, + "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": 5400, + "startChars": null, + }, + "runProperty": Object {}, + "tabs": Array [], + }, + "pstyle": null, + "runProperty": Object {}, + "start": 1, + "suffix": "tab", + "text": "%8.", + }, + Object { + "format": "lowerRoman", + "jc": "right", + "level": 8, + "levelRestart": null, + "paragraphProperty": Object { + "indent": Object { + "end": null, + "firstLineChars": null, + "hangingChars": null, + "specialIndent": Object { + "type": "hanging", + "val": 180, + }, + "start": 6120, + "startChars": null, + }, + "runProperty": Object {}, + "tabs": Array [], + }, + "pstyle": null, + "runProperty": Object {}, + "start": 1, + "suffix": "tab", + "text": "%9.", + }, + ], + "numStyleLink": null, + "styleLink": null, + }, + ], + "numberings": Array [ + Object { + "abstractNumId": 0, + "id": 1, + "levelOverrides": Array [], + }, + Object { + "abstractNumId": 0, + "id": 2, + "levelOverrides": Array [ + Object { + "level": 0, + "overrideLevel": null, + "overrideStart": 1, + }, + 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": 0, + "id": 3, + "levelOverrides": Array [], + }, + Object { + "abstractNumId": 7, + "id": 4, + "levelOverrides": Array [], + }, + Object { + "abstractNumId": 2, + "id": 5, + "levelOverrides": Array [], + }, + Object { + "abstractNumId": 6, + "id": 6, + "levelOverrides": Array [], + }, + Object { + "abstractNumId": 1, + "id": 7, + "levelOverrides": Array [], + }, + Object { + "abstractNumId": 13, + "id": 8, + "levelOverrides": Array [], + }, + Object { + "abstractNumId": 22, + "id": 9, + "levelOverrides": Array [], + }, + Object { + "abstractNumId": 0, + "id": 10, + "levelOverrides": Array [], + }, + Object { + "abstractNumId": 0, + "id": 11, + "levelOverrides": Array [ + Object { + "level": 0, + "overrideLevel": null, + "overrideStart": 1, + }, + 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": 0, + "id": 12, + "levelOverrides": Array [ + Object { + "level": 0, + "overrideLevel": null, + "overrideStart": 1, + }, + 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": 0, + "id": 13, + "levelOverrides": Array [ + Object { + "level": 0, + "overrideLevel": null, + "overrideStart": 1, + }, + 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": 20, + "id": 14, + "levelOverrides": Array [], + }, + Object { + "abstractNumId": 12, + "id": 15, + "levelOverrides": Array [], + }, + Object { + "abstractNumId": 10, + "id": 16, + "levelOverrides": Array [], + }, + Object { + "abstractNumId": 9, + "id": 17, + "levelOverrides": Array [], + }, + Object { + "abstractNumId": 11, + "id": 18, + "levelOverrides": Array [], + }, + Object { + "abstractNumId": 0, + "id": 19, + "levelOverrides": Array [], + }, + Object { + "abstractNumId": 3, + "id": 20, + "levelOverrides": Array [], + }, + Object { + "abstractNumId": 17, + "id": 21, + "levelOverrides": Array [], + }, + Object { + "abstractNumId": 21, + "id": 22, + "levelOverrides": Array [], + }, + Object { + "abstractNumId": 0, + "id": 23, + "levelOverrides": Array [], + }, + Object { + "abstractNumId": 4, + "id": 24, + "levelOverrides": Array [], + }, + Object { + "abstractNumId": 0, + "id": 25, + "levelOverrides": Array [], + }, + Object { + "abstractNumId": 5, + "id": 26, + "levelOverrides": Array [], + }, + Object { + "abstractNumId": 0, + "id": 27, + "levelOverrides": Array [], + }, + Object { + "abstractNumId": 0, + "id": 28, + "levelOverrides": Array [], + }, + Object { + "abstractNumId": 0, + "id": 29, + "levelOverrides": Array [ + Object { + "level": 0, + "overrideLevel": null, + "overrideStart": 1, + }, + ], + }, + Object { + "abstractNumId": 23, + "id": 30, + "levelOverrides": Array [], + }, + Object { + "abstractNumId": 8, + "id": 31, + "levelOverrides": Array [], + }, + Object { + "abstractNumId": 19, + "id": 32, + "levelOverrides": Array [], + }, + Object { + "abstractNumId": 0, + "id": 33, + "levelOverrides": Array [], + }, + Object { + "abstractNumId": 0, + "id": 34, + "levelOverrides": Array [], + }, + Object { + "abstractNumId": 0, + "id": 35, + "levelOverrides": Array [], + }, + Object { + "abstractNumId": 14, + "id": 36, + "levelOverrides": Array [], + }, + Object { + "abstractNumId": 16, + "id": 37, + "levelOverrides": Array [], + }, + Object { + "abstractNumId": 18, + "id": 38, + "levelOverrides": Array [], + }, + Object { + "abstractNumId": 15, + "id": 39, + "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 { + "defaultTabStop": 720, + "docId": "D4D4776C-D5E8-4FE1-8892-3B40BC54EF41", + "docVars": Array [], + "evenAndOddHeaders": false, + "zoom": 100, + }, + "styles": Object { + "docDefaults": Object { + "runPropertyDefault": Object { + "runProperty": Object { + "fonts": Object { + "ascii": "Times New Roman", + "cs": "Times New Roman", + "east_asia_theme": "minorEastAsia", + "hi_ansi": "Times New Roman", + }, + }, + }, + }, + "styles": Array [ + Object { + "basedOn": null, + "name": "Normal", + "paragraphProperty": Object { + "alignment": "both", + "indent": Object { + "end": 907, + "firstLineChars": null, + "hangingChars": null, + "specialIndent": null, + "start": 907, + "startChars": null, + }, + "keepLines": true, + "lineSpacing": Object { + "before": 120, + }, + "runProperty": Object {}, + "tabs": Array [], + }, + "runProperty": Object { + "characterSpacing": 4, + "sz": 22, + "szCs": 22, + }, + "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, + }, + }, + "indent": null, + "justification": "left", + "layout": null, + "margins": Object { + "bottom": Object { + "val": 0, + "widthType": "DXA", + }, + "left": Object { + "val": 55, + "widthType": "DXA", + }, + "right": Object { + "val": 55, + "widthType": "DXA", + }, + "top": Object { + "val": 0, + "widthType": "DXA", + }, + }, + "style": null, + "width": Object { + "width": 0, + "widthType": "Auto", + }, + }, + }, + Object { + "basedOn": null, + "name": "heading 1", + "paragraphProperty": Object { + "keepLines": true, + "keepNext": true, + "lineSpacing": Object { + "before": 360, + }, + "numberingProperty": Object { + "id": 10, + "level": null, + }, + "outlineLvl": 0, + "runProperty": Object {}, + "tabs": Array [], + }, + "runProperty": Object { + "bold": true, + "boldCs": true, + "characterSpacing": 5, + "fonts": Object { + "ascii": "Arial", + "hi_ansi": "Arial", + }, + "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, + }, + }, + "indent": null, + "justification": "left", + "layout": null, + "margins": Object { + "bottom": Object { + "val": 0, + "widthType": "DXA", + }, + "left": Object { + "val": 55, + "widthType": "DXA", + }, + "right": Object { + "val": 55, + "widthType": "DXA", + }, + "top": Object { + "val": 0, + "widthType": "DXA", + }, + }, + "style": null, + "width": Object { + "width": 0, + "widthType": "Auto", + }, + }, + }, + Object { + "basedOn": "1", + "name": "heading 2", + "paragraphProperty": Object { + "numberingProperty": Object { + "id": null, + "level": null, + }, + "outlineLvl": 1, + "runProperty": Object {}, + "tabs": Array [], + }, + "runProperty": Object { + "sz": 28, + "szCs": 28, + }, + "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, + }, + }, + "indent": null, + "justification": "left", + "layout": null, + "margins": Object { + "bottom": Object { + "val": 0, + "widthType": "DXA", + }, + "left": Object { + "val": 55, + "widthType": "DXA", + }, + "right": Object { + "val": 55, + "widthType": "DXA", + }, + "top": Object { + "val": 0, + "widthType": "DXA", + }, + }, + "style": null, + "width": Object { + "width": 0, + "widthType": "Auto", + }, + }, + }, + Object { + "basedOn": "2", + "name": "heading 3", + "paragraphProperty": Object { + "numberingProperty": Object { + "id": null, + "level": null, + }, + "outlineLvl": 2, + "runProperty": Object {}, + "tabs": Array [], + }, + "runProperty": Object { + "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, + }, + }, + "indent": null, + "justification": "left", + "layout": null, + "margins": Object { + "bottom": Object { + "val": 0, + "widthType": "DXA", + }, + "left": Object { + "val": 55, + "widthType": "DXA", + }, + "right": Object { + "val": 55, + "widthType": "DXA", + }, + "top": Object { + "val": 0, + "widthType": "DXA", + }, + }, + "style": null, + "width": Object { + "width": 0, + "widthType": "Auto", + }, + }, + }, + Object { + "basedOn": "3", + "name": "heading 4", + "paragraphProperty": Object { + "numberingProperty": Object { + "id": null, + "level": null, + }, + "outlineLvl": 3, + "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, + }, + }, + "indent": null, + "justification": "left", + "layout": null, + "margins": Object { + "bottom": Object { + "val": 0, + "widthType": "DXA", + }, + "left": Object { + "val": 55, + "widthType": "DXA", + }, + "right": Object { + "val": 55, + "widthType": "DXA", + }, + "top": Object { + "val": 0, + "widthType": "DXA", + }, + }, + "style": null, + "width": Object { + "width": 0, + "widthType": "Auto", + }, + }, + }, + Object { + "basedOn": "4", + "name": "heading 5", + "paragraphProperty": Object { + "numberingProperty": Object { + "id": null, + "level": null, + }, + "outlineLvl": 4, + "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, + }, + }, + "indent": null, + "justification": "left", + "layout": null, + "margins": Object { + "bottom": Object { + "val": 0, + "widthType": "DXA", + }, + "left": Object { + "val": 55, + "widthType": "DXA", + }, + "right": Object { + "val": 55, + "widthType": "DXA", + }, + "top": Object { + "val": 0, + "widthType": "DXA", + }, + }, + "style": null, + "width": Object { + "width": 0, + "widthType": "Auto", + }, + }, + }, + Object { + "basedOn": "5", + "name": "heading 6", + "paragraphProperty": Object { + "numberingProperty": Object { + "id": null, + "level": null, + }, + "outlineLvl": 5, + "runProperty": Object {}, + "tabs": Array [], + }, + "runProperty": Object { + "underline": "single", + }, + "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, + }, + }, + "indent": null, + "justification": "left", + "layout": null, + "margins": Object { + "bottom": Object { + "val": 0, + "widthType": "DXA", + }, + "left": Object { + "val": 55, + "widthType": "DXA", + }, + "right": Object { + "val": 55, + "widthType": "DXA", + }, + "top": Object { + "val": 0, + "widthType": "DXA", + }, + }, + "style": null, + "width": Object { + "width": 0, + "widthType": "Auto", + }, + }, + }, + Object { + "basedOn": "6", + "name": "heading 7", + "paragraphProperty": Object { + "numberingProperty": Object { + "id": null, + "level": null, + }, + "outlineLvl": 6, + "runProperty": Object {}, + "tabs": Array [], + }, + "runProperty": Object { + "italic": true, + "italicCs": true, + }, + "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, + }, + }, + "indent": null, + "justification": "left", + "layout": null, + "margins": Object { + "bottom": Object { + "val": 0, + "widthType": "DXA", + }, + "left": Object { + "val": 55, + "widthType": "DXA", + }, + "right": Object { + "val": 55, + "widthType": "DXA", + }, + "top": Object { + "val": 0, + "widthType": "DXA", + }, + }, + "style": null, + "width": Object { + "width": 0, + "widthType": "Auto", + }, + }, + }, + Object { + "basedOn": "a", + "name": "heading 8", + "paragraphProperty": Object { + "alignment": "left", + "indent": Object { + "end": null, + "firstLineChars": null, + "hangingChars": null, + "specialIndent": null, + "start": 0, + "startChars": null, + }, + "lineSpacing": Object { + "before": 180, + }, + "numberingProperty": Object { + "id": 10, + "level": 7, + }, + "outlineLvl": 7, + "runProperty": Object {}, + "tabs": Array [], + }, + "runProperty": Object { + "italic": true, + "italicCs": true, + }, + "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, + }, + }, + "indent": null, + "justification": "left", + "layout": null, + "margins": Object { + "bottom": Object { + "val": 0, + "widthType": "DXA", + }, + "left": Object { + "val": 55, + "widthType": "DXA", + }, + "right": Object { + "val": 55, + "widthType": "DXA", + }, + "top": Object { + "val": 0, + "widthType": "DXA", + }, + }, + "style": null, + "width": Object { + "width": 0, + "widthType": "Auto", + }, + }, + }, + Object { + "basedOn": "8", + "name": "heading 9", + "paragraphProperty": Object { + "lineSpacing": Object { + "after": 90, + }, + "numberingProperty": Object { + "id": null, + "level": null, + }, + "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, + }, + }, + "indent": null, + "justification": "left", + "layout": null, + "margins": Object { + "bottom": Object { + "val": 0, + "widthType": "DXA", + }, + "left": Object { + "val": 55, + "widthType": "DXA", + }, + "right": Object { + "val": 55, + "widthType": "DXA", + }, + "top": Object { + "val": 0, + "widthType": "DXA", + }, + }, + "style": null, + "width": Object { + "width": 0, + "widthType": "Auto", + }, + }, + }, + Object { + "basedOn": null, + "name": "Default Paragraph Font", + "paragraphProperty": Object { + "runProperty": Object {}, + "tabs": Array [], + }, + "runProperty": Object {}, + "styleId": "a1", + "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, + }, + }, + "indent": null, + "justification": "left", + "layout": null, + "margins": Object { + "bottom": Object { + "val": 0, + "widthType": "DXA", + }, + "left": Object { + "val": 55, + "widthType": "DXA", + }, + "right": Object { + "val": 55, + "widthType": "DXA", + }, + "top": Object { + "val": 0, + "widthType": "DXA", + }, + }, + "style": null, + "width": Object { + "width": 0, + "widthType": "Auto", + }, + }, + }, + Object { + "basedOn": null, + "name": "Normal Table", + "paragraphProperty": Object { + "runProperty": Object {}, + "tabs": Array [], + }, + "runProperty": Object {}, + "styleId": "a2", + "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, + }, + "indent": null, + "justification": "left", + "layout": null, + "margins": Object { + "bottom": Object { + "val": 0, + "widthType": "DXA", + }, + "left": Object { + "val": 55, + "widthType": "DXA", + }, + "right": Object { + "val": 55, + "widthType": "DXA", + }, + "top": Object { + "val": 0, + "widthType": "DXA", + }, + }, + "style": null, + "width": Object { + "width": 0, + "widthType": "Auto", + }, + }, + }, + Object { + "basedOn": null, + "name": "No List", + "paragraphProperty": Object { + "runProperty": Object {}, + "tabs": Array [], + }, + "runProperty": Object {}, + "styleId": "a3", + "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, + }, + }, + "indent": null, + "justification": "left", + "layout": null, + "margins": Object { + "bottom": Object { + "val": 0, + "widthType": "DXA", + }, + "left": Object { + "val": 55, + "widthType": "DXA", + }, + "right": Object { + "val": 55, + "widthType": "DXA", + }, + "top": Object { + "val": 0, + "widthType": "DXA", + }, + }, + "style": null, + "width": Object { + "width": 0, + "widthType": "Auto", + }, + }, + }, + Object { + "basedOn": "a", + "name": "Body Text", + "paragraphProperty": Object { + "lineSpacing": Object { + "after": 120, + }, + "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, + }, + }, + "indent": null, + "justification": "left", + "layout": null, + "margins": Object { + "bottom": Object { + "val": 0, + "widthType": "DXA", + }, + "left": Object { + "val": 55, + "widthType": "DXA", + }, + "right": Object { + "val": 55, + "widthType": "DXA", + }, + "top": Object { + "val": 0, + "widthType": "DXA", + }, + }, + "style": null, + "width": Object { + "width": 0, + "widthType": "Auto", + }, + }, + }, + Object { + "basedOn": "a", + "name": "List", + "paragraphProperty": Object { + "indent": Object { + "end": null, + "firstLineChars": null, + "hangingChars": null, + "specialIndent": Object { + "type": "hanging", + "val": 284, + }, + "start": 568, + "startChars": null, + }, + "runProperty": Object {}, + "tabs": Array [], + }, + "runProperty": Object {}, + "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, + }, + }, + "indent": null, + "justification": "left", + "layout": null, + "margins": Object { + "bottom": Object { + "val": 0, + "widthType": "DXA", + }, + "left": Object { + "val": 55, + "widthType": "DXA", + }, + "right": Object { + "val": 55, + "widthType": "DXA", + }, + "top": Object { + "val": 0, + "widthType": "DXA", + }, + }, + "style": null, + "width": Object { + "width": 0, + "widthType": "Auto", + }, + }, + }, + Object { + "basedOn": "a", + "name": "List 2", + "paragraphProperty": Object { + "indent": Object { + "end": null, + "firstLineChars": null, + "hangingChars": null, + "specialIndent": Object { + "type": "hanging", + "val": 283, + }, + "start": 566, + "startChars": 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, + }, + }, + "indent": null, + "justification": "left", + "layout": null, + "margins": Object { + "bottom": Object { + "val": 0, + "widthType": "DXA", + }, + "left": Object { + "val": 55, + "widthType": "DXA", + }, + "right": Object { + "val": 55, + "widthType": "DXA", + }, + "top": Object { + "val": 0, + "widthType": "DXA", + }, + }, + "style": null, + "width": Object { + "width": 0, + "widthType": "Auto", + }, + }, + }, + Object { + "basedOn": "a", + "name": "List Bullet", + "paragraphProperty": Object { + "indent": Object { + "end": null, + "firstLineChars": null, + "hangingChars": null, + "specialIndent": Object { + "type": "hanging", + "val": 283, + }, + "start": 283, + "startChars": null, + }, + "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, + }, + }, + "indent": null, + "justification": "left", + "layout": null, + "margins": Object { + "bottom": Object { + "val": 0, + "widthType": "DXA", + }, + "left": Object { + "val": 55, + "widthType": "DXA", + }, + "right": Object { + "val": 55, + "widthType": "DXA", + }, + "top": Object { + "val": 0, + "widthType": "DXA", + }, + }, + "style": null, + "width": Object { + "width": 0, + "widthType": "Auto", + }, + }, + }, + Object { + "basedOn": "a", + "name": "List Continue", + "paragraphProperty": Object { + "indent": Object { + "end": null, + "firstLineChars": null, + "hangingChars": null, + "specialIndent": null, + "start": 283, + "startChars": null, + }, + "lineSpacing": Object { + "after": 120, + }, + "runProperty": Object {}, + "tabs": Array [], + }, + "runProperty": Object {}, + "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, + }, + }, + "indent": null, + "justification": "left", + "layout": null, + "margins": Object { + "bottom": Object { + "val": 0, + "widthType": "DXA", + }, + "left": Object { + "val": 55, + "widthType": "DXA", + }, + "right": Object { + "val": 55, + "widthType": "DXA", + }, + "top": Object { + "val": 0, + "widthType": "DXA", + }, + }, + "style": null, + "width": Object { + "width": 0, + "widthType": "Auto", + }, + }, + }, + Object { + "basedOn": "a", + "name": "Body Text Indent", + "paragraphProperty": Object { + "indent": Object { + "end": null, + "firstLineChars": null, + "hangingChars": null, + "specialIndent": null, + "start": 283, + "startChars": null, + }, + "lineSpacing": Object { + "after": 120, + }, + "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, + }, + }, + "indent": null, + "justification": "left", + "layout": null, + "margins": Object { + "bottom": Object { + "val": 0, + "widthType": "DXA", + }, + "left": Object { + "val": 55, + "widthType": "DXA", + }, + "right": Object { + "val": 55, + "widthType": "DXA", + }, + "top": Object { + "val": 0, + "widthType": "DXA", + }, + }, + "style": null, + "width": Object { + "width": 0, + "widthType": "Auto", + }, + }, + }, + Object { + "basedOn": "a", + "name": "Normal Indent", + "paragraphProperty": Object { + "indent": Object { + "end": null, + "firstLineChars": null, + "hangingChars": null, + "specialIndent": null, + "start": 1474, + "startChars": 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, + }, + }, + "indent": null, + "justification": "left", + "layout": null, + "margins": Object { + "bottom": Object { + "val": 0, + "widthType": "DXA", + }, + "left": Object { + "val": 55, + "widthType": "DXA", + }, + "right": Object { + "val": 55, + "widthType": "DXA", + }, + "top": Object { + "val": 0, + "widthType": "DXA", + }, + }, + "style": null, + "width": Object { + "width": 0, + "widthType": "Auto", + }, + }, + }, + Object { + "basedOn": "a1", + "name": "page number", + "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, + }, + }, + "indent": null, + "justification": "left", + "layout": null, + "margins": Object { + "bottom": Object { + "val": 0, + "widthType": "DXA", + }, + "left": Object { + "val": 55, + "widthType": "DXA", + }, + "right": Object { + "val": 55, + "widthType": "DXA", + }, + "top": Object { + "val": 0, + "widthType": "DXA", + }, + }, + "style": null, + "width": Object { + "width": 0, + "widthType": "Auto", + }, + }, + }, + Object { + "basedOn": null, + "name": "header", + "paragraphProperty": Object { + "runProperty": Object {}, + "tabs": Array [], + }, + "runProperty": Object { + "fonts": Object { + "ascii": "Arial", + "hi_ansi": "Arial", + }, + }, + "styleId": "aa", + "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, + }, + }, + "indent": null, + "justification": "left", + "layout": null, + "margins": Object { + "bottom": Object { + "val": 0, + "widthType": "DXA", + }, + "left": Object { + "val": 55, + "widthType": "DXA", + }, + "right": Object { + "val": 55, + "widthType": "DXA", + }, + "top": Object { + "val": 0, + "widthType": "DXA", + }, + }, + "style": null, + "width": Object { + "width": 0, + "widthType": "Auto", + }, + }, + }, + Object { + "basedOn": "aa", + "name": "footer", + "paragraphProperty": Object { + "runProperty": Object {}, + "tabs": Array [], + }, + "runProperty": Object {}, + "styleId": "ab", + "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, + }, + }, + "indent": null, + "justification": "left", + "layout": null, + "margins": Object { + "bottom": Object { + "val": 0, + "widthType": "DXA", + }, + "left": Object { + "val": 55, + "widthType": "DXA", + }, + "right": Object { + "val": 55, + "widthType": "DXA", + }, + "top": Object { + "val": 0, + "widthType": "DXA", + }, + }, + "style": null, + "width": Object { + "width": 0, + "widthType": "Auto", + }, + }, + }, + Object { + "basedOn": null, + "name": "toc 1", + "paragraphProperty": Object { + "indent": Object { + "end": null, + "firstLineChars": null, + "hangingChars": null, + "specialIndent": Object { + "type": "hanging", + "val": 680, + }, + "start": 680, + "startChars": null, + }, + "keepNext": true, + "lineSpacing": Object { + "before": 180, + "line": 300, + "lineRule": "Exact", + }, + "runProperty": Object {}, + "tabs": Array [], + }, + "runProperty": Object { + "bold": true, + "boldCs": true, + "fonts": Object { + "ascii": "Arial", + "hi_ansi": "Arial", + }, + }, + "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, + }, + }, + "indent": null, + "justification": "left", + "layout": null, + "margins": Object { + "bottom": Object { + "val": 0, + "widthType": "DXA", + }, + "left": Object { + "val": 55, + "widthType": "DXA", + }, + "right": Object { + "val": 55, + "widthType": "DXA", + }, + "top": Object { + "val": 0, + "widthType": "DXA", + }, + }, + "style": null, + "width": Object { + "width": 0, + "widthType": "Auto", + }, + }, + }, + Object { + "basedOn": "10", + "name": "toc 2", + "paragraphProperty": Object { + "indent": Object { + "end": null, + "firstLineChars": null, + "hangingChars": null, + "specialIndent": null, + "start": 907, + "startChars": null, + }, + "keepNext": true, + "lineSpacing": Object { + "before": 60, + }, + "runProperty": Object {}, + "tabs": Array [], + }, + "runProperty": Object { + "bold": false, + "boldCs": false, + }, + "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, + }, + }, + "indent": null, + "justification": "left", + "layout": null, + "margins": Object { + "bottom": Object { + "val": 0, + "widthType": "DXA", + }, + "left": Object { + "val": 55, + "widthType": "DXA", + }, + "right": Object { + "val": 55, + "widthType": "DXA", + }, + "top": Object { + "val": 0, + "widthType": "DXA", + }, + }, + "style": null, + "width": Object { + "width": 0, + "widthType": "Auto", + }, + }, + }, + Object { + "basedOn": "21", + "name": "toc 3", + "paragraphProperty": Object { + "indent": Object { + "end": null, + "firstLineChars": null, + "hangingChars": null, + "specialIndent": null, + "start": 1134, + "startChars": 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, + }, + }, + "indent": null, + "justification": "left", + "layout": null, + "margins": Object { + "bottom": Object { + "val": 0, + "widthType": "DXA", + }, + "left": Object { + "val": 55, + "widthType": "DXA", + }, + "right": Object { + "val": 55, + "widthType": "DXA", + }, + "top": Object { + "val": 0, + "widthType": "DXA", + }, + }, + "style": null, + "width": Object { + "width": 0, + "widthType": "Auto", + }, + }, + }, + Object { + "basedOn": "21", + "name": "toc 4", + "paragraphProperty": Object { + "indent": Object { + "end": null, + "firstLineChars": null, + "hangingChars": null, + "specialIndent": Object { + "type": "firstLine", + "val": 0, + }, + "start": 0, + "startChars": 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, + }, + }, + "indent": null, + "justification": "left", + "layout": null, + "margins": Object { + "bottom": Object { + "val": 0, + "widthType": "DXA", + }, + "left": Object { + "val": 55, + "widthType": "DXA", + }, + "right": Object { + "val": 55, + "widthType": "DXA", + }, + "top": Object { + "val": 0, + "widthType": "DXA", + }, + }, + "style": null, + "width": Object { + "width": 0, + "widthType": "Auto", + }, + }, + }, + Object { + "basedOn": "a", + "name": "toc 5", + "paragraphProperty": Object { + "indent": Object { + "end": 720, + "firstLineChars": null, + "hangingChars": null, + "specialIndent": null, + "start": 2880, + "startChars": 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, + }, + }, + "indent": null, + "justification": "left", + "layout": null, + "margins": Object { + "bottom": Object { + "val": 0, + "widthType": "DXA", + }, + "left": Object { + "val": 55, + "widthType": "DXA", + }, + "right": Object { + "val": 55, + "widthType": "DXA", + }, + "top": Object { + "val": 0, + "widthType": "DXA", + }, + }, + "style": null, + "width": Object { + "width": 0, + "widthType": "Auto", + }, + }, + }, + Object { + "basedOn": "a", + "name": "toc 6", + "paragraphProperty": Object { + "indent": Object { + "end": 720, + "firstLineChars": null, + "hangingChars": null, + "specialIndent": null, + "start": 3600, + "startChars": null, + }, + "runProperty": Object {}, + "tabs": Array [], + }, + "runProperty": Object {}, + "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, + }, + }, + "indent": null, + "justification": "left", + "layout": null, + "margins": Object { + "bottom": Object { + "val": 0, + "widthType": "DXA", + }, + "left": Object { + "val": 55, + "widthType": "DXA", + }, + "right": Object { + "val": 55, + "widthType": "DXA", + }, + "top": Object { + "val": 0, + "widthType": "DXA", + }, + }, + "style": null, + "width": Object { + "width": 0, + "widthType": "Auto", + }, + }, + }, + Object { + "basedOn": "a", + "name": "toc 7", + "paragraphProperty": Object { + "indent": Object { + "end": 720, + "firstLineChars": null, + "hangingChars": null, + "specialIndent": null, + "start": 4320, + "startChars": null, + }, + "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, + }, + }, + "indent": null, + "justification": "left", + "layout": null, + "margins": Object { + "bottom": Object { + "val": 0, + "widthType": "DXA", + }, + "left": Object { + "val": 55, + "widthType": "DXA", + }, + "right": Object { + "val": 55, + "widthType": "DXA", + }, + "top": Object { + "val": 0, + "widthType": "DXA", + }, + }, + "style": null, + "width": Object { + "width": 0, + "widthType": "Auto", + }, + }, + }, + Object { + "basedOn": "10", + "name": "toc 8", + "paragraphProperty": Object { + "keepNext": true, + "runProperty": Object {}, + "tabs": Array [], + }, + "runProperty": Object { + "bold": false, + "boldCs": false, + }, + "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, + }, + }, + "indent": null, + "justification": "left", + "layout": null, + "margins": Object { + "bottom": Object { + "val": 0, + "widthType": "DXA", + }, + "left": Object { + "val": 55, + "widthType": "DXA", + }, + "right": Object { + "val": 55, + "widthType": "DXA", + }, + "top": Object { + "val": 0, + "widthType": "DXA", + }, + }, + "style": null, + "width": Object { + "width": 0, + "widthType": "Auto", + }, + }, + }, + Object { + "basedOn": "10", + "name": "toc 9", + "paragraphProperty": Object { + "keepNext": true, + "runProperty": Object {}, + "tabs": Array [], + }, + "runProperty": Object { + "bold": false, + "boldCs": false, + }, + "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, + }, + }, + "indent": null, + "justification": "left", + "layout": null, + "margins": Object { + "bottom": Object { + "val": 0, + "widthType": "DXA", + }, + "left": Object { + "val": 55, + "widthType": "DXA", + }, + "right": Object { + "val": 55, + "widthType": "DXA", + }, + "top": Object { + "val": 0, + "widthType": "DXA", + }, + }, + "style": null, + "width": Object { + "width": 0, + "widthType": "Auto", + }, + }, + }, + Object { + "basedOn": null, + "name": "footnote text", + "paragraphProperty": Object { + "indent": Object { + "end": null, + "firstLineChars": null, + "hangingChars": null, + "specialIndent": Object { + "type": "hanging", + "val": 576, + }, + "start": 1152, + "startChars": null, + }, + "lineSpacing": Object { + "before": 180, + "line": 300, + "lineRule": "Exact", + }, + "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, + }, + }, + "indent": null, + "justification": "left", + "layout": null, + "margins": Object { + "bottom": Object { + "val": 0, + "widthType": "DXA", + }, + "left": Object { + "val": 55, + "widthType": "DXA", + }, + "right": Object { + "val": 55, + "widthType": "DXA", + }, + "top": Object { + "val": 0, + "widthType": "DXA", + }, + }, + "style": null, + "width": Object { + "width": 0, + "widthType": "Auto", + }, + }, + }, + Object { + "basedOn": "a1", + "name": "footnote reference", + "paragraphProperty": Object { + "runProperty": Object {}, + "tabs": Array [], + }, + "runProperty": Object { + "sz": 16, + "szCs": 16, + }, + "styleId": "ad", + "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, + }, + }, + "indent": null, + "justification": "left", + "layout": null, + "margins": Object { + "bottom": Object { + "val": 0, + "widthType": "DXA", + }, + "left": Object { + "val": 55, + "widthType": "DXA", + }, + "right": Object { + "val": 55, + "widthType": "DXA", + }, + "top": Object { + "val": 0, + "widthType": "DXA", + }, + }, + "style": null, + "width": Object { + "width": 0, + "widthType": "Auto", + }, + }, + }, + Object { + "basedOn": "a1", + "name": "annotation reference", + "paragraphProperty": Object { + "runProperty": Object {}, + "tabs": Array [], + }, + "runProperty": Object { + "sz": 16, + "szCs": 16, + }, + "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, + }, + }, + "indent": null, + "justification": "left", + "layout": null, + "margins": Object { + "bottom": Object { + "val": 0, + "widthType": "DXA", + }, + "left": Object { + "val": 55, + "widthType": "DXA", + }, + "right": Object { + "val": 55, + "widthType": "DXA", + }, + "top": Object { + "val": 0, + "widthType": "DXA", + }, + }, + "style": null, + "width": Object { + "width": 0, + "widthType": "Auto", + }, + }, + }, + Object { + "basedOn": "a", + "name": "annotation text", + "paragraphProperty": Object { + "runProperty": Object {}, + "tabs": Array [], + }, + "runProperty": Object { + "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, + }, + }, + "indent": null, + "justification": "left", + "layout": null, + "margins": Object { + "bottom": Object { + "val": 0, + "widthType": "DXA", + }, + "left": Object { + "val": 55, + "widthType": "DXA", + }, + "right": Object { + "val": 55, + "widthType": "DXA", + }, + "top": Object { + "val": 0, + "widthType": "DXA", + }, + }, + "style": null, + "width": Object { + "width": 0, + "widthType": "Auto", + }, + }, + }, + Object { + "basedOn": "a", + "name": "index 7", + "paragraphProperty": Object { + "indent": Object { + "end": null, + "firstLineChars": null, + "hangingChars": null, + "specialIndent": null, + "start": 2160, + "startChars": null, + }, + "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, + }, + }, + "indent": null, + "justification": "left", + "layout": null, + "margins": Object { + "bottom": Object { + "val": 0, + "widthType": "DXA", + }, + "left": Object { + "val": 55, + "widthType": "DXA", + }, + "right": Object { + "val": 55, + "widthType": "DXA", + }, + "top": Object { + "val": 0, + "widthType": "DXA", + }, + }, + "style": null, + "width": Object { + "width": 0, + "widthType": "Auto", + }, + }, + }, + Object { + "basedOn": "a", + "name": "index 6", + "paragraphProperty": Object { + "indent": Object { + "end": null, + "firstLineChars": null, + "hangingChars": null, + "specialIndent": null, + "start": 1800, + "startChars": null, + }, + "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, + }, + }, + "indent": null, + "justification": "left", + "layout": null, + "margins": Object { + "bottom": Object { + "val": 0, + "widthType": "DXA", + }, + "left": Object { + "val": 55, + "widthType": "DXA", + }, + "right": Object { + "val": 55, + "widthType": "DXA", + }, + "top": Object { + "val": 0, + "widthType": "DXA", + }, + }, + "style": null, + "width": Object { + "width": 0, + "widthType": "Auto", + }, + }, + }, + Object { + "basedOn": "22", + "name": "index 5", + "paragraphProperty": Object { + "indent": Object { + "end": null, + "firstLineChars": null, + "hangingChars": null, + "specialIndent": null, + "start": 1134, + "startChars": null, + }, + "runProperty": Object {}, + "tabs": Array [], + }, + "runProperty": Object {}, + "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, + }, + }, + "indent": null, + "justification": "left", + "layout": null, + "margins": Object { + "bottom": Object { + "val": 0, + "widthType": "DXA", + }, + "left": Object { + "val": 55, + "widthType": "DXA", + }, + "right": Object { + "val": 55, + "widthType": "DXA", + }, + "top": Object { + "val": 0, + "widthType": "DXA", + }, + }, + "style": null, + "width": Object { + "width": 0, + "widthType": "Auto", + }, + }, + }, + Object { + "basedOn": "22", + "name": "index 4", + "paragraphProperty": Object { + "indent": Object { + "end": null, + "firstLineChars": null, + "hangingChars": null, + "specialIndent": null, + "start": 851, + "startChars": null, + }, + "runProperty": Object {}, + "tabs": Array [], + }, + "runProperty": Object {}, + "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, + }, + }, + "indent": null, + "justification": "left", + "layout": null, + "margins": Object { + "bottom": Object { + "val": 0, + "widthType": "DXA", + }, + "left": Object { + "val": 55, + "widthType": "DXA", + }, + "right": Object { + "val": 55, + "widthType": "DXA", + }, + "top": Object { + "val": 0, + "widthType": "DXA", + }, + }, + "style": null, + "width": Object { + "width": 0, + "widthType": "Auto", + }, + }, + }, + Object { + "basedOn": "22", + "name": "index 3", + "paragraphProperty": Object { + "indent": Object { + "end": null, + "firstLineChars": null, + "hangingChars": null, + "specialIndent": null, + "start": 567, + "startChars": null, + }, + "runProperty": Object {}, + "tabs": Array [], + }, + "runProperty": Object {}, + "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, + }, + }, + "indent": null, + "justification": "left", + "layout": null, + "margins": Object { + "bottom": Object { + "val": 0, + "widthType": "DXA", + }, + "left": Object { + "val": 55, + "widthType": "DXA", + }, + "right": Object { + "val": 55, + "widthType": "DXA", + }, + "top": Object { + "val": 0, + "widthType": "DXA", + }, + }, + "style": null, + "width": Object { + "width": 0, + "widthType": "Auto", + }, + }, + }, + Object { + "basedOn": "11", + "name": "index 2", + "paragraphProperty": Object { + "indent": Object { + "end": null, + "firstLineChars": null, + "hangingChars": null, + "specialIndent": null, + "start": 284, + "startChars": null, + }, + "runProperty": Object {}, + "tabs": Array [], + }, + "runProperty": Object {}, + "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, + }, + }, + "indent": null, + "justification": "left", + "layout": null, + "margins": Object { + "bottom": Object { + "val": 0, + "widthType": "DXA", + }, + "left": Object { + "val": 55, + "widthType": "DXA", + }, + "right": Object { + "val": 55, + "widthType": "DXA", + }, + "top": Object { + "val": 0, + "widthType": "DXA", + }, + }, + "style": null, + "width": Object { + "width": 0, + "widthType": "Auto", + }, + }, + }, + Object { + "basedOn": "a", + "name": "index 1", + "paragraphProperty": Object { + "alignment": "left", + "indent": Object { + "end": null, + "firstLineChars": null, + "hangingChars": null, + "specialIndent": null, + "start": 0, + "startChars": null, + }, + "runProperty": Object {}, + "tabs": Array [], + }, + "runProperty": Object { + "sz": 20, + "szCs": 20, + }, + "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, + }, + }, + "indent": null, + "justification": "left", + "layout": null, + "margins": Object { + "bottom": Object { + "val": 0, + "widthType": "DXA", + }, + "left": Object { + "val": 55, + "widthType": "DXA", + }, + "right": Object { + "val": 55, + "widthType": "DXA", + }, + "top": Object { + "val": 0, + "widthType": "DXA", + }, + }, + "style": null, + "width": Object { + "width": 0, + "widthType": "Auto", + }, + }, + }, + Object { + "basedOn": "a", + "name": "index heading", + "paragraphProperty": Object { + "keepNext": true, + "runProperty": Object {}, + "tabs": Array [], + }, + "runProperty": Object { + "bold": true, + "boldCs": true, + "sz": 28, + "szCs": 28, + }, + "styleId": "af0", + "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, + }, + }, + "indent": null, + "justification": "left", + "layout": null, + "margins": Object { + "bottom": Object { + "val": 0, + "widthType": "DXA", + }, + "left": Object { + "val": 55, + "widthType": "DXA", + }, + "right": Object { + "val": 55, + "widthType": "DXA", + }, + "top": Object { + "val": 0, + "widthType": "DXA", + }, + }, + "style": null, + "width": Object { + "width": 0, + "widthType": "Auto", + }, + }, + }, + Object { + "basedOn": "List1", + "name": "List2", + "paragraphProperty": Object { + "indent": Object { + "end": null, + "firstLineChars": null, + "hangingChars": null, + "specialIndent": null, + "start": 2041, + "startChars": null, + }, + "runProperty": Object {}, + "tabs": Array [], + }, + "runProperty": Object {}, + "styleId": "List2", + "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, + }, + }, + "indent": null, + "justification": "left", + "layout": null, + "margins": Object { + "bottom": Object { + "val": 0, + "widthType": "DXA", + }, + "left": Object { + "val": 55, + "widthType": "DXA", + }, + "right": Object { + "val": 55, + "widthType": "DXA", + }, + "top": Object { + "val": 0, + "widthType": "DXA", + }, + }, + "style": null, + "width": Object { + "width": 0, + "widthType": "Auto", + }, + }, + }, + Object { + "basedOn": "a", + "name": "List1", + "paragraphProperty": Object { + "indent": Object { + "end": null, + "firstLineChars": null, + "hangingChars": null, + "specialIndent": Object { + "type": "hanging", + "val": 567, + }, + "start": 1474, + "startChars": null, + }, + "runProperty": Object {}, + "tabs": Array [], + }, + "runProperty": Object {}, + "styleId": "List1", + "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, + }, + }, + "indent": null, + "justification": "left", + "layout": null, + "margins": Object { + "bottom": Object { + "val": 0, + "widthType": "DXA", + }, + "left": Object { + "val": 55, + "widthType": "DXA", + }, + "right": Object { + "val": 55, + "widthType": "DXA", + }, + "top": Object { + "val": 0, + "widthType": "DXA", + }, + }, + "style": null, + "width": Object { + "width": 0, + "widthType": "Auto", + }, + }, + }, + Object { + "basedOn": "ChapterTitle", + "name": "cover text", + "paragraphProperty": Object { + "lineSpacing": Object { + "before": 5280, + }, + "runProperty": Object {}, + "tabs": Array [], + }, + "runProperty": Object { + "sz": 60, + "szCs": 60, + }, + "styleId": "covertext", + "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, + }, + }, + "indent": null, + "justification": "left", + "layout": null, + "margins": Object { + "bottom": Object { + "val": 0, + "widthType": "DXA", + }, + "left": Object { + "val": 55, + "widthType": "DXA", + }, + "right": Object { + "val": 55, + "widthType": "DXA", + }, + "top": Object { + "val": 0, + "widthType": "DXA", + }, + }, + "style": null, + "width": Object { + "width": 0, + "widthType": "Auto", + }, + }, + }, + Object { + "basedOn": null, + "name": "Chapter Title", + "paragraphProperty": Object { + "alignment": "center", + "keepNext": true, + "lineSpacing": Object { + "before": 360, + }, + "runProperty": Object {}, + "tabs": Array [], + }, + "runProperty": Object { + "bold": true, + "boldCs": true, + "characterSpacing": 5, + "fonts": Object { + "ascii": "Arial", + "hi_ansi": "Arial", + }, + "sz": 36, + "szCs": 36, + }, + "styleId": "ChapterTitle", + "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, + }, + }, + "indent": null, + "justification": "left", + "layout": null, + "margins": Object { + "bottom": Object { + "val": 0, + "widthType": "DXA", + }, + "left": Object { + "val": 55, + "widthType": "DXA", + }, + "right": Object { + "val": 55, + "widthType": "DXA", + }, + "top": Object { + "val": 0, + "widthType": "DXA", + }, + }, + "style": null, + "width": Object { + "width": 0, + "widthType": "Auto", + }, + }, + }, + Object { + "basedOn": "a", + "name": "Table Title", + "paragraphProperty": Object { + "alignment": "left", + "indent": Object { + "end": null, + "firstLineChars": null, + "hangingChars": null, + "specialIndent": null, + "start": 0, + "startChars": null, + }, + "keepNext": true, + "lineSpacing": Object { + "after": 90, + "before": 90, + }, + "runProperty": Object {}, + "tabs": Array [], + }, + "runProperty": Object { + "bold": true, + "boldCs": true, + }, + "styleId": "TableTitle", + "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, + }, + }, + "indent": null, + "justification": "left", + "layout": null, + "margins": Object { + "bottom": Object { + "val": 0, + "widthType": "DXA", + }, + "left": Object { + "val": 55, + "widthType": "DXA", + }, + "right": Object { + "val": 55, + "widthType": "DXA", + }, + "top": Object { + "val": 0, + "widthType": "DXA", + }, + }, + "style": null, + "width": Object { + "width": 0, + "widthType": "Auto", + }, + }, + }, + Object { + "basedOn": null, + "name": "Logo/Manual", + "paragraphProperty": Object { + "alignment": "right", + "runProperty": Object {}, + "tabs": Array [], + }, + "runProperty": Object { + "bold": true, + "boldCs": true, + "sz": 100, + "szCs": 100, + }, + "styleId": "LogoManual", + "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, + }, + }, + "indent": null, + "justification": "left", + "layout": null, + "margins": Object { + "bottom": Object { + "val": 0, + "widthType": "DXA", + }, + "left": Object { + "val": 55, + "widthType": "DXA", + }, + "right": Object { + "val": 55, + "widthType": "DXA", + }, + "top": Object { + "val": 0, + "widthType": "DXA", + }, + }, + "style": null, + "width": Object { + "width": 0, + "widthType": "Auto", + }, + }, + }, + Object { + "basedOn": null, + "name": "courier 10", + "paragraphProperty": Object { + "runProperty": Object {}, + "tabs": Array [], + }, + "runProperty": Object { + "characterSpacing": 5, + "fonts": Object { + "ascii": "Courier", + "hi_ansi": "Courier", + }, + "sz": 20, + "szCs": 20, + }, + "styleId": "courier10", + "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, + }, + }, + "indent": null, + "justification": "left", + "layout": null, + "margins": Object { + "bottom": Object { + "val": 0, + "widthType": "DXA", + }, + "left": Object { + "val": 55, + "widthType": "DXA", + }, + "right": Object { + "val": 55, + "widthType": "DXA", + }, + "top": Object { + "val": 0, + "widthType": "DXA", + }, + }, + "style": null, + "width": Object { + "width": 0, + "widthType": "Auto", + }, + }, + }, + Object { + "basedOn": "a", + "name": "TableNormal", + "paragraphProperty": Object { + "alignment": "left", + "indent": Object { + "end": null, + "firstLineChars": null, + "hangingChars": null, + "specialIndent": null, + "start": 0, + "startChars": null, + }, + "lineSpacing": Object { + "after": 120, + }, + "runProperty": Object {}, + "tabs": Array [], + }, + "runProperty": Object { + "sz": 20, + "szCs": 20, + }, + "styleId": "TableNormal", + "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, + }, + }, + "indent": null, + "justification": "left", + "layout": null, + "margins": Object { + "bottom": Object { + "val": 0, + "widthType": "DXA", + }, + "left": Object { + "val": 55, + "widthType": "DXA", + }, + "right": Object { + "val": 55, + "widthType": "DXA", + }, + "top": Object { + "val": 0, + "widthType": "DXA", + }, + }, + "style": null, + "width": Object { + "width": 0, + "widthType": "Auto", + }, + }, + }, + Object { + "basedOn": "a", + "name": "Note", + "paragraphProperty": Object { + "indent": Object { + "end": null, + "firstLineChars": null, + "hangingChars": null, + "specialIndent": Object { + "type": "hanging", + "val": 1134, + }, + "start": 2041, + "startChars": null, + }, + "lineSpacing": Object { + "after": 120, + "before": 220, + }, + "runProperty": Object {}, + "tabs": Array [], + }, + "runProperty": Object {}, + "styleId": "Note", + "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, + }, + }, + "indent": null, + "justification": "left", + "layout": null, + "margins": Object { + "bottom": Object { + "val": 0, + "widthType": "DXA", + }, + "left": Object { + "val": 55, + "widthType": "DXA", + }, + "right": Object { + "val": 55, + "widthType": "DXA", + }, + "top": Object { + "val": 0, + "widthType": "DXA", + }, + }, + "style": null, + "width": Object { + "width": 0, + "widthType": "Auto", + }, + }, + }, + Object { + "basedOn": "a", + "name": "Screen", + "paragraphProperty": Object { + "alignment": "left", + "keepNext": true, + "lineSpacing": Object { + "before": 0, + }, + "runProperty": Object {}, + "tabs": Array [], + }, + "runProperty": Object { + "characterSpacing": 0, + "fonts": Object { + "ascii": "Courier", + "hi_ansi": "Courier", + }, + "sz": 16, + "szCs": 16, + }, + "styleId": "Screen", + "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, + }, + }, + "indent": null, + "justification": "left", + "layout": null, + "margins": Object { + "bottom": Object { + "val": 0, + "widthType": "DXA", + }, + "left": Object { + "val": 55, + "widthType": "DXA", + }, + "right": Object { + "val": 55, + "widthType": "DXA", + }, + "top": Object { + "val": 0, + "widthType": "DXA", + }, + }, + "style": null, + "width": Object { + "width": 0, + "widthType": "Auto", + }, + }, + }, + Object { + "basedOn": "List2Indent", + "name": "List3 Indent", + "paragraphProperty": Object { + "indent": Object { + "end": null, + "firstLineChars": null, + "hangingChars": null, + "specialIndent": Object { + "type": "hanging", + "val": 2268, + }, + "start": 4309, + "startChars": null, + }, + "runProperty": Object {}, + "tabs": Array [], + }, + "runProperty": Object {}, + "styleId": "List3Indent", + "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, + }, + }, + "indent": null, + "justification": "left", + "layout": null, + "margins": Object { + "bottom": Object { + "val": 0, + "widthType": "DXA", + }, + "left": Object { + "val": 55, + "widthType": "DXA", + }, + "right": Object { + "val": 55, + "widthType": "DXA", + }, + "top": Object { + "val": 0, + "widthType": "DXA", + }, + }, + "style": null, + "width": Object { + "width": 0, + "widthType": "Auto", + }, + }, + }, + Object { + "basedOn": "a", + "name": "Comverse", + "paragraphProperty": Object { + "alignment": "center", + "indent": Object { + "end": null, + "firstLineChars": null, + "hangingChars": null, + "specialIndent": null, + "start": 0, + "startChars": null, + }, + "lineSpacing": Object { + "before": 6600, + }, + "runProperty": Object {}, + "tabs": Array [], + }, + "runProperty": Object { + "bold": true, + "boldCs": true, + "sz": 28, + "szCs": 28, + }, + "styleId": "Comverse", + "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, + }, + }, + "indent": null, + "justification": "left", + "layout": null, + "margins": Object { + "bottom": Object { + "val": 0, + "widthType": "DXA", + }, + "left": Object { + "val": 55, + "widthType": "DXA", + }, + "right": Object { + "val": 55, + "widthType": "DXA", + }, + "top": Object { + "val": 0, + "widthType": "DXA", + }, + }, + "style": null, + "width": Object { + "width": 0, + "widthType": "Auto", + }, + }, + }, + Object { + "basedOn": "a", + "name": "Address", + "paragraphProperty": Object { + "alignment": "center", + "indent": Object { + "end": null, + "firstLineChars": null, + "hangingChars": null, + "specialIndent": null, + "start": 0, + "startChars": null, + }, + "runProperty": Object {}, + "tabs": Array [], + }, + "runProperty": Object { + "bold": true, + "boldCs": true, + "sz": 24, + "szCs": 24, + }, + "styleId": "Address", + "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, + }, + }, + "indent": null, + "justification": "left", + "layout": null, + "margins": Object { + "bottom": Object { + "val": 0, + "widthType": "DXA", + }, + "left": Object { + "val": 55, + "widthType": "DXA", + }, + "right": Object { + "val": 55, + "widthType": "DXA", + }, + "top": Object { + "val": 0, + "widthType": "DXA", + }, + }, + "style": null, + "width": Object { + "width": 0, + "widthType": "Auto", + }, + }, + }, + Object { + "basedOn": "a", + "name": "Pic Large", + "paragraphProperty": Object { + "alignment": "left", + "indent": Object { + "end": null, + "firstLineChars": null, + "hangingChars": null, + "specialIndent": null, + "start": 0, + "startChars": null, + }, + "keepNext": true, + "lineSpacing": Object { + "before": 240, + }, + "runProperty": Object {}, + "tabs": Array [], + }, + "runProperty": Object {}, + "styleId": "PicLarge", + "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, + }, + }, + "indent": null, + "justification": "left", + "layout": null, + "margins": Object { + "bottom": Object { + "val": 0, + "widthType": "DXA", + }, + "left": Object { + "val": 55, + "widthType": "DXA", + }, + "right": Object { + "val": 55, + "widthType": "DXA", + }, + "top": Object { + "val": 0, + "widthType": "DXA", + }, + }, + "style": null, + "width": Object { + "width": 0, + "widthType": "Auto", + }, + }, + }, + Object { + "basedOn": "a", + "name": "Caution", + "paragraphProperty": Object { + "alignment": "center", + "indent": Object { + "end": null, + "firstLineChars": null, + "hangingChars": null, + "specialIndent": null, + "start": 0, + "startChars": null, + }, + "lineSpacing": Object { + "before": 2400, + "line": 300, + "lineRule": "Exact", + }, + "runProperty": Object {}, + "tabs": Array [], + }, + "runProperty": Object { + "bold": true, + "boldCs": true, + }, + "styleId": "Caution", + "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, + }, + }, + "indent": null, + "justification": "left", + "layout": null, + "margins": Object { + "bottom": Object { + "val": 0, + "widthType": "DXA", + }, + "left": Object { + "val": 55, + "widthType": "DXA", + }, + "right": Object { + "val": 55, + "widthType": "DXA", + }, + "top": Object { + "val": 0, + "widthType": "DXA", + }, + }, + "style": null, + "width": Object { + "width": 0, + "widthType": "Auto", + }, + }, + }, + Object { + "basedOn": "a", + "name": "Notice Text", + "paragraphProperty": Object { + "indent": Object { + "end": null, + "firstLineChars": null, + "hangingChars": null, + "specialIndent": null, + "start": 0, + "startChars": null, + }, + "runProperty": Object {}, + "tabs": Array [], + }, + "runProperty": Object {}, + "styleId": "NoticeText", + "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, + }, + }, + "indent": null, + "justification": "left", + "layout": null, + "margins": Object { + "bottom": Object { + "val": 0, + "widthType": "DXA", + }, + "left": Object { + "val": 55, + "widthType": "DXA", + }, + "right": Object { + "val": 55, + "widthType": "DXA", + }, + "top": Object { + "val": 0, + "widthType": "DXA", + }, + }, + "style": null, + "width": Object { + "width": 0, + "widthType": "Auto", + }, + }, + }, + Object { + "basedOn": "List1", + "name": "KWNList1", + "paragraphProperty": Object { + "keepNext": true, + "runProperty": Object {}, + "tabs": Array [], + }, + "runProperty": Object {}, + "styleId": "KWNList1", + "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, + }, + }, + "indent": null, + "justification": "left", + "layout": null, + "margins": Object { + "bottom": Object { + "val": 0, + "widthType": "DXA", + }, + "left": Object { + "val": 55, + "widthType": "DXA", + }, + "right": Object { + "val": 55, + "widthType": "DXA", + }, + "top": Object { + "val": 0, + "widthType": "DXA", + }, + }, + "style": null, + "width": Object { + "width": 0, + "widthType": "Auto", + }, + }, + }, + Object { + "basedOn": "List2", + "name": "KWNList2", + "paragraphProperty": Object { + "keepNext": true, + "runProperty": Object {}, + "tabs": Array [], + }, + "runProperty": Object {}, + "styleId": "KWNList2", + "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, + }, + }, + "indent": null, + "justification": "left", + "layout": null, + "margins": Object { + "bottom": Object { + "val": 0, + "widthType": "DXA", + }, + "left": Object { + "val": 55, + "widthType": "DXA", + }, + "right": Object { + "val": 55, + "widthType": "DXA", + }, + "top": Object { + "val": 0, + "widthType": "DXA", + }, + }, + "style": null, + "width": Object { + "width": 0, + "widthType": "Auto", + }, + }, + }, + Object { + "basedOn": "LogoManual", + "name": "TRILOGO", + "paragraphProperty": Object { + "lineSpacing": Object { + "before": 5280, + }, + "runProperty": Object {}, + "tabs": Array [], + }, + "runProperty": Object { + "fonts": Object { + "ascii": "AvantGarde Bk BT", + "hi_ansi": "AvantGarde Bk BT", + }, + }, + "styleId": "TRILOGO", + "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, + }, + }, + "indent": null, + "justification": "left", + "layout": null, + "margins": Object { + "bottom": Object { + "val": 0, + "widthType": "DXA", + }, + "left": Object { + "val": 55, + "widthType": "DXA", + }, + "right": Object { + "val": 55, + "widthType": "DXA", + }, + "top": Object { + "val": 0, + "widthType": "DXA", + }, + }, + "style": null, + "width": Object { + "width": 0, + "widthType": "Auto", + }, + }, + }, + Object { + "basedOn": "a", + "name": "Caution/Notice", + "paragraphProperty": Object { + "alignment": "center", + "indent": Object { + "end": null, + "firstLineChars": null, + "hangingChars": null, + "specialIndent": null, + "start": 0, + "startChars": null, + }, + "keepLines": true, + "lineSpacing": Object { + "before": 8640, + }, + "pageBreakBefore": true, + "runProperty": Object {}, + "tabs": Array [], + }, + "runProperty": Object { + "bold": true, + "boldCs": true, + "sz": 32, + "szCs": 32, + }, + "styleId": "CautionNotice", + "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, + }, + }, + "indent": null, + "justification": "left", + "layout": null, + "margins": Object { + "bottom": Object { + "val": 0, + "widthType": "DXA", + }, + "left": Object { + "val": 55, + "widthType": "DXA", + }, + "right": Object { + "val": 55, + "widthType": "DXA", + }, + "top": Object { + "val": 0, + "widthType": "DXA", + }, + }, + "style": null, + "width": Object { + "width": 0, + "widthType": "Auto", + }, + }, + }, + Object { + "basedOn": "PicLarge", + "name": "Pic Normal", + "paragraphProperty": Object { + "indent": Object { + "end": null, + "firstLineChars": null, + "hangingChars": null, + "specialIndent": null, + "start": 907, + "startChars": null, + }, + "runProperty": Object {}, + "tabs": Array [], + }, + "runProperty": Object {}, + "styleId": "PicNormal", + "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, + }, + }, + "indent": null, + "justification": "left", + "layout": null, + "margins": Object { + "bottom": Object { + "val": 0, + "widthType": "DXA", + }, + "left": Object { + "val": 55, + "widthType": "DXA", + }, + "right": Object { + "val": 55, + "widthType": "DXA", + }, + "top": Object { + "val": 0, + "widthType": "DXA", + }, + }, + "style": null, + "width": Object { + "width": 0, + "widthType": "Auto", + }, + }, + }, + Object { + "basedOn": "a", + "name": "Table Caption", + "paragraphProperty": Object { + "alignment": "left", + "indent": Object { + "end": null, + "firstLineChars": null, + "hangingChars": null, + "specialIndent": Object { + "type": "hanging", + "val": 907, + }, + "start": 1814, + "startChars": null, + }, + "keepNext": true, + "lineSpacing": Object { + "after": 60, + "before": 180, + }, + "runProperty": Object {}, + "tabs": Array [], + }, + "runProperty": Object { + "italic": true, + "italicCs": true, + }, + "styleId": "TableCaption", + "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, + }, + }, + "indent": null, + "justification": "left", + "layout": null, + "margins": Object { + "bottom": Object { + "val": 0, + "widthType": "DXA", + }, + "left": Object { + "val": 55, + "widthType": "DXA", + }, + "right": Object { + "val": 55, + "widthType": "DXA", + }, + "top": Object { + "val": 0, + "widthType": "DXA", + }, + }, + "style": null, + "width": Object { + "width": 0, + "widthType": "Auto", + }, + }, + }, + Object { + "basedOn": "TableCaption", + "name": "Figure Caption", + "paragraphProperty": Object { + "keepNext": true, + "lineSpacing": Object { + "after": 120, + }, + "runProperty": Object {}, + "tabs": Array [], + }, + "runProperty": Object {}, + "styleId": "FigureCaption", + "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, + }, + }, + "indent": null, + "justification": "left", + "layout": null, + "margins": Object { + "bottom": Object { + "val": 0, + "widthType": "DXA", + }, + "left": Object { + "val": 55, + "widthType": "DXA", + }, + "right": Object { + "val": 55, + "widthType": "DXA", + }, + "top": Object { + "val": 0, + "widthType": "DXA", + }, + }, + "style": null, + "width": Object { + "width": 0, + "widthType": "Auto", + }, + }, + }, + Object { + "basedOn": "List2", + "name": "List3", + "paragraphProperty": Object { + "indent": Object { + "end": null, + "firstLineChars": null, + "hangingChars": null, + "specialIndent": null, + "start": 2608, + "startChars": null, + }, + "runProperty": Object {}, + "tabs": Array [], + }, + "runProperty": Object {}, + "styleId": "List3", + "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, + }, + }, + "indent": null, + "justification": "left", + "layout": null, + "margins": Object { + "bottom": Object { + "val": 0, + "widthType": "DXA", + }, + "left": Object { + "val": 55, + "widthType": "DXA", + }, + "right": Object { + "val": 55, + "widthType": "DXA", + }, + "top": Object { + "val": 0, + "widthType": "DXA", + }, + }, + "style": null, + "width": Object { + "width": 0, + "widthType": "Auto", + }, + }, + }, + Object { + "basedOn": "a", + "name": "Screen Courier", + "paragraphProperty": Object { + "alignment": "left", + "keepNext": true, + "runProperty": Object {}, + "tabs": Array [], + }, + "runProperty": Object { + "characterSpacing": 0, + "fonts": Object { + "ascii": "Courier", + "hi_ansi": "Courier", + }, + "sz": 16, + "szCs": 16, + }, + "styleId": "ScreenCourier", + "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, + }, + }, + "indent": null, + "justification": "left", + "layout": null, + "margins": Object { + "bottom": Object { + "val": 0, + "widthType": "DXA", + }, + "left": Object { + "val": 55, + "widthType": "DXA", + }, + "right": Object { + "val": 55, + "widthType": "DXA", + }, + "top": Object { + "val": 0, + "widthType": "DXA", + }, + }, + "style": null, + "width": Object { + "width": 0, + "widthType": "Auto", + }, + }, + }, + Object { + "basedOn": "BulletinDescription", + "name": "Bulletin Title", + "paragraphProperty": Object { + "runProperty": Object {}, + "tabs": Array [], + }, + "runProperty": Object { + "fonts": Object { + "ascii": "Times", + "hi_ansi": "Times", + }, + "sz": 36, + "szCs": 36, + }, + "styleId": "BulletinTitle", + "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, + }, + }, + "indent": null, + "justification": "left", + "layout": null, + "margins": Object { + "bottom": Object { + "val": 0, + "widthType": "DXA", + }, + "left": Object { + "val": 55, + "widthType": "DXA", + }, + "right": Object { + "val": 55, + "widthType": "DXA", + }, + "top": Object { + "val": 0, + "widthType": "DXA", + }, + }, + "style": null, + "width": Object { + "width": 0, + "widthType": "Auto", + }, + }, + }, + Object { + "basedOn": "a", + "name": "caption", + "paragraphProperty": Object { + "lineSpacing": Object { + "after": 120, + }, + "runProperty": Object {}, + "tabs": Array [], + }, + "runProperty": Object { + "bold": true, + "boldCs": true, + }, + "styleId": "af1", + "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, + }, + }, + "indent": null, + "justification": "left", + "layout": null, + "margins": Object { + "bottom": Object { + "val": 0, + "widthType": "DXA", + }, + "left": Object { + "val": 55, + "widthType": "DXA", + }, + "right": Object { + "val": 55, + "widthType": "DXA", + }, + "top": Object { + "val": 0, + "widthType": "DXA", + }, + }, + "style": null, + "width": Object { + "width": 0, + "widthType": "Auto", + }, + }, + }, + Object { + "basedOn": "courier10", + "name": "courier 10 bold", + "paragraphProperty": Object { + "runProperty": Object {}, + "tabs": Array [], + }, + "runProperty": Object { + "bold": true, + "boldCs": true, + "characterSpacing": 5, + "fonts": Object { + "ascii": "Courier", + "hi_ansi": "Courier", + }, + "sz": 20, + "szCs": 20, + }, + "styleId": "courier10bold", + "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, + }, + }, + "indent": null, + "justification": "left", + "layout": null, + "margins": Object { + "bottom": Object { + "val": 0, + "widthType": "DXA", + }, + "left": Object { + "val": 55, + "widthType": "DXA", + }, + "right": Object { + "val": 55, + "widthType": "DXA", + }, + "top": Object { + "val": 0, + "widthType": "DXA", + }, + }, + "style": null, + "width": Object { + "width": 0, + "widthType": "Auto", + }, + }, + }, + Object { + "basedOn": "a", + "name": "Notice", + "paragraphProperty": Object { + "alignment": "center", + "indent": Object { + "end": null, + "firstLineChars": null, + "hangingChars": null, + "specialIndent": null, + "start": 0, + "startChars": null, + }, + "lineSpacing": Object { + "before": 5880, + "line": 300, + "lineRule": "Exact", + }, + "runProperty": Object {}, + "tabs": Array [], + }, + "runProperty": Object { + "bold": true, + "boldCs": true, + "characterSpacing": 5, + "sz": 28, + "szCs": 28, + }, + "styleId": "Notice", + "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, + }, + }, + "indent": null, + "justification": "left", + "layout": null, + "margins": Object { + "bottom": Object { + "val": 0, + "widthType": "DXA", + }, + "left": Object { + "val": 55, + "widthType": "DXA", + }, + "right": Object { + "val": 55, + "widthType": "DXA", + }, + "top": Object { + "val": 0, + "widthType": "DXA", + }, + }, + "style": null, + "width": Object { + "width": 0, + "widthType": "Auto", + }, + }, + }, + Object { + "basedOn": "aa", + "name": "HeaderEvenPageLandscape", + "paragraphProperty": Object { + "lineSpacing": Object { + "after": 360, + "before": 600, + }, + "runProperty": Object {}, + "tabs": Array [], + }, + "runProperty": Object {}, + "styleId": "HeaderEvenPageLandscape", + "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, + }, + }, + "indent": null, + "justification": "left", + "layout": null, + "margins": Object { + "bottom": Object { + "val": 0, + "widthType": "DXA", + }, + "left": Object { + "val": 55, + "widthType": "DXA", + }, + "right": Object { + "val": 55, + "widthType": "DXA", + }, + "top": Object { + "val": 0, + "widthType": "DXA", + }, + }, + "style": null, + "width": Object { + "width": 0, + "widthType": "Auto", + }, + }, + }, + Object { + "basedOn": "HeaderEvenPageLandscape", + "name": "HeaderOddPageLandscape", + "paragraphProperty": Object { + "lineSpacing": Object { + "before": 1440, + }, + "runProperty": Object {}, + "tabs": Array [], + }, + "runProperty": Object {}, + "styleId": "HeaderOddPageLandscape", + "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, + }, + }, + "indent": null, + "justification": "left", + "layout": null, + "margins": Object { + "bottom": Object { + "val": 0, + "widthType": "DXA", + }, + "left": Object { + "val": 55, + "widthType": "DXA", + }, + "right": Object { + "val": 55, + "widthType": "DXA", + }, + "top": Object { + "val": 0, + "widthType": "DXA", + }, + }, + "style": null, + "width": Object { + "width": 0, + "widthType": "Auto", + }, + }, + }, + Object { + "basedOn": "ab", + "name": "FooterEvenPageLandscape", + "paragraphProperty": Object { + "lineSpacing": Object { + "after": 1440, + "before": 360, + }, + "runProperty": Object {}, + "tabs": Array [], + }, + "runProperty": Object {}, + "styleId": "FooterEvenPageLandscape", + "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, + }, + }, + "indent": null, + "justification": "left", + "layout": null, + "margins": Object { + "bottom": Object { + "val": 0, + "widthType": "DXA", + }, + "left": Object { + "val": 55, + "widthType": "DXA", + }, + "right": Object { + "val": 55, + "widthType": "DXA", + }, + "top": Object { + "val": 0, + "widthType": "DXA", + }, + }, + "style": null, + "width": Object { + "width": 0, + "widthType": "Auto", + }, + }, + }, + Object { + "basedOn": "FooterEvenPageLandscape", + "name": "FooterOddPageLandscape", + "paragraphProperty": Object { + "lineSpacing": Object { + "after": 600, + }, + "runProperty": Object {}, + "tabs": Array [], + }, + "runProperty": Object {}, + "styleId": "FooterOddPageLandscape", + "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, + }, + }, + "indent": null, + "justification": "left", + "layout": null, + "margins": Object { + "bottom": Object { + "val": 0, + "widthType": "DXA", + }, + "left": Object { + "val": 55, + "widthType": "DXA", + }, + "right": Object { + "val": 55, + "widthType": "DXA", + }, + "top": Object { + "val": 0, + "widthType": "DXA", + }, + }, + "style": null, + "width": Object { + "width": 0, + "widthType": "Auto", + }, + }, + }, + Object { + "basedOn": "a", + "name": "Bulletin Address", + "paragraphProperty": Object { + "alignment": "left", + "indent": Object { + "end": null, + "firstLineChars": null, + "hangingChars": null, + "specialIndent": null, + "start": 0, + "startChars": null, + }, + "keepLines": true, + "lineSpacing": Object { + "before": 0, + }, + "runProperty": Object {}, + "tabs": Array [], + }, + "runProperty": Object { + "characterSpacing": 0, + "fonts": Object { + "ascii": "Arial", + "hi_ansi": "Arial", + }, + "sz": 14, + "szCs": 14, + }, + "styleId": "BulletinAddress", + "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, + }, + }, + "indent": null, + "justification": "left", + "layout": null, + "margins": Object { + "bottom": Object { + "val": 0, + "widthType": "DXA", + }, + "left": Object { + "val": 55, + "widthType": "DXA", + }, + "right": Object { + "val": 55, + "widthType": "DXA", + }, + "top": Object { + "val": 0, + "widthType": "DXA", + }, + }, + "style": null, + "width": Object { + "width": 0, + "widthType": "Auto", + }, + }, + }, + Object { + "basedOn": "a", + "name": "Bulletin Description", + "paragraphProperty": Object { + "indent": Object { + "end": null, + "firstLineChars": null, + "hangingChars": null, + "specialIndent": null, + "start": 0, + "startChars": null, + }, + "lineSpacing": Object { + "before": 180, + }, + "runProperty": Object {}, + "tabs": Array [], + }, + "runProperty": Object { + "characterSpacing": 5, + }, + "styleId": "BulletinDescription", + "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, + }, + }, + "indent": null, + "justification": "left", + "layout": null, + "margins": Object { + "bottom": Object { + "val": 0, + "widthType": "DXA", + }, + "left": Object { + "val": 55, + "widthType": "DXA", + }, + "right": Object { + "val": 55, + "widthType": "DXA", + }, + "top": Object { + "val": 0, + "widthType": "DXA", + }, + }, + "style": null, + "width": Object { + "width": 0, + "widthType": "Auto", + }, + }, + }, + Object { + "basedOn": "ab", + "name": "Bulletin Footer", + "paragraphProperty": Object { + "runProperty": Object {}, + "tabs": Array [], + }, + "runProperty": Object { + "bold": true, + "boldCs": true, + "sz": 24, + "szCs": 24, + }, + "styleId": "BulletinFooter", + "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, + }, + }, + "indent": null, + "justification": "left", + "layout": null, + "margins": Object { + "bottom": Object { + "val": 0, + "widthType": "DXA", + }, + "left": Object { + "val": 55, + "widthType": "DXA", + }, + "right": Object { + "val": 55, + "widthType": "DXA", + }, + "top": Object { + "val": 0, + "widthType": "DXA", + }, + }, + "style": null, + "width": Object { + "width": 0, + "widthType": "Auto", + }, + }, + }, + Object { + "basedOn": "a", + "name": "Bulletin Logo", + "paragraphProperty": Object { + "indent": Object { + "end": null, + "firstLineChars": null, + "hangingChars": null, + "specialIndent": null, + "start": -2880, + "startChars": null, + }, + "lineSpacing": Object { + "before": 180, + }, + "runProperty": Object {}, + "tabs": Array [], + }, + "runProperty": Object { + "characterSpacing": 5, + "fonts": Object { + "ascii": "Times", + "hi_ansi": "Times", + }, + }, + "styleId": "BulletinLogo", + "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, + }, + }, + "indent": null, + "justification": "left", + "layout": null, + "margins": Object { + "bottom": Object { + "val": 0, + "widthType": "DXA", + }, + "left": Object { + "val": 55, + "widthType": "DXA", + }, + "right": Object { + "val": 55, + "widthType": "DXA", + }, + "top": Object { + "val": 0, + "widthType": "DXA", + }, + }, + "style": null, + "width": Object { + "width": 0, + "widthType": "Auto", + }, + }, + }, + Object { + "basedOn": "a", + "name": "Front Cover", + "paragraphProperty": Object { + "alignment": "center", + "indent": Object { + "end": -284, + "firstLineChars": null, + "hangingChars": null, + "specialIndent": null, + "start": -284, + "startChars": null, + }, + "keepLines": true, + "lineSpacing": Object { + "before": 1440, + }, + "runProperty": Object {}, + "tabs": Array [], + }, + "runProperty": Object { + "fonts": Object { + "ascii": "Arial", + "hi_ansi": "Arial", + }, + "sz": 56, + "szCs": 56, + }, + "styleId": "FrontCover", + "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, + }, + }, + "indent": null, + "justification": "left", + "layout": null, + "margins": Object { + "bottom": Object { + "val": 0, + "widthType": "DXA", + }, + "left": Object { + "val": 55, + "widthType": "DXA", + }, + "right": Object { + "val": 55, + "widthType": "DXA", + }, + "top": Object { + "val": 0, + "widthType": "DXA", + }, + }, + "style": null, + "width": Object { + "width": 0, + "widthType": "Auto", + }, + }, + }, + Object { + "basedOn": "List3", + "name": "List4", + "paragraphProperty": Object { + "indent": Object { + "end": null, + "firstLineChars": null, + "hangingChars": null, + "specialIndent": null, + "start": 3175, + "startChars": null, + }, + "lineSpacing": Object { + "line": 300, + "lineRule": "Exact", + }, + "runProperty": Object {}, + "tabs": Array [], + }, + "runProperty": Object {}, + "styleId": "List4", + "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, + }, + }, + "indent": null, + "justification": "left", + "layout": null, + "margins": Object { + "bottom": Object { + "val": 0, + "widthType": "DXA", + }, + "left": Object { + "val": 55, + "widthType": "DXA", + }, + "right": Object { + "val": 55, + "widthType": "DXA", + }, + "top": Object { + "val": 0, + "widthType": "DXA", + }, + }, + "style": null, + "width": Object { + "width": 0, + "widthType": "Auto", + }, + }, + }, + Object { + "basedOn": "TableNormal", + "name": "TableWrap", + "paragraphProperty": Object { + "indent": Object { + "end": null, + "firstLineChars": null, + "hangingChars": null, + "specialIndent": Object { + "type": "hanging", + "val": 227, + }, + "start": 227, + "startChars": null, + }, + "runProperty": Object {}, + "tabs": Array [], + }, + "runProperty": Object {}, + "styleId": "TableWrap", + "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, + }, + }, + "indent": null, + "justification": "left", + "layout": null, + "margins": Object { + "bottom": Object { + "val": 0, + "widthType": "DXA", + }, + "left": Object { + "val": 55, + "widthType": "DXA", + }, + "right": Object { + "val": 55, + "widthType": "DXA", + }, + "top": Object { + "val": 0, + "widthType": "DXA", + }, + }, + "style": null, + "width": Object { + "width": 0, + "widthType": "Auto", + }, + }, + }, + Object { + "basedOn": "List2", + "name": "List2 Indent", + "paragraphProperty": Object { + "indent": Object { + "end": null, + "firstLineChars": null, + "hangingChars": null, + "specialIndent": Object { + "type": "hanging", + "val": 1701, + }, + "start": 3175, + "startChars": null, + }, + "runProperty": Object {}, + "tabs": Array [], + }, + "runProperty": Object {}, + "styleId": "List2Indent", + "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, + }, + }, + "indent": null, + "justification": "left", + "layout": null, + "margins": Object { + "bottom": Object { + "val": 0, + "widthType": "DXA", + }, + "left": Object { + "val": 55, + "widthType": "DXA", + }, + "right": Object { + "val": 55, + "widthType": "DXA", + }, + "top": Object { + "val": 0, + "widthType": "DXA", + }, + }, + "style": null, + "width": Object { + "width": 0, + "widthType": "Auto", + }, + }, + }, + Object { + "basedOn": "List1", + "name": "List1 Indent", + "paragraphProperty": Object { + "indent": Object { + "end": null, + "firstLineChars": null, + "hangingChars": null, + "specialIndent": Object { + "type": "hanging", + "val": 1701, + }, + "start": 2608, + "startChars": null, + }, + "runProperty": Object {}, + "tabs": Array [], + }, + "runProperty": Object {}, + "styleId": "List1Indent", + "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, + }, + }, + "indent": null, + "justification": "left", + "layout": null, + "margins": Object { + "bottom": Object { + "val": 0, + "widthType": "DXA", + }, + "left": Object { + "val": 55, + "widthType": "DXA", + }, + "right": Object { + "val": 55, + "widthType": "DXA", + }, + "top": Object { + "val": 0, + "widthType": "DXA", + }, + }, + "style": null, + "width": Object { + "width": 0, + "widthType": "Auto", + }, + }, + }, + Object { + "basedOn": "ab", + "name": "Footer Front Matter Cover", + "paragraphProperty": Object { + "runProperty": Object {}, + "tabs": Array [], + }, + "runProperty": Object {}, + "styleId": "FooterFrontMatterCover", + "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, + }, + }, + "indent": null, + "justification": "left", + "layout": null, + "margins": Object { + "bottom": Object { + "val": 0, + "widthType": "DXA", + }, + "left": Object { + "val": 55, + "widthType": "DXA", + }, + "right": Object { + "val": 55, + "widthType": "DXA", + }, + "top": Object { + "val": 0, + "widthType": "DXA", + }, + }, + "style": null, + "width": Object { + "width": 0, + "widthType": "Auto", + }, + }, + }, + Object { + "basedOn": "a", + "name": "KWNNormal", + "paragraphProperty": Object { + "keepNext": true, + "runProperty": Object {}, + "tabs": Array [], + }, + "runProperty": Object {}, + "styleId": "KWNNormal", + "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, + }, + }, + "indent": null, + "justification": "left", + "layout": null, + "margins": Object { + "bottom": Object { + "val": 0, + "widthType": "DXA", + }, + "left": Object { + "val": 55, + "widthType": "DXA", + }, + "right": Object { + "val": 55, + "widthType": "DXA", + }, + "top": Object { + "val": 0, + "widthType": "DXA", + }, + }, + "style": null, + "width": Object { + "width": 0, + "widthType": "Auto", + }, + }, + }, + Object { + "basedOn": "a", + "name": "Bulletin Cover", + "paragraphProperty": Object { + "alignment": "left", + "indent": Object { + "end": null, + "firstLineChars": null, + "hangingChars": null, + "specialIndent": null, + "start": 0, + "startChars": null, + }, + "lineSpacing": Object { + "before": 180, + }, + "runProperty": Object {}, + "tabs": Array [], + }, + "runProperty": Object { + "characterSpacing": 5, + "sz": 70, + "szCs": 70, + }, + "styleId": "BulletinCover", + "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, + }, + }, + "indent": null, + "justification": "left", + "layout": null, + "margins": Object { + "bottom": Object { + "val": 0, + "widthType": "DXA", + }, + "left": Object { + "val": 55, + "widthType": "DXA", + }, + "right": Object { + "val": 55, + "widthType": "DXA", + }, + "top": Object { + "val": 0, + "widthType": "DXA", + }, + }, + "style": null, + "width": Object { + "width": 0, + "widthType": "Auto", + }, + }, + }, + Object { + "basedOn": null, + "name": "logo. line 1", + "paragraphProperty": Object { + "alignment": "center", + "runProperty": Object {}, + "tabs": Array [], + }, + "runProperty": Object { + "fonts": Object { + "ascii": "Umbrella", + "hi_ansi": "Umbrella", + }, + "sz": 48, + "szCs": 48, + }, + "styleId": "logoline1", + "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, + }, + }, + "indent": null, + "justification": "left", + "layout": null, + "margins": Object { + "bottom": Object { + "val": 0, + "widthType": "DXA", + }, + "left": Object { + "val": 55, + "widthType": "DXA", + }, + "right": Object { + "val": 55, + "widthType": "DXA", + }, + "top": Object { + "val": 0, + "widthType": "DXA", + }, + }, + "style": null, + "width": Object { + "width": 0, + "widthType": "Auto", + }, + }, + }, + Object { + "basedOn": null, + "name": "logo. line 2", + "paragraphProperty": Object { + "alignment": "center", + "runProperty": Object {}, + "tabs": Array [], + }, + "runProperty": Object { + "fonts": Object { + "ascii": "Bookman", + "hi_ansi": "Bookman", + }, + "italic": true, + "italicCs": true, + "sz": 24, + "szCs": 24, + }, + "styleId": "logoline2", + "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, + }, + }, + "indent": null, + "justification": "left", + "layout": null, + "margins": Object { + "bottom": Object { + "val": 0, + "widthType": "DXA", + }, + "left": Object { + "val": 55, + "widthType": "DXA", + }, + "right": Object { + "val": 55, + "widthType": "DXA", + }, + "top": Object { + "val": 0, + "widthType": "DXA", + }, + }, + "style": null, + "width": Object { + "width": 0, + "widthType": "Auto", + }, + }, + }, + Object { + "basedOn": null, + "name": "logo. line 3", + "paragraphProperty": Object { + "alignment": "center", + "runProperty": Object {}, + "tabs": Array [], + }, + "runProperty": Object { + "fonts": Object { + "ascii": "Bookman", + "hi_ansi": "Bookman", + }, + }, + "styleId": "logoline3", + "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, + }, + }, + "indent": null, + "justification": "left", + "layout": null, + "margins": Object { + "bottom": Object { + "val": 0, + "widthType": "DXA", + }, + "left": Object { + "val": 55, + "widthType": "DXA", + }, + "right": Object { + "val": 55, + "widthType": "DXA", + }, + "top": Object { + "val": 0, + "widthType": "DXA", + }, + }, + "style": null, + "width": Object { + "width": 0, + "widthType": "Auto", + }, + }, + }, + Object { + "basedOn": null, + "name": "logo. line 4", + "paragraphProperty": Object { + "runProperty": Object {}, + "tabs": Array [], + }, + "runProperty": Object { + "fonts": Object { + "ascii": "Bookman", + "hi_ansi": "Bookman", + }, + }, + "styleId": "logoline4", + "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, + }, + }, + "indent": null, + "justification": "left", + "layout": null, + "margins": Object { + "bottom": Object { + "val": 0, + "widthType": "DXA", + }, + "left": Object { + "val": 55, + "widthType": "DXA", + }, + "right": Object { + "val": 55, + "widthType": "DXA", + }, + "top": Object { + "val": 0, + "widthType": "DXA", + }, + }, + "style": null, + "width": Object { + "width": 0, + "widthType": "Auto", + }, + }, + }, + Object { + "basedOn": null, + "name": "logo. line 5", + "paragraphProperty": Object { + "lineSpacing": Object { + "before": 60, + }, + "runProperty": Object {}, + "tabs": Array [], + }, + "runProperty": Object { + "fonts": Object { + "ascii": "Bookman", + "hi_ansi": "Bookman", + }, + "sz": 24, + "szCs": 24, + }, + "styleId": "logoline5", + "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, + }, + }, + "indent": null, + "justification": "left", + "layout": null, + "margins": Object { + "bottom": Object { + "val": 0, + "widthType": "DXA", + }, + "left": Object { + "val": 55, + "widthType": "DXA", + }, + "right": Object { + "val": 55, + "widthType": "DXA", + }, + "top": Object { + "val": 0, + "widthType": "DXA", + }, + }, + "style": null, + "width": Object { + "width": 0, + "widthType": "Auto", + }, + }, + }, + Object { + "basedOn": "a0", + "name": "List2 No Hang Indent", + "paragraphProperty": Object { + "runProperty": Object {}, + "tabs": Array [], + }, + "runProperty": Object {}, + "styleId": "List2NoHangIndent", + "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, + }, + }, + "indent": null, + "justification": "left", + "layout": null, + "margins": Object { + "bottom": Object { + "val": 0, + "widthType": "DXA", + }, + "left": Object { + "val": 55, + "widthType": "DXA", + }, + "right": Object { + "val": 55, + "widthType": "DXA", + }, + "top": Object { + "val": 0, + "widthType": "DXA", + }, + }, + "style": null, + "width": Object { + "width": 0, + "widthType": "Auto", + }, + }, + }, + Object { + "basedOn": "a", + "name": "List3 No Hang Indent", + "paragraphProperty": Object { + "indent": Object { + "end": null, + "firstLineChars": null, + "hangingChars": null, + "specialIndent": null, + "start": 2041, + "startChars": null, + }, + "runProperty": Object {}, + "tabs": Array [], + }, + "runProperty": Object {}, + "styleId": "List3NoHangIndent", + "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, + }, + }, + "indent": null, + "justification": "left", + "layout": null, + "margins": Object { + "bottom": Object { + "val": 0, + "widthType": "DXA", + }, + "left": Object { + "val": 55, + "widthType": "DXA", + }, + "right": Object { + "val": 55, + "widthType": "DXA", + }, + "top": Object { + "val": 0, + "widthType": "DXA", + }, + }, + "style": null, + "width": Object { + "width": 0, + "widthType": "Auto", + }, + }, + }, + Object { + "basedOn": "a", + "name": "BulletinLogo", + "paragraphProperty": Object { + "alignment": "right", + "indent": Object { + "end": null, + "firstLineChars": null, + "hangingChars": null, + "specialIndent": null, + "start": 0, + "startChars": null, + }, + "lineSpacing": Object { + "before": 0, + }, + "runProperty": Object {}, + "tabs": Array [], + }, + "runProperty": Object {}, + "styleId": "BulletinLogo0", + "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, + }, + }, + "indent": null, + "justification": "left", + "layout": null, + "margins": Object { + "bottom": Object { + "val": 0, + "widthType": "DXA", + }, + "left": Object { + "val": 55, + "widthType": "DXA", + }, + "right": Object { + "val": 55, + "widthType": "DXA", + }, + "top": Object { + "val": 0, + "widthType": "DXA", + }, + }, + "style": null, + "width": Object { + "width": 0, + "widthType": "Auto", + }, + }, + }, + Object { + "basedOn": "TableWrap", + "name": "TableListEnd", + "paragraphProperty": Object { + "lineSpacing": Object { + "before": 0, + }, + "runProperty": Object {}, + "tabs": Array [], + }, + "runProperty": Object {}, + "styleId": "TableListEnd", + "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, + }, + }, + "indent": null, + "justification": "left", + "layout": null, + "margins": Object { + "bottom": Object { + "val": 0, + "widthType": "DXA", + }, + "left": Object { + "val": 55, + "widthType": "DXA", + }, + "right": Object { + "val": 55, + "widthType": "DXA", + }, + "top": Object { + "val": 0, + "widthType": "DXA", + }, + }, + "style": null, + "width": Object { + "width": 0, + "widthType": "Auto", + }, + }, + }, + Object { + "basedOn": "TableWrap", + "name": "TableListMiddle", + "paragraphProperty": Object { + "lineSpacing": Object { + "after": 0, + "before": 0, + }, + "runProperty": Object {}, + "tabs": Array [], + }, + "runProperty": Object {}, + "styleId": "TableListMiddle", + "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, + }, + }, + "indent": null, + "justification": "left", + "layout": null, + "margins": Object { + "bottom": Object { + "val": 0, + "widthType": "DXA", + }, + "left": Object { + "val": 55, + "widthType": "DXA", + }, + "right": Object { + "val": 55, + "widthType": "DXA", + }, + "top": Object { + "val": 0, + "widthType": "DXA", + }, + }, + "style": null, + "width": Object { + "width": 0, + "widthType": "Auto", + }, + }, + }, + Object { + "basedOn": "TableListEnd", + "name": "TableListStart", + "paragraphProperty": Object { + "lineSpacing": Object { + "after": 0, + "before": 120, + }, + "runProperty": Object {}, + "tabs": Array [], + }, + "runProperty": Object {}, + "styleId": "TableListStart", + "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, + }, + }, + "indent": null, + "justification": "left", + "layout": null, + "margins": Object { + "bottom": Object { + "val": 0, + "widthType": "DXA", + }, + "left": Object { + "val": 55, + "widthType": "DXA", + }, + "right": Object { + "val": 55, + "widthType": "DXA", + }, + "top": Object { + "val": 0, + "widthType": "DXA", + }, + }, + "style": null, + "width": Object { + "width": 0, + "widthType": "Auto", + }, + }, + }, + Object { + "basedOn": "a0", + "name": "List4 No Hang Indent", + "paragraphProperty": Object { + "indent": Object { + "end": null, + "firstLineChars": null, + "hangingChars": null, + "specialIndent": null, + "start": 2608, + "startChars": null, + }, + "runProperty": Object {}, + "tabs": Array [], + }, + "runProperty": Object {}, + "styleId": "List4NoHangIndent", + "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, + }, + }, + "indent": null, + "justification": "left", + "layout": null, + "margins": Object { + "bottom": Object { + "val": 0, + "widthType": "DXA", + }, + "left": Object { + "val": 55, + "widthType": "DXA", + }, + "right": Object { + "val": 55, + "widthType": "DXA", + }, + "top": Object { + "val": 0, + "widthType": "DXA", + }, + }, + "style": null, + "width": Object { + "width": 0, + "widthType": "Auto", + }, + }, + }, + Object { + "basedOn": "TableNormal", + "name": "KWNTableNormal", + "paragraphProperty": Object { + "keepNext": true, + "runProperty": Object {}, + "tabs": Array [], + }, + "runProperty": Object {}, + "styleId": "KWNTableNormal", + "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, + }, + }, + "indent": null, + "justification": "left", + "layout": null, + "margins": Object { + "bottom": Object { + "val": 0, + "widthType": "DXA", + }, + "left": Object { + "val": 55, + "widthType": "DXA", + }, + "right": Object { + "val": 55, + "widthType": "DXA", + }, + "top": Object { + "val": 0, + "widthType": "DXA", + }, + }, + "style": null, + "width": Object { + "width": 0, + "widthType": "Auto", + }, + }, + }, + Object { + "basedOn": "a1", + "name": "bold", + "paragraphProperty": Object { + "runProperty": Object {}, + "tabs": Array [], + }, + "runProperty": Object { + "bold": true, + "boldCs": true, + }, + "styleId": "bold", + "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, + }, + }, + "indent": null, + "justification": "left", + "layout": null, + "margins": Object { + "bottom": Object { + "val": 0, + "widthType": "DXA", + }, + "left": Object { + "val": 55, + "widthType": "DXA", + }, + "right": Object { + "val": 55, + "widthType": "DXA", + }, + "top": Object { + "val": 0, + "widthType": "DXA", + }, + }, + "style": null, + "width": Object { + "width": 0, + "widthType": "Auto", + }, + }, + }, + Object { + "basedOn": "TableNormal", + "name": "TableWrap2", + "paragraphProperty": Object { + "indent": Object { + "end": null, + "firstLineChars": null, + "hangingChars": null, + "specialIndent": Object { + "type": "hanging", + "val": 567, + }, + "start": 567, + "startChars": null, + }, + "runProperty": Object {}, + "tabs": Array [], + }, + "runProperty": Object {}, + "styleId": "TableWrap2", + "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, + }, + }, + "indent": null, + "justification": "left", + "layout": null, + "margins": Object { + "bottom": Object { + "val": 0, + "widthType": "DXA", + }, + "left": Object { + "val": 55, + "widthType": "DXA", + }, + "right": Object { + "val": 55, + "widthType": "DXA", + }, + "top": Object { + "val": 0, + "widthType": "DXA", + }, + }, + "style": null, + "width": Object { + "width": 0, + "widthType": "Auto", + }, + }, + }, + Object { + "basedOn": "a1", + "name": "Hyperlink", + "paragraphProperty": Object { + "runProperty": Object {}, + "tabs": Array [], + }, + "runProperty": Object { + "color": "0000FF", + "fonts": Object { + "cs": "Times", + }, + "underline": "single", + }, + "styleId": "af2", + "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, + }, + }, + "indent": null, + "justification": "left", + "layout": null, + "margins": Object { + "bottom": Object { + "val": 0, + "widthType": "DXA", + }, + "left": Object { + "val": 55, + "widthType": "DXA", + }, + "right": Object { + "val": 55, + "widthType": "DXA", + }, + "top": Object { + "val": 0, + "widthType": "DXA", + }, + }, + "style": null, + "width": Object { + "width": 0, + "widthType": "Auto", + }, + }, + }, + Object { + "basedOn": "1", + "name": "apenhead", + "paragraphProperty": Object { + "indent": Object { + "end": null, + "firstLineChars": null, + "hangingChars": null, + "specialIndent": Object { + "type": "hanging", + "val": 907, + }, + "start": 907, + "startChars": null, + }, + "outlineLvl": 9, + "runProperty": Object {}, + "tabs": Array [], + }, + "runProperty": Object {}, + "styleId": "apenhead", + "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, + }, + }, + "indent": null, + "justification": "left", + "layout": null, + "margins": Object { + "bottom": Object { + "val": 0, + "widthType": "DXA", + }, + "left": Object { + "val": 55, + "widthType": "DXA", + }, + "right": Object { + "val": 55, + "widthType": "DXA", + }, + "top": Object { + "val": 0, + "widthType": "DXA", + }, + }, + "style": null, + "width": Object { + "width": 0, + "widthType": "Auto", + }, + }, + }, + Object { + "basedOn": "a", + "name": "Body Text Indent 2", + "paragraphProperty": Object { + "runProperty": Object {}, + "tabs": Array [], + }, + "runProperty": Object { + "fonts": Object { + "ascii": "Arial", + "hi_ansi": "Arial", + }, + "sz": 24, + "szCs": 24, + }, + "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, + }, + }, + "indent": null, + "justification": "left", + "layout": null, + "margins": Object { + "bottom": Object { + "val": 0, + "widthType": "DXA", + }, + "left": Object { + "val": 55, + "widthType": "DXA", + }, + "right": Object { + "val": 55, + "widthType": "DXA", + }, + "top": Object { + "val": 0, + "widthType": "DXA", + }, + }, + "style": null, + "width": Object { + "width": 0, + "widthType": "Auto", + }, + }, + }, + Object { + "basedOn": "a", + "name": "Body Text 2", + "paragraphProperty": Object { + "indent": Object { + "end": null, + "firstLineChars": null, + "hangingChars": null, + "specialIndent": null, + "start": 0, + "startChars": null, + }, + "runProperty": Object {}, + "tabs": Array [], + }, + "runProperty": Object { + "fonts": Object { + "ascii": "Arial", + "hi_ansi": "Arial", + }, + "sz": 24, + "szCs": 24, + }, + "styleId": "24", + "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, + }, + }, + "indent": null, + "justification": "left", + "layout": null, + "margins": Object { + "bottom": Object { + "val": 0, + "widthType": "DXA", + }, + "left": Object { + "val": 55, + "widthType": "DXA", + }, + "right": Object { + "val": 55, + "widthType": "DXA", + }, + "top": Object { + "val": 0, + "widthType": "DXA", + }, + }, + "style": null, + "width": Object { + "width": 0, + "widthType": "Auto", + }, + }, + }, + Object { + "basedOn": "a", + "name": "Body Text Indent 3", + "paragraphProperty": Object { + "indent": Object { + "end": null, + "firstLineChars": null, + "hangingChars": null, + "specialIndent": null, + "start": 851, + "startChars": null, + }, + "keepLines": true, + "runProperty": Object {}, + "tabs": Array [], + }, + "runProperty": Object { + "fonts": Object { + "ascii": "Arial", + "hi_ansi": "Arial", + }, + "sz": 24, + "szCs": 24, + }, + "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, + }, + }, + "indent": null, + "justification": "left", + "layout": null, + "margins": Object { + "bottom": Object { + "val": 0, + "widthType": "DXA", + }, + "left": Object { + "val": 55, + "widthType": "DXA", + }, + "right": Object { + "val": 55, + "widthType": "DXA", + }, + "top": Object { + "val": 0, + "widthType": "DXA", + }, + }, + "style": null, + "width": Object { + "width": 0, + "widthType": "Auto", + }, + }, + }, + Object { + "basedOn": "a1", + "name": "FollowedHyperlink", + "paragraphProperty": Object { + "runProperty": Object {}, + "tabs": Array [], + }, + "runProperty": Object { + "color": "800080", + "underline": "single", + }, + "styleId": "af3", + "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, + }, + }, + "indent": null, + "justification": "left", + "layout": null, + "margins": Object { + "bottom": Object { + "val": 0, + "widthType": "DXA", + }, + "left": Object { + "val": 55, + "widthType": "DXA", + }, + "right": Object { + "val": 55, + "widthType": "DXA", + }, + "top": Object { + "val": 0, + "widthType": "DXA", + }, + }, + "style": null, + "width": Object { + "width": 0, + "widthType": "Auto", + }, + }, + }, + Object { + "basedOn": "10", + "name": "cover page", + "paragraphProperty": Object { + "alignment": "center", + "indent": Object { + "end": 720, + "firstLineChars": null, + "hangingChars": null, + "specialIndent": Object { + "type": "firstLine", + "val": 0, + }, + "start": 0, + "startChars": null, + }, + "keepNext": true, + "lineSpacing": Object { + "before": 200, + "line": 240, + "lineRule": "Auto", + }, + "runProperty": Object {}, + "tabs": Array [], + }, + "runProperty": Object { + "fonts": Object { + "ascii": "Palatino", + "hi_ansi": "Palatino", + }, + "sz": 28, + "szCs": 28, + }, + "styleId": "coverpage", + "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, + }, + }, + "indent": null, + "justification": "left", + "layout": null, + "margins": Object { + "bottom": Object { + "val": 0, + "widthType": "DXA", + }, + "left": Object { + "val": 55, + "widthType": "DXA", + }, + "right": Object { + "val": 55, + "widthType": "DXA", + }, + "top": Object { + "val": 0, + "widthType": "DXA", + }, + }, + "style": null, + "width": Object { + "width": 0, + "widthType": "Auto", + }, + }, + }, + Object { + "basedOn": "a2", + "name": "Table Grid", + "paragraphProperty": Object { + "alignment": "both", + "indent": Object { + "end": 907, + "firstLineChars": null, + "hangingChars": null, + "specialIndent": null, + "start": 907, + "startChars": null, + }, + "keepLines": true, + "lineSpacing": Object { + "before": 120, + }, + "runProperty": Object {}, + "tabs": Array [], + }, + "runProperty": Object {}, + "styleId": "af4", + "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, + }, + }, + "indent": null, + "justification": "left", + "layout": null, + "margins": Object { + "bottom": Object { + "val": 0, + "widthType": "DXA", + }, + "left": Object { + "val": 55, + "widthType": "DXA", + }, + "right": Object { + "val": 55, + "widthType": "DXA", + }, + "top": Object { + "val": 0, + "widthType": "DXA", + }, + }, + "style": null, + "width": Object { + "width": 0, + "widthType": "Auto", + }, + }, + }, + Object { + "basedOn": "a", + "name": "Balloon Text", + "paragraphProperty": Object { + "runProperty": Object {}, + "tabs": Array [], + }, + "runProperty": Object { + "fonts": Object { + "ascii": "Tahoma", + "cs": "Tahoma", + "hi_ansi": "Tahoma", + }, + "sz": 16, + "szCs": 16, + }, + "styleId": "af5", + "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, + }, + }, + "indent": null, + "justification": "left", + "layout": null, + "margins": Object { + "bottom": Object { + "val": 0, + "widthType": "DXA", + }, + "left": Object { + "val": 55, + "widthType": "DXA", + }, + "right": Object { + "val": 55, + "widthType": "DXA", + }, + "top": Object { + "val": 0, + "widthType": "DXA", + }, + }, + "style": null, + "width": Object { + "width": 0, + "widthType": "Auto", + }, + }, + }, + Object { + "basedOn": "a", + "name": "Char", + "paragraphProperty": Object { + "alignment": "left", + "indent": Object { + "end": 0, + "firstLineChars": null, + "hangingChars": null, + "specialIndent": null, + "start": 0, + "startChars": null, + }, + "keepLines": true, + "lineSpacing": Object { + "after": 160, + "before": 0, + "line": 240, + "lineRule": "Exact", + }, + "runProperty": Object {}, + "tabs": Array [], + }, + "runProperty": Object { + "characterSpacing": 0, + "fonts": Object { + "ascii": "Verdana", + "cs": "Verdana", + "east_asia": "MS 明朝", + "hi_ansi": "Verdana", + }, + "sz": 20, + "szCs": 20, + }, + "styleId": "Char", + "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, + }, + }, + "indent": null, + "justification": "left", + "layout": null, + "margins": Object { + "bottom": Object { + "val": 0, + "widthType": "DXA", + }, + "left": Object { + "val": 55, + "widthType": "DXA", + }, + "right": Object { + "val": 55, + "widthType": "DXA", + }, + "top": Object { + "val": 0, + "widthType": "DXA", + }, + }, + "style": null, + "width": Object { + "width": 0, + "widthType": "Auto", + }, + }, + }, + Object { + "basedOn": "a", + "name": "Char1 Char Char Znak Znak1", + "paragraphProperty": Object { + "indent": Object { + "end": 0, + "firstLineChars": null, + "hangingChars": null, + "specialIndent": null, + "start": 0, + "startChars": null, + }, + "keepLines": true, + "lineSpacing": Object { + "after": 160, + "before": 0, + "line": 240, + "lineRule": "Exact", + }, + "runProperty": Object {}, + "tabs": Array [], + "widowControl": true, + }, + "runProperty": Object { + "characterSpacing": 0, + "sz": 20, + "szCs": 20, + }, + "styleId": "Char1CharCharZnakZnak1", + "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, + }, + }, + "indent": null, + "justification": "left", + "layout": null, + "margins": Object { + "bottom": Object { + "val": 0, + "widthType": "DXA", + }, + "left": Object { + "val": 55, + "widthType": "DXA", + }, + "right": Object { + "val": 55, + "widthType": "DXA", + }, + "top": Object { + "val": 0, + "widthType": "DXA", + }, + }, + "style": null, + "width": Object { + "width": 0, + "widthType": "Auto", + }, + }, + }, + Object { + "basedOn": "a", + "name": "Char1", + "paragraphProperty": Object { + "indent": Object { + "end": 0, + "firstLineChars": null, + "hangingChars": null, + "specialIndent": null, + "start": 0, + "startChars": null, + }, + "keepLines": true, + "lineSpacing": Object { + "after": 160, + "before": 0, + "line": 240, + "lineRule": "Exact", + }, + "runProperty": Object {}, + "tabs": Array [], + "widowControl": true, + }, + "runProperty": Object { + "characterSpacing": 0, + "sz": 20, + "szCs": 20, + }, + "styleId": "Char1", + "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, + }, + }, + "indent": null, + "justification": "left", + "layout": null, + "margins": Object { + "bottom": Object { + "val": 0, + "widthType": "DXA", + }, + "left": Object { + "val": 55, + "widthType": "DXA", + }, + "right": Object { + "val": 55, + "widthType": "DXA", + }, + "top": Object { + "val": 0, + "widthType": "DXA", + }, + }, + "style": null, + "width": Object { + "width": 0, + "widthType": "Auto", + }, + }, + }, + Object { + "basedOn": "a1", + "name": "Strong", + "paragraphProperty": Object { + "runProperty": Object {}, + "tabs": Array [], + }, + "runProperty": Object { + "bold": true, + "boldCs": true, + }, + "styleId": "af6", + "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, + }, + }, + "indent": null, + "justification": "left", + "layout": null, + "margins": Object { + "bottom": Object { + "val": 0, + "widthType": "DXA", + }, + "left": Object { + "val": 55, + "widthType": "DXA", + }, + "right": Object { + "val": 55, + "widthType": "DXA", + }, + "top": Object { + "val": 0, + "widthType": "DXA", + }, + }, + "style": null, + "width": Object { + "width": 0, + "widthType": "Auto", + }, + }, + }, + Object { + "basedOn": "a", + "name": "List Paragraph", + "paragraphProperty": Object { + "indent": Object { + "end": null, + "firstLineChars": null, + "hangingChars": null, + "specialIndent": null, + "start": 720, + "startChars": null, + }, + "runProperty": Object {}, + "tabs": Array [], + }, + "runProperty": Object {}, + "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, + }, + }, + "indent": null, + "justification": "left", + "layout": null, + "margins": Object { + "bottom": Object { + "val": 0, + "widthType": "DXA", + }, + "left": Object { + "val": 55, + "widthType": "DXA", + }, + "right": Object { + "val": 55, + "widthType": "DXA", + }, + "top": Object { + "val": 0, + "widthType": "DXA", + }, + }, + "style": null, + "width": Object { + "width": 0, + "widthType": "Auto", + }, + }, + }, + Object { + "basedOn": "a", + "name": "Alert_text", + "paragraphProperty": Object { + "indent": Object { + "end": 0, + "firstLineChars": null, + "hangingChars": null, + "specialIndent": null, + "start": 0, + "startChars": null, + }, + "keepLines": true, + "lineSpacing": Object { + "after": 80, + "before": 80, + }, + "runProperty": Object {}, + "tabs": Array [], + }, + "runProperty": Object { + "characterSpacing": 0, + "fonts": Object { + "ascii": "Arial", + "cs_theme": "majorBidi", + "east_asia_theme": "majorEastAsia", + "hi_ansi": "Arial", + }, + "sz": 20, + "szCs": 20, + }, + "styleId": "Alerttext", + "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, + }, + }, + "indent": null, + "justification": "left", + "layout": null, + "margins": Object { + "bottom": Object { + "val": 0, + "widthType": "DXA", + }, + "left": Object { + "val": 55, + "widthType": "DXA", + }, + "right": Object { + "val": 55, + "widthType": "DXA", + }, + "top": Object { + "val": 0, + "widthType": "DXA", + }, + }, + "style": null, + "width": Object { + "width": 0, + "widthType": "Auto", + }, + }, + }, + Object { + "basedOn": null, + "name": "Revision", + "paragraphProperty": Object { + "runProperty": Object {}, + "tabs": Array [], + }, + "runProperty": Object { + "characterSpacing": 4, + "sz": 22, + "szCs": 22, + }, + "styleId": "af8", + "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, + }, + }, + "indent": null, + "justification": "left", + "layout": null, + "margins": Object { + "bottom": Object { + "val": 0, + "widthType": "DXA", + }, + "left": Object { + "val": 55, + "widthType": "DXA", + }, + "right": Object { + "val": 55, + "widthType": "DXA", + }, + "top": Object { + "val": 0, + "widthType": "DXA", + }, + }, + "style": null, + "width": Object { + "width": 0, + "widthType": "Auto", + }, + }, + }, + ], + }, + "taskpanes": null, + "taskpanesRels": Object { + "rels": Array [], + }, + "webExtensions": Array [], + "webSettings": Object { + "divs": Array [ + Object { + "divsChild": Array [], + "id": "205996427", + "marginBottom": 0, + "marginLeft": 0, + "marginRight": 0, + "marginTop": 0, + }, + Object { + "divsChild": Array [ + Object { + "divsChild": Array [ + Object { + "divsChild": Array [], + "id": "258366697", + "marginBottom": 0, + "marginLeft": 0, + "marginRight": 0, + "marginTop": 0, + }, + ], + "id": "2133747683", + "marginBottom": 0, + "marginLeft": 0, + "marginRight": 0, + "marginTop": 0, + }, + ], + "id": "251742819", + "marginBottom": 0, + "marginLeft": 0, + "marginRight": 0, + "marginTop": 0, + }, + Object { + "divsChild": Array [], + "id": "308827217", + "marginBottom": 0, + "marginLeft": 0, + "marginRight": 0, + "marginTop": 0, + }, + Object { + "divsChild": Array [], + "id": "468396979", + "marginBottom": 0, + "marginLeft": 0, + "marginRight": 0, + "marginTop": 0, + }, + Object { + "divsChild": Array [], + "id": "610740844", + "marginBottom": 0, + "marginLeft": 0, + "marginRight": 0, + "marginTop": 0, + }, + Object { + "divsChild": Array [], + "id": "1179391932", + "marginBottom": 0, + "marginLeft": 0, + "marginRight": 0, + "marginTop": 0, + }, + Object { + "divsChild": Array [], + "id": "1285890031", + "marginBottom": 0, + "marginLeft": 0, + "marginRight": 0, + "marginTop": 0, + }, + Object { + "divsChild": Array [], + "id": "1757164811", + "marginBottom": 0, + "marginLeft": 0, + "marginRight": 0, + "marginTop": 0, + }, + Object { + "divsChild": Array [], + "id": "2024041729", + "marginBottom": 0, + "marginLeft": 0, + "marginRight": 0, + "marginTop": 0, + }, + Object { + "divsChild": Array [], + "id": "2111119282", + "marginBottom": 0, + "marginLeft": 0, + "marginRight": 0, + "marginTop": 0, + }, + ], + }, +} +`; + exports[`reader should read table style docx 1`] = ` Object { "comments": Object { diff --git a/docx-wasm/test/index.test.js b/docx-wasm/test/index.test.js index 8ac3f0f..8054757 100644 --- a/docx-wasm/test/index.test.js +++ b/docx-wasm/test/index.test.js @@ -106,6 +106,12 @@ describe("reader", () => { const json = w.readDocx(buffer); expect(json).toMatchSnapshot(); }); + + test("should read table indent docx", () => { + const buffer = readFileSync("../fixtures/table_indent/table_indent.docx"); + const json = w.readDocx(buffer); + expect(json).toMatchSnapshot(); + }); }); describe("writer", () => { diff --git a/fixtures/table_indent/table_indent.docx b/fixtures/table_indent/table_indent.docx new file mode 100644 index 0000000..ccf40a1 Binary files /dev/null and b/fixtures/table_indent/table_indent.docx differ