metanorma-iso 1.0.0
Sign up to get free protection for your applications and to get access to all the features.
- checksums.yaml +7 -0
- data/.gitattributes +4 -0
- data/.gitignore +11 -0
- data/.hound.yml +3 -0
- data/.oss-guides.rubocop.yml +1077 -0
- data/.rubocop.ribose.yml +66 -0
- data/.rubocop.tb.yml +650 -0
- data/.rubocop.yml +15 -0
- data/.travis.yml +21 -0
- data/CODE_OF_CONDUCT.md +46 -0
- data/Gemfile +7 -0
- data/LICENSE +25 -0
- data/Makefile +39 -0
- data/README.adoc +882 -0
- data/Rakefile +6 -0
- data/asciidoctor-iso.gemspec.old +50 -0
- data/bin/rspec +18 -0
- data/docs/customisation.adoc +186 -0
- data/docs/guidance.adoc +436 -0
- data/docs/htmloutput.adoc +115 -0
- data/docs/quickstart.adoc +375 -0
- data/lib/asciidoctor-iso.rb +11 -0
- data/lib/asciidoctor/iso/base.rb +48 -0
- data/lib/asciidoctor/iso/biblio.rng +836 -0
- data/lib/asciidoctor/iso/cleanup.rb +39 -0
- data/lib/asciidoctor/iso/converter.rb +19 -0
- data/lib/asciidoctor/iso/front.rb +131 -0
- data/lib/asciidoctor/iso/isodoc.rng +1059 -0
- data/lib/asciidoctor/iso/isostandard.rnc +176 -0
- data/lib/asciidoctor/iso/isostandard.rng +1001 -0
- data/lib/asciidoctor/iso/section.rb +72 -0
- data/lib/asciidoctor/iso/validate.rb +190 -0
- data/lib/asciidoctor/iso/validate_requirements.rb +105 -0
- data/lib/asciidoctor/iso/validate_section.rb +214 -0
- data/lib/asciidoctor/iso/validate_style.rb +134 -0
- data/lib/asciidoctor/iso/version.rb +5 -0
- data/lib/isodoc/iso/html/header.html +206 -0
- data/lib/isodoc/iso/html/html_iso_intro.html +34 -0
- data/lib/isodoc/iso/html/html_iso_titlepage.html +34 -0
- data/lib/isodoc/iso/html/htmlstyle.scss +46 -0
- data/lib/isodoc/iso/html/isodoc.scss +696 -0
- data/lib/isodoc/iso/html/scripts.html +174 -0
- data/lib/isodoc/iso/html/style-human.scss +1277 -0
- data/lib/isodoc/iso/html/style-iso.scss +1257 -0
- data/lib/isodoc/iso/html/word_iso_intro.html +72 -0
- data/lib/isodoc/iso/html/word_iso_titlepage.html +62 -0
- data/lib/isodoc/iso/html/wordstyle.scss +1175 -0
- data/lib/isodoc/iso/html_convert.rb +118 -0
- data/lib/isodoc/iso/metadata.rb +107 -0
- data/lib/isodoc/iso/word_convert.rb +141 -0
- data/lib/metanorma/iso.rb +7 -0
- data/lib/metanorma/iso/processor.rb +44 -0
- data/spec/asciidoctor-iso/base_spec.rb +350 -0
- data/spec/asciidoctor-iso/blocks_spec.rb +469 -0
- data/spec/asciidoctor-iso/cleanup_spec.rb +765 -0
- data/spec/asciidoctor-iso/inline_spec.rb +162 -0
- data/spec/asciidoctor-iso/isobib_cache_spec.rb +332 -0
- data/spec/asciidoctor-iso/lists_spec.rb +190 -0
- data/spec/asciidoctor-iso/macros_spec.rb +111 -0
- data/spec/asciidoctor-iso/refs_spec.rb +643 -0
- data/spec/asciidoctor-iso/section_spec.rb +334 -0
- data/spec/asciidoctor-iso/table_spec.rb +307 -0
- data/spec/asciidoctor-iso/validate_spec.rb +907 -0
- data/spec/assets/header.html +7 -0
- data/spec/assets/html.css +2 -0
- data/spec/assets/htmlcover.html +4 -0
- data/spec/assets/htmlintro.html +5 -0
- data/spec/assets/i18n.yaml +2 -0
- data/spec/assets/iso.doc +1093 -0
- data/spec/assets/iso.headless.html +33 -0
- data/spec/assets/iso.html +278 -0
- data/spec/assets/iso.xml +8 -0
- data/spec/assets/rice_image1.png +0 -0
- data/spec/assets/scripts.html +3 -0
- data/spec/assets/std.css +2 -0
- data/spec/assets/word.css +2 -0
- data/spec/assets/wordcover.html +3 -0
- data/spec/assets/wordintro.html +4 -0
- data/spec/examples/103_01_02.html +247 -0
- data/spec/examples/english.yaml +69 -0
- data/spec/examples/iso_123_.xml +45 -0
- data/spec/examples/iso_123_all_parts.xml +45 -0
- data/spec/examples/iso_123_no_year_note.xml +46 -0
- data/spec/examples/iso_124_.xml +41 -0
- data/spec/examples/iso_216_.xml +47 -0
- data/spec/examples/iso_iec_12382_.xml +48 -0
- data/spec/examples/rice.adoc +715 -0
- data/spec/examples/rice.preview.html +1877 -0
- data/spec/examples/rice.sh +4 -0
- data/spec/examples/rice_images/rice_image1.png +0 -0
- data/spec/examples/rice_images/rice_image2.png +0 -0
- data/spec/examples/rice_images/rice_image3_1.png +0 -0
- data/spec/examples/rice_images/rice_image3_2.png +0 -0
- data/spec/examples/rice_images/rice_image3_3.png +0 -0
- data/spec/isodoc/i18n_spec.rb +642 -0
- data/spec/isodoc/iso_spec.rb +168 -0
- data/spec/isodoc/metadata_spec.rb +152 -0
- data/spec/isodoc/postproc_spec.rb +405 -0
- data/spec/isodoc/section_spec.rb +522 -0
- data/spec/isodoc/xref_spec.rb +1337 -0
- data/spec/metanorma/processor_spec.rb +70 -0
- data/spec/spec_helper.rb +227 -0
- metadata +402 -0
data/spec/assets/iso.doc
ADDED
@@ -0,0 +1,1093 @@
|
|
1
|
+
MIME-Version: 1.0
|
2
|
+
Content-Type: multipart/related; boundary="----=_NextPart_c9f9b7e4.33db.4068"
|
3
|
+
|
4
|
+
------=_NextPart_c9f9b7e4.33db.4068
|
5
|
+
Content-Location: file:///C:/Doc/spec/assets/iso.htm
|
6
|
+
Content-Type: text/html; charset="utf-8"
|
7
|
+
|
8
|
+
<?xml version="1.0"?>
|
9
|
+
<html xmlns:epub="http://www.idpf.org/2007/ops" xmlns:o="urn:schemas-microsoft-com:office:office" xmlns:w="urn:schemas-microsoft-com:office:word" xmlns:v="urn:schemas-microsoft-com:vml" xmlns:m="http://schemas.microsoft.com/office/2004/12/omml" xmlns="http://www.w3.org/TR/REC-html40">
|
10
|
+
<head><!--[if gte mso 9]>
|
11
|
+
<xml>
|
12
|
+
<w:WordDocument>
|
13
|
+
<w:View>Print</w:View>
|
14
|
+
<w:Zoom>100</w:Zoom>
|
15
|
+
<w:DoNotOptimizeForBrowser/>
|
16
|
+
</w:WordDocument>
|
17
|
+
</xml>
|
18
|
+
<![endif]-->
|
19
|
+
<meta http-equiv=Content-Type content="text/html; charset=utf-8"/>
|
20
|
+
|
21
|
+
<link rel=File-List href="spec/assets/iso_files/filelist.xml"/>
|
22
|
+
<meta http-equiv=Content-Type content="text/html; charset=UTF-8"/>
|
23
|
+
<title>spec/assets/iso</title><style>
|
24
|
+
<!--
|
25
|
+
/* one empty stylesheet */
|
26
|
+
|
27
|
+
-->
|
28
|
+
</style>
|
29
|
+
<style>
|
30
|
+
<!--
|
31
|
+
p.Sourcecode, li.Sourcecode, div.Sourcecode, pre.Sourcecode {
|
32
|
+
mso-style-unhide: no;
|
33
|
+
mso-style-qformat: yes;
|
34
|
+
mso-style-parent: "";
|
35
|
+
margin-top: 0cm;
|
36
|
+
margin-right: 0cm;
|
37
|
+
margin-bottom: 12.0pt;
|
38
|
+
margin-left: 0cm;
|
39
|
+
text-align: left;
|
40
|
+
line-height: 12.0pt;
|
41
|
+
mso-pagination: widow-orphan;
|
42
|
+
tab-stops: 20.15pt;
|
43
|
+
font-size: 9.0pt;
|
44
|
+
font-family: "Courier New", monospace;
|
45
|
+
mso-fareast-font-family: Calibri;
|
46
|
+
mso-bidi-font-family: "Courier New";
|
47
|
+
mso-ansi-language: EN-GB; }
|
48
|
+
|
49
|
+
p.Biblio, li.Biblio, div.Biblio {
|
50
|
+
mso-style-unhide: no;
|
51
|
+
mso-style-qformat: yes;
|
52
|
+
mso-style-parent: "";
|
53
|
+
margin-top: 0cm;
|
54
|
+
margin-right: 0cm;
|
55
|
+
margin-bottom: 12.0pt;
|
56
|
+
margin-left: 33.15pt;
|
57
|
+
text-indent: -33.15pt;
|
58
|
+
tab-stops: 33.15pt;
|
59
|
+
line-height: 12.0pt;
|
60
|
+
mso-pagination: widow-orphan;
|
61
|
+
font-size: 11.0pt;
|
62
|
+
font-family: "Cambria", serif;
|
63
|
+
mso-fareast-font-family: "Cambria", serif;
|
64
|
+
mso-bidi-font-family: "Cambria", serif;
|
65
|
+
mso-ansi-language: EN-GB; }
|
66
|
+
|
67
|
+
p.NormRef, li.NormRef, div.NormRef {
|
68
|
+
mso-style-unhide: no;
|
69
|
+
mso-style-qformat: yes;
|
70
|
+
mso-style-parent: "";
|
71
|
+
margin-top: 0cm;
|
72
|
+
margin-right: 0cm;
|
73
|
+
margin-bottom: 12.0pt;
|
74
|
+
margin-left: 0pt;
|
75
|
+
text-indent: 0pt;
|
76
|
+
tab-stops: 33.15pt;
|
77
|
+
line-height: 12.0pt;
|
78
|
+
mso-pagination: widow-orphan;
|
79
|
+
font-size: 11.0pt;
|
80
|
+
font-family: "Cambria", serif;
|
81
|
+
mso-fareast-font-family: "Cambria", serif;
|
82
|
+
mso-bidi-font-family: "Cambria", serif;
|
83
|
+
mso-ansi-language: EN-GB; }
|
84
|
+
|
85
|
+
p.FigureTitle {
|
86
|
+
mso-style-unhide: no;
|
87
|
+
mso-style-qformat: yes;
|
88
|
+
mso-style-parent: "";
|
89
|
+
margin-top: 0cm;
|
90
|
+
margin-right: 0cm;
|
91
|
+
margin-bottom: 6.0pt;
|
92
|
+
margin-left: 0cm;
|
93
|
+
text-align: center;
|
94
|
+
line-height: 12.0pt;
|
95
|
+
page-break-before: avoid;
|
96
|
+
mso-pagination: widow-orphan;
|
97
|
+
tab-stops: 20.15pt;
|
98
|
+
font-size: 11.0pt;
|
99
|
+
font-family: "Cambria", serif;
|
100
|
+
font-weight: bold;
|
101
|
+
mso-fareast-font-family: "Cambria", serif;
|
102
|
+
mso-bidi-font-family: "Cambria", serif;
|
103
|
+
mso-ansi-language: EN-GB; }
|
104
|
+
|
105
|
+
p.TableTitle {
|
106
|
+
mso-style-unhide: no;
|
107
|
+
mso-style-qformat: yes;
|
108
|
+
mso-style-parent: "";
|
109
|
+
margin-top: 0cm;
|
110
|
+
margin-right: 0cm;
|
111
|
+
margin-bottom: 6.0pt;
|
112
|
+
margin-left: 0cm;
|
113
|
+
text-align: center;
|
114
|
+
page-break-after: avoid;
|
115
|
+
line-height: 12.0pt;
|
116
|
+
mso-pagination: widow-orphan;
|
117
|
+
tab-stops: 20.15pt;
|
118
|
+
font-size: 11.0pt;
|
119
|
+
font-weight: bold;
|
120
|
+
font-family: "Cambria", serif;
|
121
|
+
mso-fareast-font-family: "Cambria", serif;
|
122
|
+
mso-bidi-font-family: "Cambria", serif;
|
123
|
+
mso-ansi-language: EN-GB; }
|
124
|
+
|
125
|
+
p.Note, div.Note, li.Note, p.TableFootnote, div.TableFootnote, li.TableFootnote {
|
126
|
+
mso-style-unhide: no;
|
127
|
+
mso-style-qformat: yes;
|
128
|
+
mso-style-parent: "";
|
129
|
+
margin-top: 0cm;
|
130
|
+
margin-right: 0cm;
|
131
|
+
margin-bottom: 12.0pt;
|
132
|
+
margin-left: 0cm;
|
133
|
+
text-align: justify;
|
134
|
+
line-height: 12.0pt;
|
135
|
+
mso-pagination: widow-orphan;
|
136
|
+
tab-stops: 20.15pt;
|
137
|
+
font-size: 10.0pt;
|
138
|
+
mso-bidi-font-size: 11.0pt;
|
139
|
+
font-family: "Cambria", serif;
|
140
|
+
mso-fareast-font-family: "Cambria", serif;
|
141
|
+
mso-bidi-font-family: "Cambria", serif;
|
142
|
+
mso-ansi-language: EN-GB; }
|
143
|
+
|
144
|
+
/* may need to be revised */
|
145
|
+
p.ANNEX, li.ANNEX, div.ANNEX {
|
146
|
+
mso-style-name: ANNEX;
|
147
|
+
mso-style-priority: 10;
|
148
|
+
mso-style-unhide: no;
|
149
|
+
mso-style-next: Normal;
|
150
|
+
margin-top: 0cm;
|
151
|
+
margin-right: 0cm;
|
152
|
+
margin-bottom: 24.0pt;
|
153
|
+
margin-left: 0cm;
|
154
|
+
text-align: center;
|
155
|
+
text-indent: 0cm;
|
156
|
+
line-height: 15.5pt;
|
157
|
+
mso-line-height-rule: exactly;
|
158
|
+
page-break-before: always;
|
159
|
+
mso-pagination: widow-orphan;
|
160
|
+
page-break-after: avoid;
|
161
|
+
mso-outline-level: 1;
|
162
|
+
mso-list: l0 level1 lfo12;
|
163
|
+
tab-stops: 20.15pt;
|
164
|
+
font-size: 14.0pt;
|
165
|
+
mso-bidi-font-size: 11.0pt;
|
166
|
+
font-family: "Cambria", serif;
|
167
|
+
mso-fareast-font-family: "Cambria", serif;
|
168
|
+
mso-bidi-font-family: "Cambria", serif;
|
169
|
+
mso-ansi-language: EN-GB;
|
170
|
+
mso-fareast-language: JA;
|
171
|
+
font-weight: bold;
|
172
|
+
mso-bidi-font-weight: normal; }
|
173
|
+
|
174
|
+
p.BiblioTitle, li.BiblioTitle, div.BiblioTitle {
|
175
|
+
mso-style-name: "Biblio Title";
|
176
|
+
mso-style-noshow: yes;
|
177
|
+
mso-style-unhide: no;
|
178
|
+
margin-top: 0cm;
|
179
|
+
margin-right: 0cm;
|
180
|
+
margin-bottom: 15.5pt;
|
181
|
+
margin-left: 0cm;
|
182
|
+
text-align: center;
|
183
|
+
line-height: 15.5pt;
|
184
|
+
mso-pagination: widow-orphan;
|
185
|
+
mso-outline-level: 1;
|
186
|
+
tab-stops: 20.15pt;
|
187
|
+
font-size: 14.0pt;
|
188
|
+
mso-bidi-font-size: 11.0pt;
|
189
|
+
font-family: "Cambria", serif;
|
190
|
+
mso-fareast-font-family: "Cambria", serif;
|
191
|
+
mso-bidi-font-family: "Cambria", serif;
|
192
|
+
mso-ansi-language: EN-GB;
|
193
|
+
font-weight: bold;
|
194
|
+
mso-bidi-font-weight: normal; }
|
195
|
+
|
196
|
+
p.Definition, li.Definition, div.Definition {
|
197
|
+
mso-style-name: Definition;
|
198
|
+
mso-style-priority: 9;
|
199
|
+
mso-style-unhide: no;
|
200
|
+
margin-top: 0cm;
|
201
|
+
margin-right: 0cm;
|
202
|
+
margin-bottom: 12.0pt;
|
203
|
+
margin-left: 0cm;
|
204
|
+
text-align: justify;
|
205
|
+
line-height: 12.0pt;
|
206
|
+
mso-pagination: widow-orphan;
|
207
|
+
tab-stops: 20.15pt;
|
208
|
+
font-size: 11.0pt;
|
209
|
+
font-family: "Cambria", serif;
|
210
|
+
mso-fareast-font-family: "Cambria", serif;
|
211
|
+
mso-bidi-font-family: "Cambria", serif;
|
212
|
+
mso-ansi-language: EN-GB; }
|
213
|
+
|
214
|
+
p.ForewordTitle, li.ForewordTitle, div.ForewordTitle {
|
215
|
+
mso-style-name: "Foreword Title";
|
216
|
+
mso-style-noshow: yes;
|
217
|
+
mso-style-unhide: no;
|
218
|
+
margin-top: 0cm;
|
219
|
+
margin-right: 0cm;
|
220
|
+
margin-bottom: 15.5pt;
|
221
|
+
margin-left: 0cm;
|
222
|
+
text-align: justify;
|
223
|
+
line-height: 15.5pt;
|
224
|
+
page-break-before: always;
|
225
|
+
mso-pagination: widow-orphan;
|
226
|
+
page-break-after: avoid;
|
227
|
+
mso-outline-level: 1;
|
228
|
+
mso-hyphenate: none;
|
229
|
+
tab-stops: 20.15pt;
|
230
|
+
font-size: 14.0pt;
|
231
|
+
mso-bidi-font-size: 11.0pt;
|
232
|
+
font-family: "Cambria", serif;
|
233
|
+
mso-fareast-font-family: "Cambria", serif;
|
234
|
+
mso-bidi-font-family: "Cambria", serif;
|
235
|
+
mso-ansi-language: EN-GB;
|
236
|
+
font-weight: bold;
|
237
|
+
mso-bidi-font-weight: normal; }
|
238
|
+
|
239
|
+
p.IntroTitle, li.IntroTitle, div.IntroTitle {
|
240
|
+
mso-style-name: "Intro Title";
|
241
|
+
mso-style-noshow: yes;
|
242
|
+
mso-style-unhide: no;
|
243
|
+
mso-style-parent: "Foreword Title";
|
244
|
+
margin-top: 0cm;
|
245
|
+
margin-right: 0cm;
|
246
|
+
margin-bottom: 15.5pt;
|
247
|
+
margin-left: 0cm;
|
248
|
+
text-align: justify;
|
249
|
+
line-height: 15.5pt;
|
250
|
+
mso-pagination: widow-orphan;
|
251
|
+
page-break-after: avoid;
|
252
|
+
mso-outline-level: 1;
|
253
|
+
mso-hyphenate: none;
|
254
|
+
tab-stops: 20.15pt;
|
255
|
+
font-size: 14.0pt;
|
256
|
+
mso-bidi-font-size: 11.0pt;
|
257
|
+
page-break-before: always;
|
258
|
+
font-family: "Cambria", serif;
|
259
|
+
mso-fareast-font-family: "Cambria", serif;
|
260
|
+
mso-bidi-font-family: "Cambria", serif;
|
261
|
+
mso-ansi-language: EN-GB;
|
262
|
+
font-weight: bold;
|
263
|
+
mso-bidi-font-weight: normal; }
|
264
|
+
|
265
|
+
p.Terms, li.Terms, div.Terms {
|
266
|
+
mso-style-name: "Term\(s\)";
|
267
|
+
mso-style-priority: 8;
|
268
|
+
mso-style-unhide: no;
|
269
|
+
mso-style-next: Definition;
|
270
|
+
margin: 0cm;
|
271
|
+
margin-bottom: .0001pt;
|
272
|
+
line-height: 12.0pt;
|
273
|
+
mso-pagination: widow-orphan;
|
274
|
+
page-break-after: avoid;
|
275
|
+
mso-hyphenate: none;
|
276
|
+
tab-stops: 20.15pt;
|
277
|
+
font-size: 11.0pt;
|
278
|
+
font-family: "Cambria", serif;
|
279
|
+
mso-fareast-font-family: "Cambria", serif;
|
280
|
+
mso-bidi-font-family: "Cambria", serif;
|
281
|
+
mso-ansi-language: EN-GB;
|
282
|
+
font-weight: bold;
|
283
|
+
mso-bidi-font-weight: normal; }
|
284
|
+
|
285
|
+
p.AltTerms, li.AltTerms, div.AltTerms {
|
286
|
+
mso-style-name: "AltTerm\(s\)";
|
287
|
+
mso-style-priority: 8;
|
288
|
+
mso-style-unhide: no;
|
289
|
+
mso-style-next: Definition;
|
290
|
+
margin: 0cm;
|
291
|
+
margin-bottom: .0001pt;
|
292
|
+
line-height: 12.0pt;
|
293
|
+
mso-pagination: widow-orphan;
|
294
|
+
page-break-after: avoid;
|
295
|
+
mso-hyphenate: none;
|
296
|
+
tab-stops: 20.15pt;
|
297
|
+
font-size: 11.0pt;
|
298
|
+
font-family: "Cambria", serif;
|
299
|
+
mso-fareast-font-family: "Cambria", serif;
|
300
|
+
mso-bidi-font-family: "Cambria", serif;
|
301
|
+
mso-ansi-language: EN-GB;
|
302
|
+
mso-bidi-font-weight: normal; }
|
303
|
+
|
304
|
+
p.DeprecatedTerms, li.DeprecatedTerms, div.DeprecatedTerms {
|
305
|
+
mso-style-name: "DeprecatedTerm\(s\)";
|
306
|
+
mso-style-priority: 8;
|
307
|
+
mso-style-unhide: no;
|
308
|
+
mso-style-next: Definition;
|
309
|
+
margin: 0cm;
|
310
|
+
margin-bottom: .0001pt;
|
311
|
+
line-height: 12.0pt;
|
312
|
+
mso-pagination: widow-orphan;
|
313
|
+
page-break-after: avoid;
|
314
|
+
mso-hyphenate: none;
|
315
|
+
tab-stops: 20.15pt;
|
316
|
+
font-size: 11.0pt;
|
317
|
+
font-family: "Cambria", serif;
|
318
|
+
mso-fareast-font-family: "Cambria", serif;
|
319
|
+
mso-bidi-font-family: "Cambria", serif;
|
320
|
+
mso-ansi-language: EN-GB;
|
321
|
+
mso-bidi-font-weight: normal; }
|
322
|
+
|
323
|
+
p.TermNum, li.TermNum, div.TermNum {
|
324
|
+
mso-style-name: TermNum;
|
325
|
+
mso-style-priority: 7;
|
326
|
+
mso-style-unhide: no;
|
327
|
+
mso-style-next: "Term\(s\)";
|
328
|
+
margin: 0cm;
|
329
|
+
margin-bottom: .0001pt;
|
330
|
+
line-height: 12.0pt;
|
331
|
+
mso-pagination: widow-orphan;
|
332
|
+
page-break-after: avoid;
|
333
|
+
tab-stops: 20.15pt;
|
334
|
+
font-size: 11.0pt;
|
335
|
+
font-family: "Cambria", serif;
|
336
|
+
mso-fareast-font-family: "Cambria", serif;
|
337
|
+
mso-bidi-font-family: "Cambria", serif;
|
338
|
+
mso-ansi-language: EN-GB;
|
339
|
+
font-weight: bold;
|
340
|
+
mso-bidi-font-weight: normal; }
|
341
|
+
|
342
|
+
p.zzContents, li.zzContents, div.zzContents {
|
343
|
+
mso-style-name: zzContents;
|
344
|
+
mso-style-noshow: yes;
|
345
|
+
mso-style-unhide: no;
|
346
|
+
mso-style-next: "TOC 1";
|
347
|
+
margin-top: 48.0pt;
|
348
|
+
margin-right: 0cm;
|
349
|
+
margin-bottom: 15.5pt;
|
350
|
+
margin-left: 0cm;
|
351
|
+
line-height: 15.5pt;
|
352
|
+
mso-line-height-rule: exactly;
|
353
|
+
page-break-before: always;
|
354
|
+
mso-pagination: widow-orphan;
|
355
|
+
page-break-after: avoid;
|
356
|
+
mso-hyphenate: none;
|
357
|
+
tab-stops: 20.15pt;
|
358
|
+
font-size: 14.0pt;
|
359
|
+
mso-bidi-font-size: 11.0pt;
|
360
|
+
font-family: "Cambria", serif;
|
361
|
+
mso-fareast-font-family: "Cambria", serif;
|
362
|
+
mso-bidi-font-family: "Cambria", serif;
|
363
|
+
mso-ansi-language: EN-GB;
|
364
|
+
font-weight: bold;
|
365
|
+
mso-bidi-font-weight: normal; }
|
366
|
+
|
367
|
+
p.zzCopyright, li.zzCopyright, div.zzCopyright {
|
368
|
+
mso-style-name: zzCopyright;
|
369
|
+
mso-style-noshow: yes;
|
370
|
+
mso-style-unhide: no;
|
371
|
+
mso-style-next: Normal;
|
372
|
+
margin-top: 0cm;
|
373
|
+
margin-right: 14.2pt;
|
374
|
+
margin-bottom: 12.0pt;
|
375
|
+
margin-left: 14.2pt;
|
376
|
+
text-align: justify;
|
377
|
+
line-height: 12.0pt;
|
378
|
+
mso-pagination: widow-orphan;
|
379
|
+
tab-stops: 20.15pt 25.7pt 481.15pt;
|
380
|
+
border: none;
|
381
|
+
mso-border-alt: solid blue .5pt;
|
382
|
+
padding: 0cm;
|
383
|
+
mso-padding-alt: 1.0pt 4.0pt 1.0pt 4.0pt;
|
384
|
+
font-size: 11.0pt;
|
385
|
+
font-family: "Cambria", serif;
|
386
|
+
mso-fareast-font-family: "Cambria", serif;
|
387
|
+
mso-bidi-font-family: "Cambria", serif;
|
388
|
+
mso-ansi-language: EN-GB; }
|
389
|
+
|
390
|
+
p.zzSTDTitle, li.zzSTDTitle, div.zzSTDTitle {
|
391
|
+
mso-style-name: zzSTDTitle;
|
392
|
+
mso-style-noshow: yes;
|
393
|
+
mso-style-unhide: no;
|
394
|
+
mso-style-next: Normal;
|
395
|
+
margin-top: 20.0pt;
|
396
|
+
margin-right: 0cm;
|
397
|
+
margin-bottom: 38.0pt;
|
398
|
+
margin-left: 0cm;
|
399
|
+
line-height: 17.5pt;
|
400
|
+
mso-line-height-rule: exactly;
|
401
|
+
mso-pagination: widow-orphan;
|
402
|
+
mso-hyphenate: none;
|
403
|
+
tab-stops: 20.15pt;
|
404
|
+
font-size: 16.0pt;
|
405
|
+
mso-bidi-font-size: 11.0pt;
|
406
|
+
font-family: "Cambria", serif;
|
407
|
+
mso-fareast-font-family: "Cambria", serif;
|
408
|
+
mso-bidi-font-family: "Cambria", serif;
|
409
|
+
mso-ansi-language: EN-GB;
|
410
|
+
font-weight: bold;
|
411
|
+
mso-bidi-font-weight: normal; }
|
412
|
+
|
413
|
+
p.zzSTDTitle1, li.zzSTDTitle1, div.zzSTDTitle1 {
|
414
|
+
mso-style-name: zzSTDTitle;
|
415
|
+
mso-style-noshow: yes;
|
416
|
+
mso-style-unhide: no;
|
417
|
+
mso-style-next: Normal;
|
418
|
+
margin-top: 0pt;
|
419
|
+
margin-right: 0cm;
|
420
|
+
margin-bottom: 18.0pt;
|
421
|
+
margin-left: 0cm;
|
422
|
+
line-height: 17.5pt;
|
423
|
+
mso-line-height-rule: exactly;
|
424
|
+
mso-pagination: widow-orphan;
|
425
|
+
mso-hyphenate: none;
|
426
|
+
tab-stops: 20.15pt;
|
427
|
+
font-size: 16.0pt;
|
428
|
+
mso-bidi-font-size: 11.0pt;
|
429
|
+
font-family: "Cambria", serif;
|
430
|
+
mso-fareast-font-family: "Cambria", serif;
|
431
|
+
mso-bidi-font-family: "Cambria", serif;
|
432
|
+
mso-ansi-language: EN-GB;
|
433
|
+
font-weight: bold;
|
434
|
+
mso-bidi-font-weight: normal; }
|
435
|
+
|
436
|
+
p.Quote, li.Quote, div.Quote {
|
437
|
+
mso-style-priority: 99;
|
438
|
+
margin-top: 0cm;
|
439
|
+
margin-right: 36.0pt;
|
440
|
+
margin-bottom: 0cm;
|
441
|
+
margin-left: 36.0pt;
|
442
|
+
text-align: justify;
|
443
|
+
line-height: 12.0pt;
|
444
|
+
mso-pagination: widow-orphan;
|
445
|
+
tab-stops: 20.15pt;
|
446
|
+
font-size: 11.0pt;
|
447
|
+
font-family: "Cambria", serif;
|
448
|
+
mso-fareast-font-family: "Cambria", serif;
|
449
|
+
mso-bidi-font-family: "Cambria", serif;
|
450
|
+
mso-ansi-language: EN-GB; }
|
451
|
+
|
452
|
+
p.QuoteAttribution {
|
453
|
+
text-align: right; }
|
454
|
+
|
455
|
+
p.Admonition, li.Admonition, div.Admonition {
|
456
|
+
mso-style-priority: 99;
|
457
|
+
mso-pagination: widow-orphan;
|
458
|
+
border: none;
|
459
|
+
padding: 0cm;
|
460
|
+
font-size: 12.0pt;
|
461
|
+
font-family: "Cambria", serif;
|
462
|
+
mso-ascii-font-family: "Cambria", serif;
|
463
|
+
mso-ascii-theme-font: minor-latin;
|
464
|
+
mso-fareast-font-family: "Cambria", serif;
|
465
|
+
mso-fareast-theme-font: minor-fareast;
|
466
|
+
mso-hansi-font-family: "Cambria", serif;
|
467
|
+
mso-hansi-theme-font: minor-latin;
|
468
|
+
mso-bidi-font-family: "Cambria", serif;
|
469
|
+
mso-bidi-theme-font: minor-bidi;
|
470
|
+
font-weight: bold;
|
471
|
+
mso-ansi-language: EN-AU; }
|
472
|
+
|
473
|
+
p.Code, li.Code, div.Code {
|
474
|
+
mso-style-name: Code;
|
475
|
+
mso-style-priority: 16;
|
476
|
+
mso-style-unhide: no;
|
477
|
+
mso-style-qformat: yes;
|
478
|
+
margin: 0cm;
|
479
|
+
margin-bottom: .0001pt;
|
480
|
+
line-height: 10.0pt;
|
481
|
+
mso-pagination: widow-orphan;
|
482
|
+
tab-stops: 20.15pt;
|
483
|
+
font-size: 9.0pt;
|
484
|
+
mso-bidi-font-size: 11.0pt;
|
485
|
+
font-family: "Courier New", monospace;
|
486
|
+
mso-fareast-font-family: Calibri;
|
487
|
+
mso-bidi-font-family: "Cambria";
|
488
|
+
mso-ansi-language: EN-GB; }
|
489
|
+
|
490
|
+
p.Formula, li.Formula, div.Formula {
|
491
|
+
mso-style-name: Formula;
|
492
|
+
mso-style-noshow: yes;
|
493
|
+
mso-style-unhide: no;
|
494
|
+
margin-top: 0cm;
|
495
|
+
margin-right: 0cm;
|
496
|
+
margin-bottom: 11.0pt;
|
497
|
+
margin-left: 20.15pt;
|
498
|
+
line-height: 12.0pt;
|
499
|
+
mso-pagination: widow-orphan;
|
500
|
+
tab-stops: right 487.45pt;
|
501
|
+
font-size: 11.0pt;
|
502
|
+
font-family: "Cambria", serif;
|
503
|
+
mso-fareast-font-family: "Cambria", serif;
|
504
|
+
mso-bidi-font-family: "Cambria", serif;
|
505
|
+
mso-ansi-language: EN-GB; }
|
506
|
+
|
507
|
+
table.dl {
|
508
|
+
margin-top: 0cm;
|
509
|
+
margin-right: 0cm;
|
510
|
+
margin-bottom: 11.0pt;
|
511
|
+
margin-left: 20.15pt; }
|
512
|
+
|
513
|
+
.h2Annex {
|
514
|
+
mso-style-priority: 2;
|
515
|
+
mso-style-unhide: no;
|
516
|
+
mso-style-qformat: yes;
|
517
|
+
mso-style-link: "Heading 2 Char";
|
518
|
+
mso-style-next: Normal;
|
519
|
+
margin-top: 3.0pt;
|
520
|
+
margin-right: 0cm;
|
521
|
+
margin-bottom: 12.0pt;
|
522
|
+
margin-left: 0cm;
|
523
|
+
text-indent: 0cm;
|
524
|
+
line-height: 12.5pt;
|
525
|
+
mso-pagination: widow-orphan;
|
526
|
+
page-break-after: avoid;
|
527
|
+
mso-hyphenate: none;
|
528
|
+
tab-stops: 27.0pt 35.0pt;
|
529
|
+
font-size: 12.0pt;
|
530
|
+
mso-bidi-font-size: 11.0pt;
|
531
|
+
font-family: "Cambria", serif;
|
532
|
+
font-weight: bold;
|
533
|
+
mso-fareast-font-family: "Cambria", serif;
|
534
|
+
mso-ansi-language: EN-GB;
|
535
|
+
mso-fareast-language: JA;
|
536
|
+
mso-bidi-font-weight: normal; }
|
537
|
+
|
538
|
+
ol {
|
539
|
+
margin-bottom: 0cm; }
|
540
|
+
|
541
|
+
ul {
|
542
|
+
margin-bottom: 0cm; }
|
543
|
+
|
544
|
+
table.MsoISOTable {
|
545
|
+
mso-style-name: "Table ISO";
|
546
|
+
mso-tstyle-rowband-size: 0;
|
547
|
+
mso-tstyle-colband-size: 0;
|
548
|
+
mso-style-noshow: yes;
|
549
|
+
mso-style-priority: 99;
|
550
|
+
mso-style-parent: "";
|
551
|
+
mso-padding-alt: 0cm 2.85pt 0cm 2.85pt;
|
552
|
+
mso-para-margin: 0cm;
|
553
|
+
mso-para-margin-bottom: .0001pt;
|
554
|
+
mso-pagination: widow-orphan;
|
555
|
+
border-collapse: collapse;
|
556
|
+
mso-table-layout-alt: fixed;
|
557
|
+
border: solid windowtext 2pt;
|
558
|
+
mso-border-alt: solid windowtext 2pt;
|
559
|
+
mso-yfti-tbllook: 480;
|
560
|
+
mso-border-insideh: .75pt solid windowtext;
|
561
|
+
mso-border-insidev: .75pt solid windowtext;
|
562
|
+
font-size: 10.0pt;
|
563
|
+
font-family: "Cambria", serif; }
|
564
|
+
|
565
|
+
table.MsoISOTable tr {
|
566
|
+
page-break-inside: avoid; }
|
567
|
+
|
568
|
+
table.MsoISOTable th {
|
569
|
+
border: solid windowtext 1pt;
|
570
|
+
mso-border-alt: solid windowtext 1pt;
|
571
|
+
padding: 0cm 2.85pt 0cm 2.85pt; }
|
572
|
+
|
573
|
+
table.MsoISOTable td {
|
574
|
+
border: solid windowtext 1pt;
|
575
|
+
mso-border-alt: solid windowtext 1pt;
|
576
|
+
padding: 0cm 2.85pt 0cm 2.85pt; }
|
577
|
+
|
578
|
+
table.MsoTableGrid {
|
579
|
+
mso-style-name: "Table Grid";
|
580
|
+
mso-tstyle-rowband-size: 0;
|
581
|
+
mso-tstyle-colband-size: 0;
|
582
|
+
mso-style-priority: 39;
|
583
|
+
mso-style-unhide: no;
|
584
|
+
border: solid windowtext 1.0pt;
|
585
|
+
mso-border-alt: solid windowtext .5pt;
|
586
|
+
mso-padding-alt: 0cm 5.4pt 0cm 5.4pt;
|
587
|
+
mso-border-insideh: .5pt solid windowtext;
|
588
|
+
mso-border-insidev: .5pt solid windowtext;
|
589
|
+
mso-para-margin: 0cm;
|
590
|
+
mso-para-margin-bottom: .0001pt;
|
591
|
+
mso-pagination: widow-orphan;
|
592
|
+
font-size: 10.0pt;
|
593
|
+
font-family: "Cambria", serif; }
|
594
|
+
|
595
|
+
td {
|
596
|
+
page-break-inside: avoid; }
|
597
|
+
|
598
|
+
tr {
|
599
|
+
page-break-after: avoid; }
|
600
|
+
|
601
|
+
span.stem {
|
602
|
+
font-family: "Cambria Math",serif;
|
603
|
+
mso-ascii-font-family: "Cambria Math";
|
604
|
+
font-style: italic; }
|
605
|
+
|
606
|
+
div.formula {
|
607
|
+
tab-stops: right 487.45pt; }
|
608
|
+
|
609
|
+
body {
|
610
|
+
tab-interval: 36.0pt; }
|
611
|
+
|
612
|
+
dt {
|
613
|
+
page-break-inside: avoid;
|
614
|
+
page-break-after: avoid; }
|
615
|
+
|
616
|
+
.coverpage_docnumber {
|
617
|
+
text-align: right;
|
618
|
+
font-size: 14.0pt;
|
619
|
+
font-weight: bold; }
|
620
|
+
|
621
|
+
.coverpage_techcommittee {
|
622
|
+
text-align: right; }
|
623
|
+
|
624
|
+
.coverpage_docstage {
|
625
|
+
text-align: center;
|
626
|
+
font-size: 30.0pt;
|
627
|
+
color: #485094; }
|
628
|
+
|
629
|
+
div.doctitle {
|
630
|
+
margin-top: 100.0pt;
|
631
|
+
text-align: left;
|
632
|
+
font-size: 16.0pt; }
|
633
|
+
|
634
|
+
div.coverpage_warning {
|
635
|
+
mso-element: para-border-div;
|
636
|
+
border: solid windowtext 1.0pt #485094;
|
637
|
+
mso-border-alt: solid windowtext .5pt;
|
638
|
+
padding: 1.0pt 4.0pt 1.0pt 4.0pt #485094;
|
639
|
+
margin-left: 4.25pt;
|
640
|
+
margin-right: 4.25pt; }
|
641
|
+
|
642
|
+
.coverpage_warning {
|
643
|
+
color: #485094;
|
644
|
+
font-size: 10.0pt; }
|
645
|
+
|
646
|
+
.coverpage {
|
647
|
+
text-align: center;
|
648
|
+
margin: 2em 0; }
|
649
|
+
|
650
|
+
.coverpage-logo {
|
651
|
+
color: #485094; }
|
652
|
+
|
653
|
+
.coverpage-tc-name {
|
654
|
+
color: #485094;
|
655
|
+
font-size: 1.2em;
|
656
|
+
line-height: 1.2em;
|
657
|
+
margin: 0.25em 0; }
|
658
|
+
|
659
|
+
.coverpage-doc-identity {
|
660
|
+
background-color: #485094;
|
661
|
+
color: white;
|
662
|
+
font-size: 2em;
|
663
|
+
line-height: 2em;
|
664
|
+
margin: 0.5em 0; }
|
665
|
+
|
666
|
+
.coverpage-title {
|
667
|
+
font-weight: 400; }
|
668
|
+
|
669
|
+
.coverpage-title .title-second {
|
670
|
+
display: none; }
|
671
|
+
|
672
|
+
.coverpage-stage-block {
|
673
|
+
font-style: italic;
|
674
|
+
font-size: 1.25em;
|
675
|
+
font-weight: 600; }
|
676
|
+
|
677
|
+
.coverpage-warning {
|
678
|
+
border-top: solid 1px #f36f36;
|
679
|
+
border-bottom: solid 1px #f36f36;
|
680
|
+
margin: 1em 2em;
|
681
|
+
color: #485094;
|
682
|
+
padding: 1em; }
|
683
|
+
|
684
|
+
.coverpage-warning .title {
|
685
|
+
color: #f36f36;
|
686
|
+
font-weight: 500; }
|
687
|
+
|
688
|
+
.coverpage-warning .content {
|
689
|
+
font-style: italic; }
|
690
|
+
|
691
|
+
.copyright {
|
692
|
+
padding: 1em; }
|
693
|
+
|
694
|
+
.copyright .name {
|
695
|
+
color: #485094;
|
696
|
+
font-weight: 600; }
|
697
|
+
|
698
|
+
.copyright .address {
|
699
|
+
color: #485094; }
|
700
|
+
|
701
|
+
div.rule {
|
702
|
+
width: 100%;
|
703
|
+
height: 1px;
|
704
|
+
background-color: #485094;
|
705
|
+
margin: 2em 0; }
|
706
|
+
|
707
|
+
#toc-list ul {
|
708
|
+
margin-bottom: 0.25em; }
|
709
|
+
|
710
|
+
#toc-list li {
|
711
|
+
list-style-type: none; }
|
712
|
+
|
713
|
+
.MsoTocTextSpan {
|
714
|
+
color: windowtext;
|
715
|
+
display: none;
|
716
|
+
mso-hide: screen;
|
717
|
+
mso-ansi-language: EN-GB;
|
718
|
+
text-decoration: none;
|
719
|
+
text-underline: none; }
|
720
|
+
|
721
|
+
a.TableFootnoteRef {
|
722
|
+
mso-style-priority: 99;
|
723
|
+
vertical-align: super; }
|
724
|
+
|
725
|
+
aside {
|
726
|
+
font-size: 10.0pt; }
|
727
|
+
|
728
|
+
/*
|
729
|
+
div.example {
|
730
|
+
border:solid black .25pt;
|
731
|
+
mso-border-alt:solid black .25pt;
|
732
|
+
padding:10pt;
|
733
|
+
mso-padding-alt:10.0pt 10.0pt 10.0pt 10.0pt;
|
734
|
+
margin:10pt;
|
735
|
+
mso-margin-alt:10.0pt 10.0pt 10.0pt 10.0pt;
|
736
|
+
}
|
737
|
+
*/
|
738
|
+
div.example {
|
739
|
+
margin-left: 70.9pt;
|
740
|
+
text-indent: -70.9pt; }
|
741
|
+
|
742
|
+
p.example, li.example, div.example, td.example, td.example p {
|
743
|
+
margin: 0in;
|
744
|
+
margin-bottom: .0001pt;
|
745
|
+
mso-pagination: none;
|
746
|
+
font-size: 10.0pt;
|
747
|
+
font-family: "Cambria", serif; }
|
748
|
+
|
749
|
+
span.note_label, span.example_label, td.example_label, td.note_label {
|
750
|
+
font-size: 10.0pt;
|
751
|
+
font-family: "Cambria", serif; }
|
752
|
+
|
753
|
+
-->
|
754
|
+
</style>
|
755
|
+
</head>
|
756
|
+
<body lang="EN-US" link="blue" vlink="#954F72" xml:lang="EN-US">
|
757
|
+
<div class="WordSection1"><p class="MsoNormal" align="right" style="text-align:right">
|
758
|
+
<b style="mso-bidi-font-weight: normal">
|
759
|
+
<span lang="EN-GB" style="font-size:14.0pt;mso-no-proof:yes" xml:lang="EN-GB"> :(E) </span>
|
760
|
+
</b>
|
761
|
+
<b style="mso-bidi-font-weight:normal">
|
762
|
+
<span lang="EN-GB" style="font-size:14.0pt" xml:lang="EN-GB">
|
763
|
+
<p class="MsoNormal"></p>
|
764
|
+
</span>
|
765
|
+
</b>
|
766
|
+
</p>
|
767
|
+
|
768
|
+
<p class="MsoNormal" align="right" style="text-align:right">
|
769
|
+
<span lang="EN-GB" style="mso-no-proof:yes" xml:lang="EN-GB"> </span>
|
770
|
+
<span lang="EN-GB" xml:lang="EN-GB">
|
771
|
+
<span style="mso-no-proof:yes"></span>
|
772
|
+
</span>
|
773
|
+
</p>
|
774
|
+
|
775
|
+
<p class="MsoNormal" align="right" style="margin-bottom:100.0pt;text-align:right">
|
776
|
+
<a name="CVP_Secretariat_Loca" id="CVP_Secretariat_Loca">
|
777
|
+
<span lang="EN-GB" xml:lang="EN-GB">Secretariat</span>
|
778
|
+
</a>
|
779
|
+
<span lang="EN-GB" xml:lang="EN-GB">: <span style="mso-no-proof:yes">XXXX</span></span>
|
780
|
+
</p>
|
781
|
+
|
782
|
+
<p class="MsoNormal" align="left" style="text-align:left;line-height:18.0pt;margin-bottom:0.0pt">
|
783
|
+
<b style="mso-bidi-font-weight:normal">
|
784
|
+
<span lang="EN-GB" style="font-size:16.0pt" xml:lang="EN-GB">
|
785
|
+
</span>
|
786
|
+
</b>
|
787
|
+
<br/>
|
788
|
+
<span lang="EN-GB" style="font-size:16.0pt" xml:lang="EN-GB"></span>
|
789
|
+
</p>
|
790
|
+
|
791
|
+
<p class="MsoNormal" style="margin-top:100.0pt">
|
792
|
+
<span lang="EN-GB" xml:lang="EN-GB">
|
793
|
+
<p class="MsoNormal"> </p>
|
794
|
+
</span>
|
795
|
+
</p>
|
796
|
+
|
797
|
+
<div style="mso-element:para-border-div;border:solid windowtext 1.0pt; mso-border-alt:solid windowtext .5pt;padding:1.0pt 4.0pt 1.0pt 4.0pt; margin-left:4.25pt;margin-right:4.25pt">
|
798
|
+
|
799
|
+
<p class="MsoNormal" align="center" style="text-align:center;border:none; mso-border-alt:solid windowtext .5pt;padding:0cm;mso-padding-alt:1.0pt 4.0pt 1.0pt 4.0pt"><span lang="EN-GB" style="font-size:40.0pt" xml:lang="EN-GB"> stage<p class="MsoNormal"></p></span></p>
|
800
|
+
|
801
|
+
</div>
|
802
|
+
|
803
|
+
<p class="MsoNormal" style="margin-bottom:6.0pt">
|
804
|
+
<span lang="EN-GB" xml:lang="EN-GB">
|
805
|
+
<p class="MsoNormal"> </p>
|
806
|
+
</span>
|
807
|
+
</p>
|
808
|
+
|
809
|
+
|
810
|
+
|
811
|
+
|
812
|
+
|
813
|
+
|
814
|
+
|
815
|
+
<p class="MsoNormal"> </p>
|
816
|
+
</div>
|
817
|
+
<br clear="all" class="section"/>
|
818
|
+
<div class="WordSection2"><div style="mso-element:para-border-div;border:solid windowtext 1.0pt; border-bottom:none;mso-border-top-alt:solid windowtext .5pt;mso-border-left-alt: solid windowtext .5pt;mso-border-right-alt:solid windowtext .5pt;padding:1.0pt 4.0pt 0cm 4.0pt; margin-left:5.1pt;margin-right:5.1pt">
|
819
|
+
|
820
|
+
<p class="zzCopyright" align="left" style="margin-top:2.0pt;margin-right:0cm; margin-bottom:12.0pt;margin-left:0cm;text-align:left;page-break-before:always; mso-layout-grid-align:none;text-autospace:none;border:none;mso-border-top-alt: solid windowtext .5pt;mso-border-left-alt:solid windowtext .5pt;mso-border-right-alt: solid windowtext .5pt;padding:0cm;mso-padding-alt:1.0pt 4.0pt 0cm 4.0pt"><span lang="EN-GB" style="color:windowtext" xml:lang="EN-GB">© , Published in Switzerland.<p class="MsoNormal"></p></span></p>
|
821
|
+
|
822
|
+
<p class="zzCopyright" style="margin-top:0cm;margin-right:0cm;margin-bottom:12.0pt; margin-left:0cm;mso-layout-grid-align:none;text-autospace:none;border:none; mso-border-left-alt:solid windowtext .5pt;mso-border-right-alt:solid windowtext .5pt; padding:0cm;mso-padding-alt:0cm 4.0pt 0cm 4.0pt"><span lang="EN-GB" style="font-size:10.0pt;mso-bidi-font-size:11.0pt;color:windowtext" xml:lang="EN-GB">All rights
|
823
|
+
reserved. Unless otherwise specified, no part of this publication may be
|
824
|
+
reproduced or utilized otherwise in any form or by any means, electronic or
|
825
|
+
mechanical, including photocopying, or posting on the internet or an intranet,
|
826
|
+
without prior written permission. Permission can be requested from either ISO
|
827
|
+
at the address below or ISO’s member body in the country of the requester.<p class="MsoNormal"></p></span></p>
|
828
|
+
|
829
|
+
<p class="zzCopyright" style="margin:0cm;margin-bottom:.0001pt;text-indent:20.15pt; mso-layout-grid-align:none;text-autospace:none;border:none;mso-border-left-alt: solid windowtext .5pt;mso-border-right-alt:solid windowtext .5pt;padding:0cm; mso-padding-alt:0cm 4.0pt 0cm 4.0pt"><span lang="EN-GB" style="font-size:10.0pt; mso-bidi-font-size:11.0pt;color:windowtext" xml:lang="EN-GB">ISO copyright office<p class="MsoNormal"></p></span></p>
|
830
|
+
|
831
|
+
<p class="zzCopyright" style="margin:0cm;margin-bottom:.0001pt;text-indent:20.15pt; mso-layout-grid-align:none;text-autospace:none;border:none;mso-border-left-alt: solid windowtext .5pt;mso-border-right-alt:solid windowtext .5pt;padding:0cm; mso-padding-alt:0cm 4.0pt 0cm 4.0pt"><span lang="EN-GB" style="font-size:10.0pt; mso-bidi-font-size:11.0pt;color:windowtext" xml:lang="EN-GB">Ch. de Blandonnet 8 • CP 401<p class="MsoNormal"></p></span></p>
|
832
|
+
|
833
|
+
<p class="zzCopyright" style="margin:0cm;margin-bottom:.0001pt;text-indent:20.15pt; mso-layout-grid-align:none;text-autospace:none;border:none;mso-border-left-alt: solid windowtext .5pt;mso-border-right-alt:solid windowtext .5pt;padding:0cm; mso-padding-alt:0cm 4.0pt 0cm 4.0pt"><span lang="EN-GB" style="font-size:10.0pt; mso-bidi-font-size:11.0pt;color:windowtext" xml:lang="EN-GB">CH-1214 Vernier, Geneva,
|
834
|
+
Switzerland<p class="MsoNormal"></p></span></p>
|
835
|
+
|
836
|
+
<p class="zzCopyright" style="margin:0cm;margin-bottom:.0001pt;text-indent:20.15pt; mso-layout-grid-align:none;text-autospace:none;border:none;mso-border-left-alt: solid windowtext .5pt;mso-border-right-alt:solid windowtext .5pt;padding:0cm; mso-padding-alt:0cm 4.0pt 0cm 4.0pt"><span lang="EN-GB" style="font-size:10.0pt; mso-bidi-font-size:11.0pt;color:windowtext" xml:lang="EN-GB">Tel.  + 41 22 749 01 11<p class="MsoNormal"></p></span></p>
|
837
|
+
|
838
|
+
<p class="zzCopyright" style="margin:0cm;margin-bottom:.0001pt;text-indent:20.15pt; mso-layout-grid-align:none;text-autospace:none;border:none;mso-border-left-alt: solid windowtext .5pt;mso-border-right-alt:solid windowtext .5pt;padding:0cm; mso-padding-alt:0cm 4.0pt 0cm 4.0pt"><span lang="EN-GB" style="font-size:10.0pt; mso-bidi-font-size:11.0pt;color:windowtext" xml:lang="EN-GB">Fax  + 41 22 749 09 47<p class="MsoNormal"></p></span></p>
|
839
|
+
|
840
|
+
<p class="zzCopyright" style="margin:0cm;margin-bottom:.0001pt;text-indent:20.15pt; mso-layout-grid-align:none;text-autospace:none;border:none;mso-border-left-alt: solid windowtext .5pt;mso-border-right-alt:solid windowtext .5pt;padding:0cm; mso-padding-alt:0cm 4.0pt 0cm 4.0pt"><span lang="EN-GB" style="font-size:10.0pt; mso-bidi-font-size:11.0pt;color:windowtext" xml:lang="EN-GB">copyright@iso.org<p class="MsoNormal"></p></span></p>
|
841
|
+
|
842
|
+
<p class="zzCopyright" style="margin-top:0cm;margin-right:0cm;margin-bottom:12.0pt; margin-left:0cm;text-indent:20.15pt;mso-layout-grid-align:none;text-autospace: none;border:none;mso-border-left-alt:solid windowtext .5pt;mso-border-bottom-alt: solid windowtext .5pt;mso-border-right-alt:solid windowtext .5pt;padding:0cm; mso-padding-alt:0cm 4.0pt 1.0pt 4.0pt"><span lang="EN-GB" style="font-size:10.0pt; mso-bidi-font-size:11.0pt;color:windowtext" xml:lang="EN-GB">www.iso.org<p class="MsoNormal"></p></span></p>
|
843
|
+
|
844
|
+
</div>
|
845
|
+
|
846
|
+
<p class="zzContents" style="margin-top:0cm">
|
847
|
+
<span lang="EN-GB" xml:lang="EN-GB">Contents</span>
|
848
|
+
</p>
|
849
|
+
|
850
|
+
<p class="MsoToc1"><span lang="EN-GB" xml:lang="EN-GB"><span style="mso-element:field-begin"></span><span style="mso-spacerun:yes"> </span>TOC
|
851
|
+
\o "1-2" \h \z \u <span style="mso-element:field-separator"></span></span>
|
852
|
+
<span class="MsoHyperlink"><span lang="EN-GB" style="mso-no-proof:yes" xml:lang="EN-GB">
|
853
|
+
<a href="#_Toc605614686">Foreword<span lang="EN-GB" class="MsoTocTextSpan" xml:lang="EN-GB">
|
854
|
+
<span style="mso-tab-count:1 dotted">. </span>
|
855
|
+
</span><span lang="EN-GB" class="MsoTocTextSpan" xml:lang="EN-GB">
|
856
|
+
<span style="mso-element:field-begin"></span></span>
|
857
|
+
<span lang="EN-GB" class="MsoTocTextSpan" xml:lang="EN-GB"> PAGEREF _Toc605614686 \h </span>
|
858
|
+
<span lang="EN-GB" class="MsoTocTextSpan" xml:lang="EN-GB"><span style="mso-element:field-separator"></span></span><span lang="EN-GB" class="MsoTocTextSpan" xml:lang="EN-GB">1</span>
|
859
|
+
<span lang="EN-GB" class="MsoTocTextSpan" xml:lang="EN-GB"></span><span lang="EN-GB" class="MsoTocTextSpan" xml:lang="EN-GB"><span style="mso-element:field-end"></span></span></a></span></span></p>
|
860
|
+
|
861
|
+
<p class="MsoToc1">
|
862
|
+
<span lang="EN-GB" xml:lang="EN-GB">
|
863
|
+
<span style="mso-element:field-end"></span>
|
864
|
+
</span>
|
865
|
+
<span lang="EN-GB" xml:lang="EN-GB">
|
866
|
+
<p class="MsoNormal"> </p>
|
867
|
+
</span>
|
868
|
+
</p>
|
869
|
+
|
870
|
+
|
871
|
+
<br clear="all" style="mso-special-character:line-break;page-break-before:always"/>
|
872
|
+
<div>
|
873
|
+
<h1 class="ForewordTitle">Foreword</h1>
|
874
|
+
<div id="" class="Note">
|
875
|
+
<p class="Note"><span class="note_label">NOTE</span><span style="mso-tab-count:1">  </span>These results are based on a study carried out on three different types of kernel.</p>
|
876
|
+
</div>
|
877
|
+
</div>
|
878
|
+
<p class="MsoNormal"> </p>
|
879
|
+
</div>
|
880
|
+
<br clear="all" class="section"/>
|
881
|
+
<div class="WordSection3">
|
882
|
+
<p class="zzSTDTitle1"></p>
|
883
|
+
</div>
|
884
|
+
<br clear="all" style="page-break-before:left;mso-break-type:section-break"/>
|
885
|
+
<div class="colophon"></div>
|
886
|
+
<div style="mso-element:footnote-list"/></body>
|
887
|
+
</html>
|
888
|
+
|
889
|
+
|
890
|
+
------=_NextPart_c9f9b7e4.33db.4068
|
891
|
+
Content-Location: file:///C:/Doc/spec/assets/iso_files/filelist.xml
|
892
|
+
Content-Transfer-Encoding: base64
|
893
|
+
Content-Type: application/xml
|
894
|
+
|
895
|
+
PHhtbCB4bWxuczpvPSJ1cm46c2NoZW1hcy1taWNyb3NvZnQtY29tOm9mZmljZTpvZmZpY2UiPgog
|
896
|
+
ICAgICAgIDxvOk1haW5GaWxlIEhSZWY9Ii4uL3NwZWMvYXNzZXRzL2lzby5odG0iLz4gIDxvOkZp
|
897
|
+
bGUgSFJlZj0iZmlsZWxpc3QueG1sIi8+CiAgPG86RmlsZSBIUmVmPSJoZWFkZXIuaHRtbCIvPgo8
|
898
|
+
L3htbD4K
|
899
|
+
|
900
|
+
------=_NextPart_c9f9b7e4.33db.4068
|
901
|
+
Content-Location: file:///C:/Doc/spec/assets/iso_files/header.html
|
902
|
+
Content-Transfer-Encoding: base64
|
903
|
+
Content-Type: text/html charset="utf-8"
|
904
|
+
|
905
|
+
PGh0bWwgeG1sbnM6dj0idXJuOnNjaGVtYXMtbWljcm9zb2Z0LWNvbTp2bWwiDQp4bWxuczpvPSJ1
|
906
|
+
cm46c2NoZW1hcy1taWNyb3NvZnQtY29tOm9mZmljZTpvZmZpY2UiDQp4bWxuczp3PSJ1cm46c2No
|
907
|
+
ZW1hcy1taWNyb3NvZnQtY29tOm9mZmljZTp3b3JkIg0KeG1sbnM6bT0iaHR0cDovL3NjaGVtYXMu
|
908
|
+
bWljcm9zb2Z0LmNvbS9vZmZpY2UvMjAwNC8xMi9vbW1sIg0KeG1sbnM6bXY9Imh0dHA6Ly9tYWNW
|
909
|
+
bWxTY2hlbWFVcmkiIHhtbG5zPSJodHRwOi8vd3d3LnczLm9yZy9UUi9SRUMtaHRtbDQwIj4NCg0K
|
910
|
+
PGhlYWQ+DQo8bWV0YSBuYW1lPVRpdGxlIGNvbnRlbnQ9IiI+DQo8bWV0YSBuYW1lPUtleXdvcmRz
|
911
|
+
IGNvbnRlbnQ9IiI+DQo8bWV0YSBodHRwLWVxdWl2PUNvbnRlbnQtVHlwZSBjb250ZW50PSJ0ZXh0
|
912
|
+
L2h0bWw7IGNoYXJzZXQ9dXRmLTgiPg0KPG1ldGEgbmFtZT1Qcm9nSWQgY29udGVudD1Xb3JkLkRv
|
913
|
+
Y3VtZW50Pg0KPG1ldGEgbmFtZT1HZW5lcmF0b3IgY29udGVudD0iTWljcm9zb2Z0IFdvcmQgMTUi
|
914
|
+
Pg0KPG1ldGEgbmFtZT1PcmlnaW5hdG9yIGNvbnRlbnQ9Ik1pY3Jvc29mdCBXb3JkIDE1Ij4NCjxs
|
915
|
+
aW5rIGlkPU1haW4tRmlsZSByZWw9TWFpbi1GaWxlIGhyZWY9Ii4uL3NwZWMvYXNzZXRzL2lzby5o
|
916
|
+
dG1sIj4NCjwhLS1baWYgZ3RlIG1zbyA5XT48eG1sPg0KIDxvOnNoYXBlZGVmYXVsdHMgdjpleHQ9
|
917
|
+
ImVkaXQiIHNwaWRtYXg9IjIwNDkiLz4NCjwveG1sPjwhW2VuZGlmXS0tPg0KPC9oZWFkPg0KDQo8
|
918
|
+
Ym9keSBsYW5nPUVOIGxpbms9Ymx1ZSB2bGluaz0iIzk1NEY3MiI+DQoNCjxkaXYgc3R5bGU9J21z
|
919
|
+
by1lbGVtZW50OmZvb3Rub3RlLXNlcGFyYXRvcicgaWQ9ZnM+DQoNCjxwIGNsYXNzPU1zb05vcm1h
|
920
|
+
bCBzdHlsZT0nbWFyZ2luLWJvdHRvbTowY207bWFyZ2luLWJvdHRvbTouMDAwMXB0O2xpbmUtaGVp
|
921
|
+
Z2h0Og0Kbm9ybWFsJz48c3BhbiBsYW5nPUVOLUdCPjxzcGFuIHN0eWxlPSdtc28tc3BlY2lhbC1j
|
922
|
+
aGFyYWN0ZXI6Zm9vdG5vdGUtc2VwYXJhdG9yJz48IVtpZiAhc3VwcG9ydEZvb3Rub3Rlc10+DQoN
|
923
|
+
CjxociBhbGlnbj1sZWZ0IHNpemU9MSB3aWR0aD0iMzMlIj4NCg0KPCFbZW5kaWZdPjwvc3Bhbj48
|
924
|
+
L3NwYW4+PC9wPg0KDQo8L2Rpdj4NCg0KPGRpdiBzdHlsZT0nbXNvLWVsZW1lbnQ6Zm9vdG5vdGUt
|
925
|
+
Y29udGludWF0aW9uLXNlcGFyYXRvcicgaWQ9ZmNzPg0KDQo8cCBjbGFzcz1Nc29Ob3JtYWwgc3R5
|
926
|
+
bGU9J21hcmdpbi1ib3R0b206MGNtO21hcmdpbi1ib3R0b206LjAwMDFwdDtsaW5lLWhlaWdodDoN
|
927
|
+
Cm5vcm1hbCc+PHNwYW4gbGFuZz1FTi1HQj48c3BhbiBzdHlsZT0nbXNvLXNwZWNpYWwtY2hhcmFj
|
928
|
+
dGVyOmZvb3Rub3RlLWNvbnRpbnVhdGlvbi1zZXBhcmF0b3InPjwhW2lmICFzdXBwb3J0Rm9vdG5v
|
929
|
+
dGVzXT4NCg0KPGhyIGFsaWduPWxlZnQgc2l6ZT0xPg0KDQo8IVtlbmRpZl0+PC9zcGFuPjwvc3Bh
|
930
|
+
bj48L3A+DQoNCjwvZGl2Pg0KDQo8ZGl2IHN0eWxlPSdtc28tZWxlbWVudDplbmRub3RlLXNlcGFy
|
931
|
+
YXRvcicgaWQ9ZXM+DQoNCjxwIGNsYXNzPU1zb05vcm1hbCBzdHlsZT0nbWFyZ2luLWJvdHRvbTow
|
932
|
+
Y207bWFyZ2luLWJvdHRvbTouMDAwMXB0O2xpbmUtaGVpZ2h0Og0Kbm9ybWFsJz48c3BhbiBsYW5n
|
933
|
+
PUVOLUdCPjxzcGFuIHN0eWxlPSdtc28tc3BlY2lhbC1jaGFyYWN0ZXI6Zm9vdG5vdGUtc2VwYXJh
|
934
|
+
dG9yJz48IVtpZiAhc3VwcG9ydEZvb3Rub3Rlc10+DQoNCjxociBhbGlnbj1sZWZ0IHNpemU9MSB3
|
935
|
+
aWR0aD0iMzMlIj4NCg0KPCFbZW5kaWZdPjwvc3Bhbj48L3NwYW4+PC9wPg0KDQo8L2Rpdj4NCg0K
|
936
|
+
PGRpdiBzdHlsZT0nbXNvLWVsZW1lbnQ6ZW5kbm90ZS1jb250aW51YXRpb24tc2VwYXJhdG9yJyBp
|
937
|
+
ZD1lY3M+DQoNCjxwIGNsYXNzPU1zb05vcm1hbCBzdHlsZT0nbWFyZ2luLWJvdHRvbTowY207bWFy
|
938
|
+
Z2luLWJvdHRvbTouMDAwMXB0O2xpbmUtaGVpZ2h0Og0Kbm9ybWFsJz48c3BhbiBsYW5nPUVOLUdC
|
939
|
+
PjxzcGFuIHN0eWxlPSdtc28tc3BlY2lhbC1jaGFyYWN0ZXI6Zm9vdG5vdGUtY29udGludWF0aW9u
|
940
|
+
LXNlcGFyYXRvcic+PCFbaWYgIXN1cHBvcnRGb290bm90ZXNdPg0KDQo8aHIgYWxpZ249bGVmdCBz
|
941
|
+
aXplPTE+DQoNCjwhW2VuZGlmXT48L3NwYW4+PC9zcGFuPjwvcD4NCg0KPC9kaXY+DQoNCjxkaXYg
|
942
|
+
c3R5bGU9J21zby1lbGVtZW50OmhlYWRlcicgaWQ9ZWhhPg0KDQo8cCBjbGFzcz1Nc29IZWFkZXIg
|
943
|
+
YWxpZ249bGVmdCBzdHlsZT0ndGV4dC1hbGlnbjpsZWZ0O2xpbmUtaGVpZ2h0OjEyLjBwdDsNCm1z
|
944
|
+
by1saW5lLWhlaWdodC1ydWxlOmV4YWN0bHknPjxzcGFuIGxhbmc9RU4tR0I+OihFKTwvc3Bhbj48
|
945
|
+
L3A+DQoNCjwvZGl2Pg0KDQo8ZGl2IHN0eWxlPSdtc28tZWxlbWVudDpoZWFkZXInIGlkPWhhPg0K
|
946
|
+
DQo8cCBjbGFzcz1Nc29IZWFkZXIgc3R5bGU9J21hcmdpbi1ib3R0b206MTguMHB0Jz48c3BhbiBs
|
947
|
+
YW5nPUVOLUdCDQpzdHlsZT0nZm9udC1zaXplOjEwLjBwdDttc28tYmlkaS1mb250LXNpemU6MTEu
|
948
|
+
MHB0O2ZvbnQtd2VpZ2h0Om5vcm1hbCc+wqkNCiZuYnNwOyZuYnNwO+KAkyBBbGwgcmlnaHRzIHJl
|
949
|
+
c2VydmVkPC9zcGFuPjxzcGFuIGxhbmc9RU4tR0INCnN0eWxlPSdmb250LXdlaWdodDpub3JtYWwn
|
950
|
+
PjxvOnA+PC9vOnA+PC9zcGFuPjwvcD4NCg0KPC9kaXY+DQoNCjxkaXYgc3R5bGU9J21zby1lbGVt
|
951
|
+
ZW50OmZvb3RlcicgaWQ9ZWZhPg0KDQo8cCBjbGFzcz1Nc29Gb290ZXIgc3R5bGU9J21hcmdpbi10
|
952
|
+
b3A6MTIuMHB0O2xpbmUtaGVpZ2h0OjEyLjBwdDttc28tbGluZS1oZWlnaHQtcnVsZToNCmV4YWN0
|
953
|
+
bHknPjwhLS1baWYgc3VwcG9ydEZpZWxkc10+PGIgc3R5bGU9J21zby1iaWRpLWZvbnQtd2VpZ2h0
|
954
|
+
Om5vcm1hbCc+PHNwYW4NCmxhbmc9RU4tR0Igc3R5bGU9J2ZvbnQtc2l6ZToxMC4wcHQ7bXNvLWJp
|
955
|
+
ZGktZm9udC1zaXplOjExLjBwdCc+PHNwYW4NCnN0eWxlPSdtc28tZWxlbWVudDpmaWVsZC1iZWdp
|
956
|
+
bic+PC9zcGFuPjxzcGFuDQpzdHlsZT0nbXNvLXNwYWNlcnVuOnllcyc+wqA8L3NwYW4+UEFHRTxz
|
957
|
+
cGFuIHN0eWxlPSdtc28tc3BhY2VydW46eWVzJz7CoMKgDQo8L3NwYW4+XCogTUVSR0VGT1JNQVQg
|
958
|
+
PHNwYW4gc3R5bGU9J21zby1lbGVtZW50OmZpZWxkLXNlcGFyYXRvcic+PC9zcGFuPjwvc3Bhbj48
|
959
|
+
L2I+PCFbZW5kaWZdLS0+PGINCnN0eWxlPSdtc28tYmlkaS1mb250LXdlaWdodDpub3JtYWwnPjxz
|
960
|
+
cGFuIGxhbmc9RU4tR0Igc3R5bGU9J2ZvbnQtc2l6ZToxMC4wcHQ7DQptc28tYmlkaS1mb250LXNp
|
961
|
+
emU6MTEuMHB0Jz48c3BhbiBzdHlsZT0nbXNvLW5vLXByb29mOnllcyc+Mjwvc3Bhbj48L3NwYW4+
|
962
|
+
PC9iPjwhLS1baWYgc3VwcG9ydEZpZWxkc10+PGINCnN0eWxlPSdtc28tYmlkaS1mb250LXdlaWdo
|
963
|
+
dDpub3JtYWwnPjxzcGFuIGxhbmc9RU4tR0Igc3R5bGU9J2ZvbnQtc2l6ZToxMC4wcHQ7DQptc28t
|
964
|
+
YmlkaS1mb250LXNpemU6MTEuMHB0Jz48c3BhbiBzdHlsZT0nbXNvLWVsZW1lbnQ6ZmllbGQtZW5k
|
965
|
+
Jz48L3NwYW4+PC9zcGFuPjwvYj48IVtlbmRpZl0tLT48c3Bhbg0KbGFuZz1FTi1HQiBzdHlsZT0n
|
966
|
+
Zm9udC1zaXplOjEwLjBwdDttc28tYmlkaS1mb250LXNpemU6MTEuMHB0Jz48c3Bhbg0Kc3R5bGU9
|
967
|
+
J21zby10YWItY291bnQ6MSc+wqDCoMKgwqDCoMKgwqDCoMKgwqDCoMKgwqDCoMKgwqDCoMKgwqDC
|
968
|
+
oMKgwqDCoMKgwqDCoMKgwqDCoMKgwqDCoMKgwqDCoMKgwqDCoMKgwqDCoMKgwqDCoMKgwqDCoMKg
|
969
|
+
wqDCoMKgwqDCoMKgwqDCoMKgwqDCoMKgwqDCoMKgwqDCoMKgwqDCoMKgwqDCoMKgwqDCoMKgwqDC
|
970
|
+
oMKgwqDCoMKgwqDCoMKgwqDCoMKgwqDCoMKgwqDCoMKgwqDCoMKgwqDCoMKgwqDCoMKgwqDCoMKg
|
971
|
+
wqDCoMKgwqDCoMKgwqDCoMKgwqDCoMKgwqDCoMKgwqDCoMKgwqDCoMKgwqDCoMKgwqDCoMKgwqDC
|
972
|
+
oMKgwqDCoMKgwqDCoMKgwqDCoMKgwqDCoMKgwqDCoMKgwqDCoMKgwqDCoMKgwqDCoMKgwqDCoMKg
|
973
|
+
wqDCoMKgwqDCoMKgwqDCoCA8L3NwYW4+wqkNCiZuYnNwOyZuYnNwO+KAkyBBbGwgcmlnaHRzIHJl
|
974
|
+
c2VydmVkPG86cD48L286cD48L3NwYW4+PC9wPg0KDQo8L2Rpdj4NCg0KPGRpdiBzdHlsZT0nbXNv
|
975
|
+
LWVsZW1lbnQ6aGVhZGVyJyBpZD1laDI+DQoNCjxwIGNsYXNzPU1zb0hlYWRlciBhbGlnbj1sZWZ0
|
976
|
+
IHN0eWxlPSd0ZXh0LWFsaWduOmxlZnQ7bGluZS1oZWlnaHQ6MTIuMHB0Ow0KbXNvLWxpbmUtaGVp
|
977
|
+
Z2h0LXJ1bGU6ZXhhY3RseSc+PHNwYW4gbGFuZz1FTi1HQj46KEUpPC9zcGFuPjwvcD4NCg0KPC9k
|
978
|
+
aXY+DQoNCjxkaXYgc3R5bGU9J21zby1lbGVtZW50OmhlYWRlcicgaWQ9aDI+DQoNCjxwIGNsYXNz
|
979
|
+
PU1zb0hlYWRlciBhbGlnbj1yaWdodCBzdHlsZT0ndGV4dC1hbGlnbjpyaWdodDtsaW5lLWhlaWdo
|
980
|
+
dDoxMi4wcHQ7DQptc28tbGluZS1oZWlnaHQtcnVsZTpleGFjdGx5Jz48c3BhbiBsYW5nPUVOLUdC
|
981
|
+
PjooRSk8L3NwYW4+PC9wPg0KDQo8L2Rpdj4NCg0KPGRpdiBzdHlsZT0nbXNvLWVsZW1lbnQ6Zm9v
|
982
|
+
dGVyJyBpZD1lZjI+DQoNCjxwIGNsYXNzPU1zb0Zvb3RlciBzdHlsZT0nbGluZS1oZWlnaHQ6MTIu
|
983
|
+
MHB0O21zby1saW5lLWhlaWdodC1ydWxlOmV4YWN0bHknPjwhLS1baWYgc3VwcG9ydEZpZWxkc10+
|
984
|
+
PHNwYW4NCmxhbmc9RU4tR0Igc3R5bGU9J2ZvbnQtc2l6ZToxMC4wcHQ7bXNvLWJpZGktZm9udC1z
|
985
|
+
aXplOjExLjBwdCc+PHNwYW4NCnN0eWxlPSdtc28tZWxlbWVudDpmaWVsZC1iZWdpbic+PC9zcGFu
|
986
|
+
PjxzcGFuDQpzdHlsZT0nbXNvLXNwYWNlcnVuOnllcyc+wqA8L3NwYW4+UEFHRTxzcGFuIHN0eWxl
|
987
|
+
PSdtc28tc3BhY2VydW46eWVzJz7CoMKgDQo8L3NwYW4+XCogTUVSR0VGT1JNQVQgPHNwYW4gc3R5
|
988
|
+
bGU9J21zby1lbGVtZW50OmZpZWxkLXNlcGFyYXRvcic+PC9zcGFuPjwvc3Bhbj48IVtlbmRpZl0t
|
989
|
+
LT48c3Bhbg0KbGFuZz1FTi1HQiBzdHlsZT0nZm9udC1zaXplOjEwLjBwdDttc28tYmlkaS1mb250
|
990
|
+
LXNpemU6MTEuMHB0Jz48c3Bhbg0Kc3R5bGU9J21zby1uby1wcm9vZjp5ZXMnPmlpPC9zcGFuPjwv
|
991
|
+
c3Bhbj48IS0tW2lmIHN1cHBvcnRGaWVsZHNdPjxzcGFuDQpsYW5nPUVOLUdCIHN0eWxlPSdmb250
|
992
|
+
LXNpemU6MTAuMHB0O21zby1iaWRpLWZvbnQtc2l6ZToxMS4wcHQnPjxzcGFuDQpzdHlsZT0nbXNv
|
993
|
+
LWVsZW1lbnQ6ZmllbGQtZW5kJz48L3NwYW4+PC9zcGFuPjwhW2VuZGlmXS0tPjxzcGFuIGxhbmc9
|
994
|
+
RU4tR0INCnN0eWxlPSdmb250LXNpemU6MTAuMHB0O21zby1iaWRpLWZvbnQtc2l6ZToxMS4wcHQn
|
995
|
+
PjxzcGFuIHN0eWxlPSdtc28tdGFiLWNvdW50Og0KMSc+wqDCoMKgwqDCoMKgwqDCoMKgwqDCoMKg
|
996
|
+
wqDCoMKgwqDCoMKgwqDCoMKgwqDCoMKgwqDCoMKgwqDCoMKgwqDCoMKgwqDCoMKgwqDCoMKgwqDC
|
997
|
+
oMKgwqDCoMKgwqDCoMKgwqDCoMKgwqDCoMKgwqDCoMKgwqDCoMKgwqDCoMKgwqDCoMKgwqDCoMKg
|
998
|
+
wqDCoMKgwqDCoMKgwqDCoMKgwqDCoMKgwqDCoMKgwqDCoMKgwqDCoMKgwqDCoMKgwqDCoMKgwqDC
|
999
|
+
oMKgwqDCoMKgwqDCoMKgwqDCoMKgwqDCoMKgwqDCoMKgwqDCoMKgwqDCoMKgwqDCoMKgwqDCoMKg
|
1000
|
+
wqDCoMKgwqDCoMKgwqDCoMKgwqDCoMKgwqDCoMKgwqDCoMKgwqDCoMKgwqDCoMKgwqDCoMKgwqDC
|
1001
|
+
oMKgwqDCoMKgwqDCoMKgwqDCoMKgwqDCoMKgwqDCoCA8L3NwYW4+wqkNCiZuYnNwOyZuYnNwO+KA
|
1002
|
+
kyBBbGwgcmlnaHRzIHJlc2VydmVkPG86cD48L286cD48L3NwYW4+PC9wPg0KDQo8L2Rpdj4NCg0K
|
1003
|
+
PGRpdiBzdHlsZT0nbXNvLWVsZW1lbnQ6Zm9vdGVyJyBpZD1mMj4NCg0KPHAgY2xhc3M9TXNvRm9v
|
1004
|
+
dGVyIHN0eWxlPSdsaW5lLWhlaWdodDoxMi4wcHQnPjxzcGFuIGxhbmc9RU4tR0INCnN0eWxlPSdm
|
1005
|
+
b250LXNpemU6MTAuMHB0O21zby1iaWRpLWZvbnQtc2l6ZToxMS4wcHQnPsKpICZuYnNwOyZuYnNw
|
1006
|
+
O+KAkyBBbGwNCnJpZ2h0cyByZXNlcnZlZDxzcGFuIHN0eWxlPSdtc28tdGFiLWNvdW50OjEnPsKg
|
1007
|
+
wqDCoMKgwqDCoMKgwqDCoMKgwqDCoMKgwqDCoMKgwqDCoMKgwqDCoMKgwqDCoMKgwqDCoMKgwqDC
|
1008
|
+
oMKgwqDCoMKgwqDCoMKgwqDCoMKgwqDCoMKgwqDCoMKgwqDCoMKgwqDCoMKgwqDCoMKgwqDCoMKg
|
1009
|
+
wqDCoMKgwqDCoMKgwqDCoMKgwqDCoMKgwqDCoMKgwqDCoMKgwqDCoMKgwqDCoMKgwqDCoMKgwqDC
|
1010
|
+
oMKgwqDCoMKgwqDCoMKgwqDCoMKgwqDCoMKgwqDCoMKgwqDCoMKgwqDCoMKgwqDCoMKgwqDCoMKg
|
1011
|
+
wqDCoMKgwqDCoMKgwqDCoMKgwqDCoMKgwqDCoMKgwqDCoMKgwqDCoMKgwqDCoMKgwqDCoMKgwqDC
|
1012
|
+
oMKgwqDCoMKgwqDCoMKgwqDCoMKgwqDCoMKgwqDCoMKgwqDCoMKgwqDCoMKgwqDCoMKgIDwvc3Bh
|
1013
|
+
bj48L3NwYW4+PCEtLVtpZiBzdXBwb3J0RmllbGRzXT48c3Bhbg0KbGFuZz1FTi1HQiBzdHlsZT0n
|
1014
|
+
Zm9udC1zaXplOjEwLjBwdDttc28tYmlkaS1mb250LXNpemU6MTEuMHB0Jz48c3Bhbg0Kc3R5bGU9
|
1015
|
+
J21zby1lbGVtZW50OmZpZWxkLWJlZ2luJz48L3NwYW4+IFBBR0U8c3BhbiBzdHlsZT0nbXNvLXNw
|
1016
|
+
YWNlcnVuOnllcyc+wqDCoA0KPC9zcGFuPlwqIE1FUkdFRk9STUFUIDxzcGFuIHN0eWxlPSdtc28t
|
1017
|
+
ZWxlbWVudDpmaWVsZC1zZXBhcmF0b3InPjwvc3Bhbj48L3NwYW4+PCFbZW5kaWZdLS0+PHNwYW4N
|
1018
|
+
Cmxhbmc9RU4tR0Igc3R5bGU9J2ZvbnQtc2l6ZToxMC4wcHQ7bXNvLWJpZGktZm9udC1zaXplOjEx
|
1019
|
+
LjBwdCc+PHNwYW4NCnN0eWxlPSdtc28tbm8tcHJvb2Y6eWVzJz5paWk8L3NwYW4+PC9zcGFuPjwh
|
1020
|
+
LS1baWYgc3VwcG9ydEZpZWxkc10+PHNwYW4NCmxhbmc9RU4tR0Igc3R5bGU9J2ZvbnQtc2l6ZTox
|
1021
|
+
MC4wcHQ7bXNvLWJpZGktZm9udC1zaXplOjExLjBwdCc+PHNwYW4NCnN0eWxlPSdtc28tZWxlbWVu
|
1022
|
+
dDpmaWVsZC1lbmQnPjwvc3Bhbj48L3NwYW4+PCFbZW5kaWZdLS0+PHNwYW4gbGFuZz1FTi1HQg0K
|
1023
|
+
c3R5bGU9J2ZvbnQtc2l6ZToxMC4wcHQ7bXNvLWJpZGktZm9udC1zaXplOjExLjBwdCc+PG86cD48
|
1024
|
+
L286cD48L3NwYW4+PC9wPg0KDQo8L2Rpdj4NCg0KPGRpdiBzdHlsZT0nbXNvLWVsZW1lbnQ6Zm9v
|
1025
|
+
dGVyJyBpZD1lZjM+DQoNCjxwIGNsYXNzPU1zb0Zvb3RlciBzdHlsZT0nbWFyZ2luLXRvcDoxMi4w
|
1026
|
+
cHQ7bGluZS1oZWlnaHQ6MTIuMHB0O21zby1saW5lLWhlaWdodC1ydWxlOg0KZXhhY3RseSc+PCEt
|
1027
|
+
LVtpZiBzdXBwb3J0RmllbGRzXT48YiBzdHlsZT0nbXNvLWJpZGktZm9udC13ZWlnaHQ6bm9ybWFs
|
1028
|
+
Jz48c3Bhbg0KbGFuZz1FTi1HQiBzdHlsZT0nZm9udC1zaXplOjEwLjBwdDttc28tYmlkaS1mb250
|
1029
|
+
LXNpemU6MTEuMHB0Jz48c3Bhbg0Kc3R5bGU9J21zby1lbGVtZW50OmZpZWxkLWJlZ2luJz48L3Nw
|
1030
|
+
YW4+PHNwYW4NCnN0eWxlPSdtc28tc3BhY2VydW46eWVzJz7CoDwvc3Bhbj5QQUdFPHNwYW4gc3R5
|
1031
|
+
bGU9J21zby1zcGFjZXJ1bjp5ZXMnPsKgwqANCjwvc3Bhbj5cKiBNRVJHRUZPUk1BVCA8c3BhbiBz
|
1032
|
+
dHlsZT0nbXNvLWVsZW1lbnQ6ZmllbGQtc2VwYXJhdG9yJz48L3NwYW4+PC9zcGFuPjwvYj48IVtl
|
1033
|
+
bmRpZl0tLT48Yg0Kc3R5bGU9J21zby1iaWRpLWZvbnQtd2VpZ2h0Om5vcm1hbCc+PHNwYW4gbGFu
|
1034
|
+
Zz1FTi1HQiBzdHlsZT0nZm9udC1zaXplOjEwLjBwdDsNCm1zby1iaWRpLWZvbnQtc2l6ZToxMS4w
|
1035
|
+
cHQnPjxzcGFuIHN0eWxlPSdtc28tbm8tcHJvb2Y6eWVzJz4yPC9zcGFuPjwvc3Bhbj48L2I+PCEt
|
1036
|
+
LVtpZiBzdXBwb3J0RmllbGRzXT48Yg0Kc3R5bGU9J21zby1iaWRpLWZvbnQtd2VpZ2h0Om5vcm1h
|
1037
|
+
bCc+PHNwYW4gbGFuZz1FTi1HQiBzdHlsZT0nZm9udC1zaXplOjEwLjBwdDsNCm1zby1iaWRpLWZv
|
1038
|
+
bnQtc2l6ZToxMS4wcHQnPjxzcGFuIHN0eWxlPSdtc28tZWxlbWVudDpmaWVsZC1lbmQnPjwvc3Bh
|
1039
|
+
bj48L3NwYW4+PC9iPjwhW2VuZGlmXS0tPjxzcGFuDQpsYW5nPUVOLUdCIHN0eWxlPSdmb250LXNp
|
1040
|
+
emU6MTAuMHB0O21zby1iaWRpLWZvbnQtc2l6ZToxMS4wcHQnPjxzcGFuDQpzdHlsZT0nbXNvLXRh
|
1041
|
+
Yi1jb3VudDoxJz7CoMKgwqDCoMKgwqDCoMKgwqDCoMKgwqDCoMKgwqDCoMKgwqDCoMKgwqDCoMKg
|
1042
|
+
wqDCoMKgwqDCoMKgwqDCoMKgwqDCoMKgwqDCoMKgwqDCoMKgwqDCoMKgwqDCoMKgwqDCoMKgwqDC
|
1043
|
+
oMKgwqDCoMKgwqDCoMKgwqDCoMKgwqDCoMKgwqDCoMKgwqDCoMKgwqDCoMKgwqDCoMKgwqDCoMKg
|
1044
|
+
wqDCoMKgwqDCoMKgwqDCoMKgwqDCoMKgwqDCoMKgwqDCoMKgwqDCoMKgwqDCoMKgwqDCoMKgwqDC
|
1045
|
+
oMKgwqDCoMKgwqDCoMKgwqDCoMKgwqDCoMKgwqDCoMKgwqDCoMKgwqDCoMKgwqDCoMKgwqDCoMKg
|
1046
|
+
wqDCoMKgwqDCoMKgwqDCoMKgwqDCoMKgwqDCoMKgwqDCoMKgwqDCoMKgwqDCoMKgwqDCoMKgwqDC
|
1047
|
+
oMKgwqDCoMKgIDwvc3Bhbj7CqQ0KJm5ic3A7Jm5ic3A74oCTIEFsbCByaWdodHMgcmVzZXJ2ZWQ8
|
1048
|
+
bzpwPjwvbzpwPjwvc3Bhbj48L3A+DQoNCjwvZGl2Pg0KDQo8ZGl2IHN0eWxlPSdtc28tZWxlbWVu
|
1049
|
+
dDpmb290ZXInIGlkPWYzPg0KDQo8cCBjbGFzcz1Nc29Gb290ZXIgc3R5bGU9J2xpbmUtaGVpZ2h0
|
1050
|
+
OjEyLjBwdCc+PHNwYW4gbGFuZz1FTi1HQg0Kc3R5bGU9J2ZvbnQtc2l6ZToxMC4wcHQ7bXNvLWJp
|
1051
|
+
ZGktZm9udC1zaXplOjExLjBwdCc+wqkgJm5ic3A7Jm5ic3A74oCTIEFsbA0KcmlnaHRzIHJlc2Vy
|
1052
|
+
dmVkPHNwYW4gc3R5bGU9J21zby10YWItY291bnQ6MSc+wqDCoMKgwqDCoMKgwqDCoMKgwqDCoMKg
|
1053
|
+
wqDCoMKgwqDCoMKgwqDCoMKgwqDCoMKgwqDCoMKgwqDCoMKgwqDCoMKgwqDCoMKgwqDCoMKgwqDC
|
1054
|
+
oMKgwqDCoMKgwqDCoMKgwqDCoMKgwqDCoMKgwqDCoMKgwqDCoMKgwqDCoMKgwqDCoMKgwqDCoMKg
|
1055
|
+
wqDCoMKgwqDCoMKgwqDCoMKgwqDCoMKgwqDCoMKgwqDCoMKgwqDCoMKgwqDCoMKgwqDCoMKgwqDC
|
1056
|
+
oMKgwqDCoMKgwqDCoMKgwqDCoMKgwqDCoMKgwqDCoMKgwqDCoMKgwqDCoMKgwqDCoMKgwqDCoMKg
|
1057
|
+
wqDCoMKgwqDCoMKgwqDCoMKgwqDCoMKgwqDCoMKgwqDCoMKgwqDCoMKgwqDCoMKgwqDCoMKgwqDC
|
1058
|
+
oMKgwqDCoMKgwqDCoMKgwqDCoMKgwqDCoMKgwqDCoCA8L3NwYW4+PC9zcGFuPjwhLS1baWYgc3Vw
|
1059
|
+
cG9ydEZpZWxkc10+PGINCnN0eWxlPSdtc28tYmlkaS1mb250LXdlaWdodDpub3JtYWwnPjxzcGFu
|
1060
|
+
IGxhbmc9RU4tR0Igc3R5bGU9J2ZvbnQtc2l6ZToxMC4wcHQ7DQptc28tYmlkaS1mb250LXNpemU6
|
1061
|
+
MTEuMHB0Jz48c3BhbiBzdHlsZT0nbXNvLWVsZW1lbnQ6ZmllbGQtYmVnaW4nPjwvc3Bhbj4NClBB
|
1062
|
+
R0U8c3BhbiBzdHlsZT0nbXNvLXNwYWNlcnVuOnllcyc+wqDCoCA8L3NwYW4+XCogTUVSR0VGT1JN
|
1063
|
+
QVQgPHNwYW4NCnN0eWxlPSdtc28tZWxlbWVudDpmaWVsZC1zZXBhcmF0b3InPjwvc3Bhbj48L3Nw
|
1064
|
+
YW4+PC9iPjwhW2VuZGlmXS0tPjxiDQpzdHlsZT0nbXNvLWJpZGktZm9udC13ZWlnaHQ6bm9ybWFs
|
1065
|
+
Jz48c3BhbiBsYW5nPUVOLUdCIHN0eWxlPSdmb250LXNpemU6MTAuMHB0Ow0KbXNvLWJpZGktZm9u
|
1066
|
+
dC1zaXplOjExLjBwdCc+PHNwYW4gc3R5bGU9J21zby1uby1wcm9vZjp5ZXMnPjM8L3NwYW4+PC9z
|
1067
|
+
cGFuPjwvYj48IS0tW2lmIHN1cHBvcnRGaWVsZHNdPjxiDQpzdHlsZT0nbXNvLWJpZGktZm9udC13
|
1068
|
+
ZWlnaHQ6bm9ybWFsJz48c3BhbiBsYW5nPUVOLUdCIHN0eWxlPSdmb250LXNpemU6MTAuMHB0Ow0K
|
1069
|
+
bXNvLWJpZGktZm9udC1zaXplOjExLjBwdCc+PHNwYW4gc3R5bGU9J21zby1lbGVtZW50OmZpZWxk
|
1070
|
+
LWVuZCc+PC9zcGFuPjwvc3Bhbj48L2I+PCFbZW5kaWZdLS0+PHNwYW4NCmxhbmc9RU4tR0Igc3R5
|
1071
|
+
bGU9J2ZvbnQtc2l6ZToxMC4wcHQ7bXNvLWJpZGktZm9udC1zaXplOjExLjBwdCc+PG86cD48L286
|
1072
|
+
cD48L3NwYW4+PC9wPg0KDQo8L2Rpdj4NCg0KPGRpdiBzdHlsZT0nbXNvLWVsZW1lbnQ6Zm9vdGVy
|
1073
|
+
JyBpZD1mND4NCg0KPHAgY2xhc3M9TXNvRm9vdGVyPjxiIHN0eWxlPSdtc28tYmlkaS1mb250LXdl
|
1074
|
+
aWdodDpub3JtYWwnPjxzcGFuPklDUyA8bzpwPjwvbzpwPjwvc3Bhbj48L2I+PC9wPg0KDQo8cCBj
|
1075
|
+
bGFzcz1Nc29Gb290ZXIgc3R5bGU9J21hcmdpbi10b3A6MGNtJz48c3BhbiBsYW5nPUVOLUFVIHN0
|
1076
|
+
eWxlPSdmb250LXNpemU6DQoxMC4wcHQ7bXNvLWFuc2ktbGFuZ3VhZ2U6RU4tQVUnPlByaWNlIGJh
|
1077
|
+
c2VkIG9uIDwvc3Bhbj48IS0tW2lmIHN1cHBvcnRGaWVsZHNdPjxzcGFuDQpsYW5nPUVOLUFVIHN0
|
1078
|
+
eWxlPSdmb250LXNpemU6MTAuMHB0O21zby1hbnNpLWxhbmd1YWdlOkVOLUFVJz48c3Bhbg0Kc3R5
|
1079
|
+
bGU9J21zby1lbGVtZW50OmZpZWxkLWJlZ2luJz48L3NwYW4+PHNwYW4gc3R5bGU9J21zby1zcGFj
|
1080
|
+
ZXJ1bjp5ZXMnPsKgPC9zcGFuPk5VTVBBR0VTPHNwYW4NCnN0eWxlPSdtc28tc3BhY2VydW46eWVz
|
1081
|
+
Jz7CoCA8L3NwYW4+XCogTUVSR0VGT1JNQVQgPHNwYW4gc3R5bGU9J21zby1lbGVtZW50OmZpZWxk
|
1082
|
+
LXNlcGFyYXRvcic+PC9zcGFuPjwvc3Bhbj48IVtlbmRpZl0tLT48c3Bhbg0KbGFuZz1FTi1BVSBz
|
1083
|
+
dHlsZT0nZm9udC1zaXplOjEwLjBwdDttc28tYW5zaS1sYW5ndWFnZTpFTi1BVSc+PHNwYW4NCnN0
|
1084
|
+
eWxlPSdtc28tbm8tcHJvb2Y6eWVzJz4yNjwvc3Bhbj48L3NwYW4+PCEtLVtpZiBzdXBwb3J0Rmll
|
1085
|
+
bGRzXT48c3Bhbg0KbGFuZz1FTi1BVSBzdHlsZT0nZm9udC1zaXplOjEwLjBwdDttc28tYW5zaS1s
|
1086
|
+
YW5ndWFnZTpFTi1BVSc+PHNwYW4NCnN0eWxlPSdtc28tZWxlbWVudDpmaWVsZC1lbmQnPjwvc3Bh
|
1087
|
+
bj48L3NwYW4+PCFbZW5kaWZdLS0+PHNwYW4gbGFuZz1FTi1BVQ0Kc3R5bGU9J2ZvbnQtc2l6ZTox
|
1088
|
+
MC4wcHQ7bXNvLWFuc2ktbGFuZ3VhZ2U6RU4tQVUnPiBwYWdlczxvOnA+PC9vOnA+PC9zcGFuPjwv
|
1089
|
+
cD4NCg0KPHAgY2xhc3M9TXNvRm9vdGVyPjxzcGFuIGxhbmc9RU4tQVUgc3R5bGU9J2ZvbnQtc2l6
|
1090
|
+
ZToxMC4wcHQ7Jz7CqQ0KJm5ic3A7Jm5ic3A74oCTIEFsbCByaWdodHMgcmVzZXJ2ZWQ8bzpwPjwv
|
1091
|
+
bzpwPjwvc3Bhbj48L3A+DQoNCjwvZGl2Pg0KDQoNCg0KPC9ib2R5Pg0KDQo8L2h0bWw+DQo=
|
1092
|
+
|
1093
|
+
------=_NextPart_c9f9b7e4.33db.4068--
|