thinreports 0.7.6 → 0.8.0
Sign up to get free protection for your applications and to get access to all the features.
- checksums.yaml +7 -0
- data/.gitignore +3 -5
- data/.travis.yml +8 -4
- data/CHANGELOG.md +220 -0
- data/Gemfile +2 -9
- data/MIT-LICENSE +1 -1
- data/README.md +286 -0
- data/Rakefile +38 -8
- data/examples/character_spacing/character_spacing.rb +8 -0
- data/examples/character_spacing/character_spacing.tlf +1 -0
- data/examples/dynamic_image/dynamic_image.rb +31 -0
- data/examples/dynamic_image/dynamic_image.tlf +1 -0
- data/examples/dynamic_style/dynamic_style.rb +150 -0
- data/examples/dynamic_style/dynamic_style.tlf +1 -0
- data/examples/dynamic_style/dynamic_style_in_list.tlf +1 -0
- data/examples/eudc/eudc.rb +20 -0
- data/examples/eudc/eudc.tlf +1 -0
- data/examples/helper.rb +50 -0
- data/examples/hidden_shapes/hidden_shapes.rb +9 -0
- data/examples/hidden_shapes/hidden_shapes.tlf +1 -0
- data/examples/list_events/list_events.rb +59 -0
- data/examples/list_events/list_events_0_7_7.tlf +1 -0
- data/examples/list_events/list_events_0_8.tlf +1 -0
- data/examples/list_manual_generation/list_manual_generation.rb +22 -0
- data/examples/list_manual_generation/list_manual_generation.tlf +1 -0
- data/examples/list_page_number/list_page_number.rb +17 -0
- data/examples/list_page_number/list_page_number.tlf +1 -0
- data/examples/page_number/page_number.rb +33 -0
- data/examples/page_number/page_number.tlf +1 -0
- data/examples/password_setting/password_setting.rb +10 -0
- data/examples/password_setting/password_setting.tlf +1 -0
- data/examples/report_callbacks/report_callbacks.rb +31 -0
- data/examples/report_callbacks/report_callbacks.tlf +1 -0
- data/examples/single_line_tblock/single_line_tblock.rb +13 -0
- data/examples/single_line_tblock/single_line_tblock.tlf +1 -0
- data/examples/tblock_overflow/tblock_overflow.rb +20 -0
- data/examples/tblock_overflow/tblock_overflow.tlf +1 -0
- data/examples/tblock_styles/font_size.tlf +1 -0
- data/examples/tblock_styles/tblock_styles.rb +43 -0
- data/examples/tblock_styles/tblock_styles.tlf +1 -0
- data/examples/text_align/text_align.rb +8 -0
- data/examples/text_align/text_align.tlf +1 -0
- data/examples/typeB_page_size/B4_ISO.tlf +1 -0
- data/examples/typeB_page_size/B4_JIS.tlf +1 -0
- data/examples/typeB_page_size/typeB_page_size.rb +17 -0
- data/examples/word_wrap/word_wrap.rb +26 -0
- data/examples/word_wrap/word_wrap.tlf +1 -0
- data/lib/thinreports/config.rb +30 -10
- data/lib/thinreports/core/errors.rb +23 -20
- data/lib/thinreports/core/events.rb +18 -19
- data/lib/thinreports/core/format/base.rb +20 -25
- data/lib/thinreports/core/format/builder.rb +19 -27
- data/lib/thinreports/core/shape/base/interface.rb +15 -15
- data/lib/thinreports/core/shape/base/internal.rb +15 -20
- data/lib/thinreports/core/shape/base.rb +4 -5
- data/lib/thinreports/core/shape/basic/block_format.rb +3 -4
- data/lib/thinreports/core/shape/basic/block_interface.rb +9 -4
- data/lib/thinreports/core/shape/basic/block_internal.rb +9 -10
- data/lib/thinreports/core/shape/basic/format.rb +11 -10
- data/lib/thinreports/core/shape/basic/interface.rb +3 -3
- data/lib/thinreports/core/shape/basic/internal.rb +9 -6
- data/lib/thinreports/core/shape/basic.rb +1 -1
- data/lib/thinreports/core/shape/image_block/format.rb +5 -6
- data/lib/thinreports/core/shape/image_block/interface.rb +9 -7
- data/lib/thinreports/core/shape/image_block/internal.rb +5 -6
- data/lib/thinreports/core/shape/image_block.rb +1 -1
- data/lib/thinreports/core/shape/list/configuration.rb +37 -16
- data/lib/thinreports/core/shape/list/events.rb +11 -11
- data/lib/thinreports/core/shape/list/format.rb +27 -28
- data/lib/thinreports/core/shape/list/manager.rb +135 -95
- data/lib/thinreports/core/shape/list/page.rb +57 -51
- data/lib/thinreports/core/shape/list/page_state.rb +19 -17
- data/lib/thinreports/core/shape/list/section_format.rb +14 -15
- data/lib/thinreports/core/shape/list/section_interface.rb +15 -16
- data/lib/thinreports/core/shape/list/section_internal.rb +7 -8
- data/lib/thinreports/core/shape/list/store.rb +10 -11
- data/lib/thinreports/core/shape/list.rb +1 -1
- data/lib/thinreports/core/shape/manager/format.rb +10 -11
- data/lib/thinreports/core/shape/manager/internal.rb +22 -21
- data/lib/thinreports/core/shape/manager/target.rb +63 -34
- data/lib/thinreports/core/shape/manager.rb +1 -1
- data/lib/thinreports/core/shape/page_number/format.rb +25 -0
- data/lib/thinreports/core/shape/page_number/interface.rb +27 -0
- data/lib/thinreports/core/shape/page_number/internal.rb +57 -0
- data/lib/thinreports/core/shape/page_number.rb +15 -0
- data/lib/thinreports/core/shape/style/base.rb +29 -29
- data/lib/thinreports/core/shape/style/basic.rb +1 -1
- data/lib/thinreports/core/shape/style/graphic.rb +10 -25
- data/lib/thinreports/core/shape/style/text.rb +41 -31
- data/lib/thinreports/core/shape/style.rb +1 -1
- data/lib/thinreports/core/shape/text/format.rb +8 -9
- data/lib/thinreports/core/shape/text/interface.rb +2 -2
- data/lib/thinreports/core/shape/text/internal.rb +6 -7
- data/lib/thinreports/core/shape/text.rb +1 -1
- data/lib/thinreports/core/shape/text_block/format.rb +17 -17
- data/lib/thinreports/core/shape/text_block/formatter/basic.rb +13 -12
- data/lib/thinreports/core/shape/text_block/formatter/datetime.rb +8 -9
- data/lib/thinreports/core/shape/text_block/formatter/number.rb +11 -12
- data/lib/thinreports/core/shape/text_block/formatter/padding.rb +9 -32
- data/lib/thinreports/core/shape/text_block/formatter.rb +7 -8
- data/lib/thinreports/core/shape/text_block/interface.rb +2 -2
- data/lib/thinreports/core/shape/text_block/internal.rb +19 -20
- data/lib/thinreports/core/shape/text_block.rb +1 -1
- data/lib/thinreports/core/shape.rb +11 -13
- data/lib/thinreports/core/utils.rb +33 -32
- data/lib/thinreports/generator/base.rb +15 -24
- data/lib/thinreports/generator/configuration.rb +10 -9
- data/lib/thinreports/generator/pdf/configuration.rb +11 -6
- data/lib/thinreports/generator/pdf/document/draw_shape.rb +41 -32
- data/lib/thinreports/generator/pdf/document/font.rb +53 -44
- data/lib/thinreports/generator/pdf/document/graphics/attributes.rb +34 -25
- data/lib/thinreports/generator/pdf/document/graphics/basic.rb +25 -25
- data/lib/thinreports/generator/pdf/document/graphics/image.rb +15 -15
- data/lib/thinreports/generator/pdf/document/graphics/text.rb +43 -41
- data/lib/thinreports/generator/pdf/document/graphics.rb +8 -9
- data/lib/thinreports/generator/pdf/document/page.rb +37 -23
- data/lib/thinreports/generator/pdf/document/parse_color.rb +9 -10
- data/lib/thinreports/generator/pdf/document/parse_svg.rb +14 -15
- data/lib/thinreports/generator/pdf/document.rb +28 -28
- data/lib/thinreports/generator/pdf/drawer/base.rb +16 -22
- data/lib/thinreports/generator/pdf/drawer/list.rb +39 -21
- data/lib/thinreports/generator/pdf/drawer/list_section.rb +17 -18
- data/lib/thinreports/generator/pdf/drawer/page.rb +37 -26
- data/lib/thinreports/generator/pdf/prawn_ext.rb +18 -17
- data/lib/thinreports/generator/pdf.rb +28 -31
- data/lib/thinreports/generator.rb +6 -8
- data/lib/thinreports/layout/base.rb +24 -36
- data/lib/thinreports/layout/configuration.rb +11 -9
- data/lib/thinreports/layout/format.rb +26 -31
- data/lib/thinreports/layout/version.rb +8 -9
- data/lib/thinreports/layout.rb +2 -2
- data/lib/thinreports/report/base.rb +117 -109
- data/lib/thinreports/report/events.rb +5 -5
- data/lib/thinreports/report/internal.rb +48 -38
- data/lib/thinreports/{core → report}/page.rb +42 -32
- data/lib/thinreports/report.rb +10 -14
- data/lib/thinreports/version.rb +2 -3
- data/lib/thinreports.rb +14 -2
- data/test/data/font.ttf +0 -0
- data/test/data/layout_block.tlf +1 -0
- data/test/data/layout_list.tlf +1 -0
- data/test/data/layout_list_noheader.tlf +1 -0
- data/test/data/layout_text1.tlf +1 -0
- data/test/data/layout_text2.tlf +1 -0
- data/test/test_helper.rb +74 -0
- data/test/tmp/.gitkeep +0 -0
- data/test/unit/core/format/test_base.rb +14 -14
- data/test/unit/core/format/test_builder.rb +20 -25
- data/test/unit/core/shape/base/test_internal.rb +34 -37
- data/test/unit/core/shape/basic/test_basic_format.rb +4 -4
- data/test/unit/core/shape/basic/test_basic_interface.rb +15 -13
- data/test/unit/core/shape/basic/test_basic_internal.rb +19 -16
- data/test/unit/core/shape/basic/test_format.rb +4 -4
- data/test/unit/core/shape/basic/test_interface.rb +36 -46
- data/test/unit/core/shape/basic/test_internal.rb +29 -18
- data/test/unit/core/shape/image_block/test_format.rb +5 -5
- data/test/unit/core/shape/image_block/test_interface.rb +17 -16
- data/test/unit/core/shape/image_block/test_internal.rb +19 -16
- data/test/unit/core/shape/list/test_configuration.rb +50 -33
- data/test/unit/core/shape/list/test_events.rb +7 -7
- data/test/unit/core/shape/list/test_format.rb +16 -18
- data/test/unit/core/shape/list/test_manager.rb +15 -5
- data/test/unit/core/shape/list/test_page.rb +80 -22
- data/test/unit/core/shape/list/test_page_state.rb +13 -13
- data/test/unit/core/shape/list/test_section_format.rb +16 -17
- data/test/unit/core/shape/list/test_section_interface.rb +30 -22
- data/test/unit/core/shape/list/test_section_internal.rb +21 -19
- data/test/unit/core/shape/list/test_store.rb +7 -7
- data/test/unit/core/shape/manager/test_format.rb +11 -15
- data/test/unit/core/shape/manager/test_internal.rb +9 -9
- data/test/unit/core/shape/manager/test_target.rb +85 -57
- data/test/unit/core/shape/page_number/test_format.rb +73 -0
- data/test/unit/core/shape/page_number/test_interface.rb +33 -0
- data/test/unit/core/shape/page_number/test_internal.rb +81 -0
- data/test/unit/core/shape/styles/test_base.rb +9 -9
- data/test/unit/core/shape/styles/test_basic.rb +5 -5
- data/test/unit/core/shape/styles/test_graphic.rb +19 -33
- data/test/unit/core/shape/styles/test_text.rb +29 -7
- data/test/unit/core/shape/text/test_format.rb +6 -6
- data/test/unit/core/shape/text/test_internal.rb +11 -12
- data/test/unit/core/shape/text_block/formatter/test_basic.rb +16 -16
- data/test/unit/core/shape/text_block/formatter/test_datetime.rb +22 -20
- data/test/unit/core/shape/text_block/formatter/test_number.rb +34 -34
- data/test/unit/core/shape/text_block/formatter/test_padding.rb +44 -44
- data/test/unit/core/shape/text_block/test_format.rb +13 -8
- data/test/unit/core/shape/text_block/test_formatter.rb +17 -17
- data/test/unit/core/shape/text_block/test_interface.rb +37 -20
- data/test/unit/core/shape/text_block/test_internal.rb +38 -38
- data/test/unit/core/test_events.rb +10 -8
- data/test/unit/core/test_shape.rb +11 -7
- data/test/unit/core/test_utils.rb +68 -0
- data/test/unit/generator/pdf/document/graphics/test_attributes.rb +10 -4
- data/test/unit/generator/pdf/document/graphics/test_text.rb +60 -53
- data/test/unit/generator/pdf/document/test_draw_shape.rb +14 -6
- data/test/unit/generator/pdf/document/test_font.rb +79 -58
- data/test/unit/generator/pdf/document/test_graphics.rb +18 -19
- data/test/unit/generator/pdf/document/test_page.rb +68 -43
- data/test/unit/generator/pdf/document/test_parse_color.rb +5 -5
- data/test/unit/generator/pdf/test_configuration.rb +16 -9
- data/test/unit/generator/pdf/test_document.rb +8 -16
- data/test/unit/generator/test_base.rb +31 -42
- data/test/unit/generator/test_configuration.rb +6 -6
- data/test/unit/generator/test_pdf.rb +15 -21
- data/test/unit/layout/test_base.rb +34 -79
- data/test/unit/layout/test_configuration.rb +12 -37
- data/test/unit/layout/test_format.rb +36 -39
- data/test/unit/layout/test_version.rb +4 -4
- data/test/unit/report/test_base.rb +160 -192
- data/test/unit/report/test_events.rb +4 -4
- data/test/unit/report/test_internal.rb +102 -82
- data/test/unit/test_config.rb +31 -12
- data/test/unit/test_layout.rb +7 -7
- data/test/unit/test_report.rb +12 -24
- data/thinreports.gemspec +23 -26
- metadata +118 -181
- data/.yardopts +0 -1
- data/LICENSE +0 -1
- data/README.rdoc +0 -167
- data/doc/yardoc_templates/default/layout/html/footer.erb +0 -10
- data/lib/thinreports/core/ext/array.rb +0 -19
- data/lib/thinreports/core/ext/hash.rb +0 -19
- data/lib/thinreports/core/ext/object.rb +0 -25
- data/lib/thinreports/core/ext.rb +0 -5
- data/lib/thinreports/core/format.rb +0 -14
- data/lib/thinreports/core/ordered_hash.rb +0 -39
- data/lib/thinreports/core.rb +0 -20
- data/lib/thinreports/generator/pdf/drawer.rb +0 -16
- data/tasks/doc.rake +0 -13
- data/tasks/test.rake +0 -56
- data/test/benchmark/basic_estimate.tlf +0 -1
- data/test/benchmark/bench_basic_estimate.rb +0 -95
- data/test/case/character_spacing/character_spacing.rb +0 -7
- data/test/case/character_spacing/character_spacing.tlf +0 -1
- data/test/case/dynamic_image/dynamic_image.rb +0 -41
- data/test/case/dynamic_image/dynamic_image.tlf +0 -1
- data/test/case/dynamic_style/dynamic_style.rb +0 -154
- data/test/case/dynamic_style/dynamic_style.tlf +0 -1
- data/test/case/dynamic_style/dynamic_style_in_list.tlf +0 -1
- data/test/case/eudc/eudc.rb +0 -20
- data/test/case/eudc/eudc.tlf +0 -1
- data/test/case/helper.rb +0 -29
- data/test/case/hidden_shapes/hidden_shapes.rb +0 -13
- data/test/case/hidden_shapes/hidden_shapes.tlf +0 -1
- data/test/case/list_events/list_events.rb +0 -32
- data/test/case/list_events/list_events.tlf +0 -1
- data/test/case/list_header_inheriting/list_header_inheriting.rb +0 -17
- data/test/case/list_header_inheriting/list_header_inheriting.tlf +0 -1
- data/test/case/list_manual_generation/list_manual_generation.rb +0 -22
- data/test/case/list_manual_generation/list_manual_generation.tlf +0 -1
- data/test/case/single_line_tblock/single_line_tblock.rb +0 -15
- data/test/case/single_line_tblock/single_line_tblock.tlf +0 -1
- data/test/case/tblock_overflow/tblock_overflow.rb +0 -20
- data/test/case/tblock_overflow/tblock_overflow.tlf +0 -1
- data/test/case/tblock_styles/tblock_styles.rb +0 -27
- data/test/case/tblock_styles/tblock_styles.tlf +0 -1
- data/test/case/text_align/text_align.rb +0 -9
- data/test/case/text_align/text_align.tlf +0 -1
- data/test/unit/core/ext/array_spec.rb +0 -29
- data/test/unit/core/ext/hash_spec.rb +0 -29
- data/test/unit/core/ext/object_spec.rb +0 -30
- data/test/unit/core/ordered_hash_spec.rb +0 -51
- data/test/unit/core/shape/base/test_interface.rb +0 -52
- data/test/unit/core/utils_spec.rb +0 -56
- data/test/unit/data/basic_layout1.tlf +0 -1
- data/test/unit/data/basic_layout2.tlf +0 -1
- data/test/unit/data/basic_list_layout.tlf +0 -1
- data/test/unit/data/basic_list_noheader_layout.tlf +0 -1
- data/test/unit/helper.rb +0 -65
- /data/{test/case → examples}/dynamic_image/img200x100.png +0 -0
- /data/{test/case → examples}/dynamic_image/img50x50.png +0 -0
- /data/{test/case → examples}/dynamic_style/image.png +0 -0
- /data/{test/case → examples}/eudc/eudc.ttf +0 -0
- /data/{resources/fonts → fonts}/IPA_Font_License_Agreement_v1.0.txt +0 -0
- /data/{resources/fonts → fonts}/ipag.ttf +0 -0
- /data/{resources/fonts → fonts}/ipagp.ttf +0 -0
- /data/{resources/fonts → fonts}/ipam.ttf +0 -0
- /data/{resources/fonts → fonts}/ipamp.ttf +0 -0
@@ -0,0 +1 @@
|
|
1
|
+
{"version":"0.7.7.2","finger-print":-1703267902,"config":{"title":"","option":{},"page":{"paper-type":"A4","orientation":"portrait","margin-top":"20","margin-bottom":"20","margin-left":"20","margin-right":"20"}},"svg":"<svg width=\"595.2\" height=\"841.8\" xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" preserveAspectRatio=\"none\" viewBox=\"0 0 595.2 841.8\"><g class=\"canvas\"><!--SHAPE{\"type\":\"s-iblock\",\"id\":\"pos_top_left\",\"display\":\"true\",\"desc\":null,\"box\":{\"x\":20,\"y\":51,\"width\":100,\"height\":100},\"position-x\":\"left\",\"position-y\":\"top\",\"svg\":{\"tag\":\"image\",\"attrs\":{\"x\":20,\"y\":51,\"width\":100,\"height\":100}}}SHAPE--><!--LAYOUT<g xmlns=\"http://www.w3.org/2000/svg\" class=\"s-iblock\" x-display=\"true\" x-id=\"pos_top_left\" x-width=\"100\" x-height=\"100\" x-left=\"20\" x-top=\"51\" x-position-x=\"left\" x-position-y=\"top\" id=\"goog_2086231480\"><rect class=\"s-iblock-box\" stroke=\"#7C4007\" fill=\"#f4e2c4\" stroke-width=\"0.28\" fill-opacity=\"0.8\" width=\"100\" height=\"100\" x=\"20\" y=\"51\"/><image xmlns:xlink=\"http://www.w3.org/1999/xlink\" width=\"32\" height=\"32\" class=\"s-iblock-mark\" opacity=\"0.5\" xlink:href=\"assets/icons/x-image-mark.png\" display=\"inline\" x=\"54\" y=\"85\"/><text class=\"s-iblock-id\" font-size=\"11\" font-family=\"Helvetica\" font-weight=\"normal\" font-style=\"normal\" text-decoration=\"none\" text-anchor=\"start\" kerning=\"auto\" stroke=\"none\" fill=\"#7C4007\" fill-opacity=\"1\" x=\"22\" y=\"62\">pos_top_left</text></g>LAYOUT--><rect stroke=\"#ff0000\" stroke-width=\"1\" fill=\"none\" fill-opacity=\"1\" class=\"s-rect\" x-display=\"true\" x-stroke-type=\"solid\" stroke-dasharray=\"none\" x-id=\"\" rx=\"0\" ry=\"0\" width=\"100\" height=\"100\" x=\"20\" y=\"51\" id=\"goog_2086231481\"/><!--SHAPE{\"type\":\"s-iblock\",\"id\":\"overflow\",\"display\":\"true\",\"desc\":null,\"box\":{\"x\":20,\"y\":443,\"width\":150,\"height\":100},\"position-x\":\"left\",\"position-y\":\"top\",\"svg\":{\"tag\":\"image\",\"attrs\":{\"x\":20,\"y\":443,\"width\":150,\"height\":100}}}SHAPE--><!--LAYOUT<g xmlns=\"http://www.w3.org/2000/svg\" class=\"s-iblock\" x-display=\"true\" x-id=\"overflow\" x-width=\"150\" x-height=\"100\" x-left=\"20\" x-top=\"443\" x-position-x=\"left\" x-position-y=\"top\" id=\"goog_2086231482\"><rect class=\"s-iblock-box\" stroke=\"#7C4007\" fill=\"#f4e2c4\" stroke-width=\"0.28\" fill-opacity=\"0.8\" width=\"150\" height=\"100\" x=\"20\" y=\"443\"/><image xmlns:xlink=\"http://www.w3.org/1999/xlink\" width=\"32\" height=\"32\" class=\"s-iblock-mark\" opacity=\"0.5\" xlink:href=\"assets/icons/x-image-mark.png\" display=\"inline\" x=\"79\" y=\"477\"/><text class=\"s-iblock-id\" font-size=\"11\" font-family=\"Helvetica\" font-weight=\"normal\" font-style=\"normal\" text-decoration=\"none\" text-anchor=\"start\" kerning=\"auto\" stroke=\"none\" fill=\"#7C4007\" fill-opacity=\"1\" x=\"22\" y=\"454\">overflow</text></g>LAYOUT--><rect stroke=\"#ff0000\" stroke-width=\"1\" fill=\"none\" fill-opacity=\"1\" class=\"s-rect\" x-display=\"true\" x-stroke-type=\"solid\" stroke-dasharray=\"none\" x-id=\"\" rx=\"0\" ry=\"0\" width=\"150\" height=\"100\" x=\"20\" y=\"443\" id=\"goog_2086231483\"/><g class=\"s-text\" stroke-width=\"0\" fill=\"#000000\" fill-opacity=\"1\" kerning=\"auto\" x-display=\"true\" x-id=\"\" font-size=\"24\" font-family=\"Times New Roman\" font-weight=\"normal\" font-style=\"normal\" text-anchor=\"start\" text-decoration=\"none\" x-width=\"200\" x-height=\"26\" x-left=\"20\" x-top=\"20\" id=\"goog_2086231486\" x-inline-format=\"false\"><rect class=\"s-text-box\" stroke=\"none\" fill=\"#000000\" fill-opacity=\"0.001\" width=\"200\" height=\"26\" x=\"20\" y=\"20\"/><text class=\"s-text-l0\" xml:space=\"preserve\" stroke=\"none\" fill=\"inherit\" fill-opacity=\"1\" text-decoration=\"none\" x=\"20\" y=\"36\">Positioning</text></g><!--SHAPE{\"type\":\"s-iblock\",\"id\":\"pos_top_center\",\"display\":\"true\",\"desc\":null,\"box\":{\"x\":130,\"y\":51,\"width\":100,\"height\":100},\"position-x\":\"center\",\"position-y\":\"top\",\"svg\":{\"tag\":\"image\",\"attrs\":{\"x\":130,\"y\":51,\"width\":100,\"height\":100}}}SHAPE--><!--LAYOUT<g xmlns=\"http://www.w3.org/2000/svg\" class=\"s-iblock\" x-display=\"true\" x-id=\"pos_top_center\" x-width=\"100\" x-height=\"100\" x-left=\"130\" x-top=\"51\" x-position-x=\"center\" x-position-y=\"top\" id=\"goog_2086231487\"><rect class=\"s-iblock-box\" stroke=\"#7C4007\" fill=\"#f4e2c4\" stroke-width=\"0.28\" fill-opacity=\"0.8\" width=\"100\" height=\"100\" x=\"130\" y=\"51\"/><image xmlns:xlink=\"http://www.w3.org/1999/xlink\" width=\"32\" height=\"32\" class=\"s-iblock-mark\" opacity=\"0.5\" xlink:href=\"assets/icons/x-image-mark.png\" display=\"inline\" x=\"164\" y=\"85\"/><text class=\"s-iblock-id\" font-size=\"11\" font-family=\"Helvetica\" font-weight=\"normal\" font-style=\"normal\" text-decoration=\"none\" text-anchor=\"start\" kerning=\"auto\" stroke=\"none\" fill=\"#7C4007\" fill-opacity=\"1\" x=\"132\" y=\"62\">pos_top_center</text></g>LAYOUT--><rect stroke=\"#ff0000\" stroke-width=\"1\" fill=\"none\" fill-opacity=\"1\" class=\"s-rect\" x-display=\"true\" x-stroke-type=\"solid\" stroke-dasharray=\"none\" x-id=\"\" rx=\"0\" ry=\"0\" width=\"100\" height=\"100\" x=\"130\" y=\"51\" id=\"goog_2086231488\"/><!--SHAPE{\"type\":\"s-iblock\",\"id\":\"pos_top_right\",\"display\":\"true\",\"desc\":null,\"box\":{\"x\":240,\"y\":51,\"width\":100,\"height\":100},\"position-x\":\"right\",\"position-y\":\"top\",\"svg\":{\"tag\":\"image\",\"attrs\":{\"x\":240,\"y\":51,\"width\":100,\"height\":100}}}SHAPE--><!--LAYOUT<g xmlns=\"http://www.w3.org/2000/svg\" class=\"s-iblock\" x-display=\"true\" x-id=\"pos_top_right\" x-width=\"100\" x-height=\"100\" x-left=\"240\" x-top=\"51\" x-position-x=\"right\" x-position-y=\"top\" id=\"goog_2086231489\"><rect class=\"s-iblock-box\" stroke=\"#7C4007\" fill=\"#f4e2c4\" stroke-width=\"0.28\" fill-opacity=\"0.8\" width=\"100\" height=\"100\" x=\"240\" y=\"51\"/><image xmlns:xlink=\"http://www.w3.org/1999/xlink\" width=\"32\" height=\"32\" class=\"s-iblock-mark\" opacity=\"0.5\" xlink:href=\"assets/icons/x-image-mark.png\" display=\"inline\" x=\"274\" y=\"85\"/><text class=\"s-iblock-id\" font-size=\"11\" font-family=\"Helvetica\" font-weight=\"normal\" font-style=\"normal\" text-decoration=\"none\" text-anchor=\"start\" kerning=\"auto\" stroke=\"none\" fill=\"#7C4007\" fill-opacity=\"1\" x=\"242\" y=\"62\">pos_top_right</text></g>LAYOUT--><rect stroke=\"#ff0000\" stroke-width=\"1\" fill=\"none\" fill-opacity=\"1\" class=\"s-rect\" x-display=\"true\" x-stroke-type=\"solid\" stroke-dasharray=\"none\" x-id=\"\" rx=\"0\" ry=\"0\" width=\"100\" height=\"100\" x=\"240\" y=\"51\" id=\"goog_2086231490\"/><!--SHAPE{\"type\":\"s-iblock\",\"id\":\"pos_center_left\",\"display\":\"true\",\"desc\":null,\"box\":{\"x\":20,\"y\":161,\"width\":100,\"height\":100},\"position-x\":\"left\",\"position-y\":\"center\",\"svg\":{\"tag\":\"image\",\"attrs\":{\"x\":20,\"y\":161,\"width\":100,\"height\":100}}}SHAPE--><!--LAYOUT<g xmlns=\"http://www.w3.org/2000/svg\" class=\"s-iblock\" x-display=\"true\" x-id=\"pos_center_left\" x-width=\"100\" x-height=\"100\" x-left=\"20\" x-top=\"161\" x-position-x=\"left\" x-position-y=\"center\" id=\"goog_2086231491\"><rect class=\"s-iblock-box\" stroke=\"#7C4007\" fill=\"#f4e2c4\" stroke-width=\"0.28\" fill-opacity=\"0.8\" width=\"100\" height=\"100\" x=\"20\" y=\"161\"/><image xmlns:xlink=\"http://www.w3.org/1999/xlink\" width=\"32\" height=\"32\" class=\"s-iblock-mark\" opacity=\"0.5\" xlink:href=\"assets/icons/x-image-mark.png\" display=\"inline\" x=\"54\" y=\"195\"/><text class=\"s-iblock-id\" font-size=\"11\" font-family=\"Helvetica\" font-weight=\"normal\" font-style=\"normal\" text-decoration=\"none\" text-anchor=\"start\" kerning=\"auto\" stroke=\"none\" fill=\"#7C4007\" fill-opacity=\"1\" x=\"22\" y=\"172\">pos_center_left</text></g>LAYOUT--><rect stroke=\"#ff0000\" stroke-width=\"1\" fill=\"none\" fill-opacity=\"1\" class=\"s-rect\" x-display=\"true\" x-stroke-type=\"solid\" stroke-dasharray=\"none\" x-id=\"\" rx=\"0\" ry=\"0\" width=\"100\" height=\"100\" x=\"20\" y=\"161\" id=\"goog_2086231492\"/><!--SHAPE{\"type\":\"s-iblock\",\"id\":\"pos_center_center\",\"display\":\"true\",\"desc\":null,\"box\":{\"x\":130,\"y\":161,\"width\":100,\"height\":100},\"position-x\":\"center\",\"position-y\":\"center\",\"svg\":{\"tag\":\"image\",\"attrs\":{\"x\":130,\"y\":161,\"width\":100,\"height\":100}}}SHAPE--><!--LAYOUT<g xmlns=\"http://www.w3.org/2000/svg\" class=\"s-iblock\" x-display=\"true\" x-id=\"pos_center_center\" x-width=\"100\" x-height=\"100\" x-left=\"130\" x-top=\"161\" x-position-x=\"center\" x-position-y=\"center\" id=\"goog_2086231493\"><rect class=\"s-iblock-box\" stroke=\"#7C4007\" fill=\"#f4e2c4\" stroke-width=\"0.28\" fill-opacity=\"0.8\" width=\"100\" height=\"100\" x=\"130\" y=\"161\"/><image xmlns:xlink=\"http://www.w3.org/1999/xlink\" width=\"32\" height=\"32\" class=\"s-iblock-mark\" opacity=\"0.5\" xlink:href=\"assets/icons/x-image-mark.png\" display=\"inline\" x=\"164\" y=\"195\"/><text class=\"s-iblock-id\" font-size=\"11\" font-family=\"Helvetica\" font-weight=\"normal\" font-style=\"normal\" text-decoration=\"none\" text-anchor=\"start\" kerning=\"auto\" stroke=\"none\" fill=\"#7C4007\" fill-opacity=\"1\" x=\"132\" y=\"172\">pos_center_center</text></g>LAYOUT--><rect stroke=\"#ff0000\" stroke-width=\"1\" fill=\"none\" fill-opacity=\"1\" class=\"s-rect\" x-display=\"true\" x-stroke-type=\"solid\" stroke-dasharray=\"none\" x-id=\"\" rx=\"0\" ry=\"0\" width=\"100\" height=\"100\" x=\"130\" y=\"161\" id=\"goog_2086231494\"/><!--SHAPE{\"type\":\"s-iblock\",\"id\":\"pos_center_right\",\"display\":\"true\",\"desc\":null,\"box\":{\"x\":240,\"y\":161,\"width\":100,\"height\":100},\"position-x\":\"right\",\"position-y\":\"center\",\"svg\":{\"tag\":\"image\",\"attrs\":{\"x\":240,\"y\":161,\"width\":100,\"height\":100}}}SHAPE--><!--LAYOUT<g xmlns=\"http://www.w3.org/2000/svg\" class=\"s-iblock\" x-display=\"true\" x-id=\"pos_center_right\" x-width=\"100\" x-height=\"100\" x-left=\"240\" x-top=\"161\" x-position-x=\"right\" x-position-y=\"center\" id=\"goog_2086231495\"><rect class=\"s-iblock-box\" stroke=\"#7C4007\" fill=\"#f4e2c4\" stroke-width=\"0.28\" fill-opacity=\"0.8\" width=\"100\" height=\"100\" x=\"240\" y=\"161\"/><image xmlns:xlink=\"http://www.w3.org/1999/xlink\" width=\"32\" height=\"32\" class=\"s-iblock-mark\" opacity=\"0.5\" xlink:href=\"assets/icons/x-image-mark.png\" display=\"inline\" x=\"274\" y=\"195\"/><text class=\"s-iblock-id\" font-size=\"11\" font-family=\"Helvetica\" font-weight=\"normal\" font-style=\"normal\" text-decoration=\"none\" text-anchor=\"start\" kerning=\"auto\" stroke=\"none\" fill=\"#7C4007\" fill-opacity=\"1\" x=\"242\" y=\"172\">pos_center_right</text></g>LAYOUT--><rect stroke=\"#ff0000\" stroke-width=\"1\" fill=\"none\" fill-opacity=\"1\" class=\"s-rect\" x-display=\"true\" x-stroke-type=\"solid\" stroke-dasharray=\"none\" x-id=\"\" rx=\"0\" ry=\"0\" width=\"100\" height=\"100\" x=\"240\" y=\"161\" id=\"goog_2086231496\"/><!--SHAPE{\"type\":\"s-iblock\",\"id\":\"pos_bottom_left\",\"display\":\"true\",\"desc\":null,\"box\":{\"x\":20,\"y\":271,\"width\":100,\"height\":100},\"position-x\":\"left\",\"position-y\":\"bottom\",\"svg\":{\"tag\":\"image\",\"attrs\":{\"x\":20,\"y\":271,\"width\":100,\"height\":100}}}SHAPE--><!--LAYOUT<g xmlns=\"http://www.w3.org/2000/svg\" class=\"s-iblock\" x-display=\"true\" x-id=\"pos_bottom_left\" x-width=\"100\" x-height=\"100\" x-left=\"20\" x-top=\"271\" x-position-x=\"left\" x-position-y=\"bottom\" id=\"goog_2086231497\"><rect class=\"s-iblock-box\" stroke=\"#7C4007\" fill=\"#f4e2c4\" stroke-width=\"0.28\" fill-opacity=\"0.8\" width=\"100\" height=\"100\" x=\"20\" y=\"271\"/><image xmlns:xlink=\"http://www.w3.org/1999/xlink\" width=\"32\" height=\"32\" class=\"s-iblock-mark\" opacity=\"0.5\" xlink:href=\"assets/icons/x-image-mark.png\" display=\"inline\" x=\"54\" y=\"305\"/><text class=\"s-iblock-id\" font-size=\"11\" font-family=\"Helvetica\" font-weight=\"normal\" font-style=\"normal\" text-decoration=\"none\" text-anchor=\"start\" kerning=\"auto\" stroke=\"none\" fill=\"#7C4007\" fill-opacity=\"1\" x=\"22\" y=\"282\">pos_bottom_left</text></g>LAYOUT--><rect stroke=\"#ff0000\" stroke-width=\"1\" fill=\"none\" fill-opacity=\"1\" class=\"s-rect\" x-display=\"true\" x-stroke-type=\"solid\" stroke-dasharray=\"none\" x-id=\"\" rx=\"0\" ry=\"0\" width=\"100\" height=\"100\" x=\"20\" y=\"271\" id=\"goog_2086231498\"/><!--SHAPE{\"type\":\"s-iblock\",\"id\":\"pos_bottom_center\",\"display\":\"true\",\"desc\":null,\"box\":{\"x\":130,\"y\":271,\"width\":100,\"height\":100},\"position-x\":\"center\",\"position-y\":\"bottom\",\"svg\":{\"tag\":\"image\",\"attrs\":{\"x\":130,\"y\":271,\"width\":100,\"height\":100}}}SHAPE--><!--LAYOUT<g xmlns=\"http://www.w3.org/2000/svg\" class=\"s-iblock\" x-display=\"true\" x-id=\"pos_bottom_center\" x-width=\"100\" x-height=\"100\" x-left=\"130\" x-top=\"271\" x-position-x=\"center\" x-position-y=\"bottom\" id=\"goog_2086231499\"><rect class=\"s-iblock-box\" stroke=\"#7C4007\" fill=\"#f4e2c4\" stroke-width=\"0.28\" fill-opacity=\"0.8\" width=\"100\" height=\"100\" x=\"130\" y=\"271\"/><image xmlns:xlink=\"http://www.w3.org/1999/xlink\" width=\"32\" height=\"32\" class=\"s-iblock-mark\" opacity=\"0.5\" xlink:href=\"assets/icons/x-image-mark.png\" display=\"inline\" x=\"164\" y=\"305\"/><text class=\"s-iblock-id\" font-size=\"11\" font-family=\"Helvetica\" font-weight=\"normal\" font-style=\"normal\" text-decoration=\"none\" text-anchor=\"start\" kerning=\"auto\" stroke=\"none\" fill=\"#7C4007\" fill-opacity=\"1\" x=\"132\" y=\"282\">pos_bottom_center</text></g>LAYOUT--><rect stroke=\"#ff0000\" stroke-width=\"1\" fill=\"none\" fill-opacity=\"1\" class=\"s-rect\" x-display=\"true\" x-stroke-type=\"solid\" stroke-dasharray=\"none\" x-id=\"\" rx=\"0\" ry=\"0\" width=\"100\" height=\"100\" x=\"130\" y=\"271\" id=\"goog_2086231500\"/><!--SHAPE{\"type\":\"s-iblock\",\"id\":\"pos_bottom_right\",\"display\":\"true\",\"desc\":null,\"box\":{\"x\":240,\"y\":271,\"width\":100,\"height\":100},\"position-x\":\"right\",\"position-y\":\"bottom\",\"svg\":{\"tag\":\"image\",\"attrs\":{\"x\":240,\"y\":271,\"width\":100,\"height\":100}}}SHAPE--><!--LAYOUT<g xmlns=\"http://www.w3.org/2000/svg\" class=\"s-iblock\" x-display=\"true\" x-id=\"pos_bottom_right\" x-width=\"100\" x-height=\"100\" x-left=\"240\" x-top=\"271\" x-position-x=\"right\" x-position-y=\"bottom\" id=\"goog_2086231501\"><rect class=\"s-iblock-box\" stroke=\"#7C4007\" fill=\"#f4e2c4\" stroke-width=\"0.28\" fill-opacity=\"0.8\" width=\"100\" height=\"100\" x=\"240\" y=\"271\"/><image xmlns:xlink=\"http://www.w3.org/1999/xlink\" width=\"32\" height=\"32\" class=\"s-iblock-mark\" opacity=\"0.5\" xlink:href=\"assets/icons/x-image-mark.png\" display=\"inline\" x=\"274\" y=\"305\"/><text class=\"s-iblock-id\" font-size=\"11\" font-family=\"Helvetica\" font-weight=\"normal\" font-style=\"normal\" text-decoration=\"none\" text-anchor=\"start\" kerning=\"auto\" stroke=\"none\" fill=\"#7C4007\" fill-opacity=\"1\" x=\"242\" y=\"282\">pos_bottom_right</text></g>LAYOUT--><rect stroke=\"#ff0000\" stroke-width=\"1\" fill=\"none\" fill-opacity=\"1\" class=\"s-rect\" x-display=\"true\" x-stroke-type=\"solid\" stroke-dasharray=\"none\" x-id=\"\" rx=\"0\" ry=\"0\" width=\"100\" height=\"100\" x=\"240\" y=\"271\" id=\"goog_2086231502\"/><g class=\"s-text\" stroke-width=\"0\" fill=\"#000000\" fill-opacity=\"1\" kerning=\"auto\" x-display=\"true\" x-id=\"\" stroke=\"none\" font-weight=\"normal\" font-style=\"normal\" font-family=\"Times New Roman\" font-size=\"24\" text-anchor=\"start\" text-decoration=\"none\" x-width=\"200\" x-height=\"26\" x-left=\"20\" x-top=\"385\" id=\"goog_2086231503\" x-inline-format=\"false\"><rect class=\"s-text-box\" stroke=\"none\" fill=\"#000000\" fill-opacity=\"0.001\" width=\"200\" height=\"26\" x=\"20\" y=\"385\"/><text class=\"s-text-l0\" xml:space=\"preserve\" stroke=\"none\" fill=\"inherit\" fill-opacity=\"1\" text-decoration=\"none\" x=\"20\" y=\"401\">Overflowing</text></g><g class=\"s-text\" stroke-width=\"0\" fill=\"#000000\" fill-opacity=\"1\" kerning=\"auto\" x-display=\"true\" x-id=\"\" stroke=\"none\" font-weight=\"normal\" font-style=\"normal\" font-family=\"Helvetica\" font-size=\"14\" text-anchor=\"start\" text-decoration=\"none\" x-width=\"288\" x-height=\"26\" x-left=\"25\" x-top=\"411\" id=\"goog_2086231504\" x-inline-format=\"false\"><rect class=\"s-text-box\" stroke=\"none\" fill=\"#000000\" fill-opacity=\"0.001\" width=\"288\" height=\"26\" x=\"25\" y=\"411\"/><text class=\"s-text-l0\" xml:space=\"preserve\" stroke=\"none\" fill=\"inherit\" fill-opacity=\"1\" text-decoration=\"none\" x=\"25\" y=\"424\">Resize automatically to 150x75 from 200x100.</text></g><g class=\"s-text\" stroke-width=\"0\" fill=\"#000000\" fill-opacity=\"1\" kerning=\"auto\" x-display=\"true\" x-id=\"\" stroke=\"none\" font-weight=\"normal\" font-style=\"normal\" font-family=\"Times New Roman\" font-size=\"24\" text-anchor=\"start\" text-decoration=\"none\" x-width=\"200\" x-height=\"26\" x-left=\"20\" x-top=\"565\" id=\"goog_2086231505\" x-inline-format=\"false\"><rect class=\"s-text-box\" stroke=\"none\" fill=\"#000000\" fill-opacity=\"0.001\" width=\"200\" height=\"26\" x=\"20\" y=\"565\"/><text class=\"s-text-l0\" xml:space=\"preserve\" stroke=\"none\" fill=\"inherit\" fill-opacity=\"1\" text-decoration=\"none\" x=\"20\" y=\"581\">Open URI</text></g><!--SHAPE{\"type\":\"s-iblock\",\"id\":\"thinreports_logo\",\"display\":\"true\",\"desc\":null,\"box\":{\"x\":20,\"y\":628,\"width\":555.2,\"height\":92.3},\"position-x\":\"center\",\"position-y\":\"center\",\"svg\":{\"tag\":\"image\",\"attrs\":{\"x\":20,\"y\":628,\"width\":555.2,\"height\":92.3}}}SHAPE--><!--LAYOUT<g xmlns=\"http://www.w3.org/2000/svg\" class=\"s-iblock\" x-display=\"true\" x-id=\"thinreports_logo\" x-width=\"555.2\" x-height=\"92.3\" x-left=\"20\" x-top=\"628\" x-position-x=\"center\" x-position-y=\"center\" id=\"goog_2086231509\"><rect class=\"s-iblock-box\" stroke=\"#7C4007\" fill=\"#f4e2c4\" stroke-width=\"0.28\" fill-opacity=\"0.8\" width=\"555.2\" height=\"92.3\" x=\"20\" y=\"628\"/><image xmlns:xlink=\"http://www.w3.org/1999/xlink\" width=\"32\" height=\"32\" class=\"s-iblock-mark\" opacity=\"0.5\" xlink:href=\"assets/icons/x-image-mark.png\" display=\"inline\" x=\"281\" y=\"658\"/><text class=\"s-iblock-id\" font-size=\"11\" font-family=\"Helvetica\" font-weight=\"normal\" font-style=\"normal\" text-decoration=\"none\" text-anchor=\"start\" kerning=\"auto\" stroke=\"none\" fill=\"#7C4007\" fill-opacity=\"1\" x=\"22\" y=\"639\">thinreports_logo</text></g>LAYOUT--><rect stroke=\"#ff0000\" stroke-width=\"1\" fill=\"none\" fill-opacity=\"1\" class=\"s-rect\" x-display=\"true\" x-stroke-type=\"solid\" stroke-dasharray=\"none\" x-id=\"\" rx=\"0\" ry=\"0\" width=\"555.2\" height=\"92.3\" x=\"20\" y=\"628\" id=\"goog_2086231510\"/><g class=\"s-text\" stroke-width=\"0\" fill=\"#000000\" fill-opacity=\"1\" kerning=\"auto\" x-display=\"true\" x-id=\"\" stroke=\"none\" font-weight=\"normal\" font-style=\"normal\" font-family=\"Helvetica\" font-size=\"14\" text-anchor=\"start\" text-decoration=\"none\" x-width=\"369.4\" x-height=\"26\" x-left=\"25\" x-top=\"595\" id=\"goog_2086231511\" x-inline-format=\"false\"><rect class=\"s-text-box\" stroke=\"none\" fill=\"#000000\" fill-opacity=\"0.001\" width=\"369.4\" height=\"26\" x=\"25\" y=\"595\"/><text class=\"s-text-l0\" xml:space=\"preserve\" stroke=\"none\" fill=\"inherit\" fill-opacity=\"1\" text-decoration=\"none\" x=\"25\" y=\"606\">http://www.thinreports.org/assets/logos/thinreports-logo.png</text></g><rect stroke=\"#f79646\" stroke-width=\"1\" fill=\"none\" fill-opacity=\"1\" class=\"s-rect\" x-display=\"true\" x-stroke-type=\"dashed\" stroke-dasharray=\"2,2\" x-id=\"\" rx=\"0\" ry=\"0\" width=\"150\" height=\"76\" x=\"20\" y=\"443\" id=\"goog_2086231512\"/><!--SHAPE{\"type\":\"s-list\",\"id\":\"list\",\"display\":\"true\",\"desc\":null,\"footer\":{},\"footer-enabled\":\"false\",\"page-footer\":{},\"page-footer-enabled\":\"false\",\"detail\":{\"height\":60,\"svg\":{\"tag\":\"g\",\"content\":\"<!---SHAPE{\\\"type\\\":\\\"s-iblock\\\",\\\"id\\\":\\\"in_list\\\",\\\"display\\\":\\\"true\\\",\\\"desc\\\":null,\\\"box\\\":{\\\"x\\\":352.1,\\\"y\\\":483.4,\\\"width\\\":198.1,\\\"height\\\":58.8},\\\"position-x\\\":\\\"center\\\",\\\"position-y\\\":\\\"center\\\",\\\"svg\\\":{\\\"tag\\\":\\\"image\\\",\\\"attrs\\\":{\\\"x\\\":352.1,\\\"y\\\":483.4,\\\"width\\\":198.1,\\\"height\\\":58.8}}}SHAPE---><line xmlns=\\\"http://www.w3.org/2000/svg\\\" stroke=\\\"#000000\\\" stroke-width=\\\"1\\\" fill=\\\"none\\\" class=\\\"s-line\\\" x-display=\\\"true\\\" x-stroke-type=\\\"solid\\\" stroke-dasharray=\\\"none\\\" x-id=\\\"\\\" x1=\\\"351.1\\\" x2=\\\"550.2\\\" y1=\\\"543.2\\\" y2=\\\"543.2\\\" id=\\\"goog_2086231516\\\"/>\"},\"translate\":{\"x\":10,\"y\":-395.2}},\"header\":{\"height\":33.2,\"svg\":{\"tag\":\"g\",\"content\":\"<g xmlns=\\\"http://www.w3.org/2000/svg\\\" class=\\\"s-text\\\" stroke-width=\\\"0\\\" fill=\\\"#000000\\\" fill-opacity=\\\"1\\\" kerning=\\\"auto\\\" x-display=\\\"true\\\" x-id=\\\"\\\" font-size=\\\"18\\\" font-family=\\\"Times New Roman\\\" font-weight=\\\"normal\\\" font-style=\\\"normal\\\" text-anchor=\\\"middle\\\" text-decoration=\\\"none\\\" x-width=\\\"199.1\\\" x-height=\\\"33.2\\\" x-left=\\\"351.1\\\" x-top=\\\"450.2\\\" x-valign=\\\"center\\\" id=\\\"goog_2086231513\\\" x-inline-format=\\\"false\\\"><rect class=\\\"s-text-box\\\" stroke=\\\"none\\\" fill=\\\"#000000\\\" fill-opacity=\\\"0.001\\\" width=\\\"199.1\\\" height=\\\"33.2\\\" x=\\\"351.1\\\" y=\\\"450.2\\\"/><text class=\\\"s-text-l0\\\" xml:space=\\\"preserve\\\" stroke=\\\"none\\\" fill=\\\"inherit\\\" fill-opacity=\\\"1\\\" text-decoration=\\\"none\\\" x=\\\"450.7\\\" y=\\\"470.3\\\">In List</text></g><line xmlns=\\\"http://www.w3.org/2000/svg\\\" stroke=\\\"#000000\\\" stroke-width=\\\"1\\\" fill=\\\"none\\\" class=\\\"s-line\\\" x-display=\\\"true\\\" x-stroke-type=\\\"solid\\\" stroke-dasharray=\\\"none\\\" x-id=\\\"\\\" x1=\\\"353.1\\\" x2=\\\"550.2\\\" y1=\\\"483.4\\\" y2=\\\"483.4\\\" id=\\\"goog_2086231514\\\"/>\"},\"translate\":{\"x\":10,\"y\":-395.2}},\"header-enabled\":\"true\",\"svg\":{\"tag\":\"g\",\"attrs\":{}},\"content-height\":278.90000000000003,\"page-break\":\"false\"}SHAPE--><!--LAYOUT<g xmlns=\"http://www.w3.org/2000/svg\" class=\"s-list\" x-id=\"list\" x-header-enabled=\"true\" x-page-footer-enabled=\"false\" x-footer-enabled=\"false\" x-changing-page=\"false\" x-display=\"true\" width=\"199.1\" height=\"312.1\" x=\"361.1\" y=\"55\" id=\"goog_2086231517\"><g class=\"s-list-header\" transform=\"translate(10,-395.2) rotate(0 0 0)\" x-top=\"55\" x-height=\"33.2\"><g class=\"s-text\" stroke-width=\"0\" fill=\"#000000\" fill-opacity=\"1\" kerning=\"auto\" x-display=\"true\" x-id=\"\" font-size=\"18\" font-family=\"Times New Roman\" font-weight=\"normal\" font-style=\"normal\" text-anchor=\"middle\" text-decoration=\"none\" x-width=\"199.1\" x-height=\"33.2\" x-left=\"351.1\" x-top=\"450.2\" x-valign=\"center\" id=\"goog_2086231513\" x-inline-format=\"false\"><rect class=\"s-text-box\" stroke=\"none\" fill=\"#000000\" fill-opacity=\"0.001\" width=\"199.1\" height=\"33.2\" x=\"351.1\" y=\"450.2\"/><text class=\"s-text-l0\" xml:space=\"preserve\" stroke=\"none\" fill=\"inherit\" fill-opacity=\"1\" text-decoration=\"none\" x=\"450.7\" y=\"470.3\">In List</text></g><line stroke=\"#000000\" stroke-width=\"1\" fill=\"none\" class=\"s-line\" x-display=\"true\" x-stroke-type=\"solid\" stroke-dasharray=\"none\" x-id=\"\" x1=\"353.1\" x2=\"550.2\" y1=\"483.4\" y2=\"483.4\" id=\"goog_2086231514\"/></g><g class=\"s-list-detail\" transform=\"translate(10,-395.2) rotate(0 0 0)\" x-top=\"88.2\" x-height=\"60\"><g class=\"s-iblock\" x-display=\"true\" x-id=\"in_list\" x-width=\"198.1\" x-height=\"58.8\" x-left=\"352.1\" x-top=\"483.4\" x-position-x=\"center\" x-position-y=\"center\" id=\"goog_2086231515\"><rect class=\"s-iblock-box\" stroke=\"#7C4007\" fill=\"#f4e2c4\" stroke-width=\"0.28\" fill-opacity=\"0.8\" width=\"198.1\" height=\"58.8\" x=\"352.1\" y=\"483.4\"/><image xmlns:xlink=\"http://www.w3.org/1999/xlink\" width=\"32\" height=\"32\" class=\"s-iblock-mark\" opacity=\"0.5\" xlink:href=\"assets/icons/x-image-mark.png\" display=\"inline\" x=\"435.1\" y=\"496.4\"/><text class=\"s-iblock-id\" font-size=\"11\" font-family=\"Helvetica\" font-weight=\"normal\" font-style=\"normal\" text-decoration=\"none\" text-anchor=\"start\" kerning=\"auto\" stroke=\"none\" fill=\"#7C4007\" fill-opacity=\"1\" x=\"354.1\" y=\"494.4\">in_list</text></g><line stroke=\"#000000\" stroke-width=\"1\" fill=\"none\" class=\"s-line\" x-display=\"true\" x-stroke-type=\"solid\" stroke-dasharray=\"none\" x-id=\"\" x1=\"351.1\" x2=\"550.2\" y1=\"543.2\" y2=\"543.2\" id=\"goog_2086231516\"/></g><g class=\"s-list-page-footer\" transform=\"translate(10,-368.4) rotate(0 0 0)\" x-top=\"148.2\" x-height=\"0\" display=\"none\"/><g class=\"s-list-footer\" transform=\"translate(10,-393.3) rotate(0 0 0)\" x-top=\"148.2\" x-height=\"0\" display=\"none\"/><text class=\"s-list-id\" font-size=\"11\" font-family=\"Helvetica\" font-weight=\"normal\" font-style=\"normal\" text-anchor=\"start\" stroke=\"none\" fill=\"#7C4007\" fill-opacity=\"1\" x=\"363.1\" y=\"65.8\">list</text><rect stroke-dasharray=\"5\" stroke=\"#BBBBBB\" stroke-width=\"1\" fill=\"#FFFFFF\" fill-opacity=\"0\" class=\"s-list-face\" width=\"199.1\" height=\"312.1\" x=\"361.1\" y=\"55\"/></g>LAYOUT--><g class=\"s-text\" stroke-width=\"0\" fill=\"#000000\" fill-opacity=\"1\" kerning=\"auto\" x-display=\"true\" x-id=\"\" stroke=\"none\" font-weight=\"normal\" font-style=\"normal\" font-family=\"Times New Roman\" font-size=\"24\" text-anchor=\"start\" text-decoration=\"none\" x-width=\"200\" x-height=\"26\" x-left=\"359\" x-top=\"19\" id=\"goog_2086231518\" x-inline-format=\"false\"><rect class=\"s-text-box\" stroke=\"none\" fill=\"#000000\" fill-opacity=\"0.001\" width=\"200\" height=\"26\" x=\"359\" y=\"19\"/><text class=\"s-text-l0\" xml:space=\"preserve\" stroke=\"none\" fill=\"inherit\" fill-opacity=\"1\" text-decoration=\"none\" x=\"359\" y=\"35.3\">Use in List</text></g></g></svg>","state":{"layout-guide":[{"type":"x","position":340.1},{"type":"y","position":371.1}]}}
|
@@ -0,0 +1,150 @@
|
|
1
|
+
# coding: utf-8
|
2
|
+
|
3
|
+
example :dynamic_style, 'Change styles of the object dynamically' do |t|
|
4
|
+
image = t.resource('image.png')
|
5
|
+
setup_values = Proc.new do |page|
|
6
|
+
# The Basic Style
|
7
|
+
page.values(basic_show5: 'TextBlock',
|
8
|
+
basic_show6: image,
|
9
|
+
basic_hide5: 'TextBlock',
|
10
|
+
basic_hide6: image)
|
11
|
+
# The Text Style
|
12
|
+
page.values(text_b3: 'To bold',
|
13
|
+
text_b4: 'To normal',
|
14
|
+
text_i3: 'To italic',
|
15
|
+
text_i4: 'To normal',
|
16
|
+
text_u3: 'To underline',
|
17
|
+
text_u4: 'To none',
|
18
|
+
text_l3: 'To line-through',
|
19
|
+
text_l4: 'To none')
|
20
|
+
page.values(text_a2: 'To right align',
|
21
|
+
text_a3: "To right align\n右寄せ",
|
22
|
+
text_va2: "To bottom align\n下揃え",
|
23
|
+
text_color2: '赤色')
|
24
|
+
end
|
25
|
+
|
26
|
+
Thinreports::Report.generate(filename: t.output_filename,
|
27
|
+
layout: t.layout_filename) do |r|
|
28
|
+
# In case of using dynamic_style.tlf
|
29
|
+
|
30
|
+
# Create raw-page.
|
31
|
+
r.start_new_page
|
32
|
+
r.page.item(:title).value('Original Page')
|
33
|
+
|
34
|
+
setup_values.call(r.page)
|
35
|
+
|
36
|
+
# Create styled-page.
|
37
|
+
r.start_new_page
|
38
|
+
|
39
|
+
setup_values.call(r.page)
|
40
|
+
r.page.item(:title).value('Styled Page')
|
41
|
+
|
42
|
+
# The Basic Style
|
43
|
+
6.times do |i|
|
44
|
+
r.page.item("basic_show#{i + 1}").style(:visible, true)
|
45
|
+
r.page.item("basic_hide#{i + 1}").style(:visible, false)
|
46
|
+
end
|
47
|
+
|
48
|
+
# The Graphic Style
|
49
|
+
r.page.item(:graphic_bcolor1).style(:border_color, '#ff0000')
|
50
|
+
r.page[:graphic_bcolor2].style(:border_color, 'red')
|
51
|
+
# nil or 'none'.
|
52
|
+
r.page.item(:graphic_bcolor4).style(:border_color, nil)
|
53
|
+
|
54
|
+
r.page.item(:graphic_bwidth1).style(:border_width, 5)
|
55
|
+
r.page.item(:graphic_bwidth2).style(:border_width, 5)
|
56
|
+
r.page.item(:graphic_bwidth3).style(:border_width, 5)
|
57
|
+
r.page.item(:graphic_bwidth4).style(:border_width, 2)
|
58
|
+
r.page.item(:graphic_bwidth5).style(:border_width, 0)
|
59
|
+
|
60
|
+
r.page.item(:graphic_fcolor1).style(:fill_color, '#ff0000')
|
61
|
+
# nil or 'none'
|
62
|
+
r.page.item(:graphic_fcolor3).style(:fill_color, 'none')
|
63
|
+
r.page.item(:graphic_fcolor4).style(:fill_color, 'ff0000')
|
64
|
+
|
65
|
+
# The Text Style
|
66
|
+
[1, 3].each do |i|
|
67
|
+
r.page["text_b#{i}"].style(:bold, true)
|
68
|
+
r.page.item("text_i#{i}").style(:italic, true)
|
69
|
+
r.page.item("text_u#{i}").style(:underline, true)
|
70
|
+
r.page.item("text_l#{i}").style(:linethrough, true)
|
71
|
+
end
|
72
|
+
[2, 4].each do |i|
|
73
|
+
r.page.item("text_b#{i}").style(:bold, false)
|
74
|
+
r.page.item("text_i#{i}").style(:italic, false)
|
75
|
+
r.page.item("text_u#{i}").style(:underline, false)
|
76
|
+
r.page.item("text_l#{i}").style(:linethrough, false)
|
77
|
+
end
|
78
|
+
|
79
|
+
3.times do |i|
|
80
|
+
r.page.item("text_a#{i + 1}").style(:align, :right)
|
81
|
+
end
|
82
|
+
2.times do |i|
|
83
|
+
r.page.item("text_va#{i + 1}").style(:valign, :bottom)
|
84
|
+
end
|
85
|
+
|
86
|
+
2.times do |i|
|
87
|
+
r.page["text_color#{i + 1}"].style(:color, 'ff0000')
|
88
|
+
end
|
89
|
+
|
90
|
+
# In case of using "dynamic_style_in_list.tlf"
|
91
|
+
r.start_new_page(layout: t.resource('dynamic_style_in_list.tlf'))
|
92
|
+
|
93
|
+
# Settings for Header.
|
94
|
+
r.page.list(:list).header do |header|
|
95
|
+
header.item(:rect).styles(border_color: nil,
|
96
|
+
fill_color: 'ff00ff')
|
97
|
+
header.item(:text).styles(align: :center,
|
98
|
+
valign: :center,
|
99
|
+
bold: true)
|
100
|
+
header[:tblock].styles(align: :center,
|
101
|
+
valign: :center,
|
102
|
+
color: 'red',
|
103
|
+
linethrough: true)
|
104
|
+
end
|
105
|
+
|
106
|
+
1.step(10, 1) do |i|
|
107
|
+
# Flag of overflowed list-page.
|
108
|
+
is_overflowed = r.page.list(:list).overflow?
|
109
|
+
|
110
|
+
# Add details.
|
111
|
+
r.page.list(:list).add_row do |row|
|
112
|
+
case
|
113
|
+
when i % 2 == 0
|
114
|
+
row.item(:rect).styles(border_color: 'ff0000',
|
115
|
+
border_width: 3,
|
116
|
+
fill_color: '0000ff')
|
117
|
+
row.item(:text).styles(color: 'red',
|
118
|
+
align: :left,
|
119
|
+
valign: :center)
|
120
|
+
row.item(:tblock).styles(color: 'blue',
|
121
|
+
align: :left,
|
122
|
+
valign: :center)
|
123
|
+
when i % 3 == 0
|
124
|
+
row.item(:rect).style(:visible, false)
|
125
|
+
row.item(:text).styles(color: '0000ff',
|
126
|
+
align: :right,
|
127
|
+
valign: :bottom)
|
128
|
+
row.item(:tblock).styles(color: 'ff0000',
|
129
|
+
align: :right,
|
130
|
+
valign: :bottom)
|
131
|
+
end
|
132
|
+
end
|
133
|
+
|
134
|
+
# Change header styles when list-page was overflowed.
|
135
|
+
if is_overflowed
|
136
|
+
r.page.list(:list).header do |header|
|
137
|
+
header.item(:rect).styles(border_color: 'black',
|
138
|
+
fill_color: '#ffffff')
|
139
|
+
header.item(:text).styles(align: :left,
|
140
|
+
valign: :top,
|
141
|
+
bold: false)
|
142
|
+
header.item(:tblock).styles(align: :left,
|
143
|
+
valign: :top,
|
144
|
+
color: '#000000',
|
145
|
+
linethrough: false)
|
146
|
+
end
|
147
|
+
end
|
148
|
+
end
|
149
|
+
end
|
150
|
+
end
|
@@ -0,0 +1 @@
|
|
1
|
+
{"version":"0.7.7.2","finger-print":-72892437,"config":{"title":"Dynamic Style","option":{},"page":{"paper-type":"A4","orientation":"portrait","margin-top":"20","margin-bottom":"20","margin-left":"20","margin-right":"20"}},"svg":"<svg width=\"595.2\" height=\"841.8\" xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" preserveAspectRatio=\"none\" viewBox=\"0 0 595.2 841.8\"><g class=\"canvas\"><g class=\"s-text\" stroke-width=\"0\" fill=\"#000000\" fill-opacity=\"1\" kerning=\"auto\" x-display=\"true\" x-id=\"\" font-size=\"20\" font-family=\"Helvetica\" font-weight=\"normal\" font-style=\"normal\" text-anchor=\"start\" text-decoration=\"underline\" x-width=\"374.1\" x-height=\"22\" x-left=\"20\" x-top=\"42\" id=\"goog_2086231519\" x-inline-format=\"false\"><rect class=\"s-text-box\" stroke=\"none\" fill=\"#000000\" fill-opacity=\"0.001\" width=\"374.1\" height=\"22\" x=\"20\" y=\"42\"/><text class=\"s-text-l0\" xml:space=\"preserve\" stroke=\"none\" fill=\"inherit\" fill-opacity=\"1\" text-decoration=\"underline\" x=\"20\" y=\"60\">The Basic Style</text></g><g class=\"s-text\" stroke-width=\"0\" fill=\"#000000\" fill-opacity=\"1\" kerning=\"auto\" x-display=\"true\" x-id=\"\" font-size=\"12\" font-family=\"Courier New\" font-weight=\"normal\" font-style=\"normal\" text-anchor=\"start\" text-decoration=\"none\" x-width=\"280\" x-height=\"14\" x-left=\"20\" x-top=\"72\" id=\"goog_2086231520\" x-inline-format=\"false\"><rect class=\"s-text-box\" stroke=\"none\" fill=\"#000000\" fill-opacity=\"0.001\" width=\"280\" height=\"14\" x=\"20\" y=\"72\"/><text class=\"s-text-l0\" xml:space=\"preserve\" stroke=\"none\" fill=\"inherit\" fill-opacity=\"1\" text-decoration=\"none\" x=\"20\" y=\"80\">Visibility: To true from false.</text></g><!--SHAPE{\"type\":\"s-rect\",\"id\":\"basic_show1\",\"display\":\"false\",\"desc\":null,\"svg\":{\"tag\":\"rect\",\"attrs\":{\"xmlns\":\"http://www.w3.org/2000/svg\",\"stroke\":\"#000000\",\"stroke-width\":\"1\",\"fill\":\"#FFFFFF\",\"fill-opacity\":\"1\",\"stroke-dasharray\":\"none\",\"rx\":\"0\",\"ry\":\"0\",\"width\":\"52\",\"height\":\"34\",\"x\":\"20\",\"y\":\"90\",\"id\":\"goog_2086231521\"}}}SHAPE--><!--LAYOUT<rect xmlns=\"http://www.w3.org/2000/svg\" stroke=\"#000000\" stroke-width=\"1\" fill=\"#FFFFFF\" fill-opacity=\"1\" class=\"s-rect\" x-display=\"false\" x-stroke-type=\"solid\" stroke-dasharray=\"none\" x-id=\"basic_show1\" rx=\"0\" ry=\"0\" width=\"52\" height=\"34\" x=\"20\" y=\"90\" id=\"goog_2086231521\"/>LAYOUT--><!--SHAPE{\"type\":\"s-ellipse\",\"id\":\"basic_show2\",\"display\":\"false\",\"desc\":null,\"svg\":{\"tag\":\"ellipse\",\"attrs\":{\"xmlns\":\"http://www.w3.org/2000/svg\",\"stroke\":\"#000000\",\"stroke-width\":\"1\",\"fill\":\"#FFFFFF\",\"fill-opacity\":\"1\",\"stroke-dasharray\":\"none\",\"rx\":\"31.55\",\"ry\":\"21.5\",\"cx\":\"118.45\",\"cy\":\"108.5\",\"id\":\"goog_2086231522\"}}}SHAPE--><!--LAYOUT<ellipse xmlns=\"http://www.w3.org/2000/svg\" stroke=\"#000000\" stroke-width=\"1\" fill=\"#FFFFFF\" fill-opacity=\"1\" class=\"s-ellipse\" x-display=\"false\" x-stroke-type=\"solid\" stroke-dasharray=\"none\" x-id=\"basic_show2\" rx=\"31.55\" ry=\"21.5\" cx=\"118.45\" cy=\"108.5\" id=\"goog_2086231522\"/>LAYOUT--><!--SHAPE{\"type\":\"s-text\",\"id\":\"basic_show3\",\"display\":\"false\",\"desc\":null,\"line-height\":\"\",\"valign\":\"\",\"box\":{\"x\":165.1,\"y\":97,\"width\":36,\"height\":20},\"inline-format\":\"false\",\"text\":[\"Text\"],\"svg\":{\"tag\":\"g\",\"attrs\":{\"xmlns\":\"http://www.w3.org/2000/svg\",\"stroke-width\":\"0\",\"fill\":\"#000000\",\"fill-opacity\":\"1\",\"kerning\":\"auto\",\"font-size\":\"18\",\"font-family\":\"Helvetica\",\"font-weight\":\"normal\",\"font-style\":\"normal\",\"text-anchor\":\"start\",\"text-decoration\":\"none\",\"id\":\"goog_2086231523\"},\"content\":\"<text xmlns=\\\"http://www.w3.org/2000/svg\\\" class=\\\"s-text-l0\\\" xml:space=\\\"preserve\\\" stroke=\\\"none\\\" fill=\\\"inherit\\\" fill-opacity=\\\"1\\\" text-decoration=\\\"none\\\" x=\\\"165.1\\\" y=\\\"114\\\">Text</text>\"}}SHAPE--><!--LAYOUT<g xmlns=\"http://www.w3.org/2000/svg\" class=\"s-text\" stroke-width=\"0\" fill=\"#000000\" fill-opacity=\"1\" kerning=\"auto\" x-display=\"false\" x-id=\"basic_show3\" font-size=\"18\" font-family=\"Helvetica\" font-weight=\"normal\" font-style=\"normal\" text-anchor=\"start\" text-decoration=\"none\" x-width=\"36\" x-height=\"20\" x-left=\"165.1\" x-top=\"97\" id=\"goog_2086231523\" x-inline-format=\"false\"><rect class=\"s-text-box\" stroke=\"none\" fill=\"#000000\" fill-opacity=\"0.001\" width=\"36\" height=\"20\" x=\"165.1\" y=\"97\"/><text class=\"s-text-l0\" xml:space=\"preserve\" stroke=\"none\" fill=\"inherit\" fill-opacity=\"1\" text-decoration=\"none\" x=\"165.1\" y=\"114\">Text</text></g>LAYOUT--><!--SHAPE{\"type\":\"s-image\",\"id\":\"basic_show4\",\"display\":\"false\",\"desc\":null,\"svg\":{\"tag\":\"image\",\"attrs\":{\"xmlns\":\"http://www.w3.org/2000/svg\",\"xmlns:xlink\":\"http://www.w3.org/1999/xlink\",\"image-rendering\":\"optimizeQuality\",\"preserveAspectRatio\":\"none\",\"x\":\"213.1\",\"y\":\"91\",\"xlink:href\":\"data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAADIAAAAyCAYAAAAeP4ixAAAABHNCSVQICAgIfAhkiAAAAAlwSFlzAAAOdAAADnQBaySz1gAAABZ0RVh0Q3JlYXRpb24gVGltZQAwOS8xNS8xMe/neuYAAAAfdEVYdFNvZnR3YXJlAE1hY3JvbWVkaWEgRmlyZXdvcmtzIDi1aNJ4AAAAV0lEQVRoge3PAQ3AMAzAsH78OfckLi26bATJM7M7P3BuB3zFSI2RGiM1RmqM1BipMVJjpMZIjZEaIzVGaozUGKkxUmOkxkiNkRojNUZqjNQYqTFSY6TmBQWzAmLkoN8LAAAAAElFTkSuQmCC\",\"width\":\"41\",\"height\":\"41\",\"id\":\"goog_2086231524\"}}}SHAPE--><!--LAYOUT<image xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" image-rendering=\"optimizeQuality\" preserveAspectRatio=\"none\" class=\"s-image\" x-display=\"false\" x-id=\"basic_show4\" x=\"213.1\" y=\"91\" xlink:href=\"data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAADIAAAAyCAYAAAAeP4ixAAAABHNCSVQICAgIfAhkiAAAAAlwSFlzAAAOdAAADnQBaySz1gAAABZ0RVh0Q3JlYXRpb24gVGltZQAwOS8xNS8xMe/neuYAAAAfdEVYdFNvZnR3YXJlAE1hY3JvbWVkaWEgRmlyZXdvcmtzIDi1aNJ4AAAAV0lEQVRoge3PAQ3AMAzAsH78OfckLi26bATJM7M7P3BuB3zFSI2RGiM1RmqM1BipMVJjpMZIjZEaIzVGaozUGKkxUmOkxkiNkRojNUZqjNQYqTFSY6TmBQWzAmLkoN8LAAAAAElFTkSuQmCC\" x-natural-width=\"50\" x-natural-height=\"50\" width=\"41\" height=\"41\" id=\"goog_2086231524\"/>LAYOUT--><!--SHAPE{\"type\":\"s-tblock\",\"id\":\"basic_show5\",\"display\":\"false\",\"desc\":null,\"multiple\":\"false\",\"valign\":\"\",\"line-height\":\"\",\"box\":{\"x\":267.1,\"y\":97,\"width\":106,\"height\":20},\"inline-format\":\"false\",\"format\":{\"base\":\"\",\"type\":\"\"},\"value\":\"\",\"ref-id\":\"\",\"overflow\":\"\",\"word-wrap\":\"none\",\"svg\":{\"tag\":\"text\",\"attrs\":{\"x\":267.1,\"y\":111,\"xml:space\":\"preserve\",\"xmlns\":\"http://www.w3.org/2000/svg\",\"kerning\":\"auto\",\"fill\":\"#000000\",\"fill-opacity\":\"1\",\"font-size\":\"18\",\"font-family\":\"Helvetica\",\"font-weight\":\"normal\",\"font-style\":\"normal\",\"text-anchor\":\"start\",\"text-decoration\":\"none\",\"id\":\"goog_2086231525\"}}}SHAPE--><!--LAYOUT<g xmlns=\"http://www.w3.org/2000/svg\" class=\"s-tblock\" x-format-type=\"\" x-value=\"\" x-format-base=\"\" x-ref-id=\"\" kerning=\"auto\" x-display=\"false\" x-multiple=\"false\" x-id=\"basic_show5\" fill=\"#000000\" fill-opacity=\"1\" font-size=\"18\" font-family=\"Helvetica\" font-weight=\"normal\" font-style=\"normal\" text-anchor=\"start\" text-decoration=\"none\" x-width=\"106\" x-height=\"20\" x-left=\"267.1\" x-top=\"97\" id=\"goog_2086231525\" x-inline-format=\"false\"><rect class=\"s-tblock-box\" stroke=\"#7C4007\" fill=\"#f4e2c4\" stroke-width=\"0.28\" fill-opacity=\"0.8\" width=\"106\" height=\"20\" x=\"267.1\" y=\"97\"/><text class=\"s-tblock-id\" font-size=\"11\" font-family=\"Helvetica\" font-weight=\"normal\" font-style=\"normal\" text-decoration=\"none\" text-anchor=\"start\" kerning=\"auto\" stroke=\"none\" fill=\"#7C4007\" fill-opacity=\"1\" x=\"269.1\" y=\"108\">basic_show5</text></g>LAYOUT--><!--SHAPE{\"type\":\"s-iblock\",\"id\":\"basic_show6\",\"display\":\"false\",\"desc\":null,\"box\":{\"x\":387,\"y\":87,\"width\":74,\"height\":58},\"position-x\":\"left\",\"position-y\":\"top\",\"svg\":{\"tag\":\"image\",\"attrs\":{\"x\":387,\"y\":87,\"width\":74,\"height\":58}}}SHAPE--><!--LAYOUT<g xmlns=\"http://www.w3.org/2000/svg\" class=\"s-iblock\" x-display=\"false\" x-id=\"basic_show6\" x-width=\"74\" x-height=\"58\" x-left=\"387\" x-top=\"87\" x-position-x=\"left\" x-position-y=\"top\" id=\"goog_2086231526\"><rect class=\"s-iblock-box\" stroke=\"#7C4007\" fill=\"#f4e2c4\" stroke-width=\"0.28\" fill-opacity=\"0.8\" width=\"74\" height=\"58\" x=\"387\" y=\"87\"/><image xmlns:xlink=\"http://www.w3.org/1999/xlink\" width=\"32\" height=\"32\" class=\"s-iblock-mark\" opacity=\"0.5\" xlink:href=\"assets/icons/x-image-mark.png\" display=\"inline\" x=\"408\" y=\"100\"/><text class=\"s-iblock-id\" font-size=\"11\" font-family=\"Helvetica\" font-weight=\"normal\" font-style=\"normal\" text-decoration=\"none\" text-anchor=\"start\" kerning=\"auto\" stroke=\"none\" fill=\"#7C4007\" fill-opacity=\"1\" x=\"389\" y=\"98\">basic_show6</text></g>LAYOUT--><g class=\"s-text\" stroke-width=\"0\" fill=\"#000000\" fill-opacity=\"1\" kerning=\"auto\" x-display=\"true\" x-id=\"\" stroke=\"none\" font-weight=\"normal\" font-style=\"normal\" font-family=\"Courier New\" font-size=\"12\" text-anchor=\"start\" text-decoration=\"none\" x-width=\"280\" x-height=\"14\" x-left=\"20\" x-top=\"147\" id=\"goog_2086231527\" x-inline-format=\"false\"><rect class=\"s-text-box\" stroke=\"none\" fill=\"#000000\" fill-opacity=\"0.001\" width=\"280\" height=\"14\" x=\"20\" y=\"147\"/><text class=\"s-text-l0\" xml:space=\"preserve\" stroke=\"none\" fill=\"inherit\" fill-opacity=\"1\" text-decoration=\"none\" x=\"20\" y=\"155\">Visibility: To false from true.</text></g><!--SHAPE{\"type\":\"s-rect\",\"id\":\"basic_hide1\",\"display\":\"true\",\"desc\":null,\"svg\":{\"tag\":\"rect\",\"attrs\":{\"xmlns\":\"http://www.w3.org/2000/svg\",\"stroke\":\"#000000\",\"stroke-width\":\"1\",\"fill\":\"#FFFFFF\",\"fill-opacity\":\"1\",\"stroke-dasharray\":\"none\",\"rx\":\"0\",\"ry\":\"0\",\"width\":\"52\",\"height\":\"34\",\"x\":\"20\",\"y\":\"165\",\"id\":\"goog_2086231528\"}}}SHAPE--><!--LAYOUT<rect xmlns=\"http://www.w3.org/2000/svg\" stroke=\"#000000\" stroke-width=\"1\" fill=\"#FFFFFF\" fill-opacity=\"1\" class=\"s-rect\" x-display=\"true\" x-stroke-type=\"solid\" stroke-dasharray=\"none\" x-id=\"basic_hide1\" rx=\"0\" ry=\"0\" width=\"52\" height=\"34\" x=\"20\" y=\"165\" id=\"goog_2086231528\"/>LAYOUT--><!--SHAPE{\"type\":\"s-ellipse\",\"id\":\"basic_hide2\",\"display\":\"true\",\"desc\":null,\"svg\":{\"tag\":\"ellipse\",\"attrs\":{\"xmlns\":\"http://www.w3.org/2000/svg\",\"stroke\":\"#000000\",\"stroke-width\":\"1\",\"fill\":\"#FFFFFF\",\"fill-opacity\":\"1\",\"stroke-dasharray\":\"none\",\"rx\":\"31.55\",\"ry\":\"21.5\",\"cx\":\"118.45\",\"cy\":\"183.5\",\"id\":\"goog_2086231529\"}}}SHAPE--><!--LAYOUT<ellipse xmlns=\"http://www.w3.org/2000/svg\" stroke=\"#000000\" stroke-width=\"1\" fill=\"#FFFFFF\" fill-opacity=\"1\" class=\"s-ellipse\" x-display=\"true\" x-stroke-type=\"solid\" stroke-dasharray=\"none\" x-id=\"basic_hide2\" rx=\"31.55\" ry=\"21.5\" cx=\"118.45\" cy=\"183.5\" id=\"goog_2086231529\"/>LAYOUT--><!--SHAPE{\"type\":\"s-text\",\"id\":\"basic_hide3\",\"display\":\"true\",\"desc\":null,\"line-height\":\"\",\"valign\":\"\",\"box\":{\"x\":165.1,\"y\":172,\"width\":36,\"height\":20},\"inline-format\":\"false\",\"text\":[\"Text\"],\"svg\":{\"tag\":\"g\",\"attrs\":{\"xmlns\":\"http://www.w3.org/2000/svg\",\"stroke-width\":\"0\",\"fill\":\"#000000\",\"fill-opacity\":\"1\",\"kerning\":\"auto\",\"stroke\":\"none\",\"font-weight\":\"normal\",\"font-style\":\"normal\",\"font-family\":\"Helvetica\",\"font-size\":\"18\",\"text-anchor\":\"start\",\"text-decoration\":\"none\",\"id\":\"goog_2086231530\"},\"content\":\"<text xmlns=\\\"http://www.w3.org/2000/svg\\\" class=\\\"s-text-l0\\\" xml:space=\\\"preserve\\\" stroke=\\\"none\\\" fill=\\\"inherit\\\" fill-opacity=\\\"1\\\" text-decoration=\\\"none\\\" x=\\\"165.1\\\" y=\\\"189\\\">Text</text>\"}}SHAPE--><!--LAYOUT<g xmlns=\"http://www.w3.org/2000/svg\" class=\"s-text\" stroke-width=\"0\" fill=\"#000000\" fill-opacity=\"1\" kerning=\"auto\" x-display=\"true\" x-id=\"basic_hide3\" stroke=\"none\" font-weight=\"normal\" font-style=\"normal\" font-family=\"Helvetica\" font-size=\"18\" text-anchor=\"start\" text-decoration=\"none\" x-width=\"36\" x-height=\"20\" x-left=\"165.1\" x-top=\"172\" id=\"goog_2086231530\" x-inline-format=\"false\"><rect class=\"s-text-box\" stroke=\"none\" fill=\"#000000\" fill-opacity=\"0.001\" width=\"36\" height=\"20\" x=\"165.1\" y=\"172\"/><text class=\"s-text-l0\" xml:space=\"preserve\" stroke=\"none\" fill=\"inherit\" fill-opacity=\"1\" text-decoration=\"none\" x=\"165.1\" y=\"189\">Text</text></g>LAYOUT--><!--SHAPE{\"type\":\"s-image\",\"id\":\"basic_hide4\",\"display\":\"true\",\"desc\":null,\"svg\":{\"tag\":\"image\",\"attrs\":{\"xmlns\":\"http://www.w3.org/2000/svg\",\"xmlns:xlink\":\"http://www.w3.org/1999/xlink\",\"image-rendering\":\"optimizeQuality\",\"preserveAspectRatio\":\"none\",\"xlink:href\":\"data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAADIAAAAyCAYAAAAeP4ixAAAABHNCSVQICAgIfAhkiAAAAAlwSFlzAAAOdAAADnQBaySz1gAAABZ0RVh0Q3JlYXRpb24gVGltZQAwOS8xNS8xMe/neuYAAAAfdEVYdFNvZnR3YXJlAE1hY3JvbWVkaWEgRmlyZXdvcmtzIDi1aNJ4AAAAV0lEQVRoge3PAQ3AMAzAsH78OfckLi26bATJM7M7P3BuB3zFSI2RGiM1RmqM1BipMVJjpMZIjZEaIzVGaozUGKkxUmOkxkiNkRojNUZqjNQYqTFSY6TmBQWzAmLkoN8LAAAAAElFTkSuQmCC\",\"width\":\"41\",\"height\":\"41\",\"x\":\"213.1\",\"y\":\"166\",\"id\":\"goog_2086231531\"}}}SHAPE--><!--LAYOUT<image xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" image-rendering=\"optimizeQuality\" preserveAspectRatio=\"none\" class=\"s-image\" x-display=\"true\" x-id=\"basic_hide4\" xlink:href=\"data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAADIAAAAyCAYAAAAeP4ixAAAABHNCSVQICAgIfAhkiAAAAAlwSFlzAAAOdAAADnQBaySz1gAAABZ0RVh0Q3JlYXRpb24gVGltZQAwOS8xNS8xMe/neuYAAAAfdEVYdFNvZnR3YXJlAE1hY3JvbWVkaWEgRmlyZXdvcmtzIDi1aNJ4AAAAV0lEQVRoge3PAQ3AMAzAsH78OfckLi26bATJM7M7P3BuB3zFSI2RGiM1RmqM1BipMVJjpMZIjZEaIzVGaozUGKkxUmOkxkiNkRojNUZqjNQYqTFSY6TmBQWzAmLkoN8LAAAAAElFTkSuQmCC\" x-natural-width=\"50\" x-natural-height=\"50\" width=\"41\" height=\"41\" x=\"213.1\" y=\"166\" id=\"goog_2086231531\"/>LAYOUT--><!--SHAPE{\"type\":\"s-tblock\",\"id\":\"basic_hide5\",\"display\":\"true\",\"desc\":null,\"multiple\":\"false\",\"valign\":\"\",\"line-height\":\"\",\"box\":{\"x\":267.1,\"y\":172,\"width\":106,\"height\":20},\"inline-format\":\"false\",\"format\":{\"base\":\"\",\"type\":\"\"},\"value\":\"\",\"ref-id\":\"\",\"overflow\":\"\",\"word-wrap\":\"none\",\"svg\":{\"tag\":\"text\",\"attrs\":{\"x\":267.1,\"y\":186,\"xml:space\":\"preserve\",\"xmlns\":\"http://www.w3.org/2000/svg\",\"kerning\":\"auto\",\"fill\":\"#000000\",\"fill-opacity\":\"1\",\"font-size\":\"18\",\"font-family\":\"Helvetica\",\"font-weight\":\"normal\",\"font-style\":\"normal\",\"text-decoration\":\"none\",\"text-anchor\":\"start\",\"id\":\"goog_2086231532\"}}}SHAPE--><!--LAYOUT<g xmlns=\"http://www.w3.org/2000/svg\" class=\"s-tblock\" x-format-type=\"\" x-value=\"\" x-format-base=\"\" x-ref-id=\"\" kerning=\"auto\" x-display=\"true\" x-multiple=\"false\" x-id=\"basic_hide5\" x-width=\"106\" x-height=\"20\" x-left=\"267.1\" x-top=\"172\" fill=\"#000000\" fill-opacity=\"1\" font-size=\"18\" font-family=\"Helvetica\" font-weight=\"normal\" font-style=\"normal\" text-decoration=\"none\" text-anchor=\"start\" id=\"goog_2086231532\" x-inline-format=\"false\"><rect class=\"s-tblock-box\" stroke=\"#7C4007\" fill=\"#f4e2c4\" stroke-width=\"0.28\" fill-opacity=\"0.8\" width=\"106\" height=\"20\" x=\"267.1\" y=\"172\"/><text class=\"s-tblock-id\" font-size=\"11\" font-family=\"Helvetica\" font-weight=\"normal\" font-style=\"normal\" text-decoration=\"none\" text-anchor=\"start\" kerning=\"auto\" stroke=\"none\" fill=\"#7C4007\" fill-opacity=\"1\" x=\"269.1\" y=\"183\">basic_hide5</text></g>LAYOUT--><!--SHAPE{\"type\":\"s-iblock\",\"id\":\"basic_hide6\",\"display\":\"true\",\"desc\":null,\"box\":{\"x\":387,\"y\":162,\"width\":74,\"height\":58},\"position-x\":\"left\",\"position-y\":\"top\",\"svg\":{\"tag\":\"image\",\"attrs\":{\"x\":387,\"y\":162,\"width\":74,\"height\":58}}}SHAPE--><!--LAYOUT<g xmlns=\"http://www.w3.org/2000/svg\" class=\"s-iblock\" x-display=\"true\" x-id=\"basic_hide6\" x-width=\"74\" x-height=\"58\" x-left=\"387\" x-top=\"162\" x-position-x=\"left\" x-position-y=\"top\" id=\"goog_2086231533\"><rect class=\"s-iblock-box\" stroke=\"#7C4007\" fill=\"#f4e2c4\" stroke-width=\"0.28\" fill-opacity=\"0.8\" width=\"74\" height=\"58\" x=\"387\" y=\"162\"/><image xmlns:xlink=\"http://www.w3.org/1999/xlink\" width=\"32\" height=\"32\" class=\"s-iblock-mark\" opacity=\"0.5\" xlink:href=\"assets/icons/x-image-mark.png\" display=\"inline\" x=\"408\" y=\"175\"/><text class=\"s-iblock-id\" font-size=\"11\" font-family=\"Helvetica\" font-weight=\"normal\" font-style=\"normal\" text-decoration=\"none\" text-anchor=\"start\" kerning=\"auto\" stroke=\"none\" fill=\"#7C4007\" fill-opacity=\"1\" x=\"389\" y=\"173\">basic_hide6</text></g>LAYOUT--><g class=\"s-text\" stroke-width=\"0\" fill=\"#000000\" fill-opacity=\"1\" kerning=\"auto\" x-display=\"true\" x-id=\"\" stroke=\"none\" font-weight=\"normal\" font-style=\"normal\" font-family=\"Helvetica\" font-size=\"20\" text-anchor=\"start\" text-decoration=\"underline\" x-width=\"374.1\" x-height=\"22\" x-left=\"20\" x-top=\"222\" id=\"goog_2086231534\" x-inline-format=\"false\"><rect class=\"s-text-box\" stroke=\"none\" fill=\"#000000\" fill-opacity=\"0.001\" width=\"374.1\" height=\"22\" x=\"20\" y=\"222\"/><text class=\"s-text-l0\" xml:space=\"preserve\" stroke=\"none\" fill=\"inherit\" fill-opacity=\"1\" text-decoration=\"underline\" x=\"20\" y=\"240\">The Graphic Style</text></g><!--SHAPE{\"type\":\"s-rect\",\"id\":\"graphic_bcolor1\",\"display\":\"true\",\"desc\":null,\"svg\":{\"tag\":\"rect\",\"attrs\":{\"xmlns\":\"http://www.w3.org/2000/svg\",\"stroke\":\"#000000\",\"stroke-width\":\"1\",\"fill\":\"#FFFFFF\",\"fill-opacity\":\"1\",\"stroke-dasharray\":\"none\",\"rx\":\"0\",\"ry\":\"0\",\"width\":\"89\",\"height\":\"44\",\"x\":\"20\",\"y\":\"269\",\"id\":\"goog_2086231535\"}}}SHAPE--><!--LAYOUT<rect xmlns=\"http://www.w3.org/2000/svg\" stroke=\"#000000\" stroke-width=\"1\" fill=\"#FFFFFF\" fill-opacity=\"1\" class=\"s-rect\" x-display=\"true\" x-stroke-type=\"solid\" stroke-dasharray=\"none\" x-id=\"graphic_bcolor1\" rx=\"0\" ry=\"0\" width=\"89\" height=\"44\" x=\"20\" y=\"269\" id=\"goog_2086231535\"/>LAYOUT--><g class=\"s-text\" stroke-width=\"0\" fill=\"#000000\" fill-opacity=\"1\" kerning=\"auto\" x-display=\"true\" x-id=\"\" stroke=\"none\" font-weight=\"normal\" font-style=\"normal\" font-family=\"Courier New\" font-size=\"12\" text-anchor=\"start\" text-decoration=\"none\" x-width=\"245\" x-height=\"14\" x-left=\"20\" x-top=\"252\" id=\"goog_2086231536\" x-inline-format=\"false\"><rect class=\"s-text-box\" stroke=\"none\" fill=\"#000000\" fill-opacity=\"0.001\" width=\"245\" height=\"14\" x=\"20\" y=\"252\"/><text class=\"s-text-l0\" xml:space=\"preserve\" stroke=\"none\" fill=\"inherit\" fill-opacity=\"1\" text-decoration=\"none\" x=\"20\" y=\"260\">Border Color: To red from black.</text></g><!--SHAPE{\"type\":\"s-ellipse\",\"id\":\"graphic_bcolor2\",\"display\":\"true\",\"desc\":null,\"svg\":{\"tag\":\"ellipse\",\"attrs\":{\"xmlns\":\"http://www.w3.org/2000/svg\",\"stroke\":\"#000000\",\"stroke-width\":\"1\",\"fill\":\"#FFFFFF\",\"fill-opacity\":\"1\",\"stroke-dasharray\":\"none\",\"rx\":\"38.05\",\"ry\":\"23\",\"cx\":\"167.05\",\"cy\":\"291\",\"id\":\"goog_2086231537\"}}}SHAPE--><!--LAYOUT<ellipse xmlns=\"http://www.w3.org/2000/svg\" stroke=\"#000000\" stroke-width=\"1\" fill=\"#FFFFFF\" fill-opacity=\"1\" class=\"s-ellipse\" x-display=\"true\" x-stroke-type=\"solid\" stroke-dasharray=\"none\" x-id=\"graphic_bcolor2\" rx=\"38.05\" ry=\"23\" cx=\"167.05\" cy=\"291\" id=\"goog_2086231537\"/>LAYOUT--><!--SHAPE{\"type\":\"s-line\",\"id\":\"graphic_bcolor3\",\"display\":\"true\",\"desc\":null,\"svg\":{\"tag\":\"line\",\"attrs\":{\"xmlns\":\"http://www.w3.org/2000/svg\",\"stroke\":\"#000000\",\"stroke-width\":\"1\",\"fill\":\"none\",\"stroke-dasharray\":\"none\",\"x1\":\"227.1\",\"x2\":\"286.1\",\"y1\":\"276\",\"y2\":\"302\",\"id\":\"goog_2086231538\"}}}SHAPE--><!--LAYOUT<line xmlns=\"http://www.w3.org/2000/svg\" stroke=\"#000000\" stroke-width=\"1\" fill=\"none\" class=\"s-line\" x-display=\"true\" x-stroke-type=\"solid\" stroke-dasharray=\"none\" x-id=\"graphic_bcolor3\" x1=\"227.1\" x2=\"286.1\" y1=\"276\" y2=\"302\" id=\"goog_2086231538\"/>LAYOUT--><!--SHAPE{\"type\":\"s-rect\",\"id\":\"graphic_bcolor4\",\"display\":\"true\",\"desc\":null,\"svg\":{\"tag\":\"rect\",\"attrs\":{\"xmlns\":\"http://www.w3.org/2000/svg\",\"stroke\":\"#ff0000\",\"stroke-width\":\"1\",\"fill\":\"#e5b9b7\",\"fill-opacity\":\"1\",\"stroke-dasharray\":\"none\",\"rx\":\"0\",\"ry\":\"0\",\"width\":\"89\",\"height\":\"44\",\"x\":\"311.1\",\"y\":\"268\",\"id\":\"goog_2086231539\"}}}SHAPE--><!--LAYOUT<rect xmlns=\"http://www.w3.org/2000/svg\" stroke=\"#ff0000\" stroke-width=\"1\" fill=\"#e5b9b7\" fill-opacity=\"1\" class=\"s-rect\" x-display=\"true\" x-stroke-type=\"solid\" stroke-dasharray=\"none\" x-id=\"graphic_bcolor4\" rx=\"0\" ry=\"0\" width=\"89\" height=\"44\" x=\"311.1\" y=\"268\" id=\"goog_2086231539\"/>LAYOUT--><g class=\"s-text\" stroke-width=\"0\" fill=\"#000000\" fill-opacity=\"1\" kerning=\"auto\" x-display=\"true\" x-id=\"\" stroke=\"none\" font-weight=\"normal\" font-style=\"normal\" font-family=\"Courier New\" font-size=\"12\" text-anchor=\"start\" text-decoration=\"none\" x-width=\"182.1\" x-height=\"14\" x-left=\"311\" x-top=\"316.9\" id=\"goog_2086231540\" x-inline-format=\"false\"><rect class=\"s-text-box\" stroke=\"none\" fill=\"#000000\" fill-opacity=\"0.001\" width=\"182.1\" height=\"14\" x=\"311\" y=\"316.9\"/><text class=\"s-text-l0\" xml:space=\"preserve\" stroke=\"none\" fill=\"inherit\" fill-opacity=\"1\" text-decoration=\"none\" x=\"311\" y=\"324.9\">To none from red.</text></g><g class=\"s-text\" stroke-width=\"0\" fill=\"#000000\" fill-opacity=\"1\" kerning=\"auto\" x-display=\"true\" x-id=\"\" stroke=\"none\" font-weight=\"normal\" font-style=\"normal\" font-family=\"Courier New\" font-size=\"12\" text-anchor=\"start\" text-decoration=\"none\" x-width=\"245\" x-height=\"14\" x-left=\"20\" x-top=\"332\" id=\"goog_2086231541\" x-inline-format=\"false\"><rect class=\"s-text-box\" stroke=\"none\" fill=\"#000000\" fill-opacity=\"0.001\" width=\"245\" height=\"14\" x=\"20\" y=\"332\"/><text class=\"s-text-l0\" xml:space=\"preserve\" stroke=\"none\" fill=\"inherit\" fill-opacity=\"1\" text-decoration=\"none\" x=\"20\" y=\"340\">Border Width: To 5 from 1.</text></g><!--SHAPE{\"type\":\"s-rect\",\"id\":\"graphic_bwidth1\",\"display\":\"true\",\"desc\":null,\"svg\":{\"tag\":\"rect\",\"attrs\":{\"xmlns\":\"http://www.w3.org/2000/svg\",\"stroke\":\"#000000\",\"stroke-width\":\"1\",\"fill\":\"#FFFFFF\",\"fill-opacity\":\"1\",\"stroke-dasharray\":\"none\",\"rx\":\"0\",\"ry\":\"0\",\"width\":\"89\",\"height\":\"44\",\"x\":\"20\",\"y\":\"350\",\"id\":\"goog_2086231542\"}}}SHAPE--><!--LAYOUT<rect xmlns=\"http://www.w3.org/2000/svg\" stroke=\"#000000\" stroke-width=\"1\" fill=\"#FFFFFF\" fill-opacity=\"1\" class=\"s-rect\" x-display=\"true\" x-stroke-type=\"solid\" stroke-dasharray=\"none\" x-id=\"graphic_bwidth1\" rx=\"0\" ry=\"0\" width=\"89\" height=\"44\" x=\"20\" y=\"350\" id=\"goog_2086231542\"/>LAYOUT--><!--SHAPE{\"type\":\"s-ellipse\",\"id\":\"graphic_bwidth2\",\"display\":\"true\",\"desc\":null,\"svg\":{\"tag\":\"ellipse\",\"attrs\":{\"xmlns\":\"http://www.w3.org/2000/svg\",\"stroke\":\"#000000\",\"stroke-width\":\"1\",\"fill\":\"#FFFFFF\",\"fill-opacity\":\"1\",\"stroke-dasharray\":\"none\",\"rx\":\"38.05\",\"ry\":\"23\",\"cx\":\"167.05\",\"cy\":\"370.9\",\"id\":\"goog_2086231543\"}}}SHAPE--><!--LAYOUT<ellipse xmlns=\"http://www.w3.org/2000/svg\" stroke=\"#000000\" stroke-width=\"1\" fill=\"#FFFFFF\" fill-opacity=\"1\" class=\"s-ellipse\" x-display=\"true\" x-stroke-type=\"solid\" stroke-dasharray=\"none\" x-id=\"graphic_bwidth2\" rx=\"38.05\" ry=\"23\" cx=\"167.05\" cy=\"370.9\" id=\"goog_2086231543\"/>LAYOUT--><!--SHAPE{\"type\":\"s-line\",\"id\":\"graphic_bwidth3\",\"display\":\"true\",\"desc\":null,\"svg\":{\"tag\":\"line\",\"attrs\":{\"xmlns\":\"http://www.w3.org/2000/svg\",\"stroke\":\"#000000\",\"stroke-width\":\"1\",\"fill\":\"none\",\"stroke-dasharray\":\"none\",\"x2\":\"286.1\",\"y1\":\"355.9\",\"y2\":\"381.9\",\"x1\":\"227.1\",\"id\":\"goog_2086231544\"}}}SHAPE--><!--LAYOUT<line xmlns=\"http://www.w3.org/2000/svg\" stroke=\"#000000\" stroke-width=\"1\" fill=\"none\" class=\"s-line\" x-display=\"true\" x-stroke-type=\"solid\" stroke-dasharray=\"none\" x-id=\"graphic_bwidth3\" x2=\"286.1\" y1=\"355.9\" y2=\"381.9\" x1=\"227.1\" id=\"goog_2086231544\"/>LAYOUT--><!--SHAPE{\"type\":\"s-rect\",\"id\":\"graphic_bwidth4\",\"display\":\"true\",\"desc\":null,\"svg\":{\"tag\":\"rect\",\"attrs\":{\"xmlns\":\"http://www.w3.org/2000/svg\",\"stroke\":\"#ff0000\",\"stroke-width\":\"1\",\"fill\":\"#e5b9b7\",\"fill-opacity\":\"1\",\"stroke-dasharray\":\"none\",\"rx\":\"0\",\"ry\":\"0\",\"width\":\"89\",\"height\":\"44\",\"x\":\"311.1\",\"y\":\"343\",\"stroke-opacity\":\"0\",\"id\":\"goog_2086231545\"}}}SHAPE--><!--LAYOUT<rect xmlns=\"http://www.w3.org/2000/svg\" stroke=\"#ff0000\" stroke-width=\"1\" fill=\"#e5b9b7\" fill-opacity=\"1\" class=\"s-rect\" x-display=\"true\" x-stroke-type=\"solid\" stroke-dasharray=\"none\" x-id=\"graphic_bwidth4\" rx=\"0\" ry=\"0\" width=\"89\" height=\"44\" x=\"311.1\" y=\"343\" stroke-opacity=\"0\" id=\"goog_2086231545\"/>LAYOUT--><g class=\"s-text\" stroke-width=\"0\" fill=\"#000000\" fill-opacity=\"1\" kerning=\"auto\" x-display=\"true\" x-id=\"\" stroke=\"none\" font-weight=\"normal\" font-style=\"normal\" font-family=\"Courier New\" font-size=\"12\" text-anchor=\"start\" text-decoration=\"none\" x-width=\"182.1\" x-height=\"14\" x-left=\"311\" x-top=\"391.9\" id=\"goog_2086231546\" x-inline-format=\"false\"><rect class=\"s-text-box\" stroke=\"none\" fill=\"#000000\" fill-opacity=\"0.001\" width=\"182.1\" height=\"14\" x=\"311\" y=\"391.9\"/><text class=\"s-text-l0\" xml:space=\"preserve\" stroke=\"none\" fill=\"inherit\" fill-opacity=\"1\" text-decoration=\"none\" x=\"311\" y=\"399.9\">To 2 from none(0).</text></g><!--SHAPE{\"type\":\"s-rect\",\"id\":\"graphic_bwidth5\",\"display\":\"true\",\"desc\":null,\"svg\":{\"tag\":\"rect\",\"attrs\":{\"xmlns\":\"http://www.w3.org/2000/svg\",\"stroke\":\"#ff0000\",\"stroke-width\":\"1\",\"fill\":\"#e5b9b7\",\"fill-opacity\":\"1\",\"stroke-dasharray\":\"none\",\"rx\":\"0\",\"ry\":\"0\",\"width\":\"89\",\"height\":\"44\",\"x\":\"448.1\",\"y\":\"343\",\"id\":\"goog_2086231547\"}}}SHAPE--><!--LAYOUT<rect xmlns=\"http://www.w3.org/2000/svg\" stroke=\"#ff0000\" stroke-width=\"1\" fill=\"#e5b9b7\" fill-opacity=\"1\" class=\"s-rect\" x-display=\"true\" x-stroke-type=\"solid\" stroke-dasharray=\"none\" x-id=\"graphic_bwidth5\" rx=\"0\" ry=\"0\" width=\"89\" height=\"44\" x=\"448.1\" y=\"343\" id=\"goog_2086231547\"/>LAYOUT--><g class=\"s-text\" stroke-width=\"0\" fill=\"#000000\" fill-opacity=\"1\" kerning=\"auto\" x-display=\"true\" x-id=\"\" stroke=\"none\" font-weight=\"normal\" font-style=\"normal\" font-family=\"Courier New\" font-size=\"12\" text-anchor=\"start\" text-decoration=\"none\" x-width=\"129.5\" x-height=\"14\" x-left=\"448\" x-top=\"391.9\" id=\"goog_2086231548\" x-inline-format=\"false\"><rect class=\"s-text-box\" stroke=\"none\" fill=\"#000000\" fill-opacity=\"0.001\" width=\"129.5\" height=\"14\" x=\"448\" y=\"391.9\"/><text class=\"s-text-l0\" xml:space=\"preserve\" stroke=\"none\" fill=\"inherit\" fill-opacity=\"1\" text-decoration=\"none\" x=\"448\" y=\"399.9\">To none(0) from 1.</text></g><g class=\"s-text\" stroke-width=\"0\" fill=\"#000000\" fill-opacity=\"1\" kerning=\"auto\" x-display=\"true\" x-id=\"\" stroke=\"none\" font-weight=\"normal\" font-style=\"normal\" font-family=\"Courier New\" font-size=\"12\" text-anchor=\"start\" text-decoration=\"none\" x-width=\"245\" x-height=\"14\" x-left=\"20\" x-top=\"412\" id=\"goog_2086231549\" x-inline-format=\"false\"><rect class=\"s-text-box\" stroke=\"none\" fill=\"#000000\" fill-opacity=\"0.001\" width=\"245\" height=\"14\" x=\"20\" y=\"412\"/><text class=\"s-text-l0\" xml:space=\"preserve\" stroke=\"none\" fill=\"inherit\" fill-opacity=\"1\" text-decoration=\"none\" x=\"20\" y=\"420\">Fill Color: To red from white.</text></g><!--SHAPE{\"type\":\"s-rect\",\"id\":\"graphic_fcolor1\",\"display\":\"true\",\"desc\":null,\"svg\":{\"tag\":\"rect\",\"attrs\":{\"xmlns\":\"http://www.w3.org/2000/svg\",\"stroke\":\"#000000\",\"stroke-width\":\"1\",\"fill\":\"#FFFFFF\",\"fill-opacity\":\"1\",\"stroke-dasharray\":\"none\",\"rx\":\"0\",\"ry\":\"0\",\"width\":\"89\",\"height\":\"44\",\"x\":\"20\",\"y\":\"428.8\",\"id\":\"goog_2086231550\"}}}SHAPE--><!--LAYOUT<rect xmlns=\"http://www.w3.org/2000/svg\" stroke=\"#000000\" stroke-width=\"1\" fill=\"#FFFFFF\" fill-opacity=\"1\" class=\"s-rect\" x-display=\"true\" x-stroke-type=\"solid\" stroke-dasharray=\"none\" x-id=\"graphic_fcolor1\" rx=\"0\" ry=\"0\" width=\"89\" height=\"44\" x=\"20\" y=\"428.8\" id=\"goog_2086231550\"/>LAYOUT--><!--SHAPE{\"type\":\"s-ellipse\",\"id\":\"graphic_fcolor2\",\"display\":\"true\",\"desc\":null,\"svg\":{\"tag\":\"ellipse\",\"attrs\":{\"xmlns\":\"http://www.w3.org/2000/svg\",\"stroke\":\"#000000\",\"stroke-width\":\"1\",\"fill\":\"#FFFFFF\",\"fill-opacity\":\"1\",\"stroke-dasharray\":\"none\",\"rx\":\"38.05\",\"ry\":\"23\",\"cx\":\"167.05\",\"cy\":\"450.8\",\"id\":\"goog_2086231551\"}}}SHAPE--><!--LAYOUT<ellipse xmlns=\"http://www.w3.org/2000/svg\" stroke=\"#000000\" stroke-width=\"1\" fill=\"#FFFFFF\" fill-opacity=\"1\" class=\"s-ellipse\" x-display=\"true\" x-stroke-type=\"solid\" stroke-dasharray=\"none\" x-id=\"graphic_fcolor2\" rx=\"38.05\" ry=\"23\" cx=\"167.05\" cy=\"450.8\" id=\"goog_2086231551\"/>LAYOUT--><g class=\"s-text\" stroke-width=\"0\" fill=\"#000000\" fill-opacity=\"1\" kerning=\"auto\" x-display=\"true\" x-id=\"\" stroke=\"none\" font-weight=\"normal\" font-style=\"normal\" font-family=\"Courier New\" font-size=\"12\" text-anchor=\"start\" text-decoration=\"none\" x-width=\"182.1\" x-height=\"14\" x-left=\"226\" x-top=\"476.7\" id=\"goog_2086231552\" x-inline-format=\"false\"><rect class=\"s-text-box\" stroke=\"none\" fill=\"#000000\" fill-opacity=\"0.001\" width=\"182.1\" height=\"14\" x=\"226\" y=\"476.7\"/><text class=\"s-text-l0\" xml:space=\"preserve\" stroke=\"none\" fill=\"inherit\" fill-opacity=\"1\" text-decoration=\"none\" x=\"226\" y=\"484.7\">To none from black.</text></g><ellipse stroke=\"#000000\" stroke-width=\"1\" fill=\"#FFFFFF\" fill-opacity=\"1\" class=\"s-ellipse\" x-display=\"true\" x-stroke-type=\"solid\" stroke-dasharray=\"none\" x-id=\"\" rx=\"37.5\" ry=\"15.5\" cx=\"302.5\" cy=\"434.5\" id=\"goog_2086231553\"/><!--SHAPE{\"type\":\"s-rect\",\"id\":\"graphic_fcolor3\",\"display\":\"true\",\"desc\":null,\"svg\":{\"tag\":\"rect\",\"attrs\":{\"xmlns\":\"http://www.w3.org/2000/svg\",\"stroke\":\"#000000\",\"stroke-width\":\"1\",\"fill\":\"#000000\",\"fill-opacity\":\"1\",\"stroke-dasharray\":\"none\",\"rx\":\"0\",\"ry\":\"0\",\"width\":\"73\",\"height\":\"35.2\",\"x\":\"226\",\"y\":\"427.8\",\"id\":\"goog_2086231554\"}}}SHAPE--><!--LAYOUT<rect xmlns=\"http://www.w3.org/2000/svg\" stroke=\"#000000\" stroke-width=\"1\" fill=\"#000000\" fill-opacity=\"1\" class=\"s-rect\" x-display=\"true\" x-stroke-type=\"solid\" stroke-dasharray=\"none\" x-id=\"graphic_fcolor3\" rx=\"0\" ry=\"0\" width=\"73\" height=\"35.2\" x=\"226\" y=\"427.8\" id=\"goog_2086231554\"/>LAYOUT--><g class=\"s-text\" stroke-width=\"0\" fill=\"#000000\" fill-opacity=\"1\" kerning=\"auto\" x-display=\"true\" x-id=\"\" stroke=\"none\" font-weight=\"normal\" font-style=\"normal\" font-family=\"Courier New\" font-size=\"12\" text-anchor=\"start\" text-decoration=\"none\" x-width=\"182.1\" x-height=\"14\" x-left=\"371\" x-top=\"476.7\" id=\"goog_2086231555\" x-inline-format=\"false\"><rect class=\"s-text-box\" stroke=\"none\" fill=\"#000000\" fill-opacity=\"0.001\" width=\"182.1\" height=\"14\" x=\"371\" y=\"476.7\"/><text class=\"s-text-l0\" xml:space=\"preserve\" stroke=\"none\" fill=\"inherit\" fill-opacity=\"1\" text-decoration=\"none\" x=\"371\" y=\"484.7\">To red from none.</text></g><ellipse stroke=\"#000000\" stroke-width=\"1\" fill=\"#FFFFFF\" fill-opacity=\"1\" class=\"s-ellipse\" x-display=\"true\" x-stroke-type=\"solid\" stroke-dasharray=\"none\" x-id=\"\" rx=\"37.5\" ry=\"15.5\" cx=\"447.5\" cy=\"434.5\" id=\"goog_2086231556\"/><!--SHAPE{\"type\":\"s-rect\",\"id\":\"graphic_fcolor4\",\"display\":\"true\",\"desc\":null,\"svg\":{\"tag\":\"rect\",\"attrs\":{\"xmlns\":\"http://www.w3.org/2000/svg\",\"stroke\":\"#000000\",\"stroke-width\":\"1\",\"fill\":\"none\",\"fill-opacity\":\"1\",\"stroke-dasharray\":\"none\",\"rx\":\"0\",\"ry\":\"0\",\"width\":\"73\",\"height\":\"35.2\",\"x\":\"371\",\"y\":\"427.8\",\"id\":\"goog_2086231557\"}}}SHAPE--><!--LAYOUT<rect xmlns=\"http://www.w3.org/2000/svg\" stroke=\"#000000\" stroke-width=\"1\" fill=\"none\" fill-opacity=\"1\" class=\"s-rect\" x-display=\"true\" x-stroke-type=\"solid\" stroke-dasharray=\"none\" x-id=\"graphic_fcolor4\" rx=\"0\" ry=\"0\" width=\"73\" height=\"35.2\" x=\"371\" y=\"427.8\" id=\"goog_2086231557\"/>LAYOUT--><g class=\"s-text\" stroke-width=\"0\" fill=\"#000000\" fill-opacity=\"1\" kerning=\"auto\" x-display=\"true\" x-id=\"\" stroke=\"none\" font-weight=\"normal\" font-style=\"normal\" font-family=\"Helvetica\" font-size=\"20\" text-anchor=\"start\" text-decoration=\"underline\" x-width=\"374.1\" x-height=\"22\" x-left=\"20\" x-top=\"497\" id=\"goog_2086231558\" x-inline-format=\"false\"><rect class=\"s-text-box\" stroke=\"none\" fill=\"#000000\" fill-opacity=\"0.001\" width=\"374.1\" height=\"22\" x=\"20\" y=\"497\"/><text class=\"s-text-l0\" xml:space=\"preserve\" stroke=\"none\" fill=\"inherit\" fill-opacity=\"1\" text-decoration=\"underline\" x=\"20\" y=\"515\">The Text Style</text></g><g class=\"s-text\" stroke-width=\"0\" fill=\"#000000\" fill-opacity=\"1\" kerning=\"auto\" x-display=\"true\" x-id=\"\" stroke=\"none\" font-weight=\"normal\" font-style=\"normal\" font-family=\"Courier New\" font-size=\"12\" text-anchor=\"start\" text-decoration=\"none\" x-width=\"122\" x-height=\"14\" x-left=\"20\" x-top=\"527\" id=\"goog_2086231559\" x-inline-format=\"false\"><rect class=\"s-text-box\" stroke=\"none\" fill=\"#000000\" fill-opacity=\"0.001\" width=\"122\" height=\"14\" x=\"20\" y=\"527\"/><text class=\"s-text-l0\" xml:space=\"preserve\" stroke=\"none\" fill=\"inherit\" fill-opacity=\"1\" text-decoration=\"none\" x=\"20\" y=\"535\">Bold Style:</text></g><!--SHAPE{\"type\":\"s-text\",\"id\":\"text_b1\",\"display\":\"true\",\"desc\":null,\"line-height\":\"\",\"valign\":\"\",\"box\":{\"x\":20,\"y\":549.2,\"width\":131,\"height\":15},\"inline-format\":\"false\",\"text\":[\"To bold from normal.\"],\"svg\":{\"tag\":\"g\",\"attrs\":{\"xmlns\":\"http://www.w3.org/2000/svg\",\"stroke-width\":\"0\",\"fill\":\"#000000\",\"fill-opacity\":\"1\",\"kerning\":\"auto\",\"font-size\":\"12\",\"font-family\":\"Helvetica\",\"font-weight\":\"normal\",\"font-style\":\"normal\",\"text-anchor\":\"start\",\"text-decoration\":\"none\",\"id\":\"goog_2086231560\"},\"content\":\"<text xmlns=\\\"http://www.w3.org/2000/svg\\\" class=\\\"s-text-l0\\\" xml:space=\\\"preserve\\\" stroke=\\\"none\\\" fill=\\\"inherit\\\" fill-opacity=\\\"1\\\" text-decoration=\\\"none\\\" x=\\\"20\\\" y=\\\"560.2\\\">To bold from normal.</text>\"}}SHAPE--><!--LAYOUT<g xmlns=\"http://www.w3.org/2000/svg\" class=\"s-text\" stroke-width=\"0\" fill=\"#000000\" fill-opacity=\"1\" kerning=\"auto\" x-display=\"true\" x-id=\"text_b1\" font-size=\"12\" font-family=\"Helvetica\" font-weight=\"normal\" font-style=\"normal\" text-anchor=\"start\" text-decoration=\"none\" x-width=\"131\" x-height=\"15\" x-left=\"20\" x-top=\"549.2\" id=\"goog_2086231560\" x-inline-format=\"false\"><rect class=\"s-text-box\" stroke=\"none\" fill=\"#000000\" fill-opacity=\"0.001\" width=\"131\" height=\"15\" x=\"20\" y=\"549.2\"/><text class=\"s-text-l0\" xml:space=\"preserve\" stroke=\"none\" fill=\"inherit\" fill-opacity=\"1\" text-decoration=\"none\" x=\"20\" y=\"560.2\">To bold from normal.</text></g>LAYOUT--><!--SHAPE{\"type\":\"s-text\",\"id\":\"text_b2\",\"display\":\"true\",\"desc\":null,\"line-height\":\"\",\"valign\":\"\",\"box\":{\"x\":20,\"y\":567,\"width\":144,\"height\":15},\"inline-format\":\"false\",\"text\":[\"To normal from bold.\"],\"svg\":{\"tag\":\"g\",\"attrs\":{\"xmlns\":\"http://www.w3.org/2000/svg\",\"stroke-width\":\"0\",\"fill\":\"#000000\",\"fill-opacity\":\"1\",\"kerning\":\"auto\",\"stroke\":\"none\",\"font-weight\":\"bold\",\"font-style\":\"normal\",\"font-family\":\"Helvetica\",\"font-size\":\"12\",\"text-anchor\":\"start\",\"text-decoration\":\"none\",\"id\":\"goog_2086231561\"},\"content\":\"<text xmlns=\\\"http://www.w3.org/2000/svg\\\" class=\\\"s-text-l0\\\" xml:space=\\\"preserve\\\" stroke=\\\"none\\\" fill=\\\"inherit\\\" fill-opacity=\\\"1\\\" text-decoration=\\\"none\\\" x=\\\"20\\\" y=\\\"578\\\">To normal from bold.</text>\"}}SHAPE--><!--LAYOUT<g xmlns=\"http://www.w3.org/2000/svg\" class=\"s-text\" stroke-width=\"0\" fill=\"#000000\" fill-opacity=\"1\" kerning=\"auto\" x-display=\"true\" x-id=\"text_b2\" stroke=\"none\" font-weight=\"bold\" font-style=\"normal\" font-family=\"Helvetica\" font-size=\"12\" text-anchor=\"start\" text-decoration=\"none\" x-width=\"144\" x-height=\"15\" x-left=\"20\" x-top=\"567\" id=\"goog_2086231561\" x-inline-format=\"false\"><rect class=\"s-text-box\" stroke=\"none\" fill=\"#000000\" fill-opacity=\"0.001\" width=\"144\" height=\"15\" x=\"20\" y=\"567\"/><text class=\"s-text-l0\" xml:space=\"preserve\" stroke=\"none\" fill=\"inherit\" fill-opacity=\"1\" text-decoration=\"none\" x=\"20\" y=\"578\">To normal from bold.</text></g>LAYOUT--><g class=\"s-text\" stroke-width=\"0\" fill=\"#000000\" fill-opacity=\"1\" kerning=\"auto\" x-display=\"true\" x-id=\"\" stroke=\"none\" font-weight=\"normal\" font-style=\"normal\" font-family=\"Courier New\" font-size=\"12\" text-anchor=\"start\" text-decoration=\"none\" x-width=\"122\" x-height=\"14\" x-left=\"150\" x-top=\"527\" id=\"goog_2086231562\" x-inline-format=\"false\"><rect class=\"s-text-box\" stroke=\"none\" fill=\"#000000\" fill-opacity=\"0.001\" width=\"122\" height=\"14\" x=\"150\" y=\"527\"/><text class=\"s-text-l0\" xml:space=\"preserve\" stroke=\"none\" fill=\"inherit\" fill-opacity=\"1\" text-decoration=\"none\" x=\"150\" y=\"535\">Italic Style:</text></g><!--SHAPE{\"type\":\"s-text\",\"id\":\"text_i1\",\"display\":\"true\",\"desc\":null,\"line-height\":\"\",\"valign\":\"\",\"box\":{\"x\":150,\"y\":549.2,\"width\":132,\"height\":15},\"inline-format\":\"false\",\"text\":[\"To italic from normal.\"],\"svg\":{\"tag\":\"g\",\"attrs\":{\"xmlns\":\"http://www.w3.org/2000/svg\",\"stroke-width\":\"0\",\"fill\":\"#000000\",\"fill-opacity\":\"1\",\"kerning\":\"auto\",\"stroke\":\"none\",\"font-weight\":\"normal\",\"font-style\":\"normal\",\"font-family\":\"Helvetica\",\"font-size\":\"12\",\"text-anchor\":\"start\",\"text-decoration\":\"none\",\"id\":\"goog_2086231563\"},\"content\":\"<text xmlns=\\\"http://www.w3.org/2000/svg\\\" class=\\\"s-text-l0\\\" xml:space=\\\"preserve\\\" stroke=\\\"none\\\" fill=\\\"inherit\\\" fill-opacity=\\\"1\\\" text-decoration=\\\"none\\\" x=\\\"150\\\" y=\\\"560.2\\\">To italic from normal.</text>\"}}SHAPE--><!--LAYOUT<g xmlns=\"http://www.w3.org/2000/svg\" class=\"s-text\" stroke-width=\"0\" fill=\"#000000\" fill-opacity=\"1\" kerning=\"auto\" x-display=\"true\" x-id=\"text_i1\" stroke=\"none\" font-weight=\"normal\" font-style=\"normal\" font-family=\"Helvetica\" font-size=\"12\" text-anchor=\"start\" text-decoration=\"none\" x-width=\"132\" x-height=\"15\" x-left=\"150\" x-top=\"549.2\" id=\"goog_2086231563\" x-inline-format=\"false\"><rect class=\"s-text-box\" stroke=\"none\" fill=\"#000000\" fill-opacity=\"0.001\" width=\"132\" height=\"15\" x=\"150\" y=\"549.2\"/><text class=\"s-text-l0\" xml:space=\"preserve\" stroke=\"none\" fill=\"inherit\" fill-opacity=\"1\" text-decoration=\"none\" x=\"150\" y=\"560.2\">To italic from normal.</text></g>LAYOUT--><!--SHAPE{\"type\":\"s-text\",\"id\":\"text_i2\",\"display\":\"true\",\"desc\":null,\"line-height\":\"\",\"valign\":\"\",\"box\":{\"x\":150,\"y\":567,\"width\":146,\"height\":15},\"inline-format\":\"false\",\"text\":[\"To normal from italic.\"],\"svg\":{\"tag\":\"g\",\"attrs\":{\"xmlns\":\"http://www.w3.org/2000/svg\",\"stroke-width\":\"0\",\"fill\":\"#000000\",\"fill-opacity\":\"1\",\"kerning\":\"auto\",\"stroke\":\"none\",\"font-weight\":\"normal\",\"font-style\":\"italic\",\"font-family\":\"Helvetica\",\"font-size\":\"12\",\"text-anchor\":\"start\",\"text-decoration\":\"none\",\"id\":\"goog_2086231564\"},\"content\":\"<text xmlns=\\\"http://www.w3.org/2000/svg\\\" class=\\\"s-text-l0\\\" xml:space=\\\"preserve\\\" stroke=\\\"none\\\" fill=\\\"inherit\\\" fill-opacity=\\\"1\\\" text-decoration=\\\"none\\\" x=\\\"150\\\" y=\\\"578\\\">To normal from italic.</text>\"}}SHAPE--><!--LAYOUT<g xmlns=\"http://www.w3.org/2000/svg\" class=\"s-text\" stroke-width=\"0\" fill=\"#000000\" fill-opacity=\"1\" kerning=\"auto\" x-display=\"true\" x-id=\"text_i2\" stroke=\"none\" font-weight=\"normal\" font-style=\"italic\" font-family=\"Helvetica\" font-size=\"12\" text-anchor=\"start\" text-decoration=\"none\" x-width=\"146\" x-height=\"15\" x-left=\"150\" x-top=\"567\" id=\"goog_2086231564\" x-inline-format=\"false\"><rect class=\"s-text-box\" stroke=\"none\" fill=\"#000000\" fill-opacity=\"0.001\" width=\"146\" height=\"15\" x=\"150\" y=\"567\"/><text class=\"s-text-l0\" xml:space=\"preserve\" stroke=\"none\" fill=\"inherit\" fill-opacity=\"1\" text-decoration=\"none\" x=\"150\" y=\"578\">To normal from italic.</text></g>LAYOUT--><g class=\"s-text\" stroke-width=\"0\" fill=\"#000000\" fill-opacity=\"1\" kerning=\"auto\" x-display=\"true\" x-id=\"\" stroke=\"none\" font-weight=\"normal\" font-style=\"normal\" font-family=\"Courier New\" font-size=\"12\" text-anchor=\"start\" text-decoration=\"none\" x-width=\"122\" x-height=\"14\" x-left=\"280\" x-top=\"527\" id=\"goog_2086231565\" x-inline-format=\"false\"><rect class=\"s-text-box\" stroke=\"none\" fill=\"#000000\" fill-opacity=\"0.001\" width=\"122\" height=\"14\" x=\"280\" y=\"527\"/><text class=\"s-text-l0\" xml:space=\"preserve\" stroke=\"none\" fill=\"inherit\" fill-opacity=\"1\" text-decoration=\"none\" x=\"280\" y=\"535\">Underline Style:</text></g><!--SHAPE{\"type\":\"s-text\",\"id\":\"text_u1\",\"display\":\"true\",\"desc\":null,\"line-height\":\"\",\"valign\":\"\",\"box\":{\"x\":280,\"y\":549.2,\"width\":132,\"height\":15},\"inline-format\":\"false\",\"text\":[\"To underline from none.\"],\"svg\":{\"tag\":\"g\",\"attrs\":{\"xmlns\":\"http://www.w3.org/2000/svg\",\"stroke-width\":\"0\",\"fill\":\"#000000\",\"fill-opacity\":\"1\",\"kerning\":\"auto\",\"stroke\":\"none\",\"font-weight\":\"normal\",\"font-style\":\"normal\",\"font-family\":\"Helvetica\",\"font-size\":\"12\",\"text-anchor\":\"start\",\"text-decoration\":\"none\",\"id\":\"goog_2086231566\"},\"content\":\"<text xmlns=\\\"http://www.w3.org/2000/svg\\\" class=\\\"s-text-l0\\\" xml:space=\\\"preserve\\\" stroke=\\\"none\\\" fill=\\\"inherit\\\" fill-opacity=\\\"1\\\" text-decoration=\\\"none\\\" x=\\\"280\\\" y=\\\"560.2\\\">To underline from none.</text>\"}}SHAPE--><!--LAYOUT<g xmlns=\"http://www.w3.org/2000/svg\" class=\"s-text\" stroke-width=\"0\" fill=\"#000000\" fill-opacity=\"1\" kerning=\"auto\" x-display=\"true\" x-id=\"text_u1\" stroke=\"none\" font-weight=\"normal\" font-style=\"normal\" font-family=\"Helvetica\" font-size=\"12\" text-anchor=\"start\" text-decoration=\"none\" x-width=\"132\" x-height=\"15\" x-left=\"280\" x-top=\"549.2\" id=\"goog_2086231566\" x-inline-format=\"false\"><rect class=\"s-text-box\" stroke=\"none\" fill=\"#000000\" fill-opacity=\"0.001\" width=\"132\" height=\"15\" x=\"280\" y=\"549.2\"/><text class=\"s-text-l0\" xml:space=\"preserve\" stroke=\"none\" fill=\"inherit\" fill-opacity=\"1\" text-decoration=\"none\" x=\"280\" y=\"560.2\">To underline from none.</text></g>LAYOUT--><!--SHAPE{\"type\":\"s-text\",\"id\":\"text_u2\",\"display\":\"true\",\"desc\":null,\"line-height\":\"\",\"valign\":\"\",\"box\":{\"x\":280,\"y\":567,\"width\":146,\"height\":15},\"inline-format\":\"false\",\"text\":[\"To none from underline.\"],\"svg\":{\"tag\":\"g\",\"attrs\":{\"xmlns\":\"http://www.w3.org/2000/svg\",\"stroke-width\":\"0\",\"fill\":\"#000000\",\"fill-opacity\":\"1\",\"kerning\":\"auto\",\"stroke\":\"none\",\"font-weight\":\"normal\",\"font-style\":\"normal\",\"font-family\":\"Helvetica\",\"font-size\":\"12\",\"text-anchor\":\"start\",\"text-decoration\":\"underline\",\"id\":\"goog_2086231567\"},\"content\":\"<text xmlns=\\\"http://www.w3.org/2000/svg\\\" class=\\\"s-text-l0\\\" xml:space=\\\"preserve\\\" stroke=\\\"none\\\" fill=\\\"inherit\\\" fill-opacity=\\\"1\\\" text-decoration=\\\"underline\\\" x=\\\"280\\\" y=\\\"578\\\">To none from underline.</text>\"}}SHAPE--><!--LAYOUT<g xmlns=\"http://www.w3.org/2000/svg\" class=\"s-text\" stroke-width=\"0\" fill=\"#000000\" fill-opacity=\"1\" kerning=\"auto\" x-display=\"true\" x-id=\"text_u2\" stroke=\"none\" font-weight=\"normal\" font-style=\"normal\" font-family=\"Helvetica\" font-size=\"12\" text-anchor=\"start\" text-decoration=\"underline\" x-width=\"146\" x-height=\"15\" x-left=\"280\" x-top=\"567\" id=\"goog_2086231567\" x-inline-format=\"false\"><rect class=\"s-text-box\" stroke=\"none\" fill=\"#000000\" fill-opacity=\"0.001\" width=\"146\" height=\"15\" x=\"280\" y=\"567\"/><text class=\"s-text-l0\" xml:space=\"preserve\" stroke=\"none\" fill=\"inherit\" fill-opacity=\"1\" text-decoration=\"underline\" x=\"280\" y=\"578\">To none from underline.</text></g>LAYOUT--><g class=\"s-text\" stroke-width=\"0\" fill=\"#000000\" fill-opacity=\"1\" kerning=\"auto\" x-display=\"true\" x-id=\"\" stroke=\"none\" font-weight=\"normal\" font-style=\"normal\" font-family=\"Courier New\" font-size=\"12\" text-anchor=\"start\" text-decoration=\"none\" x-width=\"136.7\" x-height=\"14\" x-left=\"425\" x-top=\"527\" id=\"goog_2086231568\" x-inline-format=\"false\"><rect class=\"s-text-box\" stroke=\"none\" fill=\"#000000\" fill-opacity=\"0.001\" width=\"136.7\" height=\"14\" x=\"425\" y=\"527\"/><text class=\"s-text-l0\" xml:space=\"preserve\" stroke=\"none\" fill=\"inherit\" fill-opacity=\"1\" text-decoration=\"none\" x=\"425\" y=\"535\">Line-Through Style:</text></g><!--SHAPE{\"type\":\"s-text\",\"id\":\"text_l1\",\"display\":\"true\",\"desc\":null,\"line-height\":\"\",\"valign\":\"\",\"box\":{\"x\":425,\"y\":549.2,\"width\":145,\"height\":15},\"inline-format\":\"false\",\"text\":[\"To line-through from none.\"],\"svg\":{\"tag\":\"g\",\"attrs\":{\"xmlns\":\"http://www.w3.org/2000/svg\",\"stroke-width\":\"0\",\"fill\":\"#000000\",\"fill-opacity\":\"1\",\"kerning\":\"auto\",\"stroke\":\"none\",\"font-weight\":\"normal\",\"font-style\":\"normal\",\"font-family\":\"Helvetica\",\"font-size\":\"12\",\"text-anchor\":\"start\",\"text-decoration\":\"none\",\"id\":\"goog_2086231569\"},\"content\":\"<text xmlns=\\\"http://www.w3.org/2000/svg\\\" class=\\\"s-text-l0\\\" xml:space=\\\"preserve\\\" stroke=\\\"none\\\" fill=\\\"inherit\\\" fill-opacity=\\\"1\\\" text-decoration=\\\"none\\\" x=\\\"425\\\" y=\\\"560.2\\\">To line-through from none.</text>\"}}SHAPE--><!--LAYOUT<g xmlns=\"http://www.w3.org/2000/svg\" class=\"s-text\" stroke-width=\"0\" fill=\"#000000\" fill-opacity=\"1\" kerning=\"auto\" x-display=\"true\" x-id=\"text_l1\" stroke=\"none\" font-weight=\"normal\" font-style=\"normal\" font-family=\"Helvetica\" font-size=\"12\" text-anchor=\"start\" text-decoration=\"none\" x-width=\"145\" x-height=\"15\" x-left=\"425\" x-top=\"549.2\" id=\"goog_2086231569\" x-inline-format=\"false\"><rect class=\"s-text-box\" stroke=\"none\" fill=\"#000000\" fill-opacity=\"0.001\" width=\"145\" height=\"15\" x=\"425\" y=\"549.2\"/><text class=\"s-text-l0\" xml:space=\"preserve\" stroke=\"none\" fill=\"inherit\" fill-opacity=\"1\" text-decoration=\"none\" x=\"425\" y=\"560.2\">To line-through from none.</text></g>LAYOUT--><!--SHAPE{\"type\":\"s-text\",\"id\":\"text_l2\",\"display\":\"true\",\"desc\":null,\"line-height\":\"\",\"valign\":\"\",\"box\":{\"x\":425,\"y\":567,\"width\":146,\"height\":15},\"inline-format\":\"false\",\"text\":[\"To none from line-through.\"],\"svg\":{\"tag\":\"g\",\"attrs\":{\"xmlns\":\"http://www.w3.org/2000/svg\",\"stroke-width\":\"0\",\"fill\":\"#000000\",\"fill-opacity\":\"1\",\"kerning\":\"auto\",\"stroke\":\"none\",\"font-weight\":\"normal\",\"font-style\":\"normal\",\"font-family\":\"Helvetica\",\"font-size\":\"12\",\"text-anchor\":\"start\",\"text-decoration\":\"line-through\",\"id\":\"goog_2086231570\"},\"content\":\"<text xmlns=\\\"http://www.w3.org/2000/svg\\\" class=\\\"s-text-l0\\\" xml:space=\\\"preserve\\\" stroke=\\\"none\\\" fill=\\\"inherit\\\" fill-opacity=\\\"1\\\" text-decoration=\\\"line-through\\\" x=\\\"425\\\" y=\\\"578\\\">To none from line-through.</text>\"}}SHAPE--><!--LAYOUT<g xmlns=\"http://www.w3.org/2000/svg\" class=\"s-text\" stroke-width=\"0\" fill=\"#000000\" fill-opacity=\"1\" kerning=\"auto\" x-display=\"true\" x-id=\"text_l2\" stroke=\"none\" font-weight=\"normal\" font-style=\"normal\" font-family=\"Helvetica\" font-size=\"12\" text-anchor=\"start\" text-decoration=\"line-through\" x-width=\"146\" x-height=\"15\" x-left=\"425\" x-top=\"567\" id=\"goog_2086231570\" x-inline-format=\"false\"><rect class=\"s-text-box\" stroke=\"none\" fill=\"#000000\" fill-opacity=\"0.001\" width=\"146\" height=\"15\" x=\"425\" y=\"567\"/><text class=\"s-text-l0\" xml:space=\"preserve\" stroke=\"none\" fill=\"inherit\" fill-opacity=\"1\" text-decoration=\"line-through\" x=\"425\" y=\"578\">To none from line-through.</text></g>LAYOUT--><!--SHAPE{\"type\":\"s-tblock\",\"id\":\"text_b3\",\"display\":\"true\",\"desc\":null,\"multiple\":\"false\",\"valign\":\"\",\"line-height\":\"\",\"box\":{\"x\":20,\"y\":586.2,\"width\":119,\"height\":14},\"inline-format\":\"false\",\"format\":{\"base\":\"\",\"type\":\"\"},\"value\":\"\",\"ref-id\":\"\",\"overflow\":\"\",\"word-wrap\":\"none\",\"svg\":{\"tag\":\"text\",\"attrs\":{\"x\":20,\"y\":595.2,\"xml:space\":\"preserve\",\"xmlns\":\"http://www.w3.org/2000/svg\",\"kerning\":\"auto\",\"fill\":\"#000000\",\"fill-opacity\":\"1\",\"font-size\":\"12\",\"font-family\":\"Helvetica\",\"font-weight\":\"normal\",\"font-style\":\"normal\",\"text-anchor\":\"start\",\"text-decoration\":\"none\",\"id\":\"goog_2086231571\"}}}SHAPE--><!--LAYOUT<g xmlns=\"http://www.w3.org/2000/svg\" class=\"s-tblock\" x-format-type=\"\" x-value=\"\" x-format-base=\"\" x-ref-id=\"\" kerning=\"auto\" x-display=\"true\" x-multiple=\"false\" x-id=\"text_b3\" fill=\"#000000\" fill-opacity=\"1\" font-size=\"12\" font-family=\"Helvetica\" font-weight=\"normal\" font-style=\"normal\" text-anchor=\"start\" text-decoration=\"none\" x-width=\"119\" x-height=\"14\" x-left=\"20\" x-top=\"586.2\" id=\"goog_2086231571\" x-inline-format=\"false\"><rect class=\"s-tblock-box\" stroke=\"#7C4007\" fill=\"#f4e2c4\" stroke-width=\"0.28\" fill-opacity=\"0.8\" width=\"119\" height=\"14\" x=\"20\" y=\"586.2\"/><text class=\"s-tblock-id\" font-size=\"11\" font-family=\"Helvetica\" font-weight=\"normal\" font-style=\"normal\" text-decoration=\"none\" text-anchor=\"start\" kerning=\"auto\" stroke=\"none\" fill=\"#7C4007\" fill-opacity=\"1\" x=\"22\" y=\"597.2\">text_b3</text></g>LAYOUT--><!--SHAPE{\"type\":\"s-tblock\",\"id\":\"text_b4\",\"display\":\"true\",\"desc\":null,\"multiple\":\"false\",\"valign\":\"\",\"line-height\":\"\",\"box\":{\"x\":20,\"y\":606,\"width\":119,\"height\":14},\"inline-format\":\"false\",\"format\":{\"base\":\"\",\"type\":\"\"},\"value\":\"\",\"ref-id\":\"\",\"overflow\":\"\",\"word-wrap\":\"none\",\"svg\":{\"tag\":\"text\",\"attrs\":{\"x\":20,\"y\":615,\"xml:space\":\"preserve\",\"xmlns\":\"http://www.w3.org/2000/svg\",\"kerning\":\"auto\",\"fill\":\"#000000\",\"fill-opacity\":\"1\",\"font-size\":\"12\",\"font-family\":\"Helvetica\",\"font-weight\":\"bold\",\"font-style\":\"normal\",\"text-decoration\":\"none\",\"text-anchor\":\"start\",\"id\":\"goog_2086231572\"}}}SHAPE--><!--LAYOUT<g xmlns=\"http://www.w3.org/2000/svg\" class=\"s-tblock\" x-format-type=\"\" x-value=\"\" x-format-base=\"\" x-ref-id=\"\" kerning=\"auto\" x-display=\"true\" x-multiple=\"false\" x-id=\"text_b4\" x-width=\"119\" x-height=\"14\" x-left=\"20\" x-top=\"606\" fill=\"#000000\" fill-opacity=\"1\" font-size=\"12\" font-family=\"Helvetica\" font-weight=\"bold\" font-style=\"normal\" text-decoration=\"none\" text-anchor=\"start\" id=\"goog_2086231572\" x-inline-format=\"false\"><rect class=\"s-tblock-box\" stroke=\"#7C4007\" fill=\"#f4e2c4\" stroke-width=\"0.28\" fill-opacity=\"0.8\" width=\"119\" height=\"14\" x=\"20\" y=\"606\"/><text class=\"s-tblock-id\" font-size=\"11\" font-family=\"Helvetica\" font-weight=\"normal\" font-style=\"normal\" text-decoration=\"none\" text-anchor=\"start\" kerning=\"auto\" stroke=\"none\" fill=\"#7C4007\" fill-opacity=\"1\" x=\"22\" y=\"617\">text_b4</text></g>LAYOUT--><!--SHAPE{\"type\":\"s-tblock\",\"id\":\"text_i3\",\"display\":\"true\",\"desc\":null,\"multiple\":\"false\",\"valign\":\"\",\"line-height\":\"\",\"box\":{\"x\":150,\"y\":586.2,\"width\":119,\"height\":14},\"inline-format\":\"false\",\"format\":{\"base\":\"\",\"type\":\"\"},\"value\":\"\",\"ref-id\":\"\",\"overflow\":\"\",\"word-wrap\":\"none\",\"svg\":{\"tag\":\"text\",\"attrs\":{\"x\":150,\"y\":595.2,\"xml:space\":\"preserve\",\"xmlns\":\"http://www.w3.org/2000/svg\",\"kerning\":\"auto\",\"fill\":\"#000000\",\"fill-opacity\":\"1\",\"font-size\":\"12\",\"font-family\":\"Helvetica\",\"font-weight\":\"normal\",\"font-style\":\"normal\",\"text-decoration\":\"none\",\"text-anchor\":\"start\",\"id\":\"goog_2086231573\"}}}SHAPE--><!--LAYOUT<g xmlns=\"http://www.w3.org/2000/svg\" class=\"s-tblock\" x-format-type=\"\" x-value=\"\" x-format-base=\"\" x-ref-id=\"\" kerning=\"auto\" x-display=\"true\" x-multiple=\"false\" x-id=\"text_i3\" x-width=\"119\" x-height=\"14\" x-left=\"150\" x-top=\"586.2\" fill=\"#000000\" fill-opacity=\"1\" font-size=\"12\" font-family=\"Helvetica\" font-weight=\"normal\" font-style=\"normal\" text-decoration=\"none\" text-anchor=\"start\" id=\"goog_2086231573\" x-inline-format=\"false\"><rect class=\"s-tblock-box\" stroke=\"#7C4007\" fill=\"#f4e2c4\" stroke-width=\"0.28\" fill-opacity=\"0.8\" width=\"119\" height=\"14\" x=\"150\" y=\"586.2\"/><text class=\"s-tblock-id\" font-size=\"11\" font-family=\"Helvetica\" font-weight=\"normal\" font-style=\"normal\" text-decoration=\"none\" text-anchor=\"start\" kerning=\"auto\" stroke=\"none\" fill=\"#7C4007\" fill-opacity=\"1\" x=\"152\" y=\"597.2\">text_i3</text></g>LAYOUT--><!--SHAPE{\"type\":\"s-tblock\",\"id\":\"text_i4\",\"display\":\"true\",\"desc\":null,\"multiple\":\"false\",\"valign\":\"\",\"line-height\":\"\",\"box\":{\"x\":150,\"y\":606,\"width\":119,\"height\":14},\"inline-format\":\"false\",\"format\":{\"base\":\"\",\"type\":\"\"},\"value\":\"\",\"ref-id\":\"\",\"overflow\":\"\",\"word-wrap\":\"none\",\"svg\":{\"tag\":\"text\",\"attrs\":{\"x\":150,\"y\":615,\"xml:space\":\"preserve\",\"xmlns\":\"http://www.w3.org/2000/svg\",\"kerning\":\"auto\",\"fill\":\"#000000\",\"fill-opacity\":\"1\",\"font-size\":\"12\",\"font-family\":\"Helvetica\",\"font-weight\":\"normal\",\"font-style\":\"italic\",\"text-decoration\":\"none\",\"text-anchor\":\"start\",\"id\":\"goog_2086231574\"}}}SHAPE--><!--LAYOUT<g xmlns=\"http://www.w3.org/2000/svg\" class=\"s-tblock\" x-format-type=\"\" x-value=\"\" x-format-base=\"\" x-ref-id=\"\" kerning=\"auto\" x-display=\"true\" x-multiple=\"false\" x-id=\"text_i4\" x-width=\"119\" x-height=\"14\" x-left=\"150\" x-top=\"606\" fill=\"#000000\" fill-opacity=\"1\" font-size=\"12\" font-family=\"Helvetica\" font-weight=\"normal\" font-style=\"italic\" text-decoration=\"none\" text-anchor=\"start\" id=\"goog_2086231574\" x-inline-format=\"false\"><rect class=\"s-tblock-box\" stroke=\"#7C4007\" fill=\"#f4e2c4\" stroke-width=\"0.28\" fill-opacity=\"0.8\" width=\"119\" height=\"14\" x=\"150\" y=\"606\"/><text class=\"s-tblock-id\" font-size=\"11\" font-family=\"Helvetica\" font-weight=\"normal\" font-style=\"normal\" text-decoration=\"none\" text-anchor=\"start\" kerning=\"auto\" stroke=\"none\" fill=\"#7C4007\" fill-opacity=\"1\" x=\"152\" y=\"617\">text_i4</text></g>LAYOUT--><!--SHAPE{\"type\":\"s-tblock\",\"id\":\"text_u3\",\"display\":\"true\",\"desc\":null,\"multiple\":\"false\",\"valign\":\"\",\"line-height\":\"\",\"box\":{\"x\":280,\"y\":586.2,\"width\":119,\"height\":14},\"inline-format\":\"false\",\"format\":{\"base\":\"\",\"type\":\"\"},\"value\":\"\",\"ref-id\":\"\",\"overflow\":\"\",\"word-wrap\":\"none\",\"svg\":{\"tag\":\"text\",\"attrs\":{\"x\":280,\"y\":595.2,\"xml:space\":\"preserve\",\"xmlns\":\"http://www.w3.org/2000/svg\",\"kerning\":\"auto\",\"fill\":\"#000000\",\"fill-opacity\":\"1\",\"font-size\":\"12\",\"font-family\":\"Helvetica\",\"font-weight\":\"normal\",\"font-style\":\"normal\",\"text-decoration\":\"none\",\"text-anchor\":\"start\",\"id\":\"goog_2086231575\"}}}SHAPE--><!--LAYOUT<g xmlns=\"http://www.w3.org/2000/svg\" class=\"s-tblock\" x-format-type=\"\" x-value=\"\" x-format-base=\"\" x-ref-id=\"\" kerning=\"auto\" x-display=\"true\" x-multiple=\"false\" x-id=\"text_u3\" x-width=\"119\" x-height=\"14\" x-left=\"280\" x-top=\"586.2\" fill=\"#000000\" fill-opacity=\"1\" font-size=\"12\" font-family=\"Helvetica\" font-weight=\"normal\" font-style=\"normal\" text-decoration=\"none\" text-anchor=\"start\" id=\"goog_2086231575\" x-inline-format=\"false\"><rect class=\"s-tblock-box\" stroke=\"#7C4007\" fill=\"#f4e2c4\" stroke-width=\"0.28\" fill-opacity=\"0.8\" width=\"119\" height=\"14\" x=\"280\" y=\"586.2\"/><text class=\"s-tblock-id\" font-size=\"11\" font-family=\"Helvetica\" font-weight=\"normal\" font-style=\"normal\" text-decoration=\"none\" text-anchor=\"start\" kerning=\"auto\" stroke=\"none\" fill=\"#7C4007\" fill-opacity=\"1\" x=\"282\" y=\"597.2\">text_u3</text></g>LAYOUT--><!--SHAPE{\"type\":\"s-tblock\",\"id\":\"text_u4\",\"display\":\"true\",\"desc\":null,\"multiple\":\"false\",\"valign\":\"\",\"line-height\":\"\",\"box\":{\"x\":280,\"y\":606,\"width\":119,\"height\":14},\"inline-format\":\"false\",\"format\":{\"base\":\"\",\"type\":\"\"},\"value\":\"\",\"ref-id\":\"\",\"overflow\":\"\",\"word-wrap\":\"none\",\"svg\":{\"tag\":\"text\",\"attrs\":{\"x\":280,\"y\":615,\"xml:space\":\"preserve\",\"xmlns\":\"http://www.w3.org/2000/svg\",\"kerning\":\"auto\",\"fill\":\"#000000\",\"fill-opacity\":\"1\",\"font-size\":\"12\",\"font-family\":\"Helvetica\",\"font-weight\":\"normal\",\"font-style\":\"normal\",\"text-decoration\":\"underline\",\"text-anchor\":\"start\",\"id\":\"goog_2086231576\"}}}SHAPE--><!--LAYOUT<g xmlns=\"http://www.w3.org/2000/svg\" class=\"s-tblock\" x-format-type=\"\" x-value=\"\" x-format-base=\"\" x-ref-id=\"\" kerning=\"auto\" x-display=\"true\" x-multiple=\"false\" x-id=\"text_u4\" x-width=\"119\" x-height=\"14\" x-left=\"280\" x-top=\"606\" fill=\"#000000\" fill-opacity=\"1\" font-size=\"12\" font-family=\"Helvetica\" font-weight=\"normal\" font-style=\"normal\" text-decoration=\"underline\" text-anchor=\"start\" id=\"goog_2086231576\" x-inline-format=\"false\"><rect class=\"s-tblock-box\" stroke=\"#7C4007\" fill=\"#f4e2c4\" stroke-width=\"0.28\" fill-opacity=\"0.8\" width=\"119\" height=\"14\" x=\"280\" y=\"606\"/><text class=\"s-tblock-id\" font-size=\"11\" font-family=\"Helvetica\" font-weight=\"normal\" font-style=\"normal\" text-decoration=\"none\" text-anchor=\"start\" kerning=\"auto\" stroke=\"none\" fill=\"#7C4007\" fill-opacity=\"1\" x=\"282\" y=\"617\">text_u4</text></g>LAYOUT--><!--SHAPE{\"type\":\"s-tblock\",\"id\":\"text_l3\",\"display\":\"true\",\"desc\":null,\"multiple\":\"false\",\"valign\":\"\",\"line-height\":\"\",\"box\":{\"x\":425,\"y\":586.2,\"width\":119,\"height\":14},\"inline-format\":\"false\",\"format\":{\"base\":\"\",\"type\":\"\"},\"value\":\"\",\"ref-id\":\"\",\"overflow\":\"\",\"word-wrap\":\"none\",\"svg\":{\"tag\":\"text\",\"attrs\":{\"x\":425,\"y\":595.2,\"xml:space\":\"preserve\",\"xmlns\":\"http://www.w3.org/2000/svg\",\"kerning\":\"auto\",\"fill\":\"#000000\",\"fill-opacity\":\"1\",\"font-size\":\"12\",\"font-family\":\"Helvetica\",\"font-weight\":\"normal\",\"font-style\":\"normal\",\"text-decoration\":\"none\",\"text-anchor\":\"start\",\"id\":\"goog_2086231577\"}}}SHAPE--><!--LAYOUT<g xmlns=\"http://www.w3.org/2000/svg\" class=\"s-tblock\" x-format-type=\"\" x-value=\"\" x-format-base=\"\" x-ref-id=\"\" kerning=\"auto\" x-display=\"true\" x-multiple=\"false\" x-id=\"text_l3\" x-width=\"119\" x-height=\"14\" x-left=\"425\" x-top=\"586.2\" fill=\"#000000\" fill-opacity=\"1\" font-size=\"12\" font-family=\"Helvetica\" font-weight=\"normal\" font-style=\"normal\" text-decoration=\"none\" text-anchor=\"start\" id=\"goog_2086231577\" x-inline-format=\"false\"><rect class=\"s-tblock-box\" stroke=\"#7C4007\" fill=\"#f4e2c4\" stroke-width=\"0.28\" fill-opacity=\"0.8\" width=\"119\" height=\"14\" x=\"425\" y=\"586.2\"/><text class=\"s-tblock-id\" font-size=\"11\" font-family=\"Helvetica\" font-weight=\"normal\" font-style=\"normal\" text-decoration=\"none\" text-anchor=\"start\" kerning=\"auto\" stroke=\"none\" fill=\"#7C4007\" fill-opacity=\"1\" x=\"427\" y=\"597.2\">text_l3</text></g>LAYOUT--><!--SHAPE{\"type\":\"s-tblock\",\"id\":\"text_l4\",\"display\":\"true\",\"desc\":null,\"multiple\":\"false\",\"valign\":\"\",\"line-height\":\"\",\"box\":{\"x\":425,\"y\":606,\"width\":119,\"height\":14},\"inline-format\":\"false\",\"format\":{\"base\":\"\",\"type\":\"\"},\"value\":\"\",\"ref-id\":\"\",\"overflow\":\"\",\"word-wrap\":\"none\",\"svg\":{\"tag\":\"text\",\"attrs\":{\"x\":425,\"y\":615,\"xml:space\":\"preserve\",\"xmlns\":\"http://www.w3.org/2000/svg\",\"kerning\":\"auto\",\"fill\":\"#000000\",\"fill-opacity\":\"1\",\"font-size\":\"12\",\"font-family\":\"Helvetica\",\"font-weight\":\"normal\",\"font-style\":\"normal\",\"text-decoration\":\"line-through\",\"text-anchor\":\"start\",\"id\":\"goog_2086231578\"}}}SHAPE--><!--LAYOUT<g xmlns=\"http://www.w3.org/2000/svg\" class=\"s-tblock\" x-format-type=\"\" x-value=\"\" x-format-base=\"\" x-ref-id=\"\" kerning=\"auto\" x-display=\"true\" x-multiple=\"false\" x-id=\"text_l4\" x-width=\"119\" x-height=\"14\" x-left=\"425\" x-top=\"606\" fill=\"#000000\" fill-opacity=\"1\" font-size=\"12\" font-family=\"Helvetica\" font-weight=\"normal\" font-style=\"normal\" text-decoration=\"line-through\" text-anchor=\"start\" id=\"goog_2086231578\" x-inline-format=\"false\"><rect class=\"s-tblock-box\" stroke=\"#7C4007\" fill=\"#f4e2c4\" stroke-width=\"0.28\" fill-opacity=\"0.8\" width=\"119\" height=\"14\" x=\"425\" y=\"606\"/><text class=\"s-tblock-id\" font-size=\"11\" font-family=\"Helvetica\" font-weight=\"normal\" font-style=\"normal\" text-decoration=\"none\" text-anchor=\"start\" kerning=\"auto\" stroke=\"none\" fill=\"#7C4007\" fill-opacity=\"1\" x=\"427\" y=\"617\">text_l4</text></g>LAYOUT--><g class=\"s-text\" stroke-width=\"0\" fill=\"#000000\" fill-opacity=\"1\" kerning=\"auto\" x-display=\"true\" x-id=\"\" stroke=\"none\" font-weight=\"normal\" font-style=\"normal\" font-family=\"Courier New\" font-size=\"12\" text-anchor=\"start\" text-decoration=\"none\" x-width=\"223.1\" x-height=\"14\" x-left=\"20\" x-top=\"637\" id=\"goog_2086231579\" x-inline-format=\"false\"><rect class=\"s-text-box\" stroke=\"none\" fill=\"#000000\" fill-opacity=\"0.001\" width=\"223.1\" height=\"14\" x=\"20\" y=\"637\"/><text class=\"s-text-l0\" xml:space=\"preserve\" stroke=\"none\" fill=\"inherit\" fill-opacity=\"1\" text-decoration=\"none\" x=\"20\" y=\"645\">Text Align: To right from left.</text></g><!--SHAPE{\"type\":\"s-text\",\"id\":\"text_a1\",\"display\":\"true\",\"desc\":null,\"line-height\":\"\",\"valign\":\"\",\"box\":{\"x\":20,\"y\":659,\"width\":155.1,\"height\":23.2},\"inline-format\":\"false\",\"text\":[\"To right from left.\"],\"svg\":{\"tag\":\"g\",\"attrs\":{\"xmlns\":\"http://www.w3.org/2000/svg\",\"stroke-width\":\"0\",\"fill\":\"#000000\",\"fill-opacity\":\"1\",\"kerning\":\"auto\",\"stroke\":\"none\",\"font-weight\":\"normal\",\"font-style\":\"normal\",\"font-family\":\"Helvetica\",\"font-size\":\"12\",\"text-anchor\":\"start\",\"text-decoration\":\"none\",\"id\":\"goog_2086231580\"},\"content\":\"<text xmlns=\\\"http://www.w3.org/2000/svg\\\" class=\\\"s-text-l0\\\" xml:space=\\\"preserve\\\" stroke=\\\"none\\\" fill=\\\"inherit\\\" fill-opacity=\\\"1\\\" text-decoration=\\\"none\\\" x=\\\"20\\\" y=\\\"670\\\">To right from left.</text>\"}}SHAPE--><!--LAYOUT<g xmlns=\"http://www.w3.org/2000/svg\" class=\"s-text\" stroke-width=\"0\" fill=\"#000000\" fill-opacity=\"1\" kerning=\"auto\" x-display=\"true\" x-id=\"text_a1\" stroke=\"none\" font-weight=\"normal\" font-style=\"normal\" font-family=\"Helvetica\" font-size=\"12\" text-anchor=\"start\" text-decoration=\"none\" x-width=\"155.1\" x-height=\"23.2\" x-left=\"20\" x-top=\"659\" id=\"goog_2086231580\" x-inline-format=\"false\"><rect class=\"s-text-box\" stroke=\"none\" fill=\"#000000\" fill-opacity=\"0.001\" width=\"155.1\" height=\"23.2\" x=\"20\" y=\"659\"/><text class=\"s-text-l0\" xml:space=\"preserve\" stroke=\"none\" fill=\"inherit\" fill-opacity=\"1\" text-decoration=\"none\" x=\"20\" y=\"670\">To right from left.</text></g>LAYOUT--><rect stroke=\"#000000\" stroke-width=\"1\" fill=\"none\" fill-opacity=\"1\" class=\"s-rect\" x-display=\"true\" x-stroke-type=\"solid\" stroke-dasharray=\"none\" x-id=\"\" rx=\"0\" ry=\"0\" width=\"155.1\" height=\"23.2\" x=\"20\" y=\"659\" id=\"goog_2086231581\"/><!--SHAPE{\"type\":\"s-tblock\",\"id\":\"text_a2\",\"display\":\"true\",\"desc\":null,\"multiple\":\"false\",\"valign\":\"\",\"line-height\":\"\",\"box\":{\"x\":192.1,\"y\":660.2,\"width\":138,\"height\":14},\"inline-format\":\"false\",\"format\":{\"base\":\"\",\"type\":\"\"},\"value\":\"\",\"ref-id\":\"\",\"overflow\":\"\",\"word-wrap\":\"none\",\"svg\":{\"tag\":\"text\",\"attrs\":{\"x\":192.1,\"y\":669.2,\"xml:space\":\"preserve\",\"xmlns\":\"http://www.w3.org/2000/svg\",\"kerning\":\"auto\",\"fill\":\"#000000\",\"fill-opacity\":\"1\",\"font-size\":\"12\",\"font-family\":\"Helvetica\",\"font-weight\":\"normal\",\"font-style\":\"normal\",\"text-anchor\":\"start\",\"text-decoration\":\"none\",\"id\":\"goog_2086231582\"}}}SHAPE--><!--LAYOUT<g xmlns=\"http://www.w3.org/2000/svg\" class=\"s-tblock\" x-format-type=\"\" x-value=\"\" x-format-base=\"\" x-ref-id=\"\" kerning=\"auto\" x-display=\"true\" x-multiple=\"false\" x-id=\"text_a2\" fill=\"#000000\" fill-opacity=\"1\" font-size=\"12\" font-family=\"Helvetica\" font-weight=\"normal\" font-style=\"normal\" text-anchor=\"start\" text-decoration=\"none\" x-width=\"138\" x-height=\"14\" x-left=\"192.1\" x-top=\"660.2\" id=\"goog_2086231582\" x-inline-format=\"false\"><rect class=\"s-tblock-box\" stroke=\"#7C4007\" fill=\"#f4e2c4\" stroke-width=\"0.28\" fill-opacity=\"0.8\" width=\"138\" height=\"14\" x=\"192.1\" y=\"660.2\"/><text class=\"s-tblock-id\" font-size=\"11\" font-family=\"Helvetica\" font-weight=\"normal\" font-style=\"normal\" text-decoration=\"none\" text-anchor=\"start\" kerning=\"auto\" stroke=\"none\" fill=\"#7C4007\" fill-opacity=\"1\" x=\"194.1\" y=\"671.2\">text_a2</text></g>LAYOUT--><!--SHAPE{\"type\":\"s-tblock\",\"id\":\"text_a3\",\"display\":\"true\",\"desc\":\"\\u65e5\\u672c\\u8a9e\",\"multiple\":\"true\",\"valign\":\"\",\"line-height\":\"\",\"box\":{\"x\":344.1,\"y\":660.2,\"width\":153.1,\"height\":44.1},\"inline-format\":\"false\",\"format\":{\"base\":\"\",\"type\":\"\"},\"value\":\"\",\"ref-id\":\"\",\"overflow\":\"\",\"word-wrap\":\"none\",\"svg\":{\"tag\":\"textArea\",\"attrs\":{\"x\":344.1,\"y\":660.2,\"width\":153.1,\"height\":44.1,\"xml:space\":\"preserve\",\"xmlns\":\"http://www.w3.org/2000/svg\",\"kerning\":\"auto\",\"fill\":\"#000000\",\"fill-opacity\":\"1\",\"font-size\":\"12\",\"font-family\":\"IPAMincho\",\"font-weight\":\"normal\",\"font-style\":\"normal\",\"text-anchor\":\"start\",\"text-decoration\":\"none\",\"id\":\"goog_2086231583\"}}}SHAPE--><!--LAYOUT<g xmlns=\"http://www.w3.org/2000/svg\" class=\"s-tblock\" x-format-type=\"\" x-value=\"\" x-format-base=\"\" x-ref-id=\"\" kerning=\"auto\" x-display=\"true\" x-multiple=\"true\" x-id=\"text_a3\" fill=\"#000000\" fill-opacity=\"1\" font-size=\"12\" font-family=\"IPAMincho\" font-weight=\"normal\" font-style=\"normal\" text-anchor=\"start\" text-decoration=\"none\" x-width=\"153.1\" x-height=\"44.1\" x-left=\"344.1\" x-top=\"660.2\" x-desc=\"\u65e5\u672c\u8a9e\" id=\"goog_2086231583\" x-inline-format=\"false\"><rect class=\"s-tblock-box\" stroke=\"#7C4007\" fill=\"#f4e2c4\" stroke-width=\"0.28\" fill-opacity=\"0.8\" width=\"153.1\" height=\"44.1\" x=\"344.1\" y=\"660.2\"/><text class=\"s-tblock-id\" font-size=\"11\" font-family=\"Helvetica\" font-weight=\"normal\" font-style=\"normal\" text-decoration=\"none\" text-anchor=\"start\" kerning=\"auto\" stroke=\"none\" fill=\"#7C4007\" fill-opacity=\"1\" x=\"346.1\" y=\"671.2\">text_a3</text></g>LAYOUT--><rect stroke=\"#000000\" stroke-width=\"1\" fill=\"none\" fill-opacity=\"1\" class=\"s-rect\" x-display=\"true\" x-stroke-type=\"solid\" stroke-dasharray=\"none\" x-id=\"\" rx=\"0\" ry=\"0\" width=\"138\" height=\"22\" x=\"192.1\" y=\"660.2\" id=\"goog_2086231584\"/><rect stroke=\"#000000\" stroke-width=\"1\" fill=\"none\" fill-opacity=\"1\" class=\"s-rect\" x-display=\"true\" x-stroke-type=\"solid\" stroke-dasharray=\"none\" x-id=\"\" rx=\"0\" ry=\"0\" width=\"153.1\" height=\"44.1\" x=\"344.1\" y=\"660.2\" id=\"goog_2086231585\"/><g class=\"s-text\" stroke-width=\"0\" fill=\"#000000\" fill-opacity=\"1\" kerning=\"auto\" x-display=\"true\" x-id=\"\" stroke=\"none\" font-weight=\"normal\" font-style=\"normal\" font-family=\"Courier New\" font-size=\"12\" text-anchor=\"start\" text-decoration=\"none\" x-width=\"251.8\" x-height=\"14\" x-left=\"20\" x-top=\"712\" id=\"goog_2086231586\" x-inline-format=\"false\"><rect class=\"s-text-box\" stroke=\"none\" fill=\"#000000\" fill-opacity=\"0.001\" width=\"251.8\" height=\"14\" x=\"20\" y=\"712\"/><text class=\"s-text-l0\" xml:space=\"preserve\" stroke=\"none\" fill=\"inherit\" fill-opacity=\"1\" text-decoration=\"none\" x=\"20\" y=\"720\">Vertical Align: To bottom from top.</text></g><!--SHAPE{\"type\":\"s-text\",\"id\":\"text_va1\",\"display\":\"true\",\"desc\":null,\"line-height\":\"\",\"valign\":\"\",\"box\":{\"x\":20,\"y\":729,\"width\":155.1,\"height\":50.3},\"inline-format\":\"false\",\"text\":[\"To bottom from top.\"],\"svg\":{\"tag\":\"g\",\"attrs\":{\"xmlns\":\"http://www.w3.org/2000/svg\",\"stroke-width\":\"0\",\"fill\":\"#000000\",\"fill-opacity\":\"1\",\"kerning\":\"auto\",\"stroke\":\"none\",\"font-weight\":\"normal\",\"font-style\":\"normal\",\"font-family\":\"Helvetica\",\"font-size\":\"12\",\"text-anchor\":\"start\",\"text-decoration\":\"none\",\"id\":\"goog_2086231587\"},\"content\":\"<text xmlns=\\\"http://www.w3.org/2000/svg\\\" class=\\\"s-text-l0\\\" xml:space=\\\"preserve\\\" stroke=\\\"none\\\" fill=\\\"inherit\\\" fill-opacity=\\\"1\\\" text-decoration=\\\"none\\\" x=\\\"20\\\" y=\\\"740\\\">To bottom from top.</text>\"}}SHAPE--><!--LAYOUT<g xmlns=\"http://www.w3.org/2000/svg\" class=\"s-text\" stroke-width=\"0\" fill=\"#000000\" fill-opacity=\"1\" kerning=\"auto\" x-display=\"true\" x-id=\"text_va1\" stroke=\"none\" font-weight=\"normal\" font-style=\"normal\" font-family=\"Helvetica\" font-size=\"12\" text-anchor=\"start\" text-decoration=\"none\" x-width=\"155.1\" x-height=\"50.3\" x-left=\"20\" x-top=\"729\" id=\"goog_2086231587\" x-inline-format=\"false\"><rect class=\"s-text-box\" stroke=\"none\" fill=\"#000000\" fill-opacity=\"0.001\" width=\"155.1\" height=\"50.3\" x=\"20\" y=\"729\"/><text class=\"s-text-l0\" xml:space=\"preserve\" stroke=\"none\" fill=\"inherit\" fill-opacity=\"1\" text-decoration=\"none\" x=\"20\" y=\"740\">To bottom from top.</text></g>LAYOUT--><rect stroke=\"#000000\" stroke-width=\"1\" fill=\"none\" fill-opacity=\"1\" class=\"s-rect\" x-display=\"true\" x-stroke-type=\"solid\" stroke-dasharray=\"none\" x-id=\"\" rx=\"0\" ry=\"0\" width=\"155.1\" height=\"50.3\" x=\"20\" y=\"729\" id=\"goog_2086231588\"/><!--SHAPE{\"type\":\"s-tblock\",\"id\":\"text_va2\",\"display\":\"true\",\"desc\":\"\\u65e5\\u672c\\u8a9e\",\"multiple\":\"true\",\"valign\":\"\",\"line-height\":\"\",\"box\":{\"x\":189,\"y\":730,\"width\":153.1,\"height\":50.3},\"inline-format\":\"false\",\"format\":{\"base\":\"\",\"type\":\"\"},\"value\":\"\",\"ref-id\":\"\",\"overflow\":\"\",\"word-wrap\":\"none\",\"svg\":{\"tag\":\"textArea\",\"attrs\":{\"x\":189,\"y\":730,\"width\":153.1,\"height\":50.3,\"xml:space\":\"preserve\",\"xmlns\":\"http://www.w3.org/2000/svg\",\"kerning\":\"auto\",\"fill\":\"#000000\",\"fill-opacity\":\"1\",\"font-size\":\"12\",\"font-family\":\"IPAMincho\",\"font-weight\":\"normal\",\"font-style\":\"normal\",\"text-decoration\":\"none\",\"text-anchor\":\"start\",\"id\":\"goog_2086231589\"}}}SHAPE--><!--LAYOUT<g xmlns=\"http://www.w3.org/2000/svg\" class=\"s-tblock\" x-format-type=\"\" x-value=\"\" x-format-base=\"\" x-ref-id=\"\" kerning=\"auto\" x-display=\"true\" x-multiple=\"true\" x-id=\"text_va2\" x-width=\"153.1\" x-height=\"50.3\" x-left=\"189\" x-top=\"730\" fill=\"#000000\" fill-opacity=\"1\" font-size=\"12\" font-family=\"IPAMincho\" font-weight=\"normal\" font-style=\"normal\" text-decoration=\"none\" text-anchor=\"start\" x-desc=\"\u65e5\u672c\u8a9e\" id=\"goog_2086231589\" x-inline-format=\"false\"><rect class=\"s-tblock-box\" stroke=\"#7C4007\" fill=\"#f4e2c4\" stroke-width=\"0.28\" fill-opacity=\"0.8\" width=\"153.1\" height=\"50.3\" x=\"189\" y=\"730\"/><text class=\"s-tblock-id\" font-size=\"11\" font-family=\"Helvetica\" font-weight=\"normal\" font-style=\"normal\" text-decoration=\"none\" text-anchor=\"start\" kerning=\"auto\" stroke=\"none\" fill=\"#7C4007\" fill-opacity=\"1\" x=\"191\" y=\"741\">text_va2</text></g>LAYOUT--><rect stroke=\"#000000\" stroke-width=\"1\" fill=\"none\" fill-opacity=\"1\" class=\"s-rect\" x-display=\"true\" x-stroke-type=\"solid\" stroke-dasharray=\"none\" x-id=\"\" rx=\"0\" ry=\"0\" width=\"153.1\" height=\"50.3\" x=\"189\" y=\"730\" id=\"goog_2086231590\"/><g class=\"s-text\" stroke-width=\"0\" fill=\"#000000\" fill-opacity=\"1\" kerning=\"auto\" x-display=\"true\" x-id=\"\" stroke=\"none\" font-weight=\"normal\" font-style=\"normal\" font-family=\"Courier New\" font-size=\"12\" text-anchor=\"start\" text-decoration=\"none\" x-width=\"245\" x-height=\"14\" x-left=\"20\" x-top=\"789\" id=\"goog_2086231591\" x-inline-format=\"false\"><rect class=\"s-text-box\" stroke=\"none\" fill=\"#000000\" fill-opacity=\"0.001\" width=\"245\" height=\"14\" x=\"20\" y=\"789\"/><text class=\"s-text-l0\" xml:space=\"preserve\" stroke=\"none\" fill=\"inherit\" fill-opacity=\"1\" text-decoration=\"none\" x=\"20\" y=\"797\">Text Color: To red from black.</text></g><!--SHAPE{\"type\":\"s-text\",\"id\":\"text_color1\",\"display\":\"true\",\"desc\":null,\"line-height\":\"\",\"valign\":\"\",\"box\":{\"x\":20,\"y\":809,\"width\":131,\"height\":15},\"inline-format\":\"false\",\"text\":[\"To red from black.\"],\"svg\":{\"tag\":\"g\",\"attrs\":{\"xmlns\":\"http://www.w3.org/2000/svg\",\"stroke-width\":\"0\",\"fill\":\"#000000\",\"fill-opacity\":\"1\",\"kerning\":\"auto\",\"stroke\":\"none\",\"font-weight\":\"normal\",\"font-style\":\"normal\",\"font-family\":\"Helvetica\",\"font-size\":\"12\",\"text-anchor\":\"start\",\"text-decoration\":\"none\",\"id\":\"goog_2086231592\"},\"content\":\"<text xmlns=\\\"http://www.w3.org/2000/svg\\\" class=\\\"s-text-l0\\\" xml:space=\\\"preserve\\\" stroke=\\\"none\\\" fill=\\\"inherit\\\" fill-opacity=\\\"1\\\" text-decoration=\\\"none\\\" x=\\\"20\\\" y=\\\"820\\\">To red from black.</text>\"}}SHAPE--><!--LAYOUT<g xmlns=\"http://www.w3.org/2000/svg\" class=\"s-text\" stroke-width=\"0\" fill=\"#000000\" fill-opacity=\"1\" kerning=\"auto\" x-display=\"true\" x-id=\"text_color1\" stroke=\"none\" font-weight=\"normal\" font-style=\"normal\" font-family=\"Helvetica\" font-size=\"12\" text-anchor=\"start\" text-decoration=\"none\" x-width=\"131\" x-height=\"15\" x-left=\"20\" x-top=\"809\" id=\"goog_2086231592\" x-inline-format=\"false\"><rect class=\"s-text-box\" stroke=\"none\" fill=\"#000000\" fill-opacity=\"0.001\" width=\"131\" height=\"15\" x=\"20\" y=\"809\"/><text class=\"s-text-l0\" xml:space=\"preserve\" stroke=\"none\" fill=\"inherit\" fill-opacity=\"1\" text-decoration=\"none\" x=\"20\" y=\"820\">To red from black.</text></g>LAYOUT--><!--SHAPE{\"type\":\"s-tblock\",\"id\":\"text_color2\",\"display\":\"true\",\"desc\":\"\\u65e5\\u672c\\u8a9e\",\"multiple\":\"false\",\"valign\":\"\",\"line-height\":\"\",\"box\":{\"x\":136,\"y\":808.1,\"width\":119,\"height\":12},\"inline-format\":\"false\",\"format\":{\"base\":\"\",\"type\":\"\"},\"value\":\"\",\"ref-id\":\"\",\"overflow\":\"\",\"word-wrap\":\"none\",\"svg\":{\"tag\":\"text\",\"attrs\":{\"x\":136,\"y\":817.1,\"xml:space\":\"preserve\",\"xmlns\":\"http://www.w3.org/2000/svg\",\"kerning\":\"auto\",\"fill\":\"#000000\",\"fill-opacity\":\"1\",\"font-size\":\"12\",\"font-family\":\"IPAMincho\",\"font-weight\":\"normal\",\"font-style\":\"normal\",\"text-decoration\":\"none\",\"text-anchor\":\"start\",\"id\":\"goog_2086231593\"}}}SHAPE--><!--LAYOUT<g xmlns=\"http://www.w3.org/2000/svg\" class=\"s-tblock\" x-format-type=\"\" x-value=\"\" x-format-base=\"\" x-ref-id=\"\" kerning=\"auto\" x-display=\"true\" x-multiple=\"false\" x-id=\"text_color2\" x-width=\"119\" x-height=\"12\" x-left=\"136\" x-top=\"808.1\" fill=\"#000000\" fill-opacity=\"1\" font-size=\"12\" font-family=\"IPAMincho\" font-weight=\"normal\" font-style=\"normal\" text-decoration=\"none\" text-anchor=\"start\" x-desc=\"\u65e5\u672c\u8a9e\" id=\"goog_2086231593\" x-inline-format=\"false\"><rect class=\"s-tblock-box\" stroke=\"#7C4007\" fill=\"#f4e2c4\" stroke-width=\"0.28\" fill-opacity=\"0.8\" width=\"119\" height=\"12\" x=\"136\" y=\"808.1\"/><text class=\"s-tblock-id\" font-size=\"11\" font-family=\"Helvetica\" font-weight=\"normal\" font-style=\"normal\" text-decoration=\"none\" text-anchor=\"start\" kerning=\"auto\" stroke=\"none\" fill=\"#7C4007\" fill-opacity=\"1\" x=\"138\" y=\"819.1\">text_color2</text></g>LAYOUT--><!--SHAPE{\"type\":\"s-tblock\",\"id\":\"title\",\"display\":\"true\",\"desc\":null,\"multiple\":\"false\",\"valign\":\"\",\"line-height\":\"\",\"box\":{\"x\":183.1,\"y\":22,\"width\":208,\"height\":19},\"inline-format\":\"false\",\"format\":{\"base\":\"\",\"type\":\"\"},\"value\":\"\",\"ref-id\":\"\",\"overflow\":\"\",\"word-wrap\":\"none\",\"svg\":{\"tag\":\"text\",\"attrs\":{\"x\":287.1,\"y\":38,\"xml:space\":\"preserve\",\"xmlns\":\"http://www.w3.org/2000/svg\",\"kerning\":\"auto\",\"fill\":\"#000000\",\"fill-opacity\":\"1\",\"font-size\":\"18\",\"font-family\":\"Times New Roman\",\"font-weight\":\"bold\",\"font-style\":\"normal\",\"text-anchor\":\"middle\",\"text-decoration\":\"underline\",\"id\":\"goog_2086231594\"}}}SHAPE--><!--LAYOUT<g xmlns=\"http://www.w3.org/2000/svg\" class=\"s-tblock\" x-format-type=\"\" x-value=\"\" x-format-base=\"\" x-ref-id=\"\" kerning=\"auto\" x-display=\"true\" x-multiple=\"false\" x-id=\"title\" fill=\"#000000\" fill-opacity=\"1\" font-size=\"18\" font-family=\"Times New Roman\" font-weight=\"bold\" font-style=\"normal\" text-anchor=\"middle\" text-decoration=\"underline\" x-width=\"208\" x-height=\"19\" x-left=\"183.1\" x-top=\"22\" id=\"goog_2086231594\" x-inline-format=\"false\"><rect class=\"s-tblock-box\" stroke=\"#7C4007\" fill=\"#f4e2c4\" stroke-width=\"0.28\" fill-opacity=\"0.8\" width=\"208\" height=\"19\" x=\"183.1\" y=\"22\"/><text class=\"s-tblock-id\" font-size=\"11\" font-family=\"Helvetica\" font-weight=\"normal\" font-style=\"normal\" text-decoration=\"none\" text-anchor=\"start\" kerning=\"auto\" stroke=\"none\" fill=\"#7C4007\" fill-opacity=\"1\" x=\"185.1\" y=\"33\">title</text></g>LAYOUT--></g></svg>","state":{"layout-guide":[]}}
|