thinreports 0.8.2 → 0.9.0

Sign up to get free protection for your applications and to get access to all the features.
Files changed (170) hide show
  1. checksums.yaml +4 -4
  2. data/.github/CONTRIBUTING.md +2 -0
  3. data/.travis.yml +3 -3
  4. data/CHANGELOG.md +98 -1
  5. data/README.md +0 -9
  6. data/Rakefile +1 -2
  7. data/examples/character_spacing/character_spacing.tlf +293 -1
  8. data/examples/dynamic_image/dynamic_image.tlf +661 -1
  9. data/examples/dynamic_style/dynamic_style.rb +4 -4
  10. data/examples/dynamic_style/dynamic_style.tlf +1835 -1
  11. data/examples/dynamic_style/dynamic_style_in_list.tlf +344 -1
  12. data/examples/eudc/eudc.tlf +180 -1
  13. data/examples/hidden_shapes/hidden_shapes.tlf +449 -1
  14. data/examples/list_events/list_events.rb +1 -28
  15. data/examples/list_events/list_events.tlf +361 -0
  16. data/examples/list_manual_generation/list_manual_generation.tlf +132 -1
  17. data/examples/list_page_number/list_page_number.tlf +254 -1
  18. data/examples/page_number/page_number.tlf +215 -1
  19. data/examples/palleted_png/palleted_png.rb +2 -0
  20. data/examples/palleted_png/palleted_png.tlf +47 -1
  21. data/examples/password_setting/password_setting.tlf +45 -1
  22. data/examples/report_callbacks/report_callbacks.rb +1 -18
  23. data/examples/report_callbacks/report_callbacks.tlf +147 -1
  24. data/examples/single_line_tblock/single_line_tblock.tlf +170 -1
  25. data/examples/tblock_overflow/tblock_overflow.tlf +538 -1
  26. data/examples/tblock_styles/font_size.tlf +383 -1
  27. data/examples/tblock_styles/tblock_styles.tlf +889 -1
  28. data/examples/text_align/text_align.tlf +241 -1
  29. data/examples/typeB_page_size/B4_ISO.tlf +45 -1
  30. data/examples/typeB_page_size/B4_JIS.tlf +45 -1
  31. data/examples/word_wrap/word_wrap.tlf +297 -1
  32. data/lib/thinreports.rb +0 -1
  33. data/lib/thinreports/config.rb +3 -0
  34. data/lib/thinreports/core/errors.rb +0 -3
  35. data/lib/thinreports/core/format/base.rb +4 -4
  36. data/lib/thinreports/core/shape.rb +1 -9
  37. data/lib/thinreports/core/shape/basic.rb +3 -3
  38. data/lib/thinreports/core/shape/basic/block_format.rb +1 -1
  39. data/lib/thinreports/core/shape/basic/format.rb +2 -14
  40. data/lib/thinreports/core/shape/basic/internal.rb +2 -2
  41. data/lib/thinreports/core/shape/image_block.rb +3 -3
  42. data/lib/thinreports/core/shape/image_block/format.rb +0 -2
  43. data/lib/thinreports/core/shape/image_block/internal.rb +1 -1
  44. data/lib/thinreports/core/shape/list.rb +3 -7
  45. data/lib/thinreports/core/shape/list/format.rb +37 -24
  46. data/lib/thinreports/core/shape/list/manager.rb +1 -36
  47. data/lib/thinreports/core/shape/list/page.rb +0 -15
  48. data/lib/thinreports/core/shape/list/page_state.rb +1 -1
  49. data/lib/thinreports/core/shape/list/section_format.rb +14 -12
  50. data/lib/thinreports/core/shape/list/section_internal.rb +4 -7
  51. data/lib/thinreports/core/shape/manager/format.rb +0 -2
  52. data/lib/thinreports/core/shape/manager/internal.rb +1 -1
  53. data/lib/thinreports/core/shape/page_number.rb +1 -1
  54. data/lib/thinreports/core/shape/page_number/format.rb +9 -6
  55. data/lib/thinreports/core/shape/page_number/interface.rb +1 -1
  56. data/lib/thinreports/core/shape/page_number/internal.rb +2 -6
  57. data/lib/thinreports/core/shape/style/base.rb +11 -13
  58. data/lib/thinreports/core/shape/style/basic.rb +4 -4
  59. data/lib/thinreports/core/shape/style/graphic.rb +4 -10
  60. data/lib/thinreports/core/shape/style/text.rb +36 -69
  61. data/lib/thinreports/core/shape/text.rb +3 -3
  62. data/lib/thinreports/core/shape/text/format.rb +3 -13
  63. data/lib/thinreports/core/shape/text/internal.rb +2 -2
  64. data/lib/thinreports/core/shape/text_block.rb +3 -3
  65. data/lib/thinreports/core/shape/text_block/format.rb +9 -6
  66. data/lib/thinreports/core/shape/text_block/interface.rb +7 -7
  67. data/lib/thinreports/core/shape/text_block/internal.rb +1 -1
  68. data/lib/thinreports/generator/pdf.rb +0 -1
  69. data/lib/thinreports/generator/pdf/document.rb +2 -2
  70. data/lib/thinreports/generator/pdf/document/draw_shape.rb +25 -51
  71. data/lib/thinreports/generator/pdf/document/draw_template_items.rb +66 -0
  72. data/lib/thinreports/generator/pdf/document/font.rb +3 -8
  73. data/lib/thinreports/generator/pdf/document/graphics/attributes.rb +97 -77
  74. data/lib/thinreports/generator/pdf/document/graphics/basic.rb +18 -13
  75. data/lib/thinreports/generator/pdf/document/graphics/image.rb +17 -12
  76. data/lib/thinreports/generator/pdf/document/page.rb +1 -1
  77. data/lib/thinreports/generator/pdf/drawer/list.rb +5 -1
  78. data/lib/thinreports/generator/pdf/drawer/list_section.rb +1 -4
  79. data/lib/thinreports/generator/pdf/drawer/page.rb +9 -9
  80. data/lib/thinreports/layout.rb +3 -3
  81. data/lib/thinreports/layout/base.rb +0 -16
  82. data/lib/thinreports/layout/format.rb +38 -57
  83. data/lib/thinreports/layout/legacy_schema.rb +354 -0
  84. data/lib/thinreports/layout/version.rb +1 -1
  85. data/lib/thinreports/report.rb +0 -1
  86. data/lib/thinreports/report/base.rb +3 -17
  87. data/lib/thinreports/report/internal.rb +13 -55
  88. data/lib/thinreports/report/page.rb +1 -1
  89. data/lib/thinreports/version.rb +1 -1
  90. data/test/data/legacy_layout/all-items.tlf +1 -0
  91. data/test/schema_helper.rb +121 -0
  92. data/test/test_helper.rb +13 -50
  93. data/test/unit/core/format/test_base.rb +35 -31
  94. data/test/unit/core/shape/base/test_internal.rb +1 -1
  95. data/test/unit/core/shape/basic/test_block_format.rb +23 -0
  96. data/test/unit/core/shape/basic/{test_basic_interface.rb → test_block_interface.rb} +1 -1
  97. data/test/unit/core/shape/basic/{test_basic_internal.rb → test_block_internal.rb} +4 -7
  98. data/test/unit/core/shape/basic/test_format.rb +25 -47
  99. data/test/unit/core/shape/basic/test_interface.rb +5 -5
  100. data/test/unit/core/shape/basic/test_internal.rb +6 -11
  101. data/test/unit/core/shape/image_block/test_interface.rb +5 -5
  102. data/test/unit/core/shape/image_block/test_internal.rb +2 -2
  103. data/test/unit/core/shape/list/test_format.rb +86 -44
  104. data/test/unit/core/shape/list/test_manager.rb +10 -65
  105. data/test/unit/core/shape/list/test_page.rb +10 -61
  106. data/test/unit/core/shape/list/test_page_state.rb +1 -1
  107. data/test/unit/core/shape/list/test_section_format.rb +19 -28
  108. data/test/unit/core/shape/list/test_section_interface.rb +14 -6
  109. data/test/unit/core/shape/list/test_section_internal.rb +17 -23
  110. data/test/unit/core/shape/manager/test_format.rb +1 -1
  111. data/test/unit/core/shape/manager/test_internal.rb +59 -98
  112. data/test/unit/core/shape/manager/test_target.rb +21 -30
  113. data/test/unit/core/shape/page_number/test_format.rb +34 -52
  114. data/test/unit/core/shape/page_number/test_interface.rb +1 -1
  115. data/test/unit/core/shape/page_number/test_internal.rb +2 -2
  116. data/test/unit/core/shape/styles/test_base.rb +16 -41
  117. data/test/unit/core/shape/styles/test_basic.rb +7 -7
  118. data/test/unit/core/shape/styles/test_graphic.rb +27 -32
  119. data/test/unit/core/shape/styles/test_text.rb +68 -311
  120. data/test/unit/core/shape/text/test_format.rb +30 -59
  121. data/test/unit/core/shape/text/test_internal.rb +5 -5
  122. data/test/unit/core/shape/text_block/formatter/test_datetime.rb +13 -13
  123. data/test/unit/core/shape/text_block/test_format.rb +145 -146
  124. data/test/unit/core/shape/text_block/test_interface.rb +9 -9
  125. data/test/unit/core/shape/text_block/test_internal.rb +9 -9
  126. data/test/unit/core/test_shape.rb +19 -31
  127. data/test/unit/generator/pdf/document/graphics/test_attributes.rb +112 -122
  128. data/test/unit/generator/pdf/document/graphics/test_basic.rb +45 -0
  129. data/test/unit/generator/pdf/document/graphics/test_image.rb +5 -5
  130. data/test/unit/generator/pdf/document/test_font.rb +4 -10
  131. data/test/unit/generator/pdf/document/test_page.rb +13 -11
  132. data/test/unit/generator/pdf/document/test_parse_color.rb +5 -5
  133. data/test/unit/generator/test_base.rb +5 -5
  134. data/test/unit/generator/test_configuration.rb +4 -8
  135. data/test/unit/generator/test_pdf.rb +3 -2
  136. data/test/unit/layout/test_base.rb +16 -22
  137. data/test/unit/layout/test_format.rb +66 -86
  138. data/test/unit/layout/test_legacy_schema.rb +587 -0
  139. data/test/unit/layout/test_version.rb +20 -20
  140. data/test/unit/report/test_base.rb +32 -45
  141. data/test/unit/report/test_internal.rb +43 -99
  142. data/test/unit/test_config.rb +4 -2
  143. data/test/unit/test_layout.rb +1 -1
  144. metadata +20 -48
  145. data/examples/list_events/list_events_0_7_7.tlf +0 -1
  146. data/examples/list_events/list_events_0_8.tlf +0 -1
  147. data/lib/thinreports/core/events.rb +0 -69
  148. data/lib/thinreports/core/format/builder.rb +0 -62
  149. data/lib/thinreports/core/shape/list/configuration.rb +0 -54
  150. data/lib/thinreports/core/shape/list/events.rb +0 -47
  151. data/lib/thinreports/core/shape/list/store.rb +0 -33
  152. data/lib/thinreports/generator/pdf/configuration.rb +0 -33
  153. data/lib/thinreports/generator/pdf/document/parse_svg.rb +0 -104
  154. data/lib/thinreports/layout/configuration.rb +0 -29
  155. data/test/data/layout_block.tlf +0 -1
  156. data/test/data/layout_list.tlf +0 -1
  157. data/test/data/layout_list_noheader.tlf +0 -1
  158. data/test/data/layout_text1.tlf +0 -1
  159. data/test/data/layout_text2.tlf +0 -1
  160. data/test/unit/core/format/test_builder.rb +0 -109
  161. data/test/unit/core/shape/basic/test_basic_format.rb +0 -30
  162. data/test/unit/core/shape/image_block/test_format.rb +0 -58
  163. data/test/unit/core/shape/list/test_configuration.rb +0 -69
  164. data/test/unit/core/shape/list/test_events.rb +0 -36
  165. data/test/unit/core/shape/list/test_store.rb +0 -41
  166. data/test/unit/core/test_events.rb +0 -93
  167. data/test/unit/generator/pdf/document/test_draw_shape.rb +0 -44
  168. data/test/unit/generator/pdf/test_configuration.rb +0 -31
  169. data/test/unit/layout/test_configuration.rb +0 -21
  170. data/test/unit/report/test_events.rb +0 -22
@@ -1 +1,661 @@
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}]}}
1
+ {
2
+ "version": "0.9.0",
3
+ "items": [
4
+ {
5
+ "id": "",
6
+ "type": "rect",
7
+ "display": true,
8
+ "description": "",
9
+ "x": 20,
10
+ "y": 51,
11
+ "width": 100,
12
+ "height": 100,
13
+ "style": {
14
+ "border-color": "#ff0000",
15
+ "border-width": 1,
16
+ "border-style": "solid",
17
+ "fill-color": "none"
18
+ },
19
+ "border-radius": 0
20
+ },
21
+ {
22
+ "id": "",
23
+ "type": "rect",
24
+ "display": true,
25
+ "description": "",
26
+ "x": 20,
27
+ "y": 443,
28
+ "width": 150,
29
+ "height": 100,
30
+ "style": {
31
+ "border-color": "#ff0000",
32
+ "border-width": 1,
33
+ "border-style": "solid",
34
+ "fill-color": "none"
35
+ },
36
+ "border-radius": 0
37
+ },
38
+ {
39
+ "id": "",
40
+ "type": "text",
41
+ "display": true,
42
+ "description": "",
43
+ "x": 20,
44
+ "y": 20,
45
+ "width": 200,
46
+ "height": 26.7,
47
+ "style": {
48
+ "font-family": [
49
+ "Times New Roman"
50
+ ],
51
+ "font-size": 24,
52
+ "color": "#000000",
53
+ "text-align": "left",
54
+ "vertical-align": "top",
55
+ "line-height": "",
56
+ "line-height-ratio": "",
57
+ "letter-spacing": "",
58
+ "font-style": []
59
+ },
60
+ "texts": [
61
+ "Positioning"
62
+ ]
63
+ },
64
+ {
65
+ "id": "",
66
+ "type": "rect",
67
+ "display": true,
68
+ "description": "",
69
+ "x": 130,
70
+ "y": 51,
71
+ "width": 100,
72
+ "height": 100,
73
+ "style": {
74
+ "border-color": "#ff0000",
75
+ "border-width": 1,
76
+ "border-style": "solid",
77
+ "fill-color": "none"
78
+ },
79
+ "border-radius": 0
80
+ },
81
+ {
82
+ "id": "",
83
+ "type": "rect",
84
+ "display": true,
85
+ "description": "",
86
+ "x": 240,
87
+ "y": 51,
88
+ "width": 100,
89
+ "height": 100,
90
+ "style": {
91
+ "border-color": "#ff0000",
92
+ "border-width": 1,
93
+ "border-style": "solid",
94
+ "fill-color": "none"
95
+ },
96
+ "border-radius": 0
97
+ },
98
+ {
99
+ "id": "",
100
+ "type": "text",
101
+ "display": true,
102
+ "description": "",
103
+ "x": 20,
104
+ "y": 385,
105
+ "width": 200,
106
+ "height": 26.7,
107
+ "style": {
108
+ "font-family": [
109
+ "Times New Roman"
110
+ ],
111
+ "font-size": 24,
112
+ "color": "#000000",
113
+ "text-align": "left",
114
+ "vertical-align": "top",
115
+ "line-height": "",
116
+ "line-height-ratio": "",
117
+ "letter-spacing": "",
118
+ "font-style": []
119
+ },
120
+ "texts": [
121
+ "Overflowing"
122
+ ]
123
+ },
124
+ {
125
+ "id": "",
126
+ "type": "text",
127
+ "display": true,
128
+ "description": "",
129
+ "x": 25,
130
+ "y": 411,
131
+ "width": 288,
132
+ "height": 26,
133
+ "style": {
134
+ "font-family": [
135
+ "Helvetica"
136
+ ],
137
+ "font-size": 14,
138
+ "color": "#000000",
139
+ "text-align": "left",
140
+ "vertical-align": "top",
141
+ "line-height": "",
142
+ "line-height-ratio": "",
143
+ "letter-spacing": "",
144
+ "font-style": []
145
+ },
146
+ "texts": [
147
+ "Resize automatically to 150x75 from 200x100."
148
+ ]
149
+ },
150
+ {
151
+ "id": "",
152
+ "type": "text",
153
+ "display": true,
154
+ "description": "",
155
+ "x": 20,
156
+ "y": 565,
157
+ "width": 200,
158
+ "height": 26.7,
159
+ "style": {
160
+ "font-family": [
161
+ "Times New Roman"
162
+ ],
163
+ "font-size": 24,
164
+ "color": "#000000",
165
+ "text-align": "left",
166
+ "vertical-align": "top",
167
+ "line-height": "",
168
+ "line-height-ratio": "",
169
+ "letter-spacing": "",
170
+ "font-style": []
171
+ },
172
+ "texts": [
173
+ "Open URI"
174
+ ]
175
+ },
176
+ {
177
+ "id": "",
178
+ "type": "rect",
179
+ "display": true,
180
+ "description": "",
181
+ "x": 20,
182
+ "y": 628,
183
+ "width": 555.2,
184
+ "height": 92.3,
185
+ "style": {
186
+ "border-color": "#ff0000",
187
+ "border-width": 1,
188
+ "border-style": "solid",
189
+ "fill-color": "none"
190
+ },
191
+ "border-radius": 0
192
+ },
193
+ {
194
+ "id": "",
195
+ "type": "text",
196
+ "display": true,
197
+ "description": "",
198
+ "x": 25,
199
+ "y": 595,
200
+ "width": 369.4,
201
+ "height": 26,
202
+ "style": {
203
+ "font-family": [
204
+ "Helvetica"
205
+ ],
206
+ "font-size": 14,
207
+ "color": "#000000",
208
+ "text-align": "left",
209
+ "vertical-align": "top",
210
+ "line-height": "",
211
+ "line-height-ratio": "",
212
+ "letter-spacing": "",
213
+ "font-style": []
214
+ },
215
+ "texts": [
216
+ "http://www.thinreports.org/assets/logos/thinreports-logo.png"
217
+ ]
218
+ },
219
+ {
220
+ "id": "",
221
+ "type": "rect",
222
+ "display": true,
223
+ "description": "",
224
+ "x": 20,
225
+ "y": 443,
226
+ "width": 150,
227
+ "height": 76,
228
+ "style": {
229
+ "border-color": "#f79646",
230
+ "border-width": 1,
231
+ "border-style": "dashed",
232
+ "fill-color": "none"
233
+ },
234
+ "border-radius": 0
235
+ },
236
+ {
237
+ "id": "list",
238
+ "type": "list",
239
+ "display": true,
240
+ "description": "",
241
+ "x": 361.1,
242
+ "y": 55,
243
+ "width": 199.1,
244
+ "height": 312.1,
245
+ "header": {
246
+ "enabled": true,
247
+ "height": 33.2,
248
+ "translate": {
249
+ "x": 10,
250
+ "y": -395.2
251
+ },
252
+ "items": [
253
+ {
254
+ "id": "",
255
+ "type": "text",
256
+ "display": true,
257
+ "description": "",
258
+ "x": 351.1,
259
+ "y": 450.2,
260
+ "width": 199.1,
261
+ "height": 33.2,
262
+ "style": {
263
+ "font-family": [
264
+ "Times New Roman"
265
+ ],
266
+ "font-size": 18,
267
+ "color": "#000000",
268
+ "text-align": "center",
269
+ "vertical-align": "middle",
270
+ "line-height": "",
271
+ "line-height-ratio": "",
272
+ "letter-spacing": "",
273
+ "font-style": []
274
+ },
275
+ "texts": [
276
+ "In List"
277
+ ]
278
+ },
279
+ {
280
+ "id": "",
281
+ "type": "line",
282
+ "display": true,
283
+ "description": "",
284
+ "style": {
285
+ "border-color": "#000000",
286
+ "border-width": 1,
287
+ "border-style": "solid"
288
+ },
289
+ "x1": 353.1,
290
+ "y1": 483.4,
291
+ "x2": 560.2,
292
+ "y2": 483.4
293
+ }
294
+ ]
295
+ },
296
+ "detail": {
297
+ "height": 60,
298
+ "translate": {
299
+ "x": 10,
300
+ "y": -395.2
301
+ },
302
+ "items": [
303
+ {
304
+ "id": "",
305
+ "type": "line",
306
+ "display": true,
307
+ "description": "",
308
+ "style": {
309
+ "border-color": "#000000",
310
+ "border-width": 1,
311
+ "border-style": "solid"
312
+ },
313
+ "x1": 351.1,
314
+ "y1": 543.2,
315
+ "x2": 560.2,
316
+ "y2": 543.2
317
+ },
318
+ {
319
+ "id": "in_list",
320
+ "type": "image-block",
321
+ "display": true,
322
+ "description": "",
323
+ "x": 351.1,
324
+ "y": 483.4,
325
+ "width": 198.1,
326
+ "height": 58.8,
327
+ "style": {
328
+ "position-x": "center",
329
+ "position-y": "middle"
330
+ }
331
+ }
332
+ ]
333
+ },
334
+ "page-footer": {
335
+ "enabled": false,
336
+ "height": 0,
337
+ "translate": {
338
+ "x": 10,
339
+ "y": -368.4
340
+ },
341
+ "items": []
342
+ },
343
+ "footer": {
344
+ "enabled": false,
345
+ "height": 0,
346
+ "translate": {
347
+ "x": 10,
348
+ "y": -393.3
349
+ },
350
+ "items": []
351
+ },
352
+ "content-height": 278.90000000000003,
353
+ "auto-page-break": false
354
+ },
355
+ {
356
+ "id": "",
357
+ "type": "text",
358
+ "display": true,
359
+ "description": "",
360
+ "x": 359,
361
+ "y": 20,
362
+ "width": 200,
363
+ "height": 26.7,
364
+ "style": {
365
+ "font-family": [
366
+ "Times New Roman"
367
+ ],
368
+ "font-size": 24,
369
+ "color": "#000000",
370
+ "text-align": "left",
371
+ "vertical-align": "top",
372
+ "line-height": "",
373
+ "line-height-ratio": "",
374
+ "letter-spacing": "",
375
+ "font-style": []
376
+ },
377
+ "texts": [
378
+ "Use in List"
379
+ ]
380
+ },
381
+ {
382
+ "id": "pos_top_left",
383
+ "type": "image-block",
384
+ "display": true,
385
+ "description": "",
386
+ "x": 20,
387
+ "y": 51,
388
+ "width": 100,
389
+ "height": 100,
390
+ "style": {
391
+ "position-x": "left",
392
+ "position-y": "top"
393
+ }
394
+ },
395
+ {
396
+ "id": "pos_top_center",
397
+ "type": "image-block",
398
+ "display": true,
399
+ "description": "",
400
+ "x": 130,
401
+ "y": 51,
402
+ "width": 100,
403
+ "height": 100,
404
+ "style": {
405
+ "position-x": "center",
406
+ "position-y": "top"
407
+ }
408
+ },
409
+ {
410
+ "id": "pos_top_right",
411
+ "type": "image-block",
412
+ "display": true,
413
+ "description": "",
414
+ "x": 240,
415
+ "y": 51,
416
+ "width": 100,
417
+ "height": 100,
418
+ "style": {
419
+ "position-x": "right",
420
+ "position-y": "top"
421
+ }
422
+ },
423
+ {
424
+ "id": "pos_center_left",
425
+ "type": "image-block",
426
+ "display": true,
427
+ "description": "",
428
+ "x": 20,
429
+ "y": 161,
430
+ "width": 100,
431
+ "height": 100,
432
+ "style": {
433
+ "position-x": "left",
434
+ "position-y": "middle"
435
+ }
436
+ },
437
+ {
438
+ "id": "",
439
+ "type": "rect",
440
+ "display": true,
441
+ "description": "",
442
+ "x": 20,
443
+ "y": 161,
444
+ "width": 100,
445
+ "height": 100,
446
+ "style": {
447
+ "border-color": "#ff0000",
448
+ "border-width": 1,
449
+ "border-style": "solid",
450
+ "fill-color": "none"
451
+ },
452
+ "border-radius": 0
453
+ },
454
+ {
455
+ "id": "pos_center_center",
456
+ "type": "image-block",
457
+ "display": true,
458
+ "description": "",
459
+ "x": 130,
460
+ "y": 161,
461
+ "width": 100,
462
+ "height": 100,
463
+ "style": {
464
+ "position-x": "center",
465
+ "position-y": "middle"
466
+ }
467
+ },
468
+ {
469
+ "id": "",
470
+ "type": "rect",
471
+ "display": true,
472
+ "description": "",
473
+ "x": 130,
474
+ "y": 161,
475
+ "width": 100,
476
+ "height": 100,
477
+ "style": {
478
+ "border-color": "#ff0000",
479
+ "border-width": 1,
480
+ "border-style": "solid",
481
+ "fill-color": "none"
482
+ },
483
+ "border-radius": 0
484
+ },
485
+ {
486
+ "id": "pos_center_right",
487
+ "type": "image-block",
488
+ "display": true,
489
+ "description": "",
490
+ "x": 240,
491
+ "y": 161,
492
+ "width": 100,
493
+ "height": 100,
494
+ "style": {
495
+ "position-x": "right",
496
+ "position-y": "middle"
497
+ }
498
+ },
499
+ {
500
+ "id": "",
501
+ "type": "rect",
502
+ "display": true,
503
+ "description": "",
504
+ "x": 240,
505
+ "y": 161,
506
+ "width": 100,
507
+ "height": 100,
508
+ "style": {
509
+ "border-color": "#ff0000",
510
+ "border-width": 1,
511
+ "border-style": "solid",
512
+ "fill-color": "none"
513
+ },
514
+ "border-radius": 0
515
+ },
516
+ {
517
+ "id": "pos_bottom_left",
518
+ "type": "image-block",
519
+ "display": true,
520
+ "description": "",
521
+ "x": 20,
522
+ "y": 271,
523
+ "width": 100,
524
+ "height": 100,
525
+ "style": {
526
+ "position-x": "left",
527
+ "position-y": "bottom"
528
+ }
529
+ },
530
+ {
531
+ "id": "",
532
+ "type": "rect",
533
+ "display": true,
534
+ "description": "",
535
+ "x": 20,
536
+ "y": 271,
537
+ "width": 100,
538
+ "height": 100,
539
+ "style": {
540
+ "border-color": "#ff0000",
541
+ "border-width": 1,
542
+ "border-style": "solid",
543
+ "fill-color": "none"
544
+ },
545
+ "border-radius": 0
546
+ },
547
+ {
548
+ "id": "pos_bottom_center",
549
+ "type": "image-block",
550
+ "display": true,
551
+ "description": "",
552
+ "x": 130,
553
+ "y": 271,
554
+ "width": 100,
555
+ "height": 100,
556
+ "style": {
557
+ "position-x": "center",
558
+ "position-y": "bottom"
559
+ }
560
+ },
561
+ {
562
+ "id": "",
563
+ "type": "rect",
564
+ "display": true,
565
+ "description": "",
566
+ "x": 130,
567
+ "y": 271,
568
+ "width": 100,
569
+ "height": 100,
570
+ "style": {
571
+ "border-color": "#ff0000",
572
+ "border-width": 1,
573
+ "border-style": "solid",
574
+ "fill-color": "none"
575
+ },
576
+ "border-radius": 0
577
+ },
578
+ {
579
+ "id": "pos_bottom_right",
580
+ "type": "image-block",
581
+ "display": true,
582
+ "description": "",
583
+ "x": 240,
584
+ "y": 271,
585
+ "width": 100,
586
+ "height": 100,
587
+ "style": {
588
+ "position-x": "right",
589
+ "position-y": "bottom"
590
+ }
591
+ },
592
+ {
593
+ "id": "",
594
+ "type": "rect",
595
+ "display": true,
596
+ "description": "",
597
+ "x": 240,
598
+ "y": 271,
599
+ "width": 100,
600
+ "height": 100,
601
+ "style": {
602
+ "border-color": "#ff0000",
603
+ "border-width": 1,
604
+ "border-style": "solid",
605
+ "fill-color": "none"
606
+ },
607
+ "border-radius": 0
608
+ },
609
+ {
610
+ "id": "overflow",
611
+ "type": "image-block",
612
+ "display": true,
613
+ "description": "",
614
+ "x": 20,
615
+ "y": 443,
616
+ "width": 150,
617
+ "height": 100,
618
+ "style": {
619
+ "position-x": "left",
620
+ "position-y": "top"
621
+ }
622
+ },
623
+ {
624
+ "id": "thinreports_logo",
625
+ "type": "image-block",
626
+ "display": true,
627
+ "description": "",
628
+ "x": 20,
629
+ "y": 628,
630
+ "width": 555.2,
631
+ "height": 92.3,
632
+ "style": {
633
+ "position-x": "center",
634
+ "position-y": "middle"
635
+ }
636
+ }
637
+ ],
638
+ "state": {
639
+ "layout-guides": [
640
+ {
641
+ "type": "x",
642
+ "position": 340.1
643
+ },
644
+ {
645
+ "type": "y",
646
+ "position": 371.1
647
+ }
648
+ ]
649
+ },
650
+ "title": "",
651
+ "report": {
652
+ "paper-type": "A4",
653
+ "orientation": "portrait",
654
+ "margin": [
655
+ 20,
656
+ 20,
657
+ 20,
658
+ 20
659
+ ]
660
+ }
661
+ }