thinreports 0.10.2 → 0.10.3

Sign up to get free protection for your applications and to get access to all the features.
Files changed (154) hide show
  1. checksums.yaml +4 -4
  2. data/.gitignore +1 -0
  3. data/.travis.yml +22 -6
  4. data/CHANGELOG.md +6 -0
  5. data/Gemfile +1 -1
  6. data/README.md +5 -6
  7. data/Rakefile +11 -25
  8. data/lib/thinreports/generator/pdf/document/draw_shape.rb +1 -1
  9. data/lib/thinreports/generator/pdf/document/draw_template_items.rb +1 -1
  10. data/lib/thinreports/layout/legacy_schema.rb +1 -0
  11. data/lib/thinreports/version.rb +1 -1
  12. data/test/features/dynamic_style/expect.pdf +3714 -0
  13. data/{examples → test/features}/dynamic_style/image.png +0 -0
  14. data/{examples/dynamic_style/dynamic_style.tlf → test/features/dynamic_style/templates/styles.tlf} +0 -0
  15. data/{examples/dynamic_style/dynamic_style_in_list.tlf → test/features/dynamic_style/templates/styles_in_list.tlf} +0 -0
  16. data/test/features/dynamic_style/test_dynamic_style.rb +152 -0
  17. data/{examples → test/features}/eudc/eudc.ttf +0 -0
  18. data/test/features/eudc/expect.pdf +0 -0
  19. data/{examples/eudc/eudc.tlf → test/features/eudc/template.tlf} +0 -0
  20. data/test/features/eudc/test_eudc.rb +27 -0
  21. data/test/features/feature_test.rb +58 -0
  22. data/test/features/graphics/expect.pdf +475 -0
  23. data/test/features/graphics/template.tlf +309 -0
  24. data/test/features/graphics/test_graphics.rb +12 -0
  25. data/test/features/hidden_item/expect.pdf +0 -0
  26. data/{examples/hidden_shapes/hidden_shapes.tlf → test/features/hidden_item/template.tlf} +0 -0
  27. data/test/features/hidden_item/test_hidden_item.rb +12 -0
  28. data/test/features/image_block/expect.pdf +0 -0
  29. data/{examples/dynamic_image → test/features/image_block}/img200x100.png +0 -0
  30. data/{examples/dynamic_image → test/features/image_block}/img50x50.png +0 -0
  31. data/{examples/dynamic_image/dynamic_image.tlf → test/features/image_block/template.tlf} +0 -0
  32. data/test/features/image_block/test_image_block.rb +35 -0
  33. data/test/features/list_events/expect.pdf +659 -0
  34. data/{examples/list_events/list_events.tlf → test/features/list_events/template.tlf} +0 -0
  35. data/{examples/list_events/list_events.rb → test/features/list_events/test_list_events.rb} +7 -3
  36. data/test/features/list_manually/expect.pdf +599 -0
  37. data/{examples/list_manual_generation/list_manual_generation.tlf → test/features/list_manually/template.tlf} +0 -0
  38. data/test/features/list_manually/test_list_manually.rb +25 -0
  39. data/test/features/page_number/expect.pdf +400 -0
  40. data/{examples/page_number/page_number.tlf → test/features/page_number/template.tlf} +0 -0
  41. data/test/features/page_number/test_page_number.rb +24 -0
  42. data/test/features/page_number_with_list/expect.pdf +721 -0
  43. data/{examples/list_page_number/list_page_number.tlf → test/features/page_number_with_list/template.tlf} +0 -0
  44. data/test/features/page_number_with_list/test_page_number_with_list.rb +21 -0
  45. data/test/features/palleted_png/expect.pdf +0 -0
  46. data/{examples → test/features}/palleted_png/palleted_png.png +0 -0
  47. data/{examples/palleted_png/palleted_png.tlf → test/features/palleted_png/template.tlf} +0 -0
  48. data/test/features/palleted_png/test_palleted_png.rb +14 -0
  49. data/test/features/report_callbacks/expect.pdf +169 -0
  50. data/{examples/report_callbacks/report_callbacks.tlf → test/features/report_callbacks/template.tlf} +0 -0
  51. data/test/features/report_callbacks/test_report_callbacks.rb +18 -0
  52. data/test/features/text_align/expect.pdf +0 -0
  53. data/{examples/text_align/text_align.tlf → test/features/text_align/template.tlf} +0 -0
  54. data/test/features/text_align/test_text_align.rb +12 -0
  55. data/test/features/text_block_overflow/expect.pdf +0 -0
  56. data/{examples/tblock_overflow/tblock_overflow.tlf → test/features/text_block_overflow/template.tlf} +0 -0
  57. data/test/features/text_block_overflow/test_text_block_overflow.rb +25 -0
  58. data/test/features/text_block_singleline/expect.pdf +0 -0
  59. data/{examples/single_line_tblock/single_line_tblock.tlf → test/features/text_block_singleline/template.tlf} +0 -0
  60. data/test/features/text_block_singleline/test_text_block_singleline.rb +15 -0
  61. data/test/features/text_block_style/expect.pdf +1390 -1
  62. data/{examples/tblock_styles/tblock_styles.tlf → test/features/text_block_style/templates/basic_styles.tlf} +0 -0
  63. data/{examples/tblock_styles → test/features/text_block_style/templates}/font_size.tlf +0 -0
  64. data/{examples/tblock_styles/tblock_styles.rb → test/features/text_block_style/test_text_block_style.rb} +9 -5
  65. data/test/features/text_character_spacing/expect.pdf +0 -0
  66. data/{examples/character_spacing/character_spacing.tlf → test/features/text_character_spacing/template.tlf} +0 -0
  67. data/test/features/text_character_spacing/test_text_character_spacing.rb +12 -0
  68. data/test/features/text_word_wrap/expect.pdf +0 -0
  69. data/{examples/word_wrap/word_wrap.tlf → test/features/text_word_wrap/template.tlf} +0 -0
  70. data/test/features/text_word_wrap/test_text_word_wrap.rb +30 -0
  71. data/test/test_helper.rb +1 -10
  72. data/test/{unit → units}/core/format/test_base.rb +0 -0
  73. data/test/{unit → units}/core/shape/base/test_internal.rb +0 -0
  74. data/test/{unit → units}/core/shape/basic/test_block_format.rb +0 -0
  75. data/test/{unit → units}/core/shape/basic/test_block_interface.rb +0 -0
  76. data/test/{unit → units}/core/shape/basic/test_block_internal.rb +0 -0
  77. data/test/{unit → units}/core/shape/basic/test_format.rb +0 -0
  78. data/test/{unit → units}/core/shape/basic/test_interface.rb +0 -0
  79. data/test/{unit → units}/core/shape/basic/test_internal.rb +0 -0
  80. data/test/{unit → units}/core/shape/image_block/test_interface.rb +0 -0
  81. data/test/{unit → units}/core/shape/image_block/test_internal.rb +0 -0
  82. data/test/{unit → units}/core/shape/list/test_format.rb +0 -0
  83. data/test/{unit → units}/core/shape/list/test_manager.rb +0 -0
  84. data/test/{unit → units}/core/shape/list/test_page.rb +0 -0
  85. data/test/{unit → units}/core/shape/list/test_page_state.rb +0 -0
  86. data/test/{unit → units}/core/shape/list/test_section_format.rb +0 -0
  87. data/test/{unit → units}/core/shape/list/test_section_interface.rb +0 -0
  88. data/test/{unit → units}/core/shape/list/test_section_internal.rb +0 -0
  89. data/test/{unit → units}/core/shape/manager/test_format.rb +0 -0
  90. data/test/{unit → units}/core/shape/manager/test_internal.rb +0 -0
  91. data/test/{unit → units}/core/shape/manager/test_target.rb +0 -0
  92. data/test/{unit → units}/core/shape/page_number/test_format.rb +0 -0
  93. data/test/{unit → units}/core/shape/page_number/test_interface.rb +0 -0
  94. data/test/{unit → units}/core/shape/page_number/test_internal.rb +0 -0
  95. data/test/{unit → units}/core/shape/styles/test_base.rb +0 -0
  96. data/test/{unit → units}/core/shape/styles/test_basic.rb +0 -0
  97. data/test/{unit → units}/core/shape/styles/test_graphic.rb +0 -0
  98. data/test/{unit → units}/core/shape/styles/test_text.rb +0 -0
  99. data/test/{unit → units}/core/shape/text/test_format.rb +0 -0
  100. data/test/{unit → units}/core/shape/text/test_internal.rb +0 -0
  101. data/test/{unit → units}/core/shape/text_block/formatter/test_basic.rb +0 -0
  102. data/test/{unit → units}/core/shape/text_block/formatter/test_datetime.rb +0 -0
  103. data/test/{unit → units}/core/shape/text_block/formatter/test_number.rb +0 -0
  104. data/test/{unit → units}/core/shape/text_block/formatter/test_padding.rb +0 -0
  105. data/test/{unit → units}/core/shape/text_block/test_format.rb +0 -0
  106. data/test/{unit → units}/core/shape/text_block/test_formatter.rb +0 -0
  107. data/test/{unit → units}/core/shape/text_block/test_interface.rb +0 -0
  108. data/test/{unit → units}/core/shape/text_block/test_internal.rb +0 -0
  109. data/test/{unit → units}/core/test_shape.rb +0 -0
  110. data/test/{unit → units}/core/test_utils.rb +0 -0
  111. data/test/{unit → units}/generator/pdf/document/graphics/test_attributes.rb +0 -0
  112. data/test/{unit → units}/generator/pdf/document/graphics/test_basic.rb +0 -0
  113. data/test/{unit → units}/generator/pdf/document/graphics/test_image.rb +0 -0
  114. data/test/{unit → units}/generator/pdf/document/graphics/test_text.rb +0 -0
  115. data/test/{unit → units}/generator/pdf/document/test_font.rb +0 -0
  116. data/test/{unit → units}/generator/pdf/document/test_graphics.rb +0 -0
  117. data/test/{unit → units}/generator/pdf/document/test_page.rb +0 -0
  118. data/test/{unit → units}/generator/pdf/document/test_parse_color.rb +0 -0
  119. data/test/{unit → units}/generator/pdf/prawn_ext/test_calc_image_dimensions.rb +0 -0
  120. data/test/{unit → units}/generator/pdf/prawn_ext/test_width_of.rb +0 -0
  121. data/test/{unit → units}/generator/pdf/test_document.rb +0 -0
  122. data/test/{unit → units}/generator/test_pdf.rb +0 -0
  123. data/test/{unit → units}/layout/test_base.rb +0 -0
  124. data/test/{unit → units}/layout/test_format.rb +0 -0
  125. data/test/{unit → units}/layout/test_legacy_schema.rb +3 -1
  126. data/test/{unit → units}/layout/test_version.rb +0 -0
  127. data/test/{unit → units}/report/test_base.rb +0 -0
  128. data/test/{unit → units}/report/test_internal.rb +0 -0
  129. data/test/{unit → units}/test_config.rb +0 -0
  130. data/test/{unit → units}/test_layout.rb +0 -0
  131. data/test/{unit → units}/test_report.rb +0 -0
  132. data/thinreports.gemspec +0 -1
  133. metadata +122 -123
  134. data/examples/character_spacing/character_spacing.rb +0 -8
  135. data/examples/dynamic_image/dynamic_image.rb +0 -31
  136. data/examples/dynamic_style/dynamic_style.rb +0 -150
  137. data/examples/eudc/eudc.rb +0 -20
  138. data/examples/helper.rb +0 -50
  139. data/examples/hidden_shapes/hidden_shapes.rb +0 -9
  140. data/examples/list_manual_generation/list_manual_generation.rb +0 -22
  141. data/examples/list_page_number/list_page_number.rb +0 -17
  142. data/examples/page_number/page_number.rb +0 -33
  143. data/examples/palleted_png/palleted_png.rb +0 -9
  144. data/examples/password_setting/password_setting.rb +0 -10
  145. data/examples/password_setting/password_setting.tlf +0 -45
  146. data/examples/report_callbacks/report_callbacks.rb +0 -14
  147. data/examples/single_line_tblock/single_line_tblock.rb +0 -13
  148. data/examples/tblock_overflow/tblock_overflow.rb +0 -20
  149. data/examples/text_align/text_align.rb +0 -8
  150. data/examples/typeB_page_size/B4_ISO.tlf +0 -45
  151. data/examples/typeB_page_size/B4_JIS.tlf +0 -45
  152. data/examples/typeB_page_size/typeB_page_size.rb +0 -17
  153. data/examples/word_wrap/word_wrap.rb +0 -26
  154. data/test/tmp/.gitkeep +0 -0
@@ -1,8 +1,10 @@
1
1
  # frozen_string_literal: true
2
2
 
3
- example :list_events, 'Basic list events' do |t|
4
- Thinreports::Report.generate filename: t.output_filename do |report|
5
- report.use_layout t.layout_filename
3
+ require 'feature_test'
4
+
5
+ class TestListEvents < FeatureTest
6
+ feature :list_events do
7
+ report = Thinreports::Report.new layout: template_path
6
8
 
7
9
  report.list.header title: 'Prices'
8
10
 
@@ -28,5 +30,7 @@ example :list_events, 'Basic list events' do |t|
28
30
  price_for[:page] += price
29
31
  end
30
32
  end
33
+
34
+ assert_pdf report.generate
31
35
  end
32
36
  end
@@ -0,0 +1,599 @@
1
+ %PDF-1.3
2
+ %����
3
+ 1 0 obj
4
+ << /CreationDate (D:20181111034356+09'00')
5
+ /Creator <feff005400680069006e007200650070006f007200740073002000470065006e0065007200610074006f007200200066006f00720020005200750062007900200030002e00310030002e0032>
6
+ /Title <feff004c0069007300740020004d0061006e00750061006c002000470065006e00650072006100740069006f006e>
7
+ /Producer <feff0050007200610077006e>
8
+ >>
9
+ endobj
10
+ 2 0 obj
11
+ << /Type /Catalog
12
+ /Pages 3 0 R
13
+ >>
14
+ endobj
15
+ 3 0 obj
16
+ << /Type /Pages
17
+ /Count 4
18
+ /Kids [7 0 R 13 0 R 15 0 R 17 0 R]
19
+ >>
20
+ endobj
21
+ 4 0 obj
22
+ << /Length 8
23
+ >>
24
+ stream
25
+ q
26
+ 0.9 w
27
+
28
+ endstream
29
+ endobj
30
+ 5 0 obj
31
+ << /Type /Page
32
+ /Parent 3 0 R
33
+ /MediaBox [0 0 612.0 792.0]
34
+ /CropBox [0 0 612.0 792.0]
35
+ /BleedBox [0 0 612.0 792.0]
36
+ /TrimBox [0 0 612.0 792.0]
37
+ /ArtBox [0 0 612.0 792.0]
38
+ /Contents 4 0 R
39
+ /Resources << /ProcSet [/PDF /Text /ImageB /ImageC /ImageI]
40
+ >>
41
+ >>
42
+ endobj
43
+ 6 0 obj
44
+ << /Length 1129
45
+ >>
46
+ stream
47
+ q
48
+ 0.9 w
49
+ /Stamp1 Do
50
+ q
51
+ 1.00000 0.00000 0.00000 1.00000 0.00000 35.00000 cm
52
+ /Stamp2 Do
53
+ Q
54
+ q
55
+ 1.00000 0.00000 0.00000 1.00000 0.00000 35.00000 cm
56
+ q
57
+ /DeviceRGB cs
58
+ 0.0 0.0 0.0 scn
59
+
60
+ BT
61
+ 218.612 754.042 Td
62
+ /F1.0 36 Tf
63
+ [<4865616465722331>] TJ
64
+ ET
65
+
66
+ Q
67
+ Q
68
+ q
69
+ 1.00000 0.00000 0.00000 1.00000 0.00000 45.30000 cm
70
+ /Stamp3 Do
71
+ Q
72
+ q
73
+ 1.00000 0.00000 0.00000 1.00000 0.00000 45.30000 cm
74
+ q
75
+ /DeviceRGB cs
76
+ 0.0 0.0 0.0 scn
77
+
78
+ BT
79
+ 231.626 691.542 Td
80
+ /F1.0 36 Tf
81
+ [<44657461696c2330>] TJ
82
+ ET
83
+
84
+ Q
85
+ Q
86
+ q
87
+ 1.00000 0.00000 0.00000 1.00000 0.00000 -12.40000 cm
88
+ /Stamp3 Do
89
+ Q
90
+ q
91
+ 1.00000 0.00000 0.00000 1.00000 0.00000 -12.40000 cm
92
+ q
93
+ /DeviceRGB cs
94
+ 0.0 0.0 0.0 scn
95
+
96
+ BT
97
+ 231.626 691.542 Td
98
+ /F1.0 36 Tf
99
+ [<44657461696c2331>] TJ
100
+ ET
101
+
102
+ Q
103
+ Q
104
+ q
105
+ 1.00000 0.00000 0.00000 1.00000 0.00000 -70.10000 cm
106
+ /Stamp3 Do
107
+ Q
108
+ q
109
+ 1.00000 0.00000 0.00000 1.00000 0.00000 -70.10000 cm
110
+ q
111
+ /DeviceRGB cs
112
+ 0.0 0.0 0.0 scn
113
+
114
+ BT
115
+ 231.626 691.542 Td
116
+ /F1.0 36 Tf
117
+ [<44657461696c2332>] TJ
118
+ ET
119
+
120
+ Q
121
+ Q
122
+ q
123
+ 1.00000 0.00000 0.00000 1.00000 0.00000 -127.80000 cm
124
+ /Stamp3 Do
125
+ Q
126
+ q
127
+ 1.00000 0.00000 0.00000 1.00000 0.00000 -127.80000 cm
128
+ q
129
+ /DeviceRGB cs
130
+ 0.0 0.0 0.0 scn
131
+
132
+ BT
133
+ 231.626 691.542 Td
134
+ /F1.0 36 Tf
135
+ [<44657461696c2333>] TJ
136
+ ET
137
+
138
+ Q
139
+ Q
140
+ Q
141
+
142
+ endstream
143
+ endobj
144
+ 7 0 obj
145
+ << /Type /Page
146
+ /Parent 3 0 R
147
+ /MediaBox [0 0 595.28 841.89]
148
+ /CropBox [0 0 595.28 841.89]
149
+ /BleedBox [0 0 595.28 841.89]
150
+ /TrimBox [0 0 595.28 841.89]
151
+ /ArtBox [0 0 595.28 841.89]
152
+ /Contents 6 0 R
153
+ /Resources << /ProcSet [/PDF /Text /ImageB /ImageC /ImageI]
154
+ /XObject << /Stamp1 8 0 R
155
+ /Stamp2 9 0 R
156
+ /Stamp3 11 0 R
157
+ >>
158
+ /Font << /F1.0 10 0 R
159
+ >>
160
+ >>
161
+ >>
162
+ endobj
163
+ 8 0 obj
164
+ << /Type /XObject
165
+ /Subtype /Form
166
+ /BBox [0 0 595.28 841.89]
167
+ /Length 85
168
+ >>
169
+ stream
170
+ q
171
+ /DeviceRGB cs
172
+ 0.0 0.0 0.0 scn
173
+ /DeviceRGB CS
174
+ 0.0 0.0 0.0 SCN
175
+ 0.9 w
176
+ 0 J
177
+ 0 j
178
+ [] 0 d
179
+ Q
180
+
181
+ endstream
182
+ endobj
183
+ 9 0 obj
184
+ << /Type /XObject
185
+ /Subtype /Form
186
+ /BBox [0 0 595.28 841.89]
187
+ /Length 85
188
+ >>
189
+ stream
190
+ q
191
+ /DeviceRGB cs
192
+ 0.0 0.0 0.0 scn
193
+ /DeviceRGB CS
194
+ 0.0 0.0 0.0 SCN
195
+ 0.9 w
196
+ 0 J
197
+ 0 j
198
+ [] 0 d
199
+ Q
200
+
201
+ endstream
202
+ endobj
203
+ 10 0 obj
204
+ << /Type /Font
205
+ /Subtype /Type1
206
+ /BaseFont /Helvetica
207
+ /Encoding /WinAnsiEncoding
208
+ >>
209
+ endobj
210
+ 11 0 obj
211
+ << /Type /XObject
212
+ /Subtype /Form
213
+ /BBox [0 0 595.28 841.89]
214
+ /Length 85
215
+ >>
216
+ stream
217
+ q
218
+ /DeviceRGB cs
219
+ 0.0 0.0 0.0 scn
220
+ /DeviceRGB CS
221
+ 0.0 0.0 0.0 SCN
222
+ 0.9 w
223
+ 0 J
224
+ 0 j
225
+ [] 0 d
226
+ Q
227
+
228
+ endstream
229
+ endobj
230
+ 12 0 obj
231
+ << /Length 1129
232
+ >>
233
+ stream
234
+ q
235
+ 0.9 w
236
+ /Stamp1 Do
237
+ q
238
+ 1.00000 0.00000 0.00000 1.00000 0.00000 35.00000 cm
239
+ /Stamp2 Do
240
+ Q
241
+ q
242
+ 1.00000 0.00000 0.00000 1.00000 0.00000 35.00000 cm
243
+ q
244
+ /DeviceRGB cs
245
+ 0.0 0.0 0.0 scn
246
+
247
+ BT
248
+ 218.612 754.042 Td
249
+ /F1.0 36 Tf
250
+ [<4865616465722332>] TJ
251
+ ET
252
+
253
+ Q
254
+ Q
255
+ q
256
+ 1.00000 0.00000 0.00000 1.00000 0.00000 45.30000 cm
257
+ /Stamp3 Do
258
+ Q
259
+ q
260
+ 1.00000 0.00000 0.00000 1.00000 0.00000 45.30000 cm
261
+ q
262
+ /DeviceRGB cs
263
+ 0.0 0.0 0.0 scn
264
+
265
+ BT
266
+ 231.626 691.542 Td
267
+ /F1.0 36 Tf
268
+ [<44657461696c2334>] TJ
269
+ ET
270
+
271
+ Q
272
+ Q
273
+ q
274
+ 1.00000 0.00000 0.00000 1.00000 0.00000 -12.40000 cm
275
+ /Stamp3 Do
276
+ Q
277
+ q
278
+ 1.00000 0.00000 0.00000 1.00000 0.00000 -12.40000 cm
279
+ q
280
+ /DeviceRGB cs
281
+ 0.0 0.0 0.0 scn
282
+
283
+ BT
284
+ 231.626 691.542 Td
285
+ /F1.0 36 Tf
286
+ [<44657461696c2335>] TJ
287
+ ET
288
+
289
+ Q
290
+ Q
291
+ q
292
+ 1.00000 0.00000 0.00000 1.00000 0.00000 -70.10000 cm
293
+ /Stamp3 Do
294
+ Q
295
+ q
296
+ 1.00000 0.00000 0.00000 1.00000 0.00000 -70.10000 cm
297
+ q
298
+ /DeviceRGB cs
299
+ 0.0 0.0 0.0 scn
300
+
301
+ BT
302
+ 231.626 691.542 Td
303
+ /F1.0 36 Tf
304
+ [<44657461696c2336>] TJ
305
+ ET
306
+
307
+ Q
308
+ Q
309
+ q
310
+ 1.00000 0.00000 0.00000 1.00000 0.00000 -127.80000 cm
311
+ /Stamp3 Do
312
+ Q
313
+ q
314
+ 1.00000 0.00000 0.00000 1.00000 0.00000 -127.80000 cm
315
+ q
316
+ /DeviceRGB cs
317
+ 0.0 0.0 0.0 scn
318
+
319
+ BT
320
+ 231.626 691.542 Td
321
+ /F1.0 36 Tf
322
+ [<44657461696c2337>] TJ
323
+ ET
324
+
325
+ Q
326
+ Q
327
+ Q
328
+
329
+ endstream
330
+ endobj
331
+ 13 0 obj
332
+ << /Type /Page
333
+ /Parent 3 0 R
334
+ /MediaBox [0 0 595.28 841.89]
335
+ /CropBox [0 0 595.28 841.89]
336
+ /BleedBox [0 0 595.28 841.89]
337
+ /TrimBox [0 0 595.28 841.89]
338
+ /ArtBox [0 0 595.28 841.89]
339
+ /Contents 12 0 R
340
+ /Resources << /ProcSet [/PDF /Text /ImageB /ImageC /ImageI]
341
+ /XObject << /Stamp1 8 0 R
342
+ /Stamp2 9 0 R
343
+ /Stamp3 11 0 R
344
+ >>
345
+ /Font << /F1.0 10 0 R
346
+ >>
347
+ >>
348
+ >>
349
+ endobj
350
+ 14 0 obj
351
+ << /Length 1133
352
+ >>
353
+ stream
354
+ q
355
+ 0.9 w
356
+ /Stamp1 Do
357
+ q
358
+ 1.00000 0.00000 0.00000 1.00000 0.00000 35.00000 cm
359
+ /Stamp2 Do
360
+ Q
361
+ q
362
+ 1.00000 0.00000 0.00000 1.00000 0.00000 35.00000 cm
363
+ q
364
+ /DeviceRGB cs
365
+ 0.0 0.0 0.0 scn
366
+
367
+ BT
368
+ 218.612 754.042 Td
369
+ /F1.0 36 Tf
370
+ [<4865616465722333>] TJ
371
+ ET
372
+
373
+ Q
374
+ Q
375
+ q
376
+ 1.00000 0.00000 0.00000 1.00000 0.00000 45.30000 cm
377
+ /Stamp3 Do
378
+ Q
379
+ q
380
+ 1.00000 0.00000 0.00000 1.00000 0.00000 45.30000 cm
381
+ q
382
+ /DeviceRGB cs
383
+ 0.0 0.0 0.0 scn
384
+
385
+ BT
386
+ 231.626 691.542 Td
387
+ /F1.0 36 Tf
388
+ [<44657461696c2338>] TJ
389
+ ET
390
+
391
+ Q
392
+ Q
393
+ q
394
+ 1.00000 0.00000 0.00000 1.00000 0.00000 -12.40000 cm
395
+ /Stamp3 Do
396
+ Q
397
+ q
398
+ 1.00000 0.00000 0.00000 1.00000 0.00000 -12.40000 cm
399
+ q
400
+ /DeviceRGB cs
401
+ 0.0 0.0 0.0 scn
402
+
403
+ BT
404
+ 231.626 691.542 Td
405
+ /F1.0 36 Tf
406
+ [<44657461696c2339>] TJ
407
+ ET
408
+
409
+ Q
410
+ Q
411
+ q
412
+ 1.00000 0.00000 0.00000 1.00000 0.00000 -70.10000 cm
413
+ /Stamp3 Do
414
+ Q
415
+ q
416
+ 1.00000 0.00000 0.00000 1.00000 0.00000 -70.10000 cm
417
+ q
418
+ /DeviceRGB cs
419
+ 0.0 0.0 0.0 scn
420
+
421
+ BT
422
+ 221.618 691.542 Td
423
+ /F1.0 36 Tf
424
+ [<44657461696c233130>] TJ
425
+ ET
426
+
427
+ Q
428
+ Q
429
+ q
430
+ 1.00000 0.00000 0.00000 1.00000 0.00000 -127.80000 cm
431
+ /Stamp3 Do
432
+ Q
433
+ q
434
+ 1.00000 0.00000 0.00000 1.00000 0.00000 -127.80000 cm
435
+ q
436
+ /DeviceRGB cs
437
+ 0.0 0.0 0.0 scn
438
+
439
+ BT
440
+ 221.618 691.542 Td
441
+ /F1.0 36 Tf
442
+ [<44657461696c233131>] TJ
443
+ ET
444
+
445
+ Q
446
+ Q
447
+ Q
448
+
449
+ endstream
450
+ endobj
451
+ 15 0 obj
452
+ << /Type /Page
453
+ /Parent 3 0 R
454
+ /MediaBox [0 0 595.28 841.89]
455
+ /CropBox [0 0 595.28 841.89]
456
+ /BleedBox [0 0 595.28 841.89]
457
+ /TrimBox [0 0 595.28 841.89]
458
+ /ArtBox [0 0 595.28 841.89]
459
+ /Contents 14 0 R
460
+ /Resources << /ProcSet [/PDF /Text /ImageB /ImageC /ImageI]
461
+ /XObject << /Stamp1 8 0 R
462
+ /Stamp2 9 0 R
463
+ /Stamp3 11 0 R
464
+ >>
465
+ /Font << /F1.0 10 0 R
466
+ >>
467
+ >>
468
+ >>
469
+ endobj
470
+ 16 0 obj
471
+ << /Length 911
472
+ >>
473
+ stream
474
+ q
475
+ 0.9 w
476
+ /Stamp1 Do
477
+ q
478
+ 1.00000 0.00000 0.00000 1.00000 0.00000 35.00000 cm
479
+ /Stamp2 Do
480
+ Q
481
+ q
482
+ 1.00000 0.00000 0.00000 1.00000 0.00000 35.00000 cm
483
+ q
484
+ /DeviceRGB cs
485
+ 0.0 0.0 0.0 scn
486
+
487
+ BT
488
+ 218.612 754.042 Td
489
+ /F1.0 36 Tf
490
+ [<4865616465722334>] TJ
491
+ ET
492
+
493
+ Q
494
+ Q
495
+ q
496
+ 1.00000 0.00000 0.00000 1.00000 0.00000 45.30000 cm
497
+ /Stamp3 Do
498
+ Q
499
+ q
500
+ 1.00000 0.00000 0.00000 1.00000 0.00000 45.30000 cm
501
+ q
502
+ /DeviceRGB cs
503
+ 0.0 0.0 0.0 scn
504
+
505
+ BT
506
+ 221.618 691.542 Td
507
+ /F1.0 36 Tf
508
+ [<44657461696c233132>] TJ
509
+ ET
510
+
511
+ Q
512
+ Q
513
+ q
514
+ 1.00000 0.00000 0.00000 1.00000 0.00000 -12.40000 cm
515
+ /Stamp3 Do
516
+ Q
517
+ q
518
+ 1.00000 0.00000 0.00000 1.00000 0.00000 -12.40000 cm
519
+ q
520
+ /DeviceRGB cs
521
+ 0.0 0.0 0.0 scn
522
+
523
+ BT
524
+ 221.618 691.542 Td
525
+ /F1.0 36 Tf
526
+ [<44657461696c233133>] TJ
527
+ ET
528
+
529
+ Q
530
+ Q
531
+ q
532
+ 1.00000 0.00000 0.00000 1.00000 0.00000 -70.10000 cm
533
+ /Stamp3 Do
534
+ Q
535
+ q
536
+ 1.00000 0.00000 0.00000 1.00000 0.00000 -70.10000 cm
537
+ q
538
+ /DeviceRGB cs
539
+ 0.0 0.0 0.0 scn
540
+
541
+ BT
542
+ 221.618 691.542 Td
543
+ /F1.0 36 Tf
544
+ [<44657461696c233134>] TJ
545
+ ET
546
+
547
+ Q
548
+ Q
549
+ Q
550
+
551
+ endstream
552
+ endobj
553
+ 17 0 obj
554
+ << /Type /Page
555
+ /Parent 3 0 R
556
+ /MediaBox [0 0 595.28 841.89]
557
+ /CropBox [0 0 595.28 841.89]
558
+ /BleedBox [0 0 595.28 841.89]
559
+ /TrimBox [0 0 595.28 841.89]
560
+ /ArtBox [0 0 595.28 841.89]
561
+ /Contents 16 0 R
562
+ /Resources << /ProcSet [/PDF /Text /ImageB /ImageC /ImageI]
563
+ /XObject << /Stamp1 8 0 R
564
+ /Stamp2 9 0 R
565
+ /Stamp3 11 0 R
566
+ >>
567
+ /Font << /F1.0 10 0 R
568
+ >>
569
+ >>
570
+ >>
571
+ endobj
572
+ xref
573
+ 0 18
574
+ 0000000000 65535 f
575
+ 0000000015 00000 n
576
+ 0000000379 00000 n
577
+ 0000000428 00000 n
578
+ 0000000506 00000 n
579
+ 0000000563 00000 n
580
+ 0000000825 00000 n
581
+ 0000002006 00000 n
582
+ 0000002361 00000 n
583
+ 0000002552 00000 n
584
+ 0000002743 00000 n
585
+ 0000002841 00000 n
586
+ 0000003033 00000 n
587
+ 0000004215 00000 n
588
+ 0000004572 00000 n
589
+ 0000005758 00000 n
590
+ 0000006115 00000 n
591
+ 0000007078 00000 n
592
+ trailer
593
+ << /Size 18
594
+ /Root 2 0 R
595
+ /Info 1 0 R
596
+ >>
597
+ startxref
598
+ 7435
599
+ %%EOF