br_danfe 0.14.4 → 0.16.0

Sign up to get free protection for your applications and to get access to all the features.
Files changed (161) hide show
  1. checksums.yaml +4 -4
  2. data/.tool-versions +1 -0
  3. data/Gemfile.lock +48 -33
  4. data/Guardfile +2 -2
  5. data/README.md +39 -0
  6. data/br_danfe.gemspec +5 -4
  7. data/config/locales/pt-BR.yml +1 -0
  8. data/lib/br_danfe.rb +1 -1
  9. data/lib/br_danfe/danfe.rb +8 -5
  10. data/lib/br_danfe/danfe_lib/base.rb +2 -2
  11. data/lib/br_danfe/danfe_lib/nfce.rb +14 -12
  12. data/lib/br_danfe/danfe_lib/nfe.rb +39 -27
  13. data/lib/br_danfe/danfe_lib/nfe_lib/dest.rb +1 -1
  14. data/lib/br_danfe/danfe_lib/nfe_lib/emit_header.rb +5 -5
  15. data/lib/br_danfe/document_builder.rb +1 -1
  16. data/lib/br_danfe/helper.rb +11 -7
  17. data/lib/br_danfe/mdfe.rb +55 -0
  18. data/lib/br_danfe/mdfe_lib/authorization_protocol.rb +24 -0
  19. data/lib/br_danfe/mdfe_lib/document.rb +26 -0
  20. data/lib/br_danfe/mdfe_lib/drivers.rb +70 -0
  21. data/lib/br_danfe/mdfe_lib/fisco_control.rb +40 -0
  22. data/lib/br_danfe/mdfe_lib/header.rb +78 -0
  23. data/lib/br_danfe/mdfe_lib/mdfe_identification.rb +69 -0
  24. data/lib/br_danfe/mdfe_lib/notes.rb +94 -0
  25. data/lib/br_danfe/mdfe_lib/totalizer.rb +57 -0
  26. data/lib/br_danfe/mdfe_lib/vehicles.rb +80 -0
  27. data/lib/br_danfe/qr_code.rb +22 -0
  28. data/lib/br_danfe/version.rb +1 -1
  29. data/spec/br_danfe/danfe_lib/nfce_spec.rb +12 -1
  30. data/spec/br_danfe/danfe_lib/nfe_lib/emit_header_spec.rb +2 -2
  31. data/spec/br_danfe/danfe_lib/nfe_lib/infadic_spec.rb +3 -3
  32. data/spec/br_danfe/danfe_lib/nfe_spec.rb +17 -1
  33. data/spec/br_danfe/danfe_spec.rb +16 -0
  34. data/spec/br_danfe/helper_spec.rb +12 -0
  35. data/spec/br_danfe/mdfe_lib/authorization_protocol_spec.rb +35 -0
  36. data/spec/br_danfe/mdfe_lib/document_spec.rb +20 -0
  37. data/spec/br_danfe/mdfe_lib/drivers_spec.rb +88 -0
  38. data/spec/br_danfe/mdfe_lib/fisco_control_spec.rb +55 -0
  39. data/spec/br_danfe/mdfe_lib/header_spec.rb +126 -0
  40. data/spec/br_danfe/mdfe_lib/mdfe_identification_spec.rb +104 -0
  41. data/spec/br_danfe/mdfe_lib/notes_spec.rb +97 -0
  42. data/spec/br_danfe/mdfe_lib/totalizer_spec.rb +63 -0
  43. data/spec/br_danfe/mdfe_lib/vehicles_spec.rb +66 -0
  44. data/spec/br_danfe/mdfe_spec.rb +46 -0
  45. data/spec/br_danfe/{danfe_lib/nfce_lib/qr_code_spec.rb → qr_code_spec.rb} +10 -5
  46. data/spec/fixtures/cce/lib/barcode#render.pdf +5 -3
  47. data/spec/fixtures/cce/v1.00/cce.fixture.pdf +15 -13
  48. data/spec/fixtures/mdfe/lib/document#render.pdf +0 -0
  49. data/spec/fixtures/mdfe/lib/document#text.align.pdf +0 -0
  50. data/spec/fixtures/mdfe/lib/document#text.pad.pdf +0 -0
  51. data/spec/fixtures/mdfe/lib/document#text.simple.pdf +0 -0
  52. data/spec/fixtures/mdfe/lib/document#text.size.pdf +0 -0
  53. data/spec/fixtures/mdfe/lib/document#text.style.pdf +0 -0
  54. data/spec/fixtures/mdfe/lib/fisco_control#barcode.pdf +0 -0
  55. data/spec/fixtures/mdfe/lib/header#render-qr-code.pdf +0 -0
  56. data/spec/fixtures/mdfe/lib/header#render-with_logo.pdf +0 -0
  57. data/spec/fixtures/mdfe/lib/header#render-without_logo.pdf +0 -0
  58. data/spec/fixtures/mdfe/lib/mdfe-with-multiple-pages.pdf +1945 -0
  59. data/spec/fixtures/mdfe/lib/mdfe.fixture.pdf +1286 -0
  60. data/spec/fixtures/mdfe/lib/notes#render-big-aditional-information.pdf +1943 -0
  61. data/spec/fixtures/mdfe/lib/xml-mdfe-multiples-pages.xml +116 -0
  62. data/spec/fixtures/mdfe/lib/xml-mdfe.xml +250 -0
  63. data/spec/fixtures/nfce/lib/document#render.pdf +17 -17
  64. data/spec/fixtures/nfce/lib/footer#render-with_additional_information.pdf +12 -12
  65. data/spec/fixtures/nfce/lib/footer#render.pdf +10 -10
  66. data/spec/fixtures/nfce/lib/header#render-homologation.pdf +0 -0
  67. data/spec/fixtures/nfce/lib/header#render-long_name_with_logo.pdf +0 -0
  68. data/spec/fixtures/nfce/lib/header#render-long_name_without_logo.pdf +16 -16
  69. data/spec/fixtures/nfce/lib/header#render-short_name_with_logo.pdf +0 -0
  70. data/spec/fixtures/nfce/lib/header#render-short_name_without_logo.pdf +16 -16
  71. data/spec/fixtures/nfce/lib/key#render.pdf +14 -14
  72. data/spec/fixtures/nfce/lib/nfce_identification#render.pdf +16 -16
  73. data/spec/fixtures/nfce/lib/product_list#render-with_many_products.pdf +43 -43
  74. data/spec/fixtures/nfce/lib/product_list#render-with_many_products_and_long_names.pdf +47 -47
  75. data/spec/fixtures/nfce/lib/product_list#render-with_single_product.pdf +25 -25
  76. data/spec/fixtures/nfce/lib/product_list#render-with_single_product_and_long_name.pdf +27 -27
  77. data/spec/fixtures/nfce/lib/qr_code#render.pdf +0 -0
  78. data/spec/fixtures/nfce/lib/recipient#render-company.pdf +13 -13
  79. data/spec/fixtures/nfce/lib/recipient#render-consumer_without_document.pdf +12 -12
  80. data/spec/fixtures/nfce/lib/recipient#render-foreign.pdf +13 -13
  81. data/spec/fixtures/nfce/lib/recipient#render-individual.pdf +13 -13
  82. data/spec/fixtures/nfce/lib/recipient#render-unidentified_consumer.pdf +11 -11
  83. data/spec/fixtures/nfce/lib/total_list#does_not_render-payment_methods.pdf +19 -19
  84. data/spec/fixtures/nfce/lib/total_list#render-grouped_payment_methods.pdf +26 -26
  85. data/spec/fixtures/nfce/lib/total_list#render-totals.pdf +19 -19
  86. data/spec/fixtures/nfce/lib/total_list#render-without_payment.pdf +28 -28
  87. data/spec/fixtures/nfce/lib/total_list#render.pdf +28 -28
  88. data/spec/fixtures/nfce/v4.00/multiples_xmls_on_the_same_pdf.pdf +1229 -0
  89. data/spec/fixtures/nfce/v4.00/nfce-unauthorized-hom.fixture.pdf +0 -0
  90. data/spec/fixtures/nfce/v4.00/nfce-unauthorized-prod.fixture.pdf +0 -0
  91. data/spec/fixtures/nfce/v4.00/rendered_nfce.fixture.pdf +0 -0
  92. data/spec/fixtures/nfce/v4.00/saved_nfce.fixture.pdf +0 -0
  93. data/spec/fixtures/nfe/lib/dest#render-v2.00.pdf +0 -0
  94. data/spec/fixtures/nfe/lib/dest#render-v3.10.pdf +0 -0
  95. data/spec/fixtures/nfe/lib/dest#render-v4.00.pdf +0 -0
  96. data/spec/fixtures/nfe/lib/dest#render-with-address-bigger.pdf +0 -0
  97. data/spec/fixtures/nfe/lib/dest#render-with_cnpj.pdf +0 -0
  98. data/spec/fixtures/nfe/lib/dest#render-with_cpf.pdf +0 -0
  99. data/spec/fixtures/nfe/lib/dest#render-with_ie.pdf +0 -0
  100. data/spec/fixtures/nfe/lib/dest#render-without-address-complement.pdf +0 -0
  101. data/spec/fixtures/nfe/lib/det_body#render-csosn.pdf +662 -662
  102. data/spec/fixtures/nfe/lib/det_body#render-cst.pdf +410 -410
  103. data/spec/fixtures/nfe/lib/det_body#render-fci.pdf +272 -272
  104. data/spec/fixtures/nfe/lib/det_body#render-icms_st.pdf +272 -272
  105. data/spec/fixtures/nfe/lib/det_body#render-quantity_with_custom_precision.pdf +270 -270
  106. data/spec/fixtures/nfe/lib/det_body#render-three_pages.pdf +6213 -6213
  107. data/spec/fixtures/nfe/lib/det_body#render-two_pages.pdf +6083 -6083
  108. data/spec/fixtures/nfe/lib/det_body#render-unit_price_with_custom_precision.pdf +270 -270
  109. data/spec/fixtures/nfe/lib/det_body#render-with_infadprod.pdf +272 -272
  110. data/spec/fixtures/nfe/lib/det_body#render-with_issqn.pdf +2859 -2859
  111. data/spec/fixtures/nfe/lib/det_body#render-without_issqn.pdf +2859 -2859
  112. data/spec/fixtures/nfe/lib/document#lcnpj-blank.pdf +0 -0
  113. data/spec/fixtures/nfe/lib/document#lcnpj-invalid.pdf +0 -0
  114. data/spec/fixtures/nfe/lib/document#lcnpj-valid.pdf +0 -0
  115. data/spec/fixtures/nfe/lib/document#lie-blank-uf-invalid.pdf +0 -0
  116. data/spec/fixtures/nfe/lib/document#lie-blank.pdf +0 -0
  117. data/spec/fixtures/nfe/lib/document#lie-invalid.pdf +0 -0
  118. data/spec/fixtures/nfe/lib/document#lie-valid.pdf +0 -0
  119. data/spec/fixtures/nfe/lib/dup#render.pdf +0 -0
  120. data/spec/fixtures/nfe/lib/emit_header#render-second_page.pdf +511 -509
  121. data/spec/fixtures/nfe/lib/emit_header#render-with_logo.pdf +510 -508
  122. data/spec/fixtures/nfe/lib/emit_header#render-without_logo.pdf +507 -505
  123. data/spec/fixtures/nfe/lib/icmstot#render.pdf +0 -0
  124. data/spec/fixtures/nfe/lib/infadic#address-shipment.pdf +0 -0
  125. data/spec/fixtures/nfe/lib/infadic#render-all_the_informations.pdf +0 -0
  126. data/spec/fixtures/nfe/lib/infadic#render-difal.pdf +0 -0
  127. data/spec/fixtures/nfe/lib/infadic#render-extra_volume.pdf +0 -0
  128. data/spec/fixtures/nfe/lib/infadic#render-with_complementary_information.pdf +0 -0
  129. data/spec/fixtures/nfe/lib/infadic#render-with_fisco_additional_information.pdf +0 -0
  130. data/spec/fixtures/nfe/lib/infadic#render-with_street_data.pdf +0 -0
  131. data/spec/fixtures/nfe/lib/infadic#render.pdf +0 -0
  132. data/spec/fixtures/nfe/lib/infadic_vol#render-extra_volume.pdf +0 -0
  133. data/spec/fixtures/nfe/lib/issqn#render-with_issqn.pdf +0 -0
  134. data/spec/fixtures/nfe/lib/issqn#render-with_one_issqn_value.pdf +0 -0
  135. data/spec/fixtures/nfe/lib/ticket#render.pdf +0 -0
  136. data/spec/fixtures/nfe/lib/transp#render-modfrete_0.pdf +0 -0
  137. data/spec/fixtures/nfe/lib/transp#render-modfrete_1.pdf +0 -0
  138. data/spec/fixtures/nfe/lib/transp#render-modfrete_2.pdf +0 -0
  139. data/spec/fixtures/nfe/lib/transp#render-modfrete_3.pdf +0 -0
  140. data/spec/fixtures/nfe/lib/transp#render-modfrete_4.pdf +0 -0
  141. data/spec/fixtures/nfe/lib/transp#render-modfrete_9.pdf +0 -0
  142. data/spec/fixtures/nfe/lib/transp#render.pdf +0 -0
  143. data/spec/fixtures/nfe/lib/vol#render-blank-boxes.pdf +0 -0
  144. data/spec/fixtures/nfe/lib/vol#render.pdf +0 -0
  145. data/spec/fixtures/nfe/v2.00/custom_options.fixture.pdf +733 -733
  146. data/spec/fixtures/nfe/v2.00/nfe_simples_nacional.xml.fixture.pdf +730 -730
  147. data/spec/fixtures/nfe/v2.00/nfe_with_extra_volumes.xml.fixture.pdf +3449 -3445
  148. data/spec/fixtures/nfe/v2.00/nfe_with_fci.xml.fixture.pdf +929 -927
  149. data/spec/fixtures/nfe/v2.00/nfe_with_ns.xml.fixture.pdf +3424 -3420
  150. data/spec/fixtures/nfe/v2.00/nfe_without_ns.xml.fixture.pdf +1178 -1176
  151. data/spec/fixtures/nfe/v3.10/multiples.xmls.on.the.same.pdf.pdf +11471 -0
  152. data/spec/fixtures/nfe/v3.10/nfe_simples_nacional.xml.fixture.pdf +1495 -1495
  153. data/spec/fixtures/nfe/v3.10/with_footer.fixture.pdf +2444 -2444
  154. data/spec/fixtures/nfe/v3.10/with_issqn.fixture.pdf +2142 -2142
  155. data/spec/fixtures/nfe/v3.10/with_three_pages.fixture.pdf +7096 -7096
  156. data/spec/fixtures/nfe/v3.10/without_issqn.fixture.pdf +2811 -2811
  157. data/spec/fixtures/qr_code/qr_code#render.pdf +0 -0
  158. metadata +90 -39
  159. data/lib/br_danfe/danfe_lib/nfce_lib/qr_code.rb +0 -25
  160. data/lib/br_danfe/danfe_lib/nfe_lib/cep.rb +0 -11
  161. data/spec/br_danfe/danfe_lib/nfe_lib/cep_spec.rb +0 -10
@@ -17,266 +17,266 @@ endobj
17
17
  >>
18
18
  endobj
19
19
  4 0 obj
20
- << /Length 2134
20
+ << /Length 2207
21
21
  >>
22
22
  stream
23
23
  q
24
24
  0.3 w
25
25
 
26
26
  BT
27
- 8.5039 129.4543 Td
27
+ 8.50394 129.45435 Td
28
28
  /F1.0 6 Tf
29
29
  <> Tj
30
30
  ET
31
31
 
32
32
 
33
33
  BT
34
- 8.5039 123.1243 Td
34
+ 8.50394 123.12435 Td
35
35
  /F1.0 6 Tf
36
36
  <> Tj
37
37
  ET
38
38
 
39
39
 
40
40
  BT
41
- 8.5039 116.7943 Td
41
+ 8.50394 116.79435 Td
42
42
  /F2.0 6 Tf
43
43
  <43f36469676f> Tj
44
44
  ET
45
45
 
46
46
 
47
47
  BT
48
- 34.0157 116.7943 Td
48
+ 34.01575 116.79435 Td
49
49
  /F2.0 6 Tf
50
50
  <446573637269e7e36f> Tj
51
51
  ET
52
52
 
53
53
 
54
54
  BT
55
- 124.4976 116.7943 Td
55
+ 124.49764 116.79435 Td
56
56
  /F2.0 6 Tf
57
57
  <51746465> Tj
58
58
  ET
59
59
 
60
60
 
61
61
  BT
62
- 143.0362 116.7943 Td
62
+ 143.03622 116.79435 Td
63
63
  /F2.0 6 Tf
64
64
  <554e> Tj
65
65
  ET
66
66
 
67
67
 
68
68
  BT
69
- 159.052 116.7943 Td
69
+ 159.05197 116.79435 Td
70
70
  /F2.0 6 Tf
71
71
  <566c20556e6974> Tj
72
72
  ET
73
73
 
74
74
 
75
75
  BT
76
- 189.4677 116.7943 Td
76
+ 189.46772 116.79435 Td
77
77
  /F2.0 6 Tf
78
78
  <566c20546f74616c> Tj
79
79
  ET
80
80
 
81
81
 
82
82
  BT
83
- 8.5039 111.1251 Td
83
+ 8.50394 111.12506 Td
84
84
  /F1.0 6 Tf
85
85
  <> Tj
86
86
  ET
87
87
 
88
88
 
89
89
  BT
90
- 8.5039 104.7951 Td
90
+ 8.50394 104.79506 Td
91
91
  /F1.0 6 Tf
92
92
  <31313733> Tj
93
93
  ET
94
94
 
95
95
 
96
96
  BT
97
- 34.0157 104.7951 Td
97
+ 34.01575 104.79506 Td
98
98
  /F1.0 6 Tf
99
99
  <41627261e761646569726120776974682061> Tj
100
100
  ET
101
101
 
102
102
 
103
103
  BT
104
- 34.0157 98.4651 Td
104
+ 34.01575 98.46506 Td
105
105
  /F1.0 6 Tf
106
106
  <6c6172676572206e616d652077697468> Tj
107
107
  ET
108
108
 
109
109
 
110
110
  BT
111
- 34.0157 92.1351 Td
111
+ 34.01575 92.13506 Td
112
112
  /F1.0 6 Tf
113
113
  <6c696e6520627265616b73> Tj
114
114
  ET
115
115
 
116
116
 
117
117
  BT
118
- 110.0976 104.7951 Td
118
+ 110.09764 104.79506 Td
119
119
  /F1.0 6 Tf
120
120
  <312e3030302c3030> Tj
121
121
  ET
122
122
 
123
123
 
124
124
  BT
125
- 143.0362 104.7951 Td
125
+ 143.03622 104.79506 Td
126
126
  /F1.0 6 Tf
127
127
  <554e> Tj
128
128
  ET
129
129
 
130
130
 
131
131
  BT
132
- 151.852 104.7951 Td
132
+ 151.85197 104.79506 Td
133
133
  /F1.0 6 Tf
134
134
  <31302e3030302c3030> Tj
135
135
  ET
136
136
 
137
137
 
138
138
  BT
139
- 185.8677 104.7951 Td
139
+ 185.86772 104.79506 Td
140
140
  /F1.0 6 Tf
141
141
  <31302e3030302c3030> Tj
142
142
  ET
143
143
 
144
144
 
145
145
  BT
146
- 8.5039 85.236 Td
146
+ 8.50394 85.236 Td
147
147
  /F1.0 6 Tf
148
148
  <31313733> Tj
149
149
  ET
150
150
 
151
151
 
152
152
  BT
153
- 34.0157 85.236 Td
153
+ 34.01575 85.236 Td
154
154
  /F1.0 6 Tf
155
155
  <41627261e7616465697261> Tj
156
156
  ET
157
157
 
158
158
 
159
159
  BT
160
- 124.4976 85.236 Td
160
+ 124.49764 85.236 Td
161
161
  /F1.0 6 Tf
162
162
  <322c3030> Tj
163
163
  ET
164
164
 
165
165
 
166
166
  BT
167
- 143.0362 85.236 Td
167
+ 143.03622 85.236 Td
168
168
  /F1.0 6 Tf
169
169
  <554e> Tj
170
170
  ET
171
171
 
172
172
 
173
173
  BT
174
- 166.252 85.236 Td
174
+ 166.25197 85.236 Td
175
175
  /F1.0 6 Tf
176
176
  <31302c3030> Tj
177
177
  ET
178
178
 
179
179
 
180
180
  BT
181
- 200.2677 85.236 Td
181
+ 200.26772 85.236 Td
182
182
  /F1.0 6 Tf
183
183
  <32302c3030> Tj
184
184
  ET
185
185
 
186
186
 
187
187
  BT
188
- 8.5039 78.7163 Td
188
+ 8.50394 78.71631 Td
189
189
  /F1.0 6 Tf
190
190
  <31313733> Tj
191
191
  ET
192
192
 
193
193
 
194
194
  BT
195
- 34.0157 78.7163 Td
195
+ 34.01575 78.71631 Td
196
196
  /F1.0 6 Tf
197
197
  <41627261e761646569726120776974682061> Tj
198
198
  ET
199
199
 
200
200
 
201
201
  BT
202
- 34.0157 72.3863 Td
202
+ 34.01575 72.38631 Td
203
203
  /F1.0 6 Tf
204
204
  <6c6172676572206e616d652077697468> Tj
205
205
  ET
206
206
 
207
207
 
208
208
  BT
209
- 34.0157 66.0563 Td
209
+ 34.01575 66.05631 Td
210
210
  /F1.0 6 Tf
211
211
  <6c696e6520627265616b73> Tj
212
212
  ET
213
213
 
214
214
 
215
215
  BT
216
- 124.4976 78.7163 Td
216
+ 124.49764 78.71631 Td
217
217
  /F1.0 6 Tf
218
218
  <332c3030> Tj
219
219
  ET
220
220
 
221
221
 
222
222
  BT
223
- 143.0362 78.7163 Td
223
+ 143.03622 78.71631 Td
224
224
  /F1.0 6 Tf
225
225
  <554e> Tj
226
226
  ET
227
227
 
228
228
 
229
229
  BT
230
- 166.252 78.7163 Td
230
+ 166.25197 78.71631 Td
231
231
  /F1.0 6 Tf
232
232
  <31302c3030> Tj
233
233
  ET
234
234
 
235
235
 
236
236
  BT
237
- 200.2677 78.7163 Td
237
+ 200.26772 78.71631 Td
238
238
  /F1.0 6 Tf
239
239
  <33302c3030> Tj
240
240
  ET
241
241
 
242
242
 
243
243
  BT
244
- 8.5039 59.1573 Td
244
+ 8.50394 59.15726 Td
245
245
  /F1.0 6 Tf
246
246
  <31313733> Tj
247
247
  ET
248
248
 
249
249
 
250
250
  BT
251
- 34.0157 59.1573 Td
251
+ 34.01575 59.15726 Td
252
252
  /F1.0 6 Tf
253
253
  <41627261e7616465697261> Tj
254
254
  ET
255
255
 
256
256
 
257
257
  BT
258
- 124.4976 59.1573 Td
258
+ 124.49764 59.15726 Td
259
259
  /F1.0 6 Tf
260
260
  <342c3030> Tj
261
261
  ET
262
262
 
263
263
 
264
264
  BT
265
- 143.0362 59.1573 Td
265
+ 143.03622 59.15726 Td
266
266
  /F1.0 6 Tf
267
267
  <554e> Tj
268
268
  ET
269
269
 
270
270
 
271
271
  BT
272
- 166.252 59.1573 Td
272
+ 166.25197 59.15726 Td
273
273
  /F1.0 6 Tf
274
274
  <31312c3030> Tj
275
275
  ET
276
276
 
277
277
 
278
278
  BT
279
- 200.2677 59.1573 Td
279
+ 200.26772 59.15726 Td
280
280
  /F1.0 6 Tf
281
281
  <34342c3030> Tj
282
282
  ET
@@ -288,11 +288,11 @@ endobj
288
288
  5 0 obj
289
289
  << /Type /Page
290
290
  /Parent 3 0 R
291
- /MediaBox [0 0 226.7717 141.7323]
292
- /CropBox [0 0 226.7717 141.7323]
293
- /BleedBox [0 0 226.7717 141.7323]
294
- /TrimBox [0 0 226.7717 141.7323]
295
- /ArtBox [0 0 226.7717 141.7323]
291
+ /MediaBox [0 0 226.77165 141.73228]
292
+ /CropBox [0 0 226.77165 141.73228]
293
+ /BleedBox [0 0 226.77165 141.73228]
294
+ /TrimBox [0 0 226.77165 141.73228]
295
+ /ArtBox [0 0 226.77165 141.73228]
296
296
  /Contents 4 0 R
297
297
  /Resources << /ProcSet [/PDF /Text /ImageB /ImageC /ImageI]
298
298
  /Font << /F1.0 6 0 R
@@ -322,14 +322,14 @@ xref
322
322
  0000000109 00000 n
323
323
  0000000158 00000 n
324
324
  0000000215 00000 n
325
- 0000002401 00000 n
326
- 0000002729 00000 n
327
- 0000002824 00000 n
325
+ 0000002474 00000 n
326
+ 0000002812 00000 n
327
+ 0000002907 00000 n
328
328
  trailer
329
329
  << /Size 8
330
330
  /Root 2 0 R
331
331
  /Info 1 0 R
332
332
  >>
333
333
  startxref
334
- 2924
334
+ 3007
335
335
  %%EOF
@@ -17,112 +17,112 @@ endobj
17
17
  >>
18
18
  endobj
19
19
  4 0 obj
20
- << /Length 844
20
+ << /Length 876
21
21
  >>
22
22
  stream
23
23
  q
24
24
  0.3 w
25
25
 
26
26
  BT
27
- 8.5039 129.4543 Td
27
+ 8.50394 129.45435 Td
28
28
  /F1.0 6 Tf
29
29
  <> Tj
30
30
  ET
31
31
 
32
32
 
33
33
  BT
34
- 8.5039 123.1243 Td
34
+ 8.50394 123.12435 Td
35
35
  /F1.0 6 Tf
36
36
  <> Tj
37
37
  ET
38
38
 
39
39
 
40
40
  BT
41
- 8.5039 116.7943 Td
41
+ 8.50394 116.79435 Td
42
42
  /F2.0 6 Tf
43
43
  <43f36469676f> Tj
44
44
  ET
45
45
 
46
46
 
47
47
  BT
48
- 34.0157 116.7943 Td
48
+ 34.01575 116.79435 Td
49
49
  /F2.0 6 Tf
50
50
  <446573637269e7e36f> Tj
51
51
  ET
52
52
 
53
53
 
54
54
  BT
55
- 124.4976 116.7943 Td
55
+ 124.49764 116.79435 Td
56
56
  /F2.0 6 Tf
57
57
  <51746465> Tj
58
58
  ET
59
59
 
60
60
 
61
61
  BT
62
- 143.0362 116.7943 Td
62
+ 143.03622 116.79435 Td
63
63
  /F2.0 6 Tf
64
64
  <554e> Tj
65
65
  ET
66
66
 
67
67
 
68
68
  BT
69
- 159.052 116.7943 Td
69
+ 159.05197 116.79435 Td
70
70
  /F2.0 6 Tf
71
71
  <566c20556e6974> Tj
72
72
  ET
73
73
 
74
74
 
75
75
  BT
76
- 189.4677 116.7943 Td
76
+ 189.46772 116.79435 Td
77
77
  /F2.0 6 Tf
78
78
  <566c20546f74616c> Tj
79
79
  ET
80
80
 
81
81
 
82
82
  BT
83
- 8.5039 111.1251 Td
83
+ 8.50394 111.12506 Td
84
84
  /F1.0 6 Tf
85
85
  <> Tj
86
86
  ET
87
87
 
88
88
 
89
89
  BT
90
- 8.5039 104.7951 Td
90
+ 8.50394 104.79506 Td
91
91
  /F1.0 6 Tf
92
92
  <31313733> Tj
93
93
  ET
94
94
 
95
95
 
96
96
  BT
97
- 34.0157 104.7951 Td
97
+ 34.01575 104.79506 Td
98
98
  /F1.0 6 Tf
99
99
  <41627261e7616465697261> Tj
100
100
  ET
101
101
 
102
102
 
103
103
  BT
104
- 110.0976 104.7951 Td
104
+ 110.09764 104.79506 Td
105
105
  /F1.0 6 Tf
106
106
  <312e3030302c3030> Tj
107
107
  ET
108
108
 
109
109
 
110
110
  BT
111
- 143.0362 104.7951 Td
111
+ 143.03622 104.79506 Td
112
112
  /F1.0 6 Tf
113
113
  <554e> Tj
114
114
  ET
115
115
 
116
116
 
117
117
  BT
118
- 151.852 104.7951 Td
118
+ 151.85197 104.79506 Td
119
119
  /F1.0 6 Tf
120
120
  <31302e3030302c3030> Tj
121
121
  ET
122
122
 
123
123
 
124
124
  BT
125
- 185.8677 104.7951 Td
125
+ 185.86772 104.79506 Td
126
126
  /F1.0 6 Tf
127
127
  <31302e3030302c3030> Tj
128
128
  ET
@@ -134,11 +134,11 @@ endobj
134
134
  5 0 obj
135
135
  << /Type /Page
136
136
  /Parent 3 0 R
137
- /MediaBox [0 0 226.7717 141.7323]
138
- /CropBox [0 0 226.7717 141.7323]
139
- /BleedBox [0 0 226.7717 141.7323]
140
- /TrimBox [0 0 226.7717 141.7323]
141
- /ArtBox [0 0 226.7717 141.7323]
137
+ /MediaBox [0 0 226.77165 141.73228]
138
+ /CropBox [0 0 226.77165 141.73228]
139
+ /BleedBox [0 0 226.77165 141.73228]
140
+ /TrimBox [0 0 226.77165 141.73228]
141
+ /ArtBox [0 0 226.77165 141.73228]
142
142
  /Contents 4 0 R
143
143
  /Resources << /ProcSet [/PDF /Text /ImageB /ImageC /ImageI]
144
144
  /Font << /F1.0 6 0 R
@@ -168,14 +168,14 @@ xref
168
168
  0000000109 00000 n
169
169
  0000000158 00000 n
170
170
  0000000215 00000 n
171
- 0000001110 00000 n
172
- 0000001438 00000 n
173
- 0000001533 00000 n
171
+ 0000001142 00000 n
172
+ 0000001480 00000 n
173
+ 0000001575 00000 n
174
174
  trailer
175
175
  << /Size 8
176
176
  /Root 2 0 R
177
177
  /Info 1 0 R
178
178
  >>
179
179
  startxref
180
- 1633
180
+ 1675
181
181
  %%EOF