Fix lots of titles (only 15 errors left).
[pspp] / notes
1 Files start with 15 bytes:
2     01 00 i3 01 (i0 or i1) (00 or 01) i15
3
4      36 00000000  01 00 03 00 00 00 01 00  00 00 01 15 00 00 00   (most TableData.bin)
5       9 00000000  01 00 03 00 00 00 01 00  00 00 00 15 00 00 00   (*NotesData.bin, *WarningData.bin)
6       1 00000000  01 00 03 00 00 00 01 01  00 00 01 15 00 00 00   (one TableData)
7 Next groups of 4 bytes:
8
9      15 0000000f  32 00 00 00  i50
10      10 0000000f  42 00 00 00  i66
11       9 0000000f  27 00 00 00  i39
12       8 0000000f  a2 00 00 00  i162
13       3 0000000f  31 00 00 00  i49
14       1 0000000f  68 01 00 00  i360
15
16      18 00000013  48 00 00 00  i72
17      10 00000013  60 00 00 00  i96
18       9 00000013  43 00 00 00  i67
19       8 00000013  a2 00 00 00  i162
20       1 00000013  68 01 00 00  i360
21
22 or all 8 bytes together:
23
24       3 0000000f  31 00 00 00 48 00 00 00  i49   i72   (some williams Tables)
25      15 0000000f  32 00 00 00 48 00 00 00  i50   i72   (rest of williams Tables)
26      10 0000000f  42 00 00 00 60 00 00 00  i66   i96   (smekens Tables)
27       9 0000000f  27 00 00 00 43 00 00 00  i39   i67   (germano Tables)
28       8 0000000f  a2 00 00 00 a2 00 00 00  i162 i162   (all Notes)
29       1 0000000f  68 01 00 00 68 01 00 00  i360 i360   (germano Warning)
30
31 Next 8 bytes:
32
33      21 00000017  24 00 00 00 78 00 00 00  i36 i120    (all williams)
34      13 00000017  1c 00 00 00 0a 01 00 00  i28 i266    (all germano)
35      12 00000017  30 00 00 00 a0 00 00 00  i48 i160    (all smekens)
36
37 All 16 bytes starting at offset 15:
38
39      15 0000000f  32 00 00 00 48 00 00 00  24 00 00 00 78 00 00 00  i50  i72  i36 i120
40      10 0000000f  42 00 00 00 60 00 00 00  30 00 00 00 a0 00 00 00  i66  i96  i48 i160
41       9 0000000f  27 00 00 00 43 00 00 00  1c 00 00 00 0a 01 00 00  i39  i67  i28 i266
42       3 0000000f  a2 00 00 00 a2 00 00 00  24 00 00 00 78 00 00 00  i162 i162 i36 i120
43       3 0000000f  a2 00 00 00 a2 00 00 00  1c 00 00 00 0a 01 00 00  i162 i162 i28 i266
44       3 0000000f  31 00 00 00 48 00 00 00  24 00 00 00 78 00 00 00  i49  i72  i36 i120
45       2 0000000f  a2 00 00 00 a2 00 00 00  30 00 00 00 a0 00 00 00  i162 i162 i48 i160 (./smekens/default/00000000011_lightNotesData.bin and ./smekens/modified/00000000011_lightNotesData.bin)
46       1 0000000f  68 01 00 00 68 01 00 00  1c 00 00 00 0a 01 00 00  i360 i360 i28 i266 (./germano/Crosstabs/00000000012_lightWarningData.bin)
47
48 2 bytes at offset 31 appears to be a sequence number within a
49 procedure's output; it begins with 1 with the first .bin file for a
50 procedure and increases, sometimes apparently skipping a number:
51
52       8 0000001f  03 00                                             |..|
53       8 0000001f  01 00                                             |..|
54       7 0000001f  04 00                                             |..|
55       6 0000001f  05 00                                             |..|
56       5 0000001f  07 00                                             |..|
57       5 0000001f  06 00                                             |..|
58       3 0000001f  08 00                                             |..|
59       2 0000001f  09 00                                             |..|
60       1 0000001f  0a 00                                             |..|
61       1 0000001f  02 00                                             |..|
62
63 2 bytes at offset 33 appear to identify a procedure, e.g.: smekens has only one procedure and all the same value:
64      12 00000021  20 73                                             | s|
65 williams has three procedures and increments by 0x10 between them (it looks like a procedure was deleted before output was saved):
66       9 00000021  a0 97                                             |..|
67       4 00000021  b0 97                                             |..|
68       8 00000021  d0 97                                             |..|
69 germano has a similar pattern across the three separate output files:
70       3 00000021  c0 38                                             |.8|
71       2 00000021  e0 38                                             |.8|
72       8 00000021  f0 38                                             |.8|
73
74 Sorting on bytes 33-35 then on 31-32 we get a sorted list of tables:
75
76 blp@sigabrt:~/pspp/spv(0)$ for d in `find -name \*.bin |grep -v chart`; do { hd -s 0x1f -n 6 $d | head -1; printf "%-60s" "$d"; } | sed 'N; s/\n//;' ; echo; done|sort -k 4,4 -k 5,5 -k 2,2|cut -b 1-128
77 0000001f  01 00 20 73 bf 46                                 |.. s.F|./smekens/default/00000000011_lightNotesData.bin            
78 0000001f  01 00 20 73 bf 46                                 |.. s.F|./smekens/modified/00000000011_lightNotesData.bin           
79 0000001f  03 00 20 73 bf 46                                 |.. s.F|./smekens/default/00000000013_lightTableData.bin            
80 0000001f  03 00 20 73 bf 46                                 |.. s.F|./smekens/modified/00000000013_lightTableData.bin           
81 0000001f  04 00 20 73 bf 46                                 |.. s.F|./smekens/default/00000000014_lightTableData.bin            
82 0000001f  04 00 20 73 bf 46                                 |.. s.F|./smekens/modified/00000000014_lightTableData.bin           
83 0000001f  05 00 20 73 bf 46                                 |.. s.F|./smekens/default/00000000016_lightTableData.bin            
84 0000001f  05 00 20 73 bf 46                                 |.. s.F|./smekens/modified/00000000016_lightTableData.bin           
85 0000001f  06 00 20 73 bf 46                                 |.. s.F|./smekens/default/00000000017_lightTableData.bin            
86 0000001f  06 00 20 73 bf 46                                 |.. s.F|./smekens/modified/00000000017_lightTableData.bin           
87 0000001f  07 00 20 73 bf 46                                 |.. s.F|./smekens/default/00000000018_lightTableData.bin            
88 0000001f  07 00 20 73 bf 46                                 |.. s.F|./smekens/modified/00000000018_lightTableData.bin           
89 0000001f  01 00 a0 97 72 67                                 |....rg|./williams/00000000011_lightNotesData.bin                   
90 0000001f  03 00 a0 97 72 67                                 |....rg|./williams/00000000012_lightTableData.bin                   
91 0000001f  04 00 a0 97 72 67                                 |....rg|./williams/000000000131_lightTableData.bin                  
92 0000001f  05 00 a0 97 72 67                                 |....rg|./williams/000000000132_lightTableData.bin                  
93 0000001f  06 00 a0 97 72 67                                 |....rg|./williams/000000000133_lightTableData.bin                  
94 0000001f  07 00 a0 97 72 67                                 |....rg|./williams/000000000134_lightTableData.bin                  
95 0000001f  08 00 a0 97 72 67                                 |....rg|./williams/000000000135_lightTableData.bin                  
96 0000001f  09 00 a0 97 72 67                                 |....rg|./williams/000000000136_lightTableData.bin                  
97 0000001f  0a 00 a0 97 72 67                                 |....rg|./williams/000000000137_lightTableData.bin                  
98 0000001f  01 00 b0 97 72 67                                 |....rg|./williams/00000000031_lightNotesData.bin                   
99 0000001f  03 00 b0 97 72 67                                 |....rg|./williams/00000000032_lightTableData.bin                   
100 0000001f  04 00 b0 97 72 67                                 |....rg|./williams/00000000033_lightTableData.bin                   
101 0000001f  05 00 b0 97 72 67                                 |....rg|./williams/00000000034_lightTableData.bin                   
102 0000001f  01 00 c0 38 3d e1                                 |...8=.|./germano/Frequencies/00000000011_lightNotesData.bin        
103 0000001f  03 00 c0 38 3d e1                                 |...8=.|./germano/Frequencies/00000000012_lightTableData.bin        
104 0000001f  04 00 c0 38 3d e1                                 |...8=.|./germano/Frequencies/00000000013_lightTableData.bin        
105 0000001f  01 00 d0 97 72 67                                 |....rg|./williams/00000000051_lightNotesData.bin                   
106 0000001f  03 00 d0 97 72 67                                 |....rg|./williams/00000000052_lightTableData.bin                   
107 0000001f  04 00 d0 97 72 67                                 |....rg|./williams/00000000053_lightTableData.bin                   
108 0000001f  05 00 d0 97 72 67                                 |....rg|./williams/00000000054_lightTableData.bin                   
109 0000001f  06 00 d0 97 72 67                                 |....rg|./williams/00000000055_lightTableData.bin                   
110 0000001f  07 00 d0 97 72 67                                 |....rg|./williams/00000000056_lightTableData.bin                   
111 0000001f  08 00 d0 97 72 67                                 |....rg|./williams/00000000057_lightTableData.bin                   
112 0000001f  09 00 d0 97 72 67                                 |....rg|./williams/00000000058_lightTableData.bin                   
113 0000001f  01 00 e0 38 3d e1                                 |...8=.|./germano/Descriptives/00000000001_lightNotesData.bin       
114 0000001f  03 00 e0 38 3d e1                                 |...8=.|./germano/Descriptives/00000000002_lightTableData.bin       
115 0000001f  01 00 f0 38 3d e1                                 |...8=.|./germano/Crosstabs/00000000011_lightNotesData.bin          
116 0000001f  02 00 f0 38 3d e1                                 |...8=.|./germano/Crosstabs/00000000012_lightWarningData.bin        
117 0000001f  03 00 f0 38 3d e1                                 |...8=.|./germano/Crosstabs/00000000013_lightTableData.bin          
118 0000001f  04 00 f0 38 3d e1                                 |...8=.|./germano/Crosstabs/00000000014_lightTableData.bin          
119 0000001f  05 00 f0 38 3d e1                                 |...8=.|./germano/Crosstabs/00000000015_lightTableData.bin          
120 0000001f  06 00 f0 38 3d e1                                 |...8=.|./germano/Crosstabs/00000000016_lightTableData.bin          
121 0000001f  07 00 f0 38 3d e1                                 |...8=.|./germano/Crosstabs/00000000017_lightTableData.bin          
122 0000001f  08 00 f0 38 3d e1                                 |...8=.|./germano/Crosstabs/00000000018_lightTableData.bin          
123 blp@sigabrt:~/pspp/spv(0)$ 
124
125 Offsets 0x25 and 0x26 are always 5d c6.
126
127
128 Title and Caption
129 -----------------
130
131 starting at 0x27
132
133 tdump19 (title "Descriptive Statistics"):
134   03 "Descriptive Statistics" 58 "" "Descriptive Statistics" 01
135   03 "Descriptive Statistics" 58 "" "Descriptive Statistics" 01
136   31 
137   03 "Descriptive Statistics" 58 "" "Descriptive Statistics" 01
138   58
139
140   58
141
142   i0
143
144 tdump32 (title "Communalities", caption "Extraction Method: Principal Axis Factoring."):
145   03 "Communalities" 58 "" "Communalities" 01
146   03 "Communalities" 58 "" "Communalities" 01
147   31
148   03 "Communalities" 58 "" "Communalities" 01
149   58
150
151   31
152   03 "Extraction Method: Principal Axis Factoring." 58 "" "Extraction Method: Principal Axis Factoring." 01
153
154   i0
155
156 [[]] below shows extra for footnote:
157
158 tdump29 (title "Factor Matrix(a)", caption "Extraction Method: Principal Axis Factoring.", footnote (a) "4 factors extracted. 9 iterations required."):
159   03 "Factor Matrix" [31 01 00 i0 i0 i6: [i0 58 58]] "" 00 "Factor Matrix" 01
160   03 "Factor Matrix" 58 "" "Factor Matrix" 01
161   31
162   03 "Factor Matrix" [31 01 00 i0 i0 i6: [i0 58 58]] "" "Factor Matrix" 01
163   58
164
165   31
166   03 "Extraction Method: Principal Axis Factoring." 58 "" "Extraction Method: Principal Axis Factoring." 00 01
167
168   i0
169
170   58 "^1 factors extracted. ^2 iterations required." i2 i0 
171       01 58 F40.0(4) i0
172       01 58 F40.0(9)
173   58 i1
174
175 tdump30 (title "Rotated Factor Matrix(a)", caption "Extraction Method: Principal Axis Factoring.\nRotation Method: Varimax with Kaiser Normalization.", footnote (a) "Rotation converged in 5 iterations.")
176   03 "Rotated Factor Matrix" [[31 01 00 i0 i0 i6 i0 58]] 58 "" "Rotated Factor Matrix" 01
177   03 "Rotated Factor Matrix" 58 "" "Rotated Factor Matrix" 01
178   31
179   03 "Rotated Factor Matrix" [[31 01 00 i0 i0 i6 i0 58]] 58 "" "Rotated Factor Matrix" 01
180   58
181
182   31 00
183   58 "^1 \n ^2" i2 i0
184     03 "Extraction Method: Principal Axis Factoring." 58 "" "Extraction Method: Principal Axis Factoring." i0 00
185     03 "Rotation Method: Varimax with Kaiser Normalization." 58 "" "Rotation Method: Varimax with Kaiser Normalization." 00 01
186
187   i0
188
189   58 "Rotation converged in ^1 iterations." 01 i0
190       01 58 F40.0(5)
191   58 i1
192
193 tdump10 (title is "Q8_1 It is ..."):
194   05 58 "Q8New_1" "Q8_1 It is ..." 02 
195   03 "Frequencies" 58 "" 00 "Frequencies" 01
196   31
197   05 58 "Q8New_1" "Q8_1 It is ..." 02
198   58
199
200   58
201
202   i0 00
203
204 tdump9 (title with variable substitution, variables have labels): 
205   (00 31 i0 i0 i43: (i37: (i0 31 "[%1: * ^1:]1 Crosstabulation") 58 58) "[%1: * ^1:]1 Crosstabulation" i1 i2 
206       i0 05 58 "Q8New_4" "Q8_4 I think the claims made on..." 02
207       i0 05 58 "Q8New_1" "Q8_1 It is a corporation's..." 02
208   03 "Crosstabulation" 58 "" "Crosstabulation" 01
209   31
210   ((00 31 i0 i0 i43 i37 i0 31)) "[%1: * ^1:]1 Crosstabulation" 58 58 "[%1: * ^1:]1 Crosstabulation" i1 i2
211       i0 05 58 "Q8New_4" "Q8_4 I think the claims made on..." 02
212       i0 05 58 "Q8New_1" "Q8_1 It is a corporation's..." 02
213   58 58 ""
214
215 tdump24 (title with variable substitution, no labels, caption with substitution):
216   ((00 31 i0 i0 i43 i37 i0 31)) "[%1: * ^1:]1 Crosstabulation" 58 58 "[%1: * ^1:]1 Crosstabulation" i1 i2
217       i0 05 58 "cond" "" 03
218       i0 05 58 "fobia" "" 03
219   03 "Crosstabulation" 58 "" "Crosstabulation" 01
220   31
221   ((00 31 i0 i0 i43 i37 i0 31)) "[%1: * ^1:]1 Crosstabulation" 58 58 "[%1: * ^1:]1 Crosstabulation" i1 i2
222       i0 05 58 "cond" "" 03
223       i0 05 58 "fobia" "" 03
224   58
225   31
226   ((00 31 i0 i0 i43 i37 i0 31)) "col prop test on ^1 at ^2..." 58 58 "Each subscript letter denotes a subset of ^1 categories whose column proportions do not differ significantly from each other at the ^2 level." i2
227       i0 05 58 "fobia" "" 03
228       i0 01 58 F6.2(0.05) 00 
229
230 smekens/default/00000000018_lightTableData.bin:
231
232     03 "Factor Transformation Matrix" 58 "" "Factor Transformation Matrix" 01
233     03 "Factor Transformation Matrix" 58 "" "Factor Transformation Matrix" 01
234     31
235     03 "Factor Transformation Matrix" 58 "" "Factor Transformation Matrix" 01
236     58 31
237     00 58 "^1 \n ^2" i2 ""
238         03 "Extraction Method: Principal Axis Factoring. " 58 "" "Extraction Method: Principal Axis Factoring. " i0 00
239         03 "Rotation Method: Varimax with Kaiser Normalization. " 58 "" "Rotation Method: Varimax with Kaiser Normalization. " 
240     i0 00 
241
242 smekens/default/00000000011_lightNotesData.bin:
243
244     03 "Notes" 58 "notes" "Notes" 01
245     03 "Notes" 58 "" "Notes" 01
246     31
247     03 "Notes" 58 "notes" "Notes" 01
248     58 58
249     i0
250
251 web/e5cce7d8b3200a550c0c018fff441e16/000000000344_lightTableData.bin:
252
253     03 "Omnibus Test" 31 i2 00 00 i1 00 00 i11: (i5: (00 00 00 00 58) 58 58) 00 00 00 00 "Omnibus Test" 01
254     03 "OmnibusTest" 58 00 00 00 00 "OmnibusTest" 01
255     31
256     03 "Omnibus Test" 31 i2 00 00 i1 00 00 i11: (i5: (00 00 00 00 58) 58 58) 00 00 00 00 "Omnibus Test" 01
257     58 31
258     00 31 i0 i0 i45: (i39: (00 00 00 00 31 "Dependent ^1 Model [%1:, ^1:]2") 58 58) "Dependent Variable\: ^1\nModel\: [%1:, ^1:]2" i2
259         i0 05 58 "Condom_Casual" "4. How often have you used condoms when you had sex with casual partners?" 02
260         i14 00 00 00 00 03 "(Intercept)" 58 00 00 00 00 "(Intercept)" 00 00 00 00 00 03 
261
262 germano/Crosstabs/00000000014_lightTableData.bin:
263
264     00 31 i0 i0 i43: (i37: (00 00 00 00 31 "[%1: * ^1:]1 Crosstabulation") 58 58) "[%1: * ^1:]1 Crosstabulation" i1 i2 i0
265         05 58 "cond" 00 00 00 00 i3 00
266         05 58 "fobia" 00 00 00 00 03
267     03 "Crosstabulation" 58 "" "Crosstabulation" 01
268     31
269     00 31 i0 i0 i43: (i37: (00 00 00 00 31 "[%1: * ^1:]1 Crosstabulation") 58 58) "[%1: * ^1:]1 Crosstabulation" i1 i2 i0
270         05 58 "cond" 00 00 00 00 i3 00
271         05 58 "fobia" 00 00 00 00 03
272     58 31
273     00 31 i0 i0 i43: (i37: (00 00 00 00 31 "col prop test on ^1 at ^2...") 58 58) "Each subscript letter denotes a subset of ^1 categories whose column proportions do not differ significantly from each other at the ^2 level." i2
274         i0 05 58 "fobia" 00 00 00 00 i3 00
275         01 58 02 06 05 00 9a 99 99 99 99 99 a9 i63 00 
276
277 web/7e29c00c8c2a7e490636b7f74598b6a4/000000002315210_lightTableData.bin:
278
279     05 31 i1 i0 00 00 i11: (i5: (00 00 00 00 58) 58 58) "meaning10" "routine household tasks" 02
280     03 "Frequencies" 58 00 00 00 00 "Frequencies" 01
281     31
282     05 31 i1 i0 00 00 i11: (i5: (00 00 00 00 58) 58 58) "meaning10" "routine household tasks" 02
283     58
284     58 i1 00 31 i0 i0 i36: (i30: (00 00 00 00 31 "[%1 = %2:, ^1 = ^2:]1") 58 58) "[%1 = %2:, ^1 = ^2:]1" i1 i2 i0
285         05 58 "meaning14" "level of enjoyment" i2 00
286         02 58 F40.2(3.80)
287
288
289 Fonts
290 -----
291
292 First number after 40 41 is attributes: 0=plain, 1=bold, ... (?)
293 Second number after 40 41 is horz align: 0=center, 2=left, 1=right(?), 64173="mixed" for data
294 Third number after 40 41 is vert align: 0=center, 1=top, 3=bottom
295 Last four numbers are margins: left, right, top, bottom, probably in points but there's some confusion
296
297 Rows are:
298      01 title
299      02 caption
300      03 footnote
301      04 row labels
302      05 column labels
303      06 corner labels
304      07 data
305      08 layers
306       
307 tdump1 to tdump18:
308     01 31 "SansSerif" 00 00 40 41 i1 i0 i0 00     "#000000" "#ffffff" i0 i0 00 i8 i11 i1 i8
309     02 31 "SansSerif" 00 00 40 41 i0 00 i2 i1     "#000000" "#ffffff" i0 i0 00 i8 i11 i1 i1
310     03 31 "SansSerif" 00 00 40 41 i0 00 i2 i1     "#000000" "#ffffff" i0 i0 00 i11 i8 i3 i4
311     04 31 "SansSerif" 00 00 40 41 i0 00 i2 i3     "#000000" "#ffffff" i0 i0 00 i8 i11 i1 i1
312     05 31 "SansSerif" 00 00 40 41 i0 i0 00 i3     "#000000" "#ffffff" i0 i0 00 i8 i11 i1 i4 
313     06 31 "SansSerif" 00 00 40 41 i0 00 i2 i1     "#000000" "#ffffff" i0 i0 00 i8 i11 i1 i4
314     07 31 "SansSerif" 00 00 40 41 i0 00 i64173 i0 "#000000" "#ffffff" i0 i0 00 i8 i11 i1 i1
315     08 31 "SansSerif" 00 00 40 41 i0 00 i2 i3     "#000000" "#ffffff" i0 i0 00 i8 i11 i1 i4 
316
317 tdump19 to tdump27:
318     01 31 "SansSerif" 00 00 40 41 i1 i0 i0 00     "#000000" "#ffffff" i0 i0 00 i8 i11 i1 i8
319     02 31 "SansSerif" 00 00 40 41 i0 00 i2 i1     "#000000" "#ffffff" i0 i0 00 i8 i11 i1 i1
320     03 31 "SansSerif" 00 00 40 41 i0 00 i2 i1     "#000000" "#ffffff" i0 i0 00 i11 i8 i3 i4
321     04 31 "SansSerif" 00 00 40 41 i0 00 i2 i3     "#000000" "#ffffff" i0 i0 00 i8 i11 i1 i1
322     05 31 "SansSerif" 00 00 40 41 i0 i0 00 i3     "#000000" "#ffffff" i0 i0 00 i8 i11 i1 i4
323     06 31 "SansSerif" 00 00 40 41 i0 00 i2 i1     "#000000" "#ffffff" i0 i0 00 i8 i11 i1 i4
324     07 31 "SansSerif" 00 00 40 41 i0 00 i64173 i0 "#000000" "#ffffff" i0 i0 00 i8 i11 i1 i1
325     08 31 "SansSerif" 00 00 40 41 i0 00 i2 i3     "#000000" "#ffffff" i0 i0 00 i8 i11 i1 i4 
326
327 tdump28 to tdump36:
328     01 31 "SansSerif" 00 00 40 41 i1 i0 i0 00     "#000000" "#ffffff" i0 i0 00 i8 i10 i1 i8
329     02 31 "SansSerif" 00 00 40 41 i0 00 i2 i1     "#000000" "#ffffff" i0 i0 00 i8 i10 i1 i1
330     03 31 "SansSerif" 00 00 40 41 i0 00 i2 i1     "#000000" "#ffffff" i0 i0 00 i24 i24 i2 i4
331     04 31 "SansSerif" 00 00 40 41 i0 00 i2 i3     "#000000" "#ffffff" i0 i0 00 i8 i10 i1 i1
332     05 31 "SansSerif" 00 00 40 41 i0 i0 00 i3     "#000000" "#ffffff" i0 i0 00 i8 i10 i1 i4
333     06 31 "SansSerif" 00 00 40 41 i0 00 i2 i1     "#000000" "#ffffff" i0 i0 00 i8 i10 i1 i4
334     07 31 "SansSerif" 00 00 40 41 i0 00 i64173 i1 "#000000" "#ffffff" i0 i0 00 i8 i10 i1 i1
335     08 31 "SansSerif" 00 00 40 41 i0 00 i2 i3     "#000000" "#ffffff" i0 i0 00 i8 i10 i1 i4 
336
337 tdump37:
338     01 31 "SansSerif" 00 00 40 41 i0 00 i2 i1     "#000000" "#ffffff" i0 i0 00 i8 i10 i1 i-1
339     02 31 "SansSerif" 00 00 40 41 i0 00 i2 i1     "#1a5f76" "#282a73" i0 i0 00 i8 i10 i1 i1
340     03 31 "SansSerif" 00 00 40 41 i0 00 i2 i1     "#000000" "#ffffff" i0 i0 00 i-1 i-1 i-1 i-1
341     04 31 "SansSerif" 00 00 40 41 i0 00 i2 i1     "#000000" "#ffffff" i0 i0 00 i8 i10 i1 i1
342     05 31 "SansSerif" 00 00 40 41 i0 00 i2 i1     "#000000" "#ffffff" i0 i0 00 i8 i10 i1 i-1
343     06 31 "SansSerif" 00 00 40 41 i0 00 i2 i1     "#000000" "#ffffff" i0 i0 00 i8 i10 i1 i-1
344     07 31 "SansSerif" 00 00 40 41 i0 00 i64173 i1 "#000000" "#ffffff" i0 i0 00 i8 i10 i1 i1
345     08 31 "SansSerif" 00 00 40 41 i0 00 i2 i1     "#000000" "#ffffff" i0 i0 00 i8 i10 i1 i-1 
346
347 Styles
348 ------
349
350 tdump1:
351
352     i240 followed by 240 bytes:
353         00 00 00 i1  i19 i5 03
354         i255 00 00 00 i16 00
355         i255 00 00 00 i6  03
356         i255 00 00 00 i17 01
357         i255 00 00 00 i7  03
358         i255 00 00 00 i18 01
359         i255 00 00 00 i8  03
360         i255 00 00 00 i9  03
361         i255 00 00 00 i10 03
362         i255 00 00 00 i0  00
363         i255 00 00 00 i11 01
364         i255 00 00 00 i1  00
365         i255 00 00 00 i12 00
366         i255 00 00 00 i2  00
367         i255 00 00 00 i13 01
368         i255 00 00 00 i3  00
369         i255 00 00 00 i14 01
370         i255 00 00 00 i4  00
371         i255 00 00 00 i15 00
372         i255 00 00 00 00
373
374     i18 followed by 18 bytes:
375         00 00 00 i1 00 00 00 00 00 00 i2 00
376
377     i142 followed by 142 bytes:
378         00 00 00
379         i1 i4 00 01 01 01
380         i1 00 i24
381         00*28
382         "Default" but with 1-byte length (07).
383         00*34
384
385     i0 "en_NZ.windows-1252"
386     i0 01 00 01 99 07 00 00
387     '.' ',' i5 "-,,," "-,,," "-,,," "-,,," "-,,,"
388
389     i355 followed by 355 bytes:
390         i53:
391             00 01 00 00 02 i2 00*23 01
392             i16:
393                 00*16
394         26 01 00 00 01 00 i4 
395         "Regression" 00 00 00 00 
396         "en" 
397         "windows-1252" 
398         "en_NZ.windows-1252"
399         01 00 01 01 99 07 00 00 '.' ',' 0.0001 
400         "DataSet2" 
401         "C:\Users\jwilliams\Dropbox\Research\Collaboration\Marketing\Lifestyles\NEW 649917092_Consumer NZ Survey_Merged_FinalData_SPSS_V02.sav" 00 00 00 00 58 54 2b i84 00
402         i5 "-,,," "-,,," "-,,," "-,,," "-,,," '.'
403         00
404
405 tdump19:
406
407     i240 followed by 240 bytes:
408         00 00 00 i1 i19 i9 03 i255
409         00 00 00 i10 03 i255
410         00 00 00 i0 00 i255
411         00 00 00 i11 01 i255
412         00 00 00 i1 00 i255
413         00 00 00 i12 00 i255
414         00 00 00 i2 00 i255
415         00 00 00 i13 01 i255
416         00 00 00 i3 00 i255
417         00 00 00 i14 01 i255
418         00 00 00 i4 00 i255
419         00 00 00 i15 00 i255
420         00 00 00 i5 03 i255
421         00 00 00 i16 00 i255
422         00 00 00 i6 03 i255
423         00 00 00 i17 01 i255
424         00 00 00 i7 03 i255
425         00 00 00 i18 01 i255
426         00 00 00 i8 03 i255
427         00 00 00 00
428
429     i18 followed by 18 bytes:
430         00 00 00
431         i1 00 00 00 00 00 00
432         i2 00
433
434     i117 followed by 117 bytes:
435         00 00 00
436         i1 i3 00 01 01 01
437         i1 00 i24
438         00*93
439
440     i0 "it_IT.windows-1252"
441     i0 00 00 00 99 07 00 00
442     ',' '.' i5 "-,,," "-,,," "-,,," "-,,," "-,,,"
443
444     i196 followed by 196 bytes:
445         i53:
446             00 01 00 00 03 i3 00*23 01
447             i16:
448                 00*16
449         i135:
450             01 00 i3 
451             "Descriptives" 00 00 00 00 
452             "en" 
453             "windows-1252" 
454             "it_IT.windows-1252"
455             00 00 00 01 99 07 00 00 ',' '.' 0.000100 01
456             i5 "-,,," "-,,," "-,,," "-,,," "-,,," '.'
457             00
458
459 tdump28:
460
461     i240 followed by 240 bytes:
462         00 00 00 i1 i19 i9 03 i255
463         00 00 00 i3 00 i255
464         00 00 00 i16 00 i255
465         00 00 00 i10 03 i255
466         00 00 00 i4 00 i255
467         00 00 00 i17 01 i255
468         00 00 00 i11 01 i255
469         00 00 00 i5 03 i255
470         00 00 00 i18 01 i255
471         00 00 00 i12 00 i255
472         00 00 00 i6 03 i255
473         00 00 00 i0 00 i255
474         00 00 00 i13 01 i255
475         00 00 00 i7 03 i255
476         00 00 00 i1 00 i255
477         00 00 00 i14 01 i255
478         00 00 00 i8 03 i255
479         00 00 00 i2 00 i255
480         00 00 00 i15 00 i255
481         00 00 00 00
482
483     i18 followed by 18 bytes:
484         00 00 00
485         i1 00 00 00 00 00 00
486         i2 00
487
488     i117 followed by 117 bytes:
489         00 00 00
490         i1 i3 00 01 01 01 01
491         i2 i24
492         00*93
493
494     i0 "nl_BE.windows-1252"
495     i0 00 00 00 99 07 00 00
496     ',' ' ' i5 "-,,," "-,,," "-,,," "-,,," "-,,,"
497
498     i199:
499         i53:
500             00*32 01
501             i16:
502                 00*16
503         i138:
504             01 00 i3 
505             "Factor Analysis" 00 00 00 00 
506             "en" 
507             "windows-1252" 
508             "nl_BE.windows-1252" 00 00 00 01 99 07 00 00 ',' ' ' 0.000100 01
509             i5 "-,,," "-,,," "-,,," "-,,," "-,,," '.'
510             00 
511
512
513 Dimensions
514 ----------
515
516 format: dd ww ff 00, e.g. F40.1 is 01 28 05 00
517 01 - double (01 58 format double)
518 02 - instance of a numeric variable (02 58 format double "varname" "Variable Label")
519 03 - just a string (03 "Short Name" 58 "identifier" "Long Name")
520 04 - instance of a string variable (04 58 format "vallab" "varname" 02 "value"
521 05 - variable (05 58 "varname" "Variable Label")
522
523
524 tdump5 (./williams/000000000135_lightTableData.bin):
525
526     i2
527
528     05 58 "Q8New_5" "Q8_5 I would..." 02 00 00 i2 01 00 i1 00 i3
529         03 "Valid" 58 "valid" "Valid"                            01 00 00 01 i2 i-1 i2
530             01 58 F40.0(0)                                          01 00 01 i2 i-1 i1
531                 01 58 F40.0(-1)                                     01 00 01 i0 i-1 i5
532                     02 58 F40.0(1) "Q8New_5" "Strongly disagree"           i2 i2 i0 i0
533                     02 58 F40.0(2) "Q8New_5" "Disgaree"                    i2 i2 i1 i0
534                     02 58 F40.0(3) "Q8New_5" "Neutral"                     i2 i2 i2 i0
535                     02 58 F40.0(4) "Q8New_5" "Agree"                       i2 i2 i3 i0
536                     02 58 F40.0(5) "Q8New_5" "Strongly agree"              i2 i2 i4 i0
537             03 "Total" 58 "total_4" "Total" i1 i2 i5 i0
538         03 "Missing" 58 "missing_observations" "Missing"         01 00 00 01 i2 i-1 i1
539             03 "System" 58 "gsysmis" "System Missing"                      i1 i2 i6 i0
540         03 "Total" 58 "total_4" "Total"                                    i1 i2 i7 i0
541
542     03 "Statistics" 58 "statistics_10" "Statistics" 01 00 01 i2 01 00 01 i1 i4
543         03 "Frequency" 58 "frequency" "Frequency" i1 i2 00 00 00 00 00 00 00 00
544         03 "Percent" 58 "percent" "Percent" i1 i2 i1 00 00 00 00
545         03 "Valid Percent" 58 "valid_percent" "Valid Percent" i1 i2 i2 00 00 00 00
546         03 "Cumulative Percent" 58 "cumulative_percent" "Cumulative Percent" i1 i2 i3 i0
547
548 tdump9 (./williams/00000000033_lightTableData.bin):
549
550     i3
551
552     05 58 "Q8New_4" "Q8_4 I think..." 02 00 00 i2 01 00 i1 00 i2
553         05 58 "Q8New_4" "Q8_4 I think..." 02 00 00 i1 00 ff ff ff ff i5
554             02 58 F40.0(1) "Q8New_4" "Strongly disagree" i2 i2 00 00 00 00 00 00 00 00
555             02 58 F40.0(2) "Q8New_4" "Disgaree" i2 i2 i1 00 00 00 00
556             02 58 F40.0(3) "Q8New_4" "Neutral" i2 i2 i2 00 00 00 00
557             02 58 F40.0(4) "Q8New_4" "Agree" i2 i2 i3 00 00 00 00
558             02 58 F40.0(5) "Q8New_4" "Strongly agree" i2 i2 i4 00 00 00 00
559         03 "Total" 58 "total_4" "Total" i1 i2 i5 00 00 00 00
560
561     05 58 "Q8New_1" "Q8_1 It is a..." 02 00 00 i2 01 00 01 i1 i2
562         05 58 "Q8New_1" "Q8_1 It is a..." 02 00 00 i1 00 ff ff ff ff i5
563             02 58 F40.0(1) "Q8New_1" "Strongly disagree" i2 i2 00 00 00 00 00 00 00 00
564             02 58 F40.0(2) "Q8New_1" "Disgaree" i2 i2 i1 00 00 00 00
565             02 58 F40.0(3) "Q8New_1" "Neutral" i2 i2 i2 00 00 00 00
566             02 58 F40.0(4) "Q8New_1" "Agree" i2 i2 i3 00 00 00 00
567             02 58 F40.0(5) "Q8New_1" "Strongly agree" i2 i2 i4 00 00 00 00
568         03 "Total" 58 "total_4" "Total" i1 i2 i5 00 00 00 00
569
570     03 "Statistics" 58 "statistics_10" "Statistics" 01 00 01 i2 01 00 01 i2 i4
571         03 "Count" 58 "count_6" "Count" i1 i2 00 00 00 00 00 00 00 00
572         03 "Expected Count" 58 "expected_count" "Expected Count" i1 i2 i1 i0 00
573         31 i0 i0 i26: (i20: (i0 31 "row % of ^1") 58 58) "% within ^1" i1 i0
574             05 58 "Q8New_4" "Q8_4 I think..." i2                            i2 i2 i0
575         03 "Adjusted Residual" 58 "adjusted_standardized_residual" "Adjusted Residual" i1 i2 i3 00 00 00 00 00 00 00 00 
576
577 tdump14 (./williams/00000000034_lightTableData.bin):
578
579     i2
580
581     03 "Statistics" 58 "statistics_10" "Statistics" 01 00 00 i2 01 00 i1 00 i4
582         03 "A" 58 "" "A" 00 01 00 01 i2 i-1 i2
583             03 "Pearson Chi-Square" 58 "chi-square_crosstabs_1" "Pearson Chi-Square" i1 i2 00 00 00 00 00 00 00 00
584             03 "Continuity Correction" 58 "yates_correction_for_continuity" "Continuity Correction" i1 i2 i1 00 00 00 00
585         03 "B" 58 "" "B" 00 01 00 01 i2 i-1 i1
586             03 "Likelihood Ratio" 58 "likelihood-ratio_chi-square" "Likelihood Ratio" i1 i2 i2 00 00 00 00
587         03 "Linear-by-Linear Association" 58 "linear-by-linear_association_crosstabs" "Linear-by-Linear Association" i1 i2 i3 00 00 00 00
588         03 "N of Valid Cases" 58 "valid" "N of Valid Cases" i1 i2 i4 00 00 00 00
589
590     03 "Values" 58 "values_10" "Values" 01 00 01 i2 01 00 01 i1 i3
591         03 "Value" 58 "value_18" "Value" i1 i2 00 00 00 00 00 00 00 00
592         03 "df" 58 "df" "df" i1 i2 i1 00 00 00 00
593         03 "Asymp. Sig. (2-sided)" 58 "asymptotic_significance" "Asymptotic Significance" i1 i2 i2 00 00 00 00
594
595
596 tdump15 (./williams/00000000032_lightTableData.bin):
597
598     i3
599
600     03 "Crosstabulation" 58 "crosstabulation" "Crosstabulation" 01 00 00 i2 01 00 i1 00 i1
601         00 31 i0 i0 i27: (i21: (i0 31 "[%1: * ^1:]1") 58 58) "[%1: * ^1:]1"       i1 i2 i0
602             05 58 "Q8New_4" "Q8_4 I think..." i2 00
603             05 58 "Q8New_1" "Q8_1 It is a..." i2                                  i2 i0 i0
604
605     03 "Statistics" 58 "statistics_10" "Statistics" 01 00 01 i2 01 00 01 i1 i2
606         03 "N" 58 "n" "N" i1 i2 00 00 00 00 00 00 00 00
607         03 "Percent" 58 "percent_2" "Percent" i1 i2 i1 00 00 00 00
608
609     03 "Cases" 58 "cases" "Cases" 01 00 01 i2 00 00 01 i2 i3
610         03 "Valid" 58 "valid" "Valid" i1 i2 00 00 00 00 00 00 00 00
611         03 "Missing" 58 "missing_observations" "Missing" i1 i2 i1 00 00 00 00
612         03 "Total" 58 "total_4" "Total" i1 i2 i2 i0
613
614 tdump19:
615
616     i3 (three dimensions)
617
618     03 "Stat Type" 58 "stat_type" "Stat Type"                                 01 00 00    i2 01 00 i1 00 i2
619         03 "Statistic" 58 "statistic" "Statistic"                             01 00 00 00 i2 i0 00 00 00 00
620         03 "Std. Error" 58 "standard_error" "Std. Error"                      01 00 00 00 i2 i1 00 00 00 00
621
622     03 "Statistics" 58 "statistics_10" "Statistics"                           01 00    01 i2 01 00 01 i1 i10
623         03 "N" 58 "n" "N"                                                     01 00 00 00 i2 i0 00 00 00 00
624         03 "Range" 58 "range" "Range"                                         01 00 00 00 i2 i1 00 00 00 00
625         03 "Minimum" 58 "minimum" "Minimum"                                   01 00 00 00 i2 i2 00 00 00 00
626         03 "Maximum" 58 "maximum" "Maximum"                                   01 00 00 00 i2 i3 00 00 00 00
627         03 "Sum" 58 "sum" "Sum"                                               01 00 00 00 i2 i4 00 00 00 00
628         03 "Mean" 58 "mean" "Mean"                                            01 00 00 00 i2 i5 00 00 00 00
629         03 "Std. Deviation" 58 "gbar11" "Std. Deviation"                      01 00 00 00 i2 i6 00 00 00 00
630         03 "Variance" 58 "variance" "Variance"                                01 00 00 00 i2 i7 00 00 00 00
631         03 "Skewness" 58 "skewness" "Skewness"                                01 00 00 00 i2 i8 00 00 00 00
632         03 "Kurtosis" 58 "kurtosis" "Kurtosis"                                01 00 00 00 i2 i9 00 00 00 00
633
634     03 "Variables" 58 "variable_s_1" "Variables"                              01 00    01 i2 01 00 01 i2 i4
635         05 58 "fqc_b"                                                      00 00 00 00 i3 i2 00 00 00 00 00 00 00 00
636         05 58 "fqc_p"                                                      00 00 00 00 i3 i2 i1 00 00 00 00
637         05 58 "fqc_d"                                                      00 00 00 00 i3 i2 i2 00 00 00 00
638         03 "Valid N (listwise)" 58 "valid_n_listwise" "Valid N (listwise)"    01 00 00 00 i2 i3 00 00 00 00
639
640
641
642 tdump20 ./germano/Crosstabs/00000000018_lightTableData.bin:
643
644     i2
645
646     03 "Statistics" 58 "statistics_10" "Statistics" 01 00 00 i2 01 00 i1 00 i1 00 
647         31 i0 i42: (i36: (i0 31 "Odds Ratio for ^1 (^2 / ^3)") 58 58) "Odds Ratio for ^1 (^2 / ^3)" i3 i0
648             05 58 "cond" "" i3 00
649             02 58 F40.0(1) "cond" "" i3 00
650             02 58 F40.0(2) "cond" "" i3                                             i2 i0 i0
651
652     03 "Values" 58 "values_10" "Values" 01 00 01 i2 01 00 01 i1 i1
653         03 "Value" 58 "value_18" "Value" i1 i2 00 00 00 00 00 00 00 00 00 00 00 00 i1 i1 00 00 00 00 i
654
655 tdump27 (germano/Frequencies.pdf):
656
657     i2 (two dimensions)
658
659     03 "Variables" 58 "variable_s_1" "Variables"                               01 00 02 i2 01 00 i1 00 i1 
660         05 58 "fobia" ""                                                                      i3 i2 i0 i0
661
662     03 "Statistics" 58 "statistics_10" "Statistics" 01                           00 00 i2 01 00 01 i1 i16
663         03 "N" 58 "n" "N" 01 00 00                                                           01 i2 i-1 i2
664             03 "Valid" 58 "valid" "Valid i1                                                      i2 i0 i0
665             03 "Missing" 58 "missing_observations" "Missing" i1                                  i2 i1 i0
666         03 "Mean" 58 "mean" "Mean i1                                                             i2 i2 i0
667         03 "Std. Error of Mean" 58 "gfreq13" "Std. Error of Mean" i1                             i2 i3 i0
668         03 "Median" 58 "median" "Median" i1                                                      i2 i4 i0
669         03 "Mode" 58 "mode_frequencies" "Mode" i1                                                i2 i5 i0
670         03 "Std. Deviation" 58 "gbar11" "Std. Deviation" i1                                      i2 i6 i0
671         03 "Variance" 58 "variance" "Variance" i1                                                i2 i7 i0
672         03 "Skewness" 58 "skewness" "Skewness" i1                                                i2 i8 i0
673         03 "Std. Error of Skewness" 58 "standard_error_of_skewness" "Std. Error of Skewness" i1  i2 i9 i0
674         03 "Kurtosis" 58 "kurtosis" "Kurtosis" i1                                                i2 i10 i0
675         03 "Std. Error of Kurtosis" 58 "standard_error_of_kurtosis" "Std. Error of Kurtosis" i1  i2 i11 i0
676         03 "Range" 58 "range" "Range" i1                                                         i2 i12 i0
677         03 "Minimum" 58 "minimum" "Minimum" i1                                                   i2 i13 i0
678         03 "Maximum" 58 "maximum" "Maximum" i1                                                   i2 i14 i0
679         03 "Sum" 58 "sum" "Sum" i1                                                               i2 i15 i0
680         03 "Percentiles" 58 "percentiles" "Percentiles" 01 00 00                              01 i2 i-1 i5
681             01 58 F3.0(10.0) 00 00 00                                                            i2 i16 i0
682             01 58 F3.0(25.0) 00 00 00                                                            i2 i17 i0
683             01 58 F3.0(50.0) 00 00 00                                                            i2 i18 i0
684             01 58 F3.0(75.0) 00 00 00                                                            i2 i19 i0
685             01 58 F3.0(90.0) 00 00 00                                                            i2 i20 i0
686
687 tdump24 (germano/Crosstabs.pdf):
688
689     i3 (three dimensions)
690
691     05 58 "cond" "" 03 00 00            i2 01 00 i1 00 i2
692         05 58 "cond" "" 03 00 00        i1 00 i-1 i4
693             02 58 F40.0(1) "cond" "" i3     i2 i0 i0
694             02 58 F40.0(2) "cond" "" i3     i2 i1 i0
695             02 58 F40.0(3) "cond" "" i3     i2 i2 i0
696             02 58 F40.0(4) "cond" "" i3     i2 i3 i0
697         03 "Total" 58 "total_4" "Total" i1  i2 i4 i0
698
699     05 58 "fobia" "" 03 00 00              i2 01 00 01 i1 i2
700         05 58 "fobia" "" 03 00 00          i1 00 i-1 i11
701             02 58 F40.0(0) "fobia" "" i3   i2 i0 i0
702             02 58 F40.0(1) "fobia" "" i3   i2 i1 i0
703             02 58 F40.0(2) "fobia" "" i3   i2 i2 i0
704             02 58 F40.0(3) "fobia" "" i3   i2 i3 i0
705             02 58 F40.0(4) "fobia" "" i3   i2 i4 i0
706             02 58 F40.0(5) "fobia" "" i3   i2 i5 i0
707             02 58 F40.0(6) "fobia" "" i3   i2 i6 i0
708             02 58 F40.0(7) "fobia" "" i3   i2 i7 i0
709             02 58 F40.0(8) "fobia" "" i3   i2 i8 i0
710             02 58 F40.0(9) "fobia" "" i3   i2 i9 i0
711             02 58 F40.0(10) "fobia" "" i3  i2 i10 i0
712         03 "Total" 58 "total_4" "Total" i1 i2 i11 i0
713
714     03 "Statistics" 58 "statistics_10" "Statistics" 01  00 01 i2 01 00 01 i2 i8
715         03 "Count" 58 "count_6" "Count" i1                             i2 i0 i0
716         03 "Expected Count" 58 "expected_count" "Expected Count" i1    i2 i1 i0 00
717         31 i0 i0 i26: (i20: (i0 31 "row % of ^1") 58 58) "% within ^1" i1 i0
718             05 58 "cond" "" i3                                         i2 i2 i0 00
719         31 i0 i0 i26: (i20: (i0 31 "col % of ^1") 58 58) "% within ^1" i1 i0
720             05 58 "fobia" "" i3                                        i2 i3 i0
721         03 "% of Total" 58 "_pct_of_total" "% of Total" i1             i2 i4 i0
722         03 "Residual" 58 "residual_3" "Residual" i1                    i2 i5 i0
723         03 "Std. Residual" 58 "std_residuals" "Std. Residual" i1       i2 i6 i0
724         03 "Adj. Residual" 58 "adj_residuals" "Adj. Residual" i1       i2 i7 i0
725
726
727 tdump25 (germano/Crosstabs.pdf):
728
729     i3 (3 dimensions)
730
731     03 "Crosstabulation" 58 "crosstabulation" "Crosstabulation" 01 00 00 i2 01 00 i1 00 i1
732         00 31 i0 i0 i27: (i21: (i0 31 "[%1: * ^1:]1") 58 58) "[%1: * ^1:]1" i1 i2 i0
733             05 58 "cond" "" i3 00
734             05 58 "fobia" "" i3 i2 i0 i0
735
736     03 "Statistics" 58 "statistics_10" "Statistics" 01 00 01 i2 01 00 01 i1 i2
737         03 "N" 58 "n" "N" i1 i2 00 00 00 00 00 00 00 00
738         03 "Percent" 58 "percent_2" "Percent" i1 i2 i1 00 00 00 00
739
740     03 "Cases" 58 "cases" "Cases" 01 00 01 i2 00 00 01 i2 i3
741         03 "Valid" 58 "valid" "Valid" i1 i2 i0 i0
742         03 "Missing" 58 "missing_observations" "Missing" i1 i2 i1 i0
743         03 "Total" 58 "total_4" "Total" i1 i2 i2 i0
744
745 tdump21 ./germano/Crosstabs/00000000016_lightTableData.bin (Directional Measures):
746
747     i3 (three dimensions)
748
749     03 "Direction" 58 "direction" "Direction" 01 00 00 i2 01 00 i1 00 i3
750         03 "Symmetric" 58 "symmetric" "Symmetric"                  i1 i2 i0 i0 00
751         31 i0 i0 i27: (i21: (i0 31 "^1 Dependent") 58 58) "^1 Dependent" i1 i0
752             05 58 "cond" ""                                        i3 i2 i1 i0 00
753         31 i0 i0 i27: (i21: (i0 31 "^1 Dependent") 58 58) "^1 Dependent" i1 i0
754             05 58 "fobia" ""                                       i3 i2 i2 i0
755
756     03 "Statistics" 58 "statistics_10" "Statistics" 01 00 00 i2 01 00 01 i1 i3
757         03 "Nominal by Nominal" 58 "nominal_measures" "Nominal by Nominal" 01 00 00 01 i2 i-1 i3
758             03 "Lambda" 58 "lambda" "Lambda" i1 i2 00 00 00 00 00 00 00 00
759             03 "Goodman and Kruskal tau" 58 "goodman_and_kruskals_tau" "Goodman and Kruskal tau" i1 i2 i1 00 00 00 00
760             03 "Uncertainty Coefficient" 58 "uncertainty_coefficient" "Uncertainty Coefficient" i1 i2 i2 00 00 00 00
761         03 "Ordinal by Ordinal" 58 "ordinal_measures" "Ordinal by Ordinal" 01 00 00 01 i2 i-1 i1
762             03 "Somers' d" 58 "somers_d" "Somers' d" i1 i2 i3 00 00 00 00
763         03 "Nominal by Interval" 58 "nominal_by_interval_measures" "Nominal by Interval" 01 00 00 01 i2 i-1 i1
764             03 "Eta" 58 "eta_crosstabs" "Eta" i1 i2 i4 00 00 00 00
765
766     03 "Values" 58 "values_10" "Values" 01 00 01 i2 01 00 01 i2 i4
767         03 "Value" 58 "value_18" "Value" i1 i2 00 00 00 00 00 00 00 00
768         03 "Asymp. Std. Error" 31 i1 i0 00 00 i11: (i5: ("" 58) 58 58) "asymptotic_standard_error" "Asymptotic Std. Error" i1 i2 i1 00 00 00 00
769         03 "Approx. T" 31 i1 i1 00 00 i11: (i5: ("" 58) 58 58) "approximate_t" "Approximate T" i1 i2 i2 00 00 00 00
770         03 "Approx. Sig." 58 "approximate_probability" "Approximate Significance" i1 i2 i3 00 00 00 00 00 00 00 00 i2 i1 00 00 00 00 i1 i2 i44
771
772 tdump22 ./germano/Crosstabs/00000000017_lightTableData.bin (Symmetric Measures):
773
774 This is a good example for footnotes: there are three footnotes in the table and two of them are referenced from the dimensions.
775
776     i2
777
778     03 "Statistics" 58 "statistics_10" "Statistics" 01 00 00 i2 01 00 i1 00 i5
779         03 "Nominal by Nominal" 58 "nominal_measures" "Nominal by Nominal" 01 00 00 01 i2 ff ff ff ff i3
780             03 "Phi" 58 "phi" "Phi" i1 i2 00 00 00 00 00 00 00 00
781             03 "Cramer's V" 58 "cramers_v" "Cramer's V" i1 i2 i1 00 00 00 00
782             03 "Contingency Coefficient" 58 "contingency_coefficient" "Contingency Coefficient" i1 i2 i2 00 00 00 00
783         03 "Ordinal by Ordinal" 58 "ordinal_measures" "Ordinal by Ordinal" 01 00 00 01 i2 ff ff ff ff i4
784             03 "Kendall's tau-b" 58 "kendalls_tau-b_1" "Kendall's tau-b" i1 i2 i3 00 00 00 00
785             03 "Kendall's tau-c" 58 "kendalls_tau-c" "Kendall's tau-c" i1 i2 i4 00 00 00 00 
786             03 "Gamma" 58 "gamma" "Gamma" i1 i2 i5 00 00 00 00
787             03 "Spearman Correlation" 58 "spearman_correlation" "Spearman Correlation" i1 i2 i7 00 00 00 00
788         03 "Interval by Interval" 58 00 00 00 00 "Interval by Interval" 01 00 00 01 i2 ff ff ff ff i1
789             03 "Pearson's R" 58 "pearson_correlation_coefficient" "Pearson's R" i1 i2 i6 00 00 00 00
790         03 "Measure of Agreement" 58 "other" "Measure of Agreement" 01 00 00 01 i2 ff ff ff ff i1
791             03 "Kappa" 58 "kappa" "Kappa" i1 i2 i8 00 00 00 00
792         03 "N of Valid Cases" 58 "valid" "N of Valid Cases" i1 i2 i9 00 00 00 00
793
794     03 "Values" 58 "values_10" "Values" 01 00 01 i2 01 00 01 i1 i4
795         03 "Value" 58 "value_18" "Value" i1 i2 00 00 00 00 00 00 00 00
796         03 "Asymp. Std. Error" 31 i1 i0 00 00 i11: (i5: (i0 58) 58 58) "ase" "Asymptotic Std. Error" i1 i2 i1 00 00 00 00
797         03 "Approx. T"         31 i1 i1 00 00 i11: (i5: (i0 58) 58 58) "approximate_t" "Approximate T" i1 i2 i2 00 00 00 00 
798         03 "Approx. Sig." 58 "approximate_probability" "Approximate Significance" i1 i2 i3 i0 i0
799
800 tdump24 ./germano/Crosstabs/00000000014_lightTableData.bin
801
802     i3
803
804     05 58 "cond" 00 00 00 00 03 00 00 i2 01 00 i1 00 i2
805         05 58 "cond" 00 00 00 00 03 00 00 i1 00 ff ff ff ff i4
806             02 58 F40.0(1) "cond" 00 00 00 00 i3 i2 00 00 00 00 00 00 00 00 
807             02 58 F40.0(2) "cond" 00 00 00 00 i3 i2 i1 00 00 00 00
808             02 58 F40.0(3) "cond" 00 00 00 00 i3 i2 i2 00 00 00 00
809             02 58 F40.0(4) "cond" 00 00 00 00 i3 i2 i3 00 00 00 00
810         03 "Total" 58 "total_4" "Total" i1 i2 i4 00 00 00 00
811     05 58 "fobia" 00 00 00 00 03 00 00 i2 01 00 01 i1 i2
812         05 58 "fobia" 00 00 00 00 03 00 00 i1 00 ff ff ff ff i11
813             02 58 F40.0(0) "fobia" 00 00 00 00 i3 i2 00 00 00 00 00 00 00 00
814             02 58 F40.0(1) "fobia" 00 00 00 00 i3 i2 i1 00 00 00 00 
815             02 58 F40.0(2) "fobia" 00 00 00 00 i3 i2 i2 00 00 00 00
816             02 58 F40.0(3) "fobia" 00 00 00 00 i3 i2 i3 00 00 00 00
817             02 58 F40.0(4) "fobia" 00 00 00 00 i3 i2 i4 00 00 00 00
818             02 58 F40.0(5) "fobia" 00 00 00 00 i3 i2 i5 00 00 00 00
819             02 58 F40.0(6) "fobia" 00 00 00 00 i3 i2 i6 00 00 00 00
820             02 58 F40.0(7) "fobia" 00 00 00 00 i3 i2 i7 00 00 00 00
821             02 58 F40.0(8) "fobia" 00 00 00 00 i3 i2 i8 00 00 00 00
822             02 58 F40.0(9) "fobia" 00 00 00 00 i3 i2 i9 00 00 00 00
823             02 58 F40.0(10) "fobia" 00 00 00 00 i3 i2 i10 00 00 00 00
824         03 "Total" 58 "total_4" "Total" i1 i2 i11 00 00 00 00
825
826     03 "Statistics" 58 "statistics_10" "Statistics" 01 00 01 i2 01 00 01 i2 i8
827         03 "Count" 58 "count_6" "Count" i1 i2 00 00 00 00 00 00 00 00 
828         03 "Expected Count" 58 "expected_count" "Expected Count" i1 i2 i1 00 00 00 00 00
829             31 i0 i0 i26: (i20: (i0 31 "row % of ^1") 58 58) "% within ^1" i1 i0
830         05 58 "cond" 00 00 00 00 i3 i2 i2 00 00 00 00 00
831             31 i0 i0 i26: (i20: (i0 31 "col % of ^1") 58 58) "% within ^1" i1 i0
832         05 58 "fobia" 00 00 00 00 i3 i2 i3 00 00 00 00
833         03 "% of Total" 58 "_pct_of_total" "% of Total" i1 i2 i4 00 00 00 00
834         03 "Residual" 58 "residual_3" "Residual" i1 i2 i5 00 00 00 00
835         03 "Std. Residual" 58 "standardized_residuals" "Standardized Residual" i1 i2 i6 00 00 00 00
836         03 "Adjusted Residual" 58 "adjusted_standardized_residual" "Adjusted Residual" i1 i2 i7 00 00 00 00 
837
838
839 tdump25 ./germano/Crosstabs/00000000013_lightTableData.bin
840
841     i3
842
843     03 "Crosstabulation" 58 "crosstabulation" "Crosstabulation" 01 00 00 i2 01 00 i1 00 i1 00
844         31 i0 i0 i27: (i21: (i0 31 "[%1: * ^1:]1") 58 58) "[%1: * ^1:]1" i1 i2 i0
845             05 58 "cond" "" i3 00
846             05 58 "fobia" "" i3 i2 i0 i0
847
848     03 "Statistics" 58 "statistics_10" "Statistics" 01 00 01 i2 01 00 01 i1 i2
849         03 "N" 58 "n" "N" i1 i2 00 00 00 00 00 00 00 00
850         03 "Percent" 58 "percent_2" "Percent" i1 i2 i1 00 00 00 00
851
852     03 "Cases" 58 "cases" "Cases" 01 00 01 i2 00 00 01 i2 i3
853         03 "Valid" 58 "valid" "Valid" i1 i2 00 00 00 00 00 00 00 00
854         03 "Missing" 58 "missing_observations" "Missing" i1 i2 i1 00 00 00 00
855         03 "Total" 58 "total_4" "Total" i1 i2 i2 i0 i0
856
857
858 0427a44fc2a99165411ecd27896fe4fd/00000000013_lightTableData.bin:
859
860     i2
861
862     03 "Variables" 58 "variable_s_1" "Variables" 01 00 00 i2 01 00 i1 00 i23 00
863         31 i0 i0 i22: (i16: ("" 31 "Pair ^1") 58 58) "Pair ^1" i1 i0
864             01 58 F40.0(1) 00 00 01 i2 i-1 i2
865                 05 58 "pre1.1" 00 00 00 00 i2 i2 00 00 00 00 00 00 00 00
866                 05 58 "post1.1" 00 00 00 00 i2 i2 i1 00 00 00 00 00
867         31 i0 i0 i22: (i16: ("" 31 "Pair ^1" 58 58) "Pair ^1" i1 i0
868             01 58 F40.0(2) 00 00 01 i2 ff ff ff ff i2
869                 05 58 "pre1.2" 00 00 00 00 i2 i2 i2 00 00 00 00
870                 05 58 "post1.2" 00 00 00 00 i2 i2 i3 00 00 00 00 00
871         31 i0 i0 i22: i16: ("" 31 "Pair ^1") 58 58) "Pair ^1" i1 i0
872             01 58 F40.0(3) 00 00 01 i2 ff ff ff ff i2
873                 05 58 "pre1.3" 00 00 00 00 i2 i2 i4 00 00 00 00
874                 05 58 "post1.3" 00 00 00 00 i2 i2 i5 00 00 00 00 00
875         ...
876
877 web/1ae63a04381624dac939ac62eca63fec/00000000053_lightTableData.bin (descriptives)
878
879     i2
880
881     03 "Variables" 58 "variable_s_1" "Variables" 01 00 00 i2 01 00 i1 00 i8
882         05 58 "GODINEPACIJENTA" "GODINE PACIJENTA" i2 i2 00 00 00 00 00 00 00 00
883         05 58 "HLOCORPUS" "HLO CORPUS" i2 i2 i1 00 00 00 00
884         05 58 "INFLCORPUS" "INFL CORPUS" i2 i2 i2 00 00 00 00
885         05 58 "AKT.CORPUS" "AKT. CORPUS" i2 i2 i3 00 00 00 00
886         05 58 "VgmCORPUS" "Vgm CORPUS" i2 i2 i4 00 00 00 00
887         05 58 "VgfCORPUS" "Vgf CORPUS" i2 i2 i5 00 00 00 00
888         05 58 i9 56 67 9e 43 4f 52 50 55 53 i10 56 67 9e 20 43 4f 52 50 55 53 i2 i2 i6 00 00 00 00
889         05 58 "VglpCORPUS" "Vglp CORPUS" i2 i2 i7 00 00 00 00
890
891     03 "Statistics" 58 "statistics_10" "Statistics" 01 00 01 i2 01 00 01 i1 i3
892         03 "Mean" 58 "mean" "Mean" i1 i2 00 00 00 00 00 00 00 00
893         03 "Std. Deviation" 58 "gbar11" "Std. Deviation" i1 i2 i1 00 00 00 00
894         03 "N" 58 "n" "N" i1 i2 i2 00 00 00 00 00 00 00 00
895
896 ./web/76e9b53e9f775fb690a88919ccdbb03c/000000007251_lightTableData.bin:
897
898     i6
899
900     05 58 "Gender_R" "" 02 00 02 i2 00 00 i1 00 i2
901         02 58 F40.0(0) "Gender_R" "Male" i2 i2 00 00 00 00 00 00 00 00
902         02 58 F40.0(1) "Gender_R" "Female" i2 i2 i1 00 00 00 00
903
904     03 "Statistics" 58 "statistics_10" "Statistics" 01 00 00 i2 01 00 01 i1 i4
905     03 "Mean Difference (I-J)" 58 "mean_difference_i-j" "Mean Difference (I-J)" i1 i2 00 00 00 00 00 00 00 00
906     03 "Std. Error" 58 "standard_error" "Std. Error" i1 i2 i1 00 00 00 00
907     03 "Sig." 58 "significance_level" "Significance" i1 i2 i2 00 00 00 00
908     00 31 i0 i0 i38: (i32: (i0 31 "^1% Confidence Interval") 58 58) "^1% Confidence Interval" i1 00 00 00 00
909         01 58 00 03 i5 00 00 00 c0 57 40 00 00 01                       i2 i-1 i2
910             03 "Lower Bound" 58 "lower_bound" "Lower Bound" i1 i2 i3 00 00 00 00
911             03 "Upper Bound" 58 "upper_bound" "Upper Bound" i1 i2 i4 00 00 00 00
912
913     00 31 i0 i0 i21: (i15: (i0 31 "(J) ^1") 58 58) "(J) ^1" i1 00 00 00 00
914         05 58 "sexorient_r" "" 02 00 00       i2 00 00 01 i2 i3
915             02 58 F40.0(0) "sexorient_r" "Straight" i2 i2 00 00 00 00 00 00 00 00
916             02 58 F40.0(1)"sexorient_r" "Bisexual" i2 i2 i1 00 00 00 00
917             02 58 F40.0(2) "sexorient_r" "Gay/Lesbian/Homosexual" i2 i2 i2 00 00 00 00 00
918
919     ...
920
921 web/76e9b53e9f775fb690a88919ccdbb03c/000000001361_lightTableData.bin (crosstabs):
922
923 i3
924
925 05 58 "marst" "Demographics - Marital Status" 02 00 00 i2 01 00 i1 00 i2
926     05 58 "marst" "Demographics - Marital Status" 02 00 00 i1 00 ff ff ff ff i4
927         04 58 00 03 01 00 "Single (never married)" "marst" 02 "A" 00 00 00 i2 00 00 00 00 00 00 00 00
928         04 58 00 03 01 00 "Married, living with spouse" "marst" 02 "B" 00 00 00 i2 i1 00 00 00 00
929         04 58 00 03 01 00 "Unmarried, living with partner" "marst" 02 "C" 00 00 00 i2 i2 00 00 00 00
930         04 58 00 03 01 00 "Divorced" "marst" 02 "E" 00 00 00 i2 i3 00 00 00 00
931     03 "Total" 58 "total_4" "Total" i1 i2 i4 00 00 00 00
932
933 05 58 "Gender_R" 00 00 00 00 02 00 00 i2 01 00 01 i1 i2
934     05 58 "Gender_R" 00 00 00 00 02 00 00 i1 00 ff ff ff ff i2
935         02 58 F40.0(0) "Gender_R" "Male" i2 i2 00 00 00 00 00 00 00 00
936         02 58 F40.0(1) "Gender_R" "Female" i2 i2 i1 00 00 00 00
937     03 "Total" 58 "total_4" "Total" i1 i2 i2 00 00 00 00
938
939 03 "Statistics" 58 "statistics_10" "Statistics" 01 00 01 i2 01 00 01 i2 i2
940     03 "Count" 58 "count_6" "Count" i1 i2 00 00 00 00 00 00 00 00 00
941     31 00 00 00 00 00 00 00 00 i26 i20 00 00 00 00 31 "col % of ^1" 58 58 "% within ^1" i1 00 00 00 00
942         05 58 "Gender_R" 00 00 00 00 i2 i2 i1 00 00 00 00 00 00 00 00 ...
943
944
945 web/76e9b53e9f775fb690a88919ccdbb03c/00000000703_lightTableData.bin (oneway descriptives):
946
947     i4
948
949     05 58 "Gender_R" 00 00 00 00 02 00 00 i2 00 00 i1 00 i2
950         02 58 F40.0(0) "Gender_R" "Male" i2 i2 00 00 00 00 00 00 00 00
951         02 58 F40.0(1) "Gender_R" "Female" i2 i2 i1 00 00 00 00
952
953     03 "Groups" 58 "groups" "Groups" 01 00 00 i2 01 00 01 i1 i2
954         05 58 "sexorient_r" "" 02      01 00       i1 00 i-1 i3
955             02 58 F40.0(0) "sexorient_r" "Straight" i2 i2 i0 i0
956             02 58 F40.0(1) "sexorient_r" "Bisexual" i2 i2 i1 i0
957             02 58 F40.0(2) "sexorient_r" "Gay/Lesbian/Homosexual" i2 i2 i2 00 00 00 00
958         03 "Total" 58 "total_4" "Total" i1 i2 i3 00 00 00 00
959
960     ....
961
962 web/76e9b53e9f775fb690a88919ccdbb03c/00000000725212_lightTableData.bin (Gender_R homogeneous subsets):
963
964     good example for title and footnotes (?)
965
966     i3
967
968         03 "Statistics" 58 "statistics_10" "Statistics" 01 00 00 i2 01 00 i1 00 i2
969             03 "N" 58 "n" "N" i1 i2 i0 i0 00
970             31 i0 i0 i36: (i30: ("" 31 "Subset for alpha = ^1") 58 58) "Subset for alpha = ^1" i1 i0
971                 03 "0.05" 58 "" "0.05" 00 00 00 01 i2 i-1 i1
972                     01 58 F40.0(1) 00 00 00 i2 i1 00 00 00 00
973
974         05 58 "sexorient_r" 00 00 00 00 02 00 00 i2 00 00 01 i1 i2
975             03 "Group" 58 00 00 00 00 "Group" 00 01 00 01 i2 i-1 i3
976                 02 58 F40.0(0) "sexorient_r" "Straight" i2 i2 00 00 00 00 00 00 00 00
977                 02 58 F40.0(2) "sexorient_r" "Gay/Lesbian/Homosexual" i2 i2 i1 00 00 00 00
978                 02 58 F40.0(1) "sexorient_r" "Bisexual" i2 i2 i2 i0
979             03 "Sig." 58 "significance_level" "Significance" i1 i2 i3 00 00 00 00
980
981         03 "Test" 58 "test" "Test" 01 00 01 i2 01 00 01 i2 i2
982             03 "Tukey HSD" 31 i2 00 00 i1 00 00 i11: (i5: ("" 58) 58 58) "tukeys_honestly_significant_difference" "Tukey HSD" i1 i2 00 00 00 00 00 00 00 00
983             03 "Tukey B" 31 i2 00 00 i1 00 00 i11: (i5: ("" 58) 58 58) "tukeys_b_test" "Tukey B" i1 i2 i1 00 00 00 00 00 00 00 00 i2 i1 i1 i2 ...
984
985 web/6c3246ad09f0f6434a33b91c731636a3/00000000062_lightTableData.bin (descriptives):
986
987     i2
988
989     03 "Statistics" 58 "statistics_10" "Statistics" 01 00 00 i2 01 00 i1 00 i5
990         03 "N" 58 "n" "N" i1 i2 00 00 00 00 00 00 00 00
991         03 "Minimum" 58 "minimum" "Minimum" i1 i2 i1 00 00 00 00
992         03 "Maximum" 58 "maximum" "Maximum" i1 i2 i2 00 00 00 00
993         03 "Mean" 58 "mean" "Mean" i1 i2 i3 00 00 00 00
994         03 "Std. Deviation" 58 "gbar11" "Std. Deviation" i1 i2 i4 00 00 00 00
995
996     03 "Variables" 58 "variable_s_1" "Variables" 01 00 01 i2 01 00 01 i1 i16
997         05 58 "TAAS_neg_T1" "TAAS negative affect Time 1" i2 i2 00 00 00 00 00 00 00 00
998         05 58 "TAAS_pos_T1" "TAAS positive affect Time 1" i2 i2 i1 00 00 00 00
999         05 58 "TAAS_overall_T1" "TAAS overall Time 1" i2 i2 i2 00 00 00 00
1000         05 58 "DTS_scale" "DTS McHugh and Otto" i2 i2 i3 00 00 00 00
1001         05 58 "DASS_Stress" 00 00 00 00 i2 i2 i4 00 00 00 00
1002         05 58 "DASS_Anxiety" 00 00 00 00 i2 i2 i5 00 00 00 00
1003         05 58 "DASS_Depression" 00 00 00 00 i2 i2 i6 00 00 00 00
1004         05 58 "DERS_Nonacceptance" 00 00 00 00 i2 i2 i7 00 00 00 00
1005         05 58 "DERS_Goals" 00 00 00 00 i2 i2 i8 00 00 00 00
1006         05 58 "DERS_Impulse" 00 00 00 00 i2 i2 i9 00 00 00 00
1007         05 58 "DERS_Awareness" 00 00 00 00 i2 i2 i10 00 00 00 00
1008         05 58 "DERS_Strategies" 00 00 00 00 i2 i2 i11 00 00 00 00
1009         05 58 "DERS_Clarity" 00 00 00 00 i2 i2 i12 00 00 00 00
1010         05 58 "TOMS_Eating" 00 00 00 00 i2 i2 i13 00 00 00 00
1011         05 58 "TOMS_General" 00 00 00 00 i2 i2 i14 00 00 00 00
1012         03 "" 58 "" "" i0                   i2 i15 i0 i0 
1013
1014 web/17936f440753fa5f6771e084c26a1724/00000000033_lightTableData.bin (Paired Samples Statistics):
1015
1016     i2
1017
1018     03 "Variables" 58 "variable_s_1" "Variables" 01 00 00 i2 01 00 i1 00 i2 00
1019         58 "Pair ^1" i1 00 00 00 00
1020             01 58 F40.0(1) 00 00 01 i2 i-1 i2
1021         05 58 "related" "related" i2 i2 00 00 00 00 00 00 00 00
1022         05 58 "unrelated" "unrelated" i2 i2 i1 00 00 00 00 00 58 "Pair ^1" i1 00 00 00 00
1023     01 58 F40.0(2) 00 00 01 i2 i-1 i2
1024         05 58 "nwrelated" "related" i2 i2 i2 00 00 00 00
1025         05 58 "nwunrelated" "unrelated" i2 i2 i3 00 00 00 00
1026
1027     03 "Statistics" 58 "statistics_10" "Statistics" 01 00 01 i2 01 00 01 i1 i4
1028         03 "Mean" 58 "mean" "Mean" i1 i2 00 00 00 00 00 00 00 00
1029         03 "N" 58 "n" "N" i1 i2 i1 00 00 00 00
1030         03 "Std. Deviation" 58 "gbar11" "Std. Deviation" i1 i2 i2 00 00 00 00
1031         03 "Std. Error Mean" 58 "gfreq13" "Std. Error Mean" i1 i2 i3 00 00 00 00
1032
1033 web/fa39cdfb372fe296d34fa4c191ceed0f/00000000299_lightTableData.bin ("ATTITUDES"):
1034
1035     This has a title with crazy substitutions.
1036
1037     i3
1038
1039     03 "Variables" 58 "variable_s_1" "Variables" 01 00 02 i2 01 00 i1 00 i1
1040         05 58 "ATTITUDES" 00 00 00 00 i2 i2 00 00 00 00 00 00 00 00
1041
1042     05 58 "Q7" "Do you have a family member with a DD?" 02 00 00 i2 00 00 01 i1 i2
1043         03 "Dummy" 58 "" "Dummy" 01 01 00 i1 00 ff ff ff ff i2
1044             02 58 F40.2(0.00) "Q7" "No" i2 i2 00 00 00 00 00 00 00 00
1045             02 58 F40.2(1.00) "Q7" "Yes" i2 i2 i1 00 00 00 00
1046         03 "Total" 58 "total_4" "Total" i1 i2 i2 00 00 00 00
1047
1048     03 "Statistics" 58 "statistics_10" "Statistics" 01 00 01 i2 01 00 01 i2 i3
1049         03 "Mean" 58 "mean" "Mean" i1 i2 00 00 00 00 00 00 00 00
1050         03 "N" 58 "n" "N" i1 i2 i1 00 00 00 00
1051         03 "Std. Deviation" 58 "gbar11" "Std. Deviation" i1 i2 i2 00 00 00 00
1052
1053 web/a57e5529f1f2d4b25f5b9ad78f91864e/000000000310122_lightTableData.bin (homogeneous subsets):
1054
1055     i3
1056
1057     03 "Statistics" 58 "statistics_10" "Statistics" 01 00 02 i2 01 00 i1 00 i2
1058         03 "N" 58 "n" "N" i1 i2 00 00 00 00 00 00 00 00
1059         03 "Subset" 58 "homogeneous_subsets" "Subset" 01 00 00 01 i2 ff ff ff ff i3
1060             01 58 F40.0(1) 00 00 00 i2 i1 00 00 00 00
1061             01 58 F40.0(2) 00 00 00 i2 i2 00 00 00 00
1062             01 58 F40.0(3) 00 00 00 i2 i3 00 00 00 00
1063
1064     05 58 "Lakes" 00 00 00 00 02 00 00 i2 00 00 01 i1 i2
1065         03 "Group" 58 00 00 00 00 "Group" 00 01 00 01 i2 ff ff ff ff i3
1066             04 58 00 10 i1 00 00 "Lakes" 02 "Lake Michigan" 00 00 00 i2 00 00 00 00 00 00 00 00
1067             04 58 00 10 i1 00 00 "Lakes" 02 "Greene's Lake" 00 00 00 i2 i1 00 00 00 00
1068             04 58 00 10 i1 00 00 "Lakes" 02 "Lake Genesereth" 00 00 00 i2 i2 00 00 00 00
1069         03 "Sig." 58 "significance_level" "Sig." i1 i2 i3 00 00 00 00
1070
1071     03 "Test" 58 "multivariate_tests" "Test" 01 00 01 i2 01 00 01 i2 i1
1072         03 "Tukey HSD" 31 i3 00 00 01 00 i2: (00 00) i6: (00 00 00 00 58 58) "tukeys_honestly_significant_difference" "Tukey HSD" i1 i2 i0
1073
1074 web/a57e5529f1f2d4b25f5b9ad78f91864e/00000000038_lightTableData.bin (Tests of Within-Subjects Contrasts):
1075
1076     ...
1077
1078     "Source" 58 "source_of_variation" "Source" 01 00 00 i2 00 00 01 i2 i4 00
1079         58 "[%1: * ^1:]1" i1 i1 00 00 00 00
1080             03 "Time" 58 00 00 00 00 "Time" 00 00 00 00 i2 00 00 00 00 00 00 00 00 00
1081         58 "[%1: * ^1:]1 *[: ^1:]2" i2 i1 00 00 00 00
1082             03 "Time" 58 00 00 00 00 "Time" 00 i1 00 00 00 00
1083             05 58 "Lakes" "" i1 i2 i1 00 00 00 00 00
1084         58 "[%1: * ^1:]1 *[: ^1:]2" i2 i1 00 00 00 00
1085             03 "Time" 58 00 00 00 00 "Time" 00 i1 00 00 00 00
1086             05 58 "Treatments" 00 00 00 00 i1 i2 i2 00 00 00 00 00
1087         58 "Error([%1:*^1:]1)" i1 i1 00 00 00 00
1088             03 "Time" 58 00 00 00 00 "Time" 00 00 00 00 i2 i3 00 00 00 00
1089
1090     03 "Statistics" 58 "statistics_10" "Statistics" 01 00 01 i2 01 00 01 i3 i5
1091         03 "Type III Sum of Squares" 58 "type_iii_sum_of_squares" "Type III Sum of Squares" i1 i2 00 00 00 00 00 00 00 00
1092         03 "df" 58 "df" "df" i1 i2 i1 00 00 00 00
1093         03 "Mean Square" 58 "mean_square" "Mean Square" i1 i2 i2 00 00 00 00
1094         03 "F" 58 "f_value" "F" i1 i2 i3 00 00 00 00
1095         03 "Sig." 58 "significance_level" "Sig." i1 i2 i4 00 00 00 00 00 00 00 00
1096
1097 web/a57e5529f1f2d4b25f5b9ad78f91864e/00000000031021_lightTableData.bin (POSTHOC Multiple Comparisons):
1098
1099     i5
1100
1101     03 "Statistics" 58 "statistics_10" "Statistics" 01 00 02 i2 01 00 i1 00 i4
1102         03 "Mean Difference (I-J)" 58 "mean_difference_i-j" "Mean Difference (I-J)" i1 i2 00 00 00 00 00 00 00 00
1103         03 "Std. Error" 58 "standard_error" "Std. Error" i1 i2 i1 00 00 00 00
1104         03 "Sig." 58 "significance_level" "Sig." i1 i2 i2 00 00 00 00 00
1105         58 "^1% Confidence Interval" i1 00 00 00 00 01 58 00 03 i5 00 00 00 c0 57 40 00 00 01 i2 ff ff ff ff i2
1106             03 "Lower Bound" 58 "lower_bound" "Lower Bound" i1 i2 i3 00 00 00 00
1107             03 "Upper Bound" 58 "upper_bound" "Upper Bound" i1 i2 i4 00 00 00 00 00
1108
1109     58 "(J) ^1" i1 i0 05 58 "Treatments" 00 00 00 00 02 00 00 i2 00 00 01 i1 i4
1110         04 58 00 03 i1 00 00 "Treatments" 02 "C" 00 00 00 i2 00 00 00 00 00 00 00 00
1111         04 58 00 03 i1 00 00 "Treatments" 02 "N" 00 00 00 i2 i1 00 00 00 00
1112         04 58 00 03 i1 00 00 "Treatments" 02 "NP" 00 00 00 i2 i2 00 00 00 00
1113         04 58 00 03 i1 00 00 "Treatments" 02 "P" 00 00 00 i2 i3 00 00 00 00 00
1114
1115     ...
1116
1117 web/a57e5529f1f2d4b25f5b9ad78f91864e/00000000034_lightTableData.bin (Between-Subjects Factors):
1118
1119     i2
1120
1121     03 "Factor Levels" 58 "factor_levels" "Factor Levels" 01 00 00 i2 01 00 i1 00 i2
1122         05 58 "Lakes" 00 00 00 00 02 00 00 01 i2 ff ff ff ff i3
1123             04 58 A16.0 "" "Lakes" 01 "Greene's Lake" 00 00 00 i2 00 00 00 00 00 00 00 00
1124             04 58 00 10 i1 00 00 "Lakes" 01 "Lake Genesereth" 00 00 00 i2 i1 00 00 00 00
1125             04 58 00 10 i1 00 00 "Lakes" 01 "Lake Michigan" 00 00 00 i2 i2 00 00 00 00
1126         05 58 "Treatments" 00 00 00 00 02 00 00 01 i2 ff ff ff ff i4
1127             04 58 00 03 i1 00 00 "Treatments" 01 "C" 00 00 00 i2 i3 00 00 00 00
1128             04 58 00 03 i1 00 00 "Treatments" 01 "N" 00 00 00 i2 i4 00 00 00 00
1129             04 58 00 03 i1 00 00 "Treatments" 01 "NP" 00 00 00 i2 i5 00 00 00 00
1130             04 58 00 03 i1 00 00 "Treatments" 01 "P" 00 00 00 i2 i6 00 00 00 00
1131
1132     03 "Properties" 58 "properties_dimension" "Properties" 01 00 01 i2 01 00 01 i1 i2
1133         03 "Value Label" 58 "value_labels_2" "Value Label" i1 i2 00 00 00 00 00 00 00 00
1134         03 "N" 58 "n" "N" i1 i2 i1 00 00 00 00 00 00 00 00
1135
1136
1137
1138 web/7a17f5600db5be64b985ac37b1346aa8/00000000072_lightTableData.bin (Between-Subjects Factors):
1139
1140     i2
1141
1142     03 "Factor Levels" 58 "factor_levels" "Factor Levels" 01 00 00 i2 01 00 i1 00 i1
1143         05 58 "HouseholdIncome" "HouseholdIncome" 02 00 00 01 i2 ff ff ff ff i4
1144             02 58 F40.2(1.00) "HouseholdIncome" "< 45,000" i1 i2 00 00 00 00 00 00 00 00
1145             02 58 F40.2(2.00) "HouseholdIncome" "45,001 - 80,000" i1 i2 i1 00 00 00 00
1146             02 58 F40.2(3.00) "HouseholdIncome" "80,001 - 120,000" i1 i2 i2 00 00 00 00
1147             02 58 F40.2(4.00) "HouseholdIncome" "120,001+" i1 i2 i3 00 00 00 00
1148
1149     ...
1150
1151 web/6f1f8df78363208fec048190af27097e/00000000053_lightTableData.bin ([%1: * ^1:]1 Crosstabulation):
1152
1153     i4
1154
1155     05 58 "agerange" "agerange" 02 75 02 i2 00 00 i1 00 i3
1156         02 58 F40.2(1.00) "agerange" 00 00 00 00 i2 i2 00 00 00 00 00 00 00 00
1157         02 58 F40.2(2.00) "agerange" 00 00 00 00 i2 i2 i1 00 00 00 00
1158         02 58 F40.2(3.00) "agerange" 00 00 00 00 i2 i2 i2 00 00 00 00
1159
1160     05 58 "sex" "RESPONDENTS SEX" 02 00 00 i2 01 00 01 i1 i2
1161         05 58 "sex" "RESPONDENTS SEX" 02 00 00 i1 00 ff ff ff ff i2
1162             02 58 F40.0(1) "sex" "male" i2 i2 00 00 00 00 00 00 00 00
1163             02 58 F40.0(2) "sex" "female" i2 i2 i1 00 00 00 00
1164         03 "Total" 58 "total_4" "Total" i1 i2 i2 00 00 00 00
1165
1166     05 58 "pres92" "VOTE FOR CLINTON, BUSH, PEROT" 02 00 00 i2 01 00 01 i2 i2
1167         05 58 "pres92" "VOTE FOR CLINTON, BUSH, PEROT" 02 00 00 i1 00 ff ff ff ff i3
1168             02 58 F40.0(1) "pres92" "Bush" i2 i2 00 00 00 00 00 00 00 00
1169             02 58 F40.0(2) "pres92" "Perot" i2 i2 i1 00 00 00 00
1170             02 58 F40.0(3) "pres92" "Clinton" i2 i2 i2 00 00 00 00
1171         03 "Total" 58 "total_4" "Total" i1 i2 i3 00 00 00 00
1172
1173     03 "Statistics" 58 "statistics_10" "Statistics" 01 00 01 i2 01 00 01 i3 i1
1174         03 "Count" 58 "count_6" "Count" i1 i2 00 00 00 00 00 00 00 00
1175
1176 web/75e80a604626e6bdbb6a107901dc9b36/000000000344_lightTableData.bin (Frequencies):
1177
1178     i2
1179
1180     05 58 "Sex" 00 00 00 00 03 00 00 i2 01 00 i1 00 i1
1181         03 "Valid" 58 "valid" "Valid" 01 00 00 01 i2 ff ff ff ff i2
1182             01 58 F40.0(0) 01 00 01 i2 ff ff ff ff i1
1183                 01 58 F40.0(-1) 01 00 i1 00 ff ff ff ff i3
1184                     04 58 00 06 01 00 "Male" "Sex" 03 "1" 00 00 00 i2 00 00 00 00 00 00 00 00
1185                     04 58 00 06 01 00 "Female" "Sex" 03 "2" 00 00 00 i2 i1 00 00 00 00
1186                     04 58 00 06 01 00 "Other" "Sex" 03 "3" 00 00 00 i2 i2 00 00 00 00
1187             03 "Total" 58 "total_4" "Total" i1 i2 i3 00 00 00 00
1188
1189     03 "Statistics" 58 "statistics_10" "Statistics" 01 00 01 i2 01 00 01 i1 i4
1190         03 "Frequency" 58 "frequency" "Frequency" i1 i2 00 00 00 00 00 00 00 00
1191         03 "Percent" 58 "percent" "Percent" i1 i2 i1 00 00 00 00
1192         03 "Valid Percent" 58 "valid_percent" "Valid Percent" i1 i2 i2 00 00 00 00
1193         03 "Cumulative Percent" 58 "cumulative_percent" "Cumulative Percent" i1 i2 i3 00 00 00 00 00 00 00 00
1194
1195 web/9c0f5ba2cd60a97194a82cdc67efc3cb/000000000176_lightTableData.bin (Functions at Group Centroids):
1196
1197     i2
1198
1199     05 58 "group" "" 02         00 00 00 00 00 00 00 00 i1 00 i2
1200         02 58 F40.0(1) "group" 00 00 00 00 i2 i2 00 00 00 00 00 00 00 00
1201         02 58 F40.0(2) "group" 00 00 00 00 i2 i2 i1 00 00 00 00
1202
1203     03 "Function" 58 "function_6" "Function" 01 00 01 i2 00 00 01 i1 i1
1204         01 58 F40.0(1)
1205
1206 web/b257771a29873ce68ce0c0a4e7582f76/000000000432_lightTableData.bin (Pearson Chi-Square Tests):
1207
1208     i2
1209
1210     03 "Row" 58 00 00 00 00 "Row" 01 00 00 i2 01 00 i1 00 i1
1211         05 58 "Judge_Indiziert" "Overall Judgement indicated" 02 00 00 01 i2 ff ff ff ff i1
1212             02 58 F40.2(1.00) "Judge_Indiziert" "indicated" 02 00 00 01 i2 ff ff ff ff i1
1213                 05 58 "CAS" "Navigation" 02 00 00 01 i2 ff ff ff ff i3
1214                     03 "Chi-square" 58 00 00 00 00 "Chi-square" i1 i2 00 00 00 00 00 00 00 00
1215                     03 "df" 58 00 00 00 00 "df" i1 i2 i1 00 00 00 00
1216                     03 "Sig." 58 00 00 00 00 "Sig." i1 i2 i2 00 00 00 00
1217
1218     03 "Column" 58 00 00 00 00 "Column" 01 00 01 i2 01 00 01 i1 i1
1219         05 58 "Judge_Gemacht" "Overall Judgement done" i2 i2 00 00 00 00 00 00 00 00 00 00 00 00
1220
1221 web/f1b07f87ef9cd720e78efebe4f2551fa/0000000007912_lightTableData.bin (Pairwise Comparisons):
1222
1223     i4
1224
1225     03 "Statistics" 58 "statistics_10" "Statistics" 01 00 00 i2 01 00 i1 00 i4
1226     03 "Mean Difference (I-J)" 58 "mean_difference_i-j" "Mean Difference (I-J)" i1 i2 00 00 00 00 00 00 00 00
1227     03 "Std. Error" 58 "standard_error" "Std. Error" i1 i2 i1 00 00 00 00
1228     03 "Sig." 31 i1 i1 00 00 i11: (i5: ("" 58) 58 58) "significance_level" "Significance" i1 i2 i2 00 00 00 00 00
1229     31 i1 i1 00 00 i53: (i47: ("" 31 "^1% Confidence Interval for Difference") 58 58) "^1% Confidence Interval for Difference" i1 00 00 00 00
1230     01 58 00 03 i5 00 00 00 c0 57 40 00 00 01 i2 ff ff ff ff i2
1231     03 "Lower Bound" 58 "lower_bound" "Lower Bound" i1 i2 i3 00 00 00 00
1232     03 "Upper Bound" 58 "upper_bound" "Upper Bound" i1 i2 i4 00 00 00 00 00
1233
1234     31 00 00 00 00 00 00 00 00 i21: (i15: ("" 31 "(J) ^1") 58 58) "(J) ^1" i1 00 00 00 00
1235     05 58 "Group" "Group" 02 00 00 i2 00 00 01 i1 i2
1236         02 58 F40.0(1) "Group" "Experimental Group" i3 i2 00 00 00 00 00 00 00 00
1237         02 58 F40.0(2) "Group" "Control Group" i3 i2 i1 00 00 00 00 00
1238     31 00 00 00 00 00 00 00 00 i21: (i15: ("" 31 "(I) ^1") 58 58 ) "(I) ^1" i1 00 00 00 00
1239     05 58 "Group" "Group" 02 00 00 i2 00 00 01 i2 i2
1240         02 58 F40.0(1) "Group" "Experimental Group" i3 i2 00 00 00 00 00 00 00 00
1241         02 58 F40.0(2) "Group" "Control Group" i3 i2 i1 00 00 00 00
1242
1243     03 "Dependent Variable" 58 "dependent_variable_2" "Dependent Variable" 01 00 01 i2 00 00 01 i3 i12
1244     05 58 "PSYCAP_POST2" 00 00 00 00 i3 i2 00 00 00 00 00 00 00 00
1245     05 58 "SE_POST2" 00 00 00 00 i3 i2 i1 00 00 00 00
1246     05 58 "HOPE_POST2" 00 00 00 00 i3 i2 i2 00 00 00 00
1247     05 58 "RES_POST2" 00 00 00 00 i3 i2 i3 00 00 00 00
1248     05 58 "OPT_POST2" 00 00 00 00 i3 i2 i4 00 00 00 00
1249     05 58 "PWB_POST2" 00 00 00 00 i3 i2 i5 00 00 00 00
1250     05 58 "AUTO_POST2" 00 00 00 00 i3 i2 i6 00 00 00 00
1251     05 58 "EM_POST2" 00 00 00 00 i3 i2 i7 00 00 00 00
1252     05 58 "PG_POST2" 00 00 00 00 i3 i2 i8 00 00 00 00
1253     05 58 "PR_POST2" 00 00 00 00 i3 i2 i9 00 00 00 00
1254     05 58 "PL_POST2" 00 00 00 00 i3 i2 i10 00 00 00 00
1255     05 58 "SA_POST2" 00 00 00 00 i3 i2 i11 00 00 00 00
1256
1257
1258 web/67e54cc8a549f4a66331c0401ff4a775/00000000079_lightTableData.bin (Tests of Within-Subjects Contrasts):
1259
1260 This one is just puzzling.
1261
1262     i4
1263
1264     03 "Word_Type" 58 00 00 00 00 "Word_Type" 00 00 02 i2 00 00 i1 00 i1
1265         03 "Linear" 58 "linear" "Linear" i1 i2 00 00 00 00 00 00 00 00
1266
1267     03 "Measure" 58 "measure_3" "Measure" 01 00 00 i2 00 00 01 i1 i1 00
1268         58 "MEASURE_^1" i1 00 00 00 00
1269             01 58 F40.0(1) 00 00 00 i2 00 00 00 00 00 00 00 00
1270
1271     03 "Source" 58 "source_of_variation" "Source" 01 00 00 i2 00 00 01 i2 i5 00
1272         58 "[%1: * ^1:]1" i1 i1 00 00 00 00
1273             03 "Word_Type" 58 00 00 00 00 "Word_Type" 00 00 00 00 i2 00 00 00 00 00 00 00 00 00
1274         58 "[%1: * ^1:]1 *[: ^1:]2" i2
1275             i1 00 00 00 00
1276                 03 "Word_Type" 58 "" "Word_Type" 00
1277             i1 00 00 00 00
1278                 05 58 "Word_Color" "" i1 i2 i1 00 00 00 00 00
1279         58 "[%1: * ^1:]1 *[: ^1:]2" i2 i1 i0
1280             03 "Word_Type" 58 "" "Word_Type" 00 i1 i0
1281             05 58 "Order" "" i1                        i2 i2 i0 00
1282         58 "[%1: * ^1:]1 *[: ^1:]2" i2
1283             i1 i0
1284                 03 "Word_Type" 58 "" "Word_Type" 00
1285             i3 i0
1286                 05 58 "Word_Color" "" i1 00
1287                 03 " * " 58 "" " * " i0 00
1288                 05 58 "Order" ""      i1                   i2 i3 i0
1289         00 58 "Error([%1:*^1:]1)" i1 i1 00 00 00 00
1290             03 "Word_Type" 58 00 00 00 00 "Word_Type" 00 00 00 00 i2 i4 00 00 00 00
1291
1292     03 "Statistics" 58 "statistics_10" "Statistics" 01 00 01 i2 01 00 01 i3 i6
1293         03 "Type III Sum of Squares" 58 "type_iii_sum_of_squares" "Type III Sum of Squares" i1 i2 00 00 00 00 00 00 00 00
1294         03 "df" 58 "df" "df" i1 i2 i1 00 00 00 00
1295         03 "Mean Square" 58 "mean_square" "Mean Square" i1 i2 i2 00 00 00 00
1296         03 "F" 58 "f_value" "F" i1 i2 i3 00 00 00 00
1297         03 "Sig." 58 "significance_level" "Sig." i1 i2 i4 00 00 00 00
1298         03 "Partial Eta Squared" 58 "estimates_of_effect_size" "Partial Eta Squared" i1 i2 i5 i0
1299
1300 web/c4757deb6f4f21d5f51745073835937d/000000000171_lightTableData.bin (Averaged Multivariate Tests):
1301
1302     i3
1303
1304     ...
1305
1306     03 "Within Subjects Effect" 58 "within-subjects_3" "Within Subjects Effect" 01 00 00 i2 00 00 01 i1 i4 00
1307         58 "[%1: * ^1:]1" i1 i1 00 00 00 00
1308             03 "Time" 58 00 00 00 00 "Time" 00 00 00 00 i2 00 00 00 00 00 00 00 00 00
1309         58 "[%1: * ^1:]1 *[: ^1:]2" i2 i1 00 00 00 00
1310             03 "Time" 58 00 00 00 00 "Time" 00 i1 00 00 00 00
1311             05 58 "Lakes" 00 00 00 00 i1 i2 i1 00 00 00 00 00
1312         58 "[%1: * ^1:]1 *[: ^1:]2" i2 i1 00 00 00 00
1313             03 "Time" 58 00 00 00 00 "Time" 00 i1 00 00 00 00
1314             05 58 "Treatments" 00 00 00 00 i1 i2 i2 00 00 00 00 00
1315         58 "[%1: * ^1:]1 *[: ^1:]2" i2 i1 00 00 00 00
1316             03 "Time" 58 00 00 00 00 "Time" 00 i3 00 00 00 00
1317             05 58 "Lakes" "" 01 i0 
1318             03 " * " 58 00 00 00 00 " * " 00 00 00 00 00
1319         05 58 "Treatments" 00 00 00 00 i1 i2 i3 00 00 00 00
1320
1321     03 "Statistics" 58 "statistics_10" "Statistics" 01 00 01 i2 01 00 01 i2 i5
1322         03 "Value" 58 "value_18" "Value" i1 i2 00 00 00 00 00 00 00 00
1323         03 "F" 58 "f_value" "F" i1 i2 i1 00 00 00 00
1324         03 "Hypothesis df" 58 "df" "Hypothesis df" i1 i2 i2 00 00 00 00
1325         03 "Error df" 58 "error_df" "Error df" i1 i2 i3 00 00 00 00
1326         03 "Sig." 58 "significance_level" "Sig." i1 i2 i4 00 00 00 00 00 00 00 00
1327
1328 web/c50e357352131aa1a8925003483b31ad/000000000161_lightTableData.bin (Custom Univariate Tests):
1329
1330 i4
1331
1332 03 "Epsilon Corrections" 58 "epsilon_general_loglinear" "Epsilon Corrections" 01 00 00 i2 01 00 i1 00 i4
1333     03 "Sphericity Assumed" 58 "sphericity_assumed" "Sphericity Assumed" i1 i2 00 00 00 00 00 00 00 00
1334     03 "Greenhouse-Geisser" 58 "greenhouse-geisser_epsilon" "Greenhouse-Geisser" i1 i2 i1 00 00 00 00
1335     03 "Huynh-Feldt" 58 "huynh-feldt_epsilon" "Huynh-Feldt" i1 i2 i2 00 00 00 00
1336     03 "Lower-bound" 58 "lowerbound_epsilon" "Lower-bound" i1 i2 i3 00 00 00 00
1337
1338 03 "Measure" 58 "measure_3" "Measure" 01 00 00 i2 00 00 01 i1 i4
1339     03 "ALT" 58 00 00 00 00 "ALT" 00 00 00 00 i2 00 00 00 00 00 00 00 00
1340     03 "VLT" 58 00 00 00 00 "VLT" 00 00 00 00 i2 i1 00 00 00 00
1341     03 "PSS" 58 00 00 00 00 "PSS" 00 00 00 00 i2 i2 00 00 00 00
1342     03 "FWHM" 58 00 00 00 00 "FWHM" 00 00 00 00 i2 i3 00 00 00 00
1343
1344 03 "Source" 58 "source_of_variation" "Source" 01 00 00 i2 00 00 01 i2 i21 00
1345     58 "[%1: * ^1:]1" i1
1346         i1 00 00 00 00
1347             03 "Language" 58 00 00 00 00 "Language" 00 00 00 00 i2 00 00 00 00 00 00 00 00 00
1348     58 "[%1: * ^1:]1 *[: ^1:]2" i2
1349         i1 00 00 00 00
1350             03 "Language" 58 00 00 00 00 "Language" 00
1351         i1 00 00 00 00
1352             05 58 "Gender" "Gender" i1 i2 i1 00 00 00 00 00
1353     58 "Error([%1:*^1:]1)" i1
1354         i1 00 00 00 00
1355             03 "Language" 58 00 00 00 00 "Language" 00 00 00 00 i2 i2 00 00 00 00 00
1356     58 "[%1: * ^1:]1" i1
1357         i1 00 00 00 00
1358             03 "Size_AOI" 58 00 00 00 00 "Size_AOI" 00 00 00 00 i2 i3 00 00 00 00 00
1359     58 "[%1: * ^1:]1 *[: ^1:]2" i2
1360         i1 00 00 00 00
1361             03 "Size_AOI" 58 00 00 00 00 "Size_AOI" 00
1362         i1 00 00 00 00
1363             05 58 "Gender" "Gender" i1 i2 i4 00 00 00 00 00
1364     58 "Error([%1:*^1:]1)" i1 i1 00 00 00 00
1365         03 "Size_AOI" 58 00 00 00 00 "Size_AOI" 00 00 00 00 i2 i5 00 00 00 00 00
1366     58 "[%1: * ^1:]1" i1 i1 00 00 00 00
1367         03 "Area" 58 00 00 00 00 "Area" 00 00 00 00 i2 i6 00 00 00 00 00
1368     58 "[%1: * ^1:]1 *[: ^1:]2" i2 i1 00 00 00 00
1369         03 "Area" 58 00 00 00 00 "Area" 00 i1 00 00 00 00
1370         05 58 "Gender" "Gender" i1 i2 i7 00 00 00 00 00
1371     58 "Error([%1:*^1:]1)" i1 i1 00 00 00 00
1372         03 "Area" 58 00 00 00 00 "Area" 00 00 00 00 i2 i8 00 00 00 00 00
1373     58 "[%1: * ^1:]1" i1 i2 00 00 00 00
1374         03 "Language" 58 00 00 00 00 "Language" 00 00 00 00 00
1375         03 "Size_AOI" 58 00 00 00 00 "Size_AOI" 00 00 00 00 i2 i9 00 00 00 00 00
1376     58 "[%1: * ^1:]1 *[: ^1:]2" i2
1377         i2 00 00 00 00
1378             03 "Language" 58 00 00 00 00 "Language" 00 00 00 00 00
1379             03 "Size_AOI" 58 00 00 00 00 "Size_AOI" 00
1380         i1 00 00 00 00
1381             05 58 "Gender" "Gender" i1 i2 i10 00 00 00 00 00
1382     58 "Error([%1:*^1:]1)" i1 i2 00 00 00 00
1383         03 "Language" 58 00 00 00 00 "Language" 00 00 00 00 00
1384         03 "Size_AOI" 58 00 00 00 00 "Size_AOI" 00 00 00 00 i2 i11 00 00 00 00 00
1385     58 "[%1: * ^1:]1" i1 i2 00 00 00 00
1386         03 "Language" 58 00 00 00 00 "Language" 00 00 00 00 00
1387         03 "Area" 58 00 00 00 00 "Area" 00 00 00 00 i2 i12 00 00 00 00 00
1388     58 "[%1: * ^1:]1 *[: ^1:]2" i2 i2 00 00 00 00
1389         03 "Language" 58 00 00 00 00 "Language" 00 00 00 00 00
1390         03 "Area" 58 00 00 00 00 "Area" 00 i1 00 00 00 00
1391         05 58 "Gender" "Gender" i1 i2 i13 00 00 00 00 00
1392     58 "Error([%1:*^1:]1)" i1 i2 00 00 00 00
1393         03 "Language" 58 00 00 00 00 "Language" 00 00 00 00 00
1394         03 "Area" 58 00 00 00 00 "Area" 00 00 00 00 i2 i14 00 00 00 00 00
1395     58 "[%1: * ^1:]1" i1 i2 00 00 00 00
1396         03 "Size_AOI" 58 00 00 00 00 "Size_AOI" 00 00 00 00 00
1397         03 "Area" 58 00 00 00 00 "Area" 00 00 00 00 i2 i15 00 00 00 00 00
1398     58 "[%1: * ^1:]1 *[: ^1:]2" i2 i2 00 00 00 00
1399         03 "Size_AOI" 58 00 00 00 00 "Size_AOI" 00 00 00 00 00
1400         03 "Area" 58 00 00 00 00 "Area" 00 i1 00 00 00 00
1401         05 58 "Gender" "Gender" i1 i2 i16 00 00 00 00 00
1402     58 "Error([%1:*^1:]1)" i1 i2 00 00 00 00 03 "Size_AOI"
1403         58 00 00 00 00 "Size_AOI" 00 00 00 00 00
1404         03 "Area" 58 00 00 00 00 "Area" 00 00 00 00 i2 i17 00 00 00 00 00
1405     58 "[%1: * ^1:]1" i1 i3 00 00 00 00
1406         03 "Language" 58 00 00 00 00 "Language" 00 00 00 00 00
1407         03 "Size_AOI" 58 00 00 00 00 "Size_AOI" 00 00 00 00 00
1408         03 "Area" 58 00 00 00 00 "Area" 00 00 00 00 i2 i18 00 00 00 00 00
1409     58 "[%1: * ^1:]1 *[: ^1:]2" i2 i3 00 00 00 00
1410         03 "Language" 58 00 00 00 00 "Language" 00 00 00 00 00
1411         03 "Size_AOI" 58 00 00 00 00 "Size_AOI" 00 00 00 00 00
1412         03 "Area" 58 00 00 00 00 "Area" 00 i1 00 00 00 00
1413         05 58 "Gender" "Gender" i1 i2 i19 00 00 00 00 00
1414     58 "Error([%1:*^1:]1)" i1 i3 00 00 00 00
1415         03 "Language" 58 00 00 00 00 "Language" 00 00 00 00 00
1416         03 "Size_AOI" 58 00 00 00 00 "Size_AOI" 00 00 00 00 00
1417         03 "Area" 58 00 00 00 00 "Area" 00 00 00 00 i2 i20 00 00 00 00
1418
1419     03 "Statistics" 58 "statistics_10" "Statistics" 01 00 01 i2 01 00 01 i3 i6
1420         03 "Type III Sum of Squares" 58 "type_iii_sum_of_squares" "Type III Sum of Squares" i1 i2 00 00 00 00 00 00 00 00
1421         03 "df" 58 "df" "df" i1 i2 i1 00 00 00 00
1422         03 "Mean Square" 58 "mean_square" "Mean Square" i1 i2 i2 00 00 00 00
1423         03 "F" 58 "f_value" "F" i1 i2 i3 00 00 00 00
1424         03 "Sig." 58 "significance_level" "Sig." i1 i2 i4 00 00 00 00
1425         03 "Partial Eta Squared" 58 "estimates_of_effect_size" "Partial Eta Squared" i1 i2 i5 00 00 00 00 00 00 00 00
1426
1427
1428 web/bf0de88830dd9a93323cfb8d7501f342/00000000075_lightTableData.bin (Default Multivariate Tests):
1429
1430     i3
1431
1432     03 "Test" 58 "multivariate_tests" "Test" 01 00 00 i2 01 00 i1 00 i4
1433         03 "Pillai's Trace" 58 "pillais_trace" "Pillai's Trace" i1 i2 00 00 00 00 00 00 00 00
1434         03 "Wilks' Lambda" 58 "wilks_lambda" "Wilks' Lambda" i1 i2 i1 00 00 00 00
1435         03 "Hotelling's Trace" 58 "hotellings_trace" "Hotelling's Trace" i1 i2 i2 00 00 00 00
1436         03 "Roy's Largest Root" 58 "roys_largest_root" "Roy's Largest Root" i1 i2 i3 00 00 00 00
1437
1438     03 "Effect" 58 "effect" "Effect" 01 00 00 i2 00 00 01 i1 i2 00
1439         31 i0 i0 i25: (i19: ("" 31 "[%1:*^1:]1") 58 58) "[%1: * ^1:]1" i1 i1 00 00 00 00
1440             03 "Time" 58 00 00 00 00 "Time" 00 00 00 00 i2 00 00 00 00 00 00 00 00 00
1441         31 00 00 00 00 00 00 00 00 i33: (i27: ("" 31 "[%1:*^1:]1*[:^1:]2") 58 58) "[%1: * ^1:]1 *[: ^1:]2" i2
1442             i1 00 00 00 00
1443                 03 "Time" 58 00 00 00 00 "Time" 00
1444             i3 00 00 00 00
1445                 05 58 "Condition" 00 00 00 00 i1 00
1446                 03 " * " 58 00 00 00 00 " * " 00 00 00 00 00
1447                 05 58 "Extraversio" 00 00 00 00 i1 i2 i1 00 00 00 00
1448
1449     03 "Statistics" 58 "statistics_10" "Statistics" 01 00 01 i2 01 00 01 i2 i5
1450         03 "Value" 58 "value_18" "Value" i1 i2 00 00 00 00 00 00 00 00
1451         03 "F" 58 "f_value" "F" i1 i2 i1 00 00 00 00
1452         03 "Hypothesis df" 58 "df" "Hypothesis df" i1 i2 i2 00 00 00 00
1453         03 "Error df" 58 "error_df" "Error df" i1 i2 i3 00 00 00 00
1454         03 "Sig." 58 "significance_level" "Significance" i1 i2 i4 00 00 00 00 00 00 00 00
1455
1456
1457 Data
1458 ----
1459
1460 williams/00000000053_lightTableData.bin:
1461
1462     i0 i1 i1 i0 i1 i4
1463
1464     i0 i0 01 31 i1 i0 00 00 i11: (i5: ("" 58) 58 58) F40.3(0.760)
1465     i1 i0 01 58 F40.3(0.578)
1466     i2 i0 01 58 F40.3(0.573)
1467     i3 i0 01 58 F40.3(0.666)
1468
1469 germano/Crosstabs/00000000014_lightTableData.bin:
1470
1471     i432
1472
1473     i0 i0 03 "<5                                       " 31 i0 i1 "a" i11: (i5: ("" 58) 58 58) i0 "<5                                       " 00
1474     i96 i0 03 "<5                                       " 31 i0 i1 "a" i11: (i5: ("" 58) 58 58) i0 "<5                                       " 00
1475     i192 i0 03 "<5                                       " 31 i0 i1 "a" i11 i5 00 00 00 00 58 58 58 i0 "<5                                       " 00
1476     20 i1 00 00 00 03 "<5                                       " 31 i0 i1 "a" i11 i5 00 00 00 00 58 58 58 00 00 00 00 "<5                                       " 00
1477     80 i1 00 00 00 01 58 F40.0(12)
1478     i8 00 00 00 00 01 31 i0 i1 "a" i11: (i5: (i0 58) 58 58) F40.0(5)
1479     i104 00 00 00 00 03 "<5                                       " 31 i0 i1 "a" i11: (i5: ("" 58) 58 58) 00 00 00 00 
1480 "<5                                       " 00 i200 00 00 00 00 03 
1481 "<5                                       " i49 00 i1 
1482 "a" i11 i5 00 00 00 00 58 58 58 00 00 00 00 
1483 "<5                                       " 00 28 i1 00 00 00 03 
1484 "<5                                       " i49 00 i1 
1485 "a" i11 i5 00 00 00 00 58 58 58 00 00 00 00 
1486 "<5                                       " 00 88 i1 00 00 00 01 58 F40.0(15)
1487 i16 00 00 00 00 03 
1488 "<5                                       " i49 00 i1 
1489 "a" i11 i5 00 00 00 00 58 58 58 00 00 00 00 
1490 "<5                                       " 00 i112 00 00 00 00 03 
1491 "<5                                       " i49 00 i1 
1492 "a" i11 i5 00 00 00 00 58 58 58 00 00 00 00 
1493 "<5                                       " 00 i208 00 00 00 00 03 
1494 "<5                                       " i49 00 i1 
1495 "a" i11 i5 00 00 00 00 58 58 58 00 00 00 00 
1496 "<5                                       " 00 30 i1 00 00 00 03 
1497 "<5                                       " i49 00 i1 
1498 "a" i11 i5 00 00 00 00 58 58 58 00 00 00 00 
1499 "<5                                       " 00 90 i1 00 00 00 01 58 F40.0(12)
1500 i24 00 00 00 00 01 i49 00 i1 
1501
1502 web/c6b0660f7afccdb067f766a44ded21ab/00000000038_lightTableData.bin (Rotated Factor Matrix):
1503
1504     i315 i0 03 " " 58 "" "" 00
1505     i1 i0 03 " " 58 "" "" 00
1506     i6 i0 03 
1507     " " 58 00 00 00 00 
1508     " " 00 i11 00 00 00 00 03 
1509     " " 58 00 00 00 00 
1510
1511 web/f748b5e575e0a0c2e55698c3b18d272e/00000000134_lightTableData.bin (Report):
1512
1513     i226 00 00 00 00 02 58 F40.0(sysmis) "V4" 00 00 00 00 02
1514     i241 00 00 00 00 02 58 F40.0(342345) "V4" 00 00 00 00 02
1515     00 i1 00 00 00 02 58 F40.0(sysmis) "V4" 00 00 00 00 02
1516     0f i1 00 00 00 02 58 F40.0(sysmis) "V4" 00 00 00 00 02
1517     1e i1 00 00 00 02 58 F40.0(522773) "V4" 00 00 00 00 02
1518     2d i1 00 00 00 02 58 F40.0(sysmis) "V4" 00 00 00 00 02
1519
1520 web/f748b5e575e0a0c2e55698c3b18d272e/00000000134_lightTableData.bin (Report):
1521
1522     i497 i0 04 58 00 19 i1 00 00 "V5" 02 "% of total particles"
1523     i512 04 58 00 19 i1 00 00 "V5" 02 "322."
1524     0f i2 00 00 00 04 58 00 19 i1 00 00 "V5" 02 "% of total mass"
1525     1e i2 00 00 00 04 58 00 19 i1 00 00 "V5" 02 "% of total particles"
1526     2d i2 00 00 00 04 58 00 19 i1 00 00 "V5" 02 "581."
1527
1528 germano/Crosstabs/00000000014_lightTableData.bin (Crosstabulation):
1529
1530     i0 i2 i1 i2 i0
1531
1532     i1
1533
1534     i432 i0 i0 03 "<5                                       "
1535         31 i0 i1 "a" i11 i5 00 00 00 00 58 58 58 00 00 00 00 
1536         "<5                                       " 00
1537     i96 00 00 00 00 03 "<5                                       "
1538         i49 00 i1 "a" i11 i5 00 00 00 00 58 58 58 00 00 00 00 
1539         "<5                                       " 00
1540     i192 00 00 00 00 03 "<5                                       "
1541         i49 00 i1 "a" i11 i5 00 00 00 00 58 58 58 00 00 00 00 
1542         "<5                                       " 00
1543     20 i1 00 00 00 03 "<5                                       "
1544         i49 00 i1 "a" i11 i5 00 00 00 00 58 58 58 00 00 00 00 
1545         "<5                                       " 00
1546     80 i1 00 00 00 01 58 F40.0(12)
1547     i8 00 00 00 00 01 i49 00 i1 "a" i11 i5 00 00 00 00 58 58 58 F40.0(5)
1548
1549 web/1fe57275203d4c8b7eca5bd796738e71/00000000014_lightTableData.bin (Correlation Matrix):
1550
1551     i1 i2 00 00 00 00 00 00 00 00 00 00 00 00 i2 i1 00 00 00 00 i2 i1 10 01 00 00 i17 00 00 00 00 01 58 F40.3(0.043)
1552     i34 00 00 00 00 01 58 F40.3(0.318)
1553     i51 00 00 00 00 01 58 F40.3(0.486)
1554     i68 00 00 00 00 01 58 F40.3(0.226)
1555     i85 00 00 00 00 01 58 F40.3(0.183)
1556     i102 00 00 00 00 01 58 F40.3(0.278)
1557     i119 00 00 00 00 01 58 F40.3(0.275)
1558     i136 00 00 00 00 01 58 F40.3(0.019)
1559
1560 web/f748b5e575e0a0c2e55698c3b18d272e/00000000075_lightTableData.bin (Case Processing Summary):
1561
1562     i5
1563     i0 i0 01 58 F40.0(46)
1564     i1 i0 01 58 F40.0(0)
1565     i2 i0 01 31 i2 00 00 i1 00 00 i6 00 00 00 00 58 58 F40.0(62)
1566     i3 i0 01 58 F40.0(15)
1567     i4 i0 01 58 F40.0(15)
1568
1569 web/76e9b53e9f775fb690a88919ccdbb03c/00000000743_lightWarningData.bin (Warnings):
1570
1571     i0 i0 31 i0 i0 i72: (i66: ("" 31 "Fewer than two groups for depvar ^1 in split [:^1=^2,:]2.") 58 58) "There are fewer than two groups for dependent variable ^1 in split file [%1 = %2:, ^1 = ^2:]2. No statistics are computed." i2
1572         i0
1573             05 58 "soi_tot" 00 00 00 00 02
1574         i2 i0
1575             05 58 "erotica_virgin" 00 00 00 00 i2 00
1576             02 58 F40.1(1.0)
1577
1578     "erotica_virgin" 
1579     "EROTICA VIRGIN" 02 
1580
1581 web/c6b0660f7afccdb067f766a44ded21ab/00000000031_lightNotesData.bin (Notes):
1582
1583     i13 i0 01 58 DTIME13.2(0.156)
1584     i14 i0 01 58 DTIME13.2(0.14)
1585     i15 i0 00 31 i0 i0 i29: (i23: ("" 31 "^1 (^2K) bytes") 58 58 ) "^1 (^2K) bytes" i2
1586         i0 01 58 F40.0(459728)
1587         i0 01 58 03 28 28 00 00 00 00 00 40 0f 7c 40 
1588
1589 web/f748b5e575e0a0c2e55698c3b18d272e/00000000094_lightTableData.bin (Model Description):
1590
1591     i10
1592     i0 i0 00 58 "^1" i1 i0 03 "MOD_2" 58 "" "MOD_2" 00
1593     i1 i0 05 58 "V15" "mass/breath" 02
1594     i2 i0 05 58 "V29" "particles/breath-v2" 02
1595     i3 i0 03 "None" 58 "" "None" 01
1596     i4 00 00 00 00 01 58 F40.0(0)
1597     i5 00 00 00 00 01 58 F40.0(0)
1598     i6 00 00 00 00 03 "No periodicity" 58 "no_help" "No periodicity" 01
1599     i7 00 00 00 00 01 58 F40.0(16)
1600     i8 00 00 00 00 03 "Independence(white noise)" 31 i1 00 00 00 00 00 00 i6 00 00 00 00 58 58 "no_help" "Independence(white noise)" 01
1601     i9 00 00 00 00 03 "All lags" 58 "no_help" "All lags" 01 
1602
1603
1604 web/f748b5e575e0a0c2e55698c3b18d272e/00000000253_lightWarningData.bi (Warnings):
1605
1606     i12
1607
1608     i0 i0 00 58 "There are fewer than two groups for dependent variable ^1 in split file [%1 = %2:, ^1 = ^2:]2. No statistics are computed." 
1609         i2 i0     05 58 "Tot_Part_V1" "Total particles" 02
1610         i2 i0     05 58 "Sitting" "Sitting" 02
1611         i0        02 58 F40.0(50) "Sitting" "" 02
1612
1613     i1 i0 00 58 "There are fewer than two groups for dependent variable ^1 in split file [%1 = %2:, ^1 = ^2:]2. No statistics are computed."
1614         i2 i0 05 58 "Samp_timeV2" "Sampling time-v2" 02
1615         i2 i0 05 58 "Sitting" "Sitting"
1616         i2 00 02 58 F40.0(50) "Sitting" i0 02
1617
1618     i2 i0 00 58 "There are fewer than two groups for dependent variable ^1 in split file [%1 = %2:, ^1 = ^2:]2. No statistics are computed." i2 00 00 00 00 05 58 
1619     "Sampling_time_V1" 
1620     "Sampling time" 02 i2 00 00 00 00 05 58 
1621
1622 smekens/default/00000000011_lightNotesData.bin (Notes):
1623
1624     i15 i0 00 58 "^1 (^2K) bytes" i2
1625         i0 01 58 F40.0(40024)
1626         i0 01 58 03 28 i40 00 00 00 8b 43 40 
1627
1628
1629
1630 Data: tdump21 (germano/Crosstabs.pdf)
1631 -------------
1632
1633 i0 i0 01 58 F40.3(0.084)
1634 i20 i0 01 58 F40.3(0.147)
1635 i40 i0 01 58 F40.3(0.025)
1636 i24 i0 01 58 F40.3(0.061)
1637 i44 i0 01 58 F40.3(0.017)
1638 i8 i0 01 58 F40.3(0.054)
1639 i28 i0 01 58 F40.3(0.069)
1640 i48 i0 01 58 F40.3(0.045)
1641 i12 i0 01 58 F40.3(0.028)
1642 i32 i0 01 58 F40.3(0.026)
1643 i52 i0 01 58 F40.3(0.030)
1644 i36 i0 01 58 F40.3(0.196)
1645 i56 i0 01 58 F40.3(0.077)
1646 -
1647 i1 i0 01 58 F40.3(0.055)
1648 i21 i0 01 58 F40.3(0.077)
1649 i41 i0 01 58 F40.3(0.056)
1650 i25 i0 01 58 F40.3(0.020)
1651 i45 i0 01 58 F40.3(0.010)
1652 i9 i0 01 58 F40.3(0.021)
1653 i29 i0 01 58 F40.3(0.026)
1654 i49 i0 01 58 F40.3(0.017)
1655 i13 i0 01 58 F40.3(0.083)
1656 i33 i0 01 58 F40.3(0.078)
1657 i53 i0 01 58 F40.3(0.090)
1658
1659 i2 i0 01 58 F40.3(1.498)
1660 i22 i0 01 58 F40.3(1.789)
1661 i42 i0 01 58 F40.3(0.448)
1662 i10 i0 01 58 F40.3(2.594)
1663 i30 i0 01 58 F40.3(2.594)
1664 i50 i0 01 58 F40.3(2.594)
1665 i14 i0 01 58 F40.3(0.337)
1666 i34 i0 01 58 F40.3(0.337)
1667 i54 i0 01 58 F40.3(0.337)
1668
1669 i3 i0 01 58 F40.3(0.134)
1670 i23 i0 01 58 F40.3(0.074)
1671 i43 i0 01 58 F40.3(0.654)
1672 with footnote c (2):
1673     i27 i0 01 31 i1 i2 00 00 i11: (i5: ("" 58) 58 58) F40.3(0.955)
1674     i47 i0 01 31 i1 i2 00 00 i11: (i5: ("" 58) 58 58) F40.3(0.975)
1675 with footnote d (3):
1676     i11 i0 01 31 i1 i3 00 00 i11: (i5: ("" 58) 58 58) F40.3(0.939)
1677     i31 i0 01 31 i1 i3 00 00 i11: (i5: ("" 58) 58 58) F40.3(0.939)
1678     i51 i0 01 31 i1 i3 00 00 i11: (i5: ("" 58) 58 58) F40.3(0.939)
1679 i15 i0 01 58 F40.3(0.736)
1680 i35 i0 01 58 F40.3(0.736)
1681 i55 i0 01 58 F40.3(0.736)
1682
1683
1684 Data: tdump9
1685 ------------
1686
1687 0c == font size in points?
1688
1689 i3   i0 01 31 i0 i0 i51: (i5: ("" 58) 31 00 00 00 01 "#000000" "#fbf873" "SansSerif" 0c 58) F40.1(11.0)
1690 ...
1691 i59  i0 01 31 i0 i0 i51: (i5: ("" 58) 31 00 00 00 01 "#000000" "#fbf873" "SansSerif" 0c 58) F40.1(3.3)
1692 ...
1693 i107 i0 01 31 i0 i0 i51: (i5: ("" 58) 31 00 00 00 01 "#000000" "#fbf873" "SansSerif" 0c 58) F40.1(-2.8)
1694 ...
1695 i87  i0 01 31 i0 i0 i51: (i5: ("" 58) 31 00 00 00 01 "#000000" "#fbf873" "SansSerif" 0c 58) F40.1(2.5)
1696 ...
1697 i111 i0 01 31 i0 i0 i51: (i5: ("" 58) 31 00 00 00 01 "#000000" "#fbf873" "SansSerif" 0c 58) F40.1(-3.5)
1698 ...
1699 i67  i0 01 31 i0 i0 i51: (i5: ("" 58) 31 00 00 00 01 "#000000" "#fbf873" "SansSerif" 0c 58) F40.1(-3.5)
1700 ...
1701 i115 i0 01 31 i0 i0 i51: (i5: ("" 58) 31 00 00 00 01 "#000000" "#fbf873" "SansSerif" 0c 58) F40.1(6.9)
1702
1703 Data: tdump19
1704 -------------
1705
1706 40 observations (i40):
1707
1708 i0 i1 i2 i2 00 00 00 00 i1 i40 
1709 i0 00 00 00 00 01 58 F40.0(100)
1710 i4 00 00 00 00 01 58 F40.1(16.0)
1711 i8 00 00 00 00 01 58 F40.1(64.0)
1712 i12 00 00 00 00 01 58 F40.1(80.0)
1713 i16 00 00 00 00 01 58 F40.1(7227.0)
1714 i20 00 00 00 00 01 58 F40.3(72.270)
1715 i60 00 00 00 00 01 58 F40.4(0.3216)
1716 i24 00 00 00 00 01 58 F40.4(3.2157)
1717 i28 00 00 00 00 01 58 F40.3(10.341)
1718 i32 00 00 00 00 01 58 F40.3(-0.032)
1719 i72 00 00 00 00 01 58 F40.3(0.241)
1720 i36 00 00 00 00 01 58 F40.3(-0.235)
1721 i76 00 00 00 00 01 58 F40.3(0.478)
1722 i1 00 00 00 00 01 58 F40.0(100)
1723 i5 00 00 00 00 01 58 F40.1(25.0)
1724 i9 00 00 00 00 01 58 F40.1(62.0)
1725 i13 00 00 00 00 01 58 F40.1(87.0)
1726 i17 00 00 00 00 01 58 F40.1(7385.0)
1727 i21 00 00 00 00 01 58 F40.3(73.850)
1728 i61 00 00 00 00 01 58 F40.4(0.5131)
1729 i25 00 00 00 00 01 58 F40.4(5.1314)
1730 i29 00 00 00 00 01 58 F40.3(26.331)
1731 i33 00 00 00 00 01 58 F40.3(0.055)
1732 i73 00 00 00 00 01 58 F40.3(0.241)
1733 i37 00 00 00 00 01 58 F40.3(-0.213)
1734 i77 00 00 00 00 01 58 F40.3(0.478)
1735 i2 00 00 00 00 01 58 F40.0(100)
1736 i6 00 00 00 00 01 58 F40.1(22.0)
1737 i10 00 00 00 00 01 58 F40.1(64.0)
1738 i14 00 00 00 00 01 58 F40.1(86.0)
1739 i18 00 00 00 00 01 58 F40.1(7280.0)
1740 i22 00 00 00 00 01 58 F40.3(72.800)
1741 i62 00 00 00 00 01 58 F40.4(0.4740)
1742 i26 00 00 00 00 01 58 F40.4(4.7397)
1743 i30 00 00 00 00 01 58 F40.3(22.465)
1744 i34 00 00 00 00 01 58 F40.3(0.223)
1745 i74 00 00 00 00 01 58 F40.3(0.241)
1746 i38 00 00 00 00 01 58 F40.3(-0.099)
1747 i78 00 00 00 00 01 58 F40.3(0.478)
1748 i3 00 00 00 00 01 58 F40.0(100)
1749
1750
1751 Data: tdump27
1752 -------------
1753
1754 21 observations (i21):
1755 01 00 00 00 i1 00 00 00 00 00 00 00 00 i1 i21
1756 i0 00 00 00 00 01 58 F40.0(100)
1757 i1 00 00 00 00 01 58 F40.0(0)
1758 i2 00 00 00 00 01 58 F40.2(3.31)
1759 i3 00 00 00 00 01 58 F40.3(0.244)
1760 i4 00 00 00 00 01 58 F40.2(3.00)
1761 i5 00 00 00 00 01 58 F40.0(4)
1762 i6 00 00 00 00 01 58 F40.3(2.444)
1763 i7 00 00 00 00 01 58 F40.3(5.974)
1764 i8 00 00 00 00 01 58 F40.3(0.796)
1765 i9 00 00 00 00 01 58 F40.3(0.241)
1766 i10 00 00 00 00 01 58 F40.3(0.451)
1767 i11 00 00 00 00 01 58 F40.3(0.478)
1768 i12 00 00 00 00 01 58 F40.0(10)
1769 i13 00 00 00 00 01 58 F40.0(0)
1770 i14 00 00 00 00 01 58 F40.0(10)
1771 i15 00 00 00 00 01 58 F40.0(331)
1772 i16 00 00 00 00 01 58 F40.2(0.00)
1773 i17 00 00 00 00 01 58 F40.2(1.00)
1774 i18 00 00 00 00 01 58 F40.2(3.00)
1775 i19 00 00 00 00 01 58 F40.2(4.00)
1776 i20 00 00 00 00 01 58 F40.2(7.00)
1777
1778 Data: tdump24 (germano/Crosstabs.pdf)
1779 -------------
1780
1781 432 observations (i432):
1782 i0 i2 i1 i2 i0 i432
1783 i0 i0 00 00 03 "<5" 31 i0 i1 "a" i11: (i5: ("" 58) 58 58) 00 00 00 00 "<5" 00
1784 i96 i0 03 "<5" 31 i0 i1 "a" i11: (i5: ("" 58) 58 58) 00 00 00 00 "<5" 00
1785 i192 00 00 00 00 03 "<5" 31 00 00 00 00 i1 "a" i11 i5 00 00 00 00 58 58 58 00 00 00 00 "<5" 00
1786 i288 i0 03 "<5" 31 00 00 00 00 i1 "a" i11 i5 00 00 00 00 58 58 58 00 00 00 00 "<5" 00
1787 i384 i0 01 58 F40.0(12)
1788 i8 i0 01 ((31 i0 i1 "a" i11 i5 i0 58 58)) 58 F40.0(5)
1789 i104 00 00 00 00 03 
1790 "<5" 31 00 00 00 00 i1 
1791 "a" i11 i5 00 00 00 00 58 58 58 00 00 00 00 
1792 "<5" 00 i200 00 00 00 00 03 
1793 "<5" 31 00 00 00 00 i1 
1794 "a" i11 i5 00 00 00 00 58 58 58 00 00 00 00 
1795 "<5" 00 28 i1 00 00 00 03 
1796 "<5" 31 00 00 00 00 i1 
1797 "a" i11 i5 00 00 00 00 58 58 58 00 00 00 00 
1798 "<5" 00 88 i1 00 00 00 01 58 F40.0(15)
1799 i16 00 00 00 00 03 
1800 "<5" 31 00 00 00 00 i1 
1801 "a" i11 i5 00 00 00 00 58 58 58 00 00 00 00 
1802 "<5" 00 i112 00 00 00 00 03 
1803 "<5" 31 00 00 00 00 i1 
1804 "a" i11 i5 00 00 00 00 58 58 58 00 00 00 00 
1805 "<5" 00 i208 00 00 00 00 03 
1806 "<5" 31 00 00 00 00 i1 
1807 "a" i11 i5 00 00 00 00 58 58 58 00 00 00 00 
1808 "<5" 00 30 i1 00 00 00 03 
1809 "<5" 31 00 00 00 00 i1 
1810 "a" i11 i5 00 00 00 00 58 58 58 00 00 00 00 
1811 "<5" 00
1812 i400 i0 01 58 F40.0(12)
1813 i24 00 00 00 00 01 31 00 00 00 00 i1 
1814 "a" i11 i5 00 00 00 00 58 58 58 F40.0(5)
1815 i120 00 00 00 00 03 
1816 "<5" 31 00 00 00 00 i1 
1817 "a" i11 i5 00 00 00 00 58 58 58 00 00 00 00 
1818 "<5" 00 i216 00 00 00 00 01 31 00 00 00 00 i1 
1819 "a" i11 i5 00 00 00 00 58 58 58 F40.0(6)
1820 38 i1 00 00 00 03 
1821 "<5" 31 00 00 00 00 i1 
1822 "a" i11 i5 00 00 00 00 58 58 58 00 00 00 00 
1823 "<5" 00 98 i1 00 00 00 01 58 F40.0(16)
1824 i32 00 00 00 00 03 
1825 "<5" 31 00 00 00 00 i1 
1826 "a" i11 i5 00 00 00 00 58 58 58 00 00 00 00 
1827 "<5" 00 i128 00 00 00 00 01 31 00 00 00 00 i1 
1828 "a" i11 i5 00 00 00 00 58 58 58 F40.0(7)
1829 i224 00 00 00 00 01 31 00 00 00 00 i1 
1830 "a" i11 i5 00 00 00 00 58 58 58 F40.0(6)
1831 40 i1 00 00 00 01 31 00 00 00 00 i1 
1832 "a" i11 i5 00 00 00 00 58 58 58 F40.0(5)
1833 a0 i1 00 00 00 01 58 F40.0(21)
1834 i40 00 00 00 00 03 
1835 "<5" 31 00 00 00 00 i1 
1836 "a" i11 i5 00 00 00 00 58 58 58 00 00 00 00 
1837 "<5" 00 i136 00 00 00 00 01 31 00 00 00 00 i1 
1838 "a" i11 i5 00 00 00 00 58 58 58 F40.0(5)
1839 i232 00 00 00 00 03 
1840 "<5" 31 00 00 00 00 i1 
1841 "a" i11 i5 00 00 00 00 58 58 58 00 00 00 00 
1842 "<5" 00 48 i1 00 00 00 03 
1843 "<5" 31 00 00 00 00 i1 
1844 "a" i11 i5 00 00 00 00 58 58 58 00 00 00 00 
1845 "<5" 00 a8 i1 00 00 00 01 58 F40.0(11)
1846 i48 00 00 00 00 03 
1847 "<5" 31 00 00 00 00 i1 
1848 "a" i11 i5 00 00 00 00 58 58 58 00 00 00 00 
1849 "<5" 00 i144 00 00 00 00 03 
1850 "<5" 31 00 00 00 00 i1 
1851 "a" i11 i5 00 00 00 00 58 58 58 00 00 00 00 
1852 "<5" 00 i240 00 00 00 00 03 
1853 "<5" 31 00 00 00 00 i1 
1854 "a" i11 i5 00 00 00 00 58 58 58 00 00 00 00 
1855 "<5" 00 50 i1 00 00 00 03 
1856 "<5" 31 00 00 00 00 i1 
1857 "a" i11 i5 00 00 00 00 58 58 58 00 00 00 00 
1858 "<5" 00 b0 i1 00 00 00 03 
1859 "<5" 58 00 00 00 00 
1860 "<5" 00 i56 00 00 00 00 03 
1861 "<5" 31 00 00 00 00 i1 
1862 "a" i11 i5 00 00 00 00 58 58 58 00 00 00 00 
1863 "<5" 00 i152 00 00 00 00 03 
1864 "<5" 31 00 00 00 00 i1 
1865 "a" i11 i5 00 00 00 00 58 58 58 00 00 00 00 
1866 "<5" 00 i248 00 00 00 00 03 
1867 "<5" 31 00 00 00 00 i1 
1868 "a" i11 i5 00 00 00 00 58 58 58 00 00 00 00 
1869 "<5" 00 58 i1 00 00 00 03 
1870 "<5" 31 00 00 00 00 i1 
1871 "a" i11 i5 00 00 00 00 58 58 58 00 00 00 00 
1872 "<5" 00 b8 i1 00 00 00 03 
1873 "<5" 58 00 00 00 00 
1874 "<5" 00 i64 00 00 00 00 03 
1875 "<5" 31 00 00 00 00 i1 
1876 "a" i11 i5 00 00 00 00 58 58 58 00 00 00 00 
1877 "<5" 00 i160 00 00 00 00 03 
1878 "<5" 31 00 00 00 00 i1 
1879 "a" i11 i5 00 00 00 00 58 58 58 00 00 00 00 
1880 "<5" 00 00 i1 00 00 00 03 
1881 "<5" 31 00 00 00 00 i1 
1882 "a" i11 i5 00 00 00 00 58 58 58 00 00 00 00 
1883 "<5" 00 60 i1 00 00 00 03 
1884 "<5" 31 00 00 00 00 i1 
1885 "a" i11 i5 00 00 00 00 58 58 58 00 00 00 00 
1886 "<5" 00 c0 i1 00 00 00 03 
1887 "<5" 58 00 00 00 00 
1888 "<5" 00 i72 00 00 00 00 03 
1889 "<5" 31 00 00 00 00 i1 
1890 "a" i11 i5 00 00 00 00 58 58 58 00 00 00 00 
1891 "<5" 00 i168 00 00 00 00 03 
1892 "<5" 31 00 00 00 00 i1 
1893 "a" i11 i5 00 00 00 00 58 58 58 00 00 00 00 
1894 "<5" 00 08 i1 00 00 00 03 
1895 "<5" 31 00 00 00 00 i1 
1896 "a" i11 i5 00 00 00 00 58 58 58 00 00 00 00 
1897 "<5" 00 68 i1 00 00 00 03 
1898 "<5" 31 00 00 00 00 i1 
1899 "a" i11 i5 00 00 00 00 58 58 58 00 00 00 00 
1900 "<5" 00 c8 i1 00 00 00 03 
1901 "<5" 58 00 00 00 00 
1902 "<5" 00 i80 00 00 00 00 03 
1903 "<5" 31 00 00 00 00 i1 
1904 "a" i11 i5 00 00 00 00 58 58 58 00 00 00 00 
1905 "<5" 00 i176 00 00 00 00 03 
1906 "<5" 31 00 00 00 00 i1 
1907 "a" i11 i5 00 00 00 00 58 58 58 00 00 00 00 
1908 "<5" 00 10 i1 00 00 00 03 
1909 "<5" 31 00 00 00 00 i1 
1910 "a" i11 i5 00 00 00 00 58 58 58 00 00 00 00 
1911 "<5" 00 70 i1 00 00 00 03 
1912 "<5" 31 00 00 00 00 i1 
1913 "a" i11 i5 00 00 00 00 58 58 58 00 00 00 00 
1914 "<5" 00 d0 i1 00 00 00 03 
1915 "<5" 58 00 00 00 00 
1916 "<5" 00
1917 i88 00 00 00 00 01 58 F40.0(25)
1918 i184 00 00 00 00 01 58 F40.0(25)
1919 18 i1 00 00 00 01 58 F40.0(25)
1920 78 i1 00 00 00 01 58 F40.0(25)
1921 d8 i1 00 00 00 01 58 F40.0(100)
1922 i1 00 00 00 00 01 58 F40.1(3.0)
1923 i97 00 00 00 00 01 58 F40.1(3.0)
1924 i193 00 00 00 00 01 58 F40.1(3.0)
1925 i277 00 00 00 00 01 58 F40.1(3.0)
1926 81 i1 00 00 00 01 58 F40.1(12.0)
1927 i9 00 00 00 00 01 58 F40.1(3.8)
1928 i105 00 00 00 00 01 58 F40.1(3.8)
1929 i201 00 00 00 00 01 58 F40.1(3.8)
1930 29 i1 00 00 00 01 58 F40.1(3.8)
1931 89 i1 00 00 00 01 58 F40.1(15.0)
1932 i17 00 00 00 00 01 58 F40.1(3.0)
1933 i113 00 00 00 00 01 58 F40.1(3.0)
1934 i209 00 00 00 00 01 58 F40.1(3.0)
1935 31 i1 00 00 00 01 58 F40.1(3.0)
1936 91 i1 00 00 00 01 58 F40.1(12.0)
1937 i25 00 00 00 00 01 58 F40.1(4.0)
1938 i121 00 00 00 00 01 58 F40.1(4.0)
1939 i217 00 00 00 00 01 58 F40.1(4.0)
1940 39 i1 00 00 00 01 58 F40.1(4.0)
1941 99 i1 00 00 00 01 58 F40.1(16.0)
1942 i33 00 00 00 00 01 58 F40.1(5.2)
1943 i129 00 00 00 00 01 58 F40.1(5.2)
1944 i225 00 00 00 00 01 58 F40.1(5.2)
1945 41 i1 00 00 00 01 58 F40.1(5.2)
1946 a1 i1 00 00 00 01 58 F40.1(21.0)
1947 i41 00 00 00 00 01 58 F40.1(2.8)
1948 i137 00 00 00 00 01 58 F40.1(2.8)
1949 i233 00 00 00 00 01 58 F40.1(2.8)
1950 49 i1 00 00 00 01 58 F40.1(2.8)
1951 a9 i1 00 00 00 01 58 F40.1(11.0)
1952 31 00 00 00 00 00 00 00 03 
1953 "n<5" 58 00 00 00 00 
1954 "n<5" 00 i145 00 00 00 00 03 
1955 "n<5" 58 00 00 00 00 
1956 "n<5" 00 i241 00 00 00 00 03 
1957 "n<5" 58 00 00 00 00 
1958 "n<5" 00 51 i1 00 00 00 03 
1959 "n<5" 58 00 00 00 00 
1960 "n<5" 00 b1 i1 00 00 00 03 
1961 "<5" 58 00 00 00 00 
1962 "<5" 00 i57 00 00 00 00 03 
1963 "n<5" 58 00 00 00 00 
1964 "n<5" 00 i153 00 00 00 00 03 
1965 "n<5" 58 00 00 00 00 
1966 "n<5" 00 i249 00 00 00 00 03 
1967 "n<5" 58 00 00 00 00 
1968 "n<5" 00 59 i1 00 00 00 03 
1969 "n<5" 58 00 00 00 00 
1970 "n<5" 00 b9 i1 00 00 00 03 
1971 "<5" 58 00 00 00 00 
1972 "<5" 00 i65 00 00 00 00 03 
1973 "n<5" 58 00 00 00 00 
1974 "n<5" 00 i161 00 00 00 00 03 
1975 "n<5" 58 00 00 00 00 
1976 "n<5" 00 01 i1 00 00 00 03 
1977 "n<5" 58 00 00 00 00 
1978 "n<5" 00 61 i1 00 00 00 03 
1979 "n<5" 58 00 00 00 00 
1980 "n<5" 00 c1 i1 00 00 00 03 
1981 "<5" 58 00 00 00 00 
1982 "<5" 00 i73 00 00 00 00 03 
1983 "n<5" 58 00 00 00 00 
1984 "n<5" 00 i169 00 00 00 00 03 
1985 "n<5" 58 00 00 00 00 
1986 "n<5" 00 09 i1 00 00 00 03 
1987 "n<5" 58 00 00 00 00 
1988 "n<5" 00 69 i1 00 00 00 03 
1989 "n<5" 58 00 00 00 00 
1990 "n<5" 00 c9 i1 00 00 00 03 
1991 "<5" 58 00 00 00 00 
1992 "<5" 00 i81 00 00 00 00 03 
1993 "n<5" 58 00 00 00 00 
1994 "n<5" 00 i177 00 00 00 00 03 
1995 "n<5" 58 00 00 00 00 
1996 "n<5" 00 11 i1 00 00 00 03 
1997 "n<5" 58 00 00 00 00 
1998 "n<5" 00 71 i1 00 00 00 03 
1999 "n<5" 58 00 00 00 00 
2000 "n<5" 00 d1 i1 00 00 00 03 
2001 "<5" 58 00 00 00 00 
2002 "<5" 00 i89 00 00 00 00 01 58 F40.1(25.0)
2003 i185 00 00 00 00 01 58 F40.1(25.0)
2004 19 i1 00 00 00 01 58 F40.1(25.0)
2005 79 i1 00 00 00 01 58 F40.1(25.0)
2006 d9 i1 00 00 00 01 58 F40.1(100.0)
2007 i2 00 00 00 00 03 
2008 "n<5" 58 00 00 00 00 
2009 "n<5" 00 i98 00 00 00 00 03 
2010 "n<5" 58 00 00 00 00 
2011 "n<5" 00 i194 00 00 00 00 03 
2012 "n<5" 58 00 00 00 00 
2013 "n<5" 00 22 i1 00 00 00 03 
2014 "n<5" 58 00 00 00 00 
2015 "n<5" 00
2016 82 i1 00 00 00 01 58 PCT40.1(12.0)
2017 i10 00 00 00 00 01 58 PCT40.1(20.0)
2018 i106 00 00 00 00 03 
2019 "n<5" 58 00 00 00 00 
2020 "n<5" 00 i202 00 00 00 00 03 
2021 "n<5" 58 00 00 00 00 
2022 "n<5" 00 2a i1 00 00 00 03 
2023 "n<5" 58 00 00 00 00 
2024 "n<5" 00 8a i1 00 00 00 01 58 PCT40.1(15.0)
2025 i18 00 00 00 00 03 
2026 "n<5" 58 00 00 00 00 
2027 "n<5" 00 i114 00 00 00 00 03 
2028 "n<5" 58 00 00 00 00 
2029 "n<5" 00 i210 00 00 00 00 03 
2030 "n<5" 58 00 00 00 00 
2031 "n<5" 00 32 i1 00 00 00 03 
2032 "n<5" 58 00 00 00 00 
2033 "n<5" 00 92 i1 00 00 00 01 58 PCT40.1(12.0)
2034 i26 00 00 00 00 01 58 PCT40.1(20.0)
2035 i122 00 00 00 00 03 
2036 "n<5" 58 00 00 00 00 
2037 "n<5" 00 i218 00 00 00 00 01 58 PCT40.1(24.0)
2038 3a i1 00 00 00 03 
2039 "n<5" 58 00 00 00 00 
2040 "n<5" 00 9a i1 00 00 00 01 58 PCT40.1(16.0)
2041 i34 00 00 00 00 03 
2042 "n<5" 58 00 00 00 00 
2043 "n<5" 00 i130 00 00 00 00 01 58 PCT40.1(28.0)
2044 i226 00 00 00 00 01 58 PCT40.1(24.0)
2045 42 i1 00 00 00 01 58 PCT40.1(20.0)
2046 a2 i1 00 00 00 01 58 PCT40.1(21.0)
2047 i42 00 00 00 00 03 
2048 "n<5" 58 00 00 00 00 
2049 "n<5" 00 i138 00 00 00 00 01 58 PCT40.1(20.0)
2050 i234 00 00 00 00 03 
2051 "n<5" 58 00 00 00 00 
2052 "n<5" 00 4a i1 00 00 00 03 
2053 "n<5" 58 00 00 00 00 
2054 "n<5" 00 aa i1 00 00 00 01 58 PCT40.1(11.0)
2055 i50 00 00 00 00 03 
2056 "n<5" 58 00 00 00 00 
2057 "n<5" 00 i146 00 00 00 00 03 
2058 "n<5" 58 00 00 00 00 
2059 "n<5" 00 i242 00 00 00 00 03 
2060 "n<5" 58 00 00 00 00 
2061 "n<5" 00 52 i1 00 00 00 03 
2062 "n<5" 58 00 00 00 00 
2063 "n<5" 00 b2 i1 00 00 00 03 
2064 "n<5" 58 00 00 00 00 
2065 "n<5" 00 i58 00 00 00 00 03 
2066 "n<5" 58 00 00 00 00 
2067 "n<5" 00 i154 00 00 00 00 03 
2068 "n<5" 58 00 00 00 00 
2069 "n<5" 00 i250 00 00 00 00 03 
2070 "n<5" 58 00 00 00 00 
2071 "n<5" 00 5a i1 00 00 00 03 
2072 "n<5" 58 00 00 00 00 
2073 "n<5" 00 ba i1 00 00 00 03 
2074 "n<5" 58 00 00 00 00 
2075 "n<5" 00 i66 00 00 00 00 03 
2076 "n<5" 58 00 00 00 00 
2077 "n<5" 00 i162 00 00 00 00 03 
2078 "n<5" 58 00 00 00 00 
2079 "n<5" 00 02 i1 00 00 00 03 
2080 "n<5" 58 00 00 00 00 
2081 "n<5" 00 62 i1 00 00 00 03 
2082 "n<5" 58 00 00 00 00 
2083 "n<5" 00 c2 i1 00 00 00 03 
2084 "n<5" 58 00 00 00 00 
2085 "n<5" 00 i74 00 00 00 00 03 
2086 "n<5" 58 00 00 00 00 
2087 "n<5" 00 i170 00 00 00 00 03 
2088 "n<5" 58 00 00 00 00 
2089 "n<5" 00 0a i1 00 00 00 03 
2090 "n<5" 58 00 00 00 00 
2091 "n<5" 00 6a i1 00 00 00 03 
2092 "n<5" 58 00 00 00 00 
2093 "n<5" 00 ca i1 00 00 00 03 
2094 "n<5" 58 00 00 00 00 
2095 "n<5" 00 i82 00 00 00 00 03 
2096 "n<5" 58 00 00 00 00 
2097 "n<5" 00 i178 00 00 00 00 03 
2098 "n<5" 58 00 00 00 00 
2099 "n<5" 00 12 i1 00 00 00 03 
2100 "n<5" 58 00 00 00 00 
2101 "n<5" 00 72 i1 00 00 00 03 
2102 "n<5" 58 00 00 00 00 
2103 "n<5" 00 d2 i1 00 00 00 03 
2104 "n<5" 58 00 00 00 00 
2105 "n<5" 00 i90 00 00 00 00 01 58 PCT40.1(100.0)
2106 i186 00 00 00 00 01 58 PCT40.1(100.0)
2107 1a i1 00 00 00 01 58 PCT40.1(100.0)
2108 7a i1 00 00 00 01 58 PCT40.1(100.0)
2109 da i1 00 00 00 01 58 PCT40.1(100.0)
2110 i3 00 00 00 00 03 
2111 "n<5" 58 00 00 00 00 
2112 "n<5" 00 i99 00 00 00 00 03 
2113 "n<5" 58 00 00 00 00 
2114 "n<5" 00 i195 00 00 00 00 03 
2115 "n<5" 58 00 00 00 00 
2116 "n<5" 00 23 i1 00 00 00 03 
2117 "n<5" 58 00 00 00 00 
2118 "n<5" 00 83 i1 00 00 00 01 58 PCT40.1(100.0)
2119 i11 00 00 00 00 01 58 PCT40.1(33.3)
2120 i107 00 00 00 00 03 
2121 "n<5" 58 00 00 00 00 
2122 "n<5" 00 i203 00 00 00 00 03 
2123 "n<5" 58 00 00 00 00 
2124 "n<5" 00 2b i1 00 00 00 03 
2125 "n<5" 58 00 00 00 00 
2126 "n<5" 00 8b i1 00 00 00 01 58 PCT40.1(100.0)
2127 i19 00 00 00 00 03 
2128 "n<5" 58 00 00 00 00 
2129 "n<5" 00 i115 00 00 00 00 03 
2130 "n<5" 58 00 00 00 00 
2131 "n<5" 00 i211 00 00 00 00 03 
2132 "n<5" 58 00 00 00 00 
2133 "n<5" 00 33 i1 00 00 00 03 
2134 "n<5" 58 00 00 00 00 
2135 "n<5" 00 93 i1 00 00 00 01 58 PCT40.1(100.0)
2136 i27 00 00 00 00 01 58 PCT40.1(31.2)
2137 i123 00 00 00 00 03 
2138 "n<5" 58 00 00 00 00 
2139 "n<5" 00 i219 00 00 00 00 01 58 PCT40.1(37.5)
2140 3b i1 00 00 00 03 
2141 "n<5" 58 00 00 00 00 
2142 "n<5" 00 9b i1 00 00 00 01 58 PCT40.1(100.0)
2143 i35 00 00 00 00 03 
2144 "n<5" 58 00 00 00 00 
2145 "n<5" 00 i131 00 00 00 00 01 58 PCT40.1(33.3)
2146 i227 00 00 00 00 01 58 PCT40.1(28.6)
2147 43 i1 00 00 00 01 58 PCT40.1(23.8)
2148 a3 i1 00 00 00 01 58 PCT40.1(100.0)
2149 i43 00 00 00 00 03 
2150 "n<5" 58 00 00 00 00 
2151 "n<5" 00 i139 00 00 00 00 01 58 PCT40.1(45.5)
2152 i235 00 00 00 00 03 
2153 "n<5" 58 00 00 00 00 
2154 "n<5" 00 4b i1 00 00 00 03 
2155 "n<5" 58 00 00 00 00 
2156 "n<5" 00 ab i1 00 00 00 01 58 PCT40.1(100.0)
2157 i51 00 00 00 00 03 
2158 "n<5" 58 00 00 00 00 
2159 "n<5" 00 i147 00 00 00 00 03 
2160 "n<5" 58 00 00 00 00 
2161 "n<5" 00 i243 00 00 00 00 03 
2162 "n<5" 58 00 00 00 00 
2163 "n<5" 00 53 i1 00 00 00 03 
2164 "n<5" 58 00 00 00 00 
2165 "n<5" 00 b3 i1 00 00 00 01 58 PCT40.1(100.0)
2166 i59 00 00 00 00 03 
2167 "n<5" 58 00 00 00 00 
2168 "n<5" 00 i155 00 00 00 00 03 
2169 "n<5" 58 00 00 00 00 
2170 "n<5" 00 i251 00 00 00 00 03 
2171 "n<5" 58 00 00 00 00 
2172 "n<5" 00 5b i1 00 00 00 03 
2173 "n<5" 58 00 00 00 00 
2174 "n<5" 00 bb i1 00 00 00 01 58 PCT40.1(100.0)
2175 i67 00 00 00 00 03 
2176 "n<5" 58 00 00 00 00 
2177 "n<5" 00 i163 00 00 00 00 03 
2178 "n<5" 58 00 00 00 00 
2179 "n<5" 00 03 i1 00 00 00 03 
2180 "n<5" 58 00 00 00 00 
2181 "n<5" 00 63 i1 00 00 00 03 
2182 "n<5" 58 00 00 00 00 
2183 "n<5" 00 c3 i1 00 00 00 01 58 PCT40.1(100.0)
2184 i75 00 00 00 00 03 
2185 "n<5" 58 00 00 00 00 
2186 "n<5" 00 i171 00 00 00 00 03 
2187 "n<5" 58 00 00 00 00 
2188 "n<5" 00 0b i1 00 00 00 03 
2189 "n<5" 58 00 00 00 00 
2190 "n<5" 00 6b i1 00 00 00 03 
2191 "n<5" 58 00 00 00 00 
2192 "n<5" 00 cb i1 00 00 00 01 58 PCT40.1(100.0)
2193 i83 00 00 00 00 03 
2194 "n<5" 58 00 00 00 00 
2195 "n<5" 00 i179 00 00 00 00 03 
2196 "n<5" 58 00 00 00 00 
2197 "n<5" 00 13 i1 00 00 00 03 
2198 "n<5" 58 00 00 00 00 
2199 "n<5" 00 73 i1 00 00 00 03 
2200 "n<5" 58 00 00 00 00 
2201 "n<5" 00 d3 i1 00 00 00 01 58 PCT40.1(100.0)
2202 i91 00 00 00 00 01 58 PCT40.1(25.0)
2203 i187 00 00 00 00 01 58 PCT40.1(25.0)
2204 1b i1 00 00 00 01 58 PCT40.1(25.0)
2205 7b i1 00 00 00 01 58 PCT40.1(25.0)
2206 db i1 00 00 00 01 58 PCT40.1(100.0)
2207 i4 00 00 00 00 03 
2208 "n<5" 58 00 00 00 00 
2209 "n<5" 00 i100 00 00 00 00 03 
2210 "n<5" 58 00 00 00 00 
2211 "n<5" 00 i196 00 00 00 00 03 
2212 "n<5" 58 00 00 00 00 
2213 "n<5" 00 24 i1 00 00 00 03 
2214 "n<5" 58 00 00 00 00 
2215 "n<5" 00 84 i1 00 00 00 01 58 PCT40.1(12.0)
2216 i12 00 00 00 00 01 58 PCT40.1(5.0)
2217 i108 00 00 00 00 03 
2218 "n<5" 58 00 00 00 00 
2219 "n<5" 00 i204 00 00 00 00 03 
2220 "n<5" 58 00 00 00 00 
2221 "n<5" 00 2c i1 00 00 00 03 
2222 "n<5" 58 00 00 00 00 
2223 "n<5" 00 8c i1 00 00 00 01 58 PCT40.1(15.0)
2224 i20 00 00 00 00 03 
2225 "n<5" 58 00 00 00 00 
2226 "n<5" 00 i116 00 00 00 00 03 
2227 "n<5" 58 00 00 00 00 
2228 "n<5" 00 i212 00 00 00 00 03 
2229 "n<5" 58 00 00 00 00 
2230 "n<5" 00 34 i1 00 00 00 03 
2231 "n<5" 58 00 00 00 00 
2232 "n<5" 00 94 i1 00 00 00 01 58 PCT40.1(12.0)
2233 i28 00 00 00 00 01 58 PCT40.1(5.0)
2234 i124 00 00 00 00 03 
2235 "n<5" 58 00 00 00 00 
2236 "n<5" 00 i220 00 00 00 00 01 58 PCT40.1(6.0)
2237 3c i1 00 00 00 03 
2238 "n<5" 58 00 00 00 00 
2239 "n<5" 00 9c i1 00 00 00 01 58 PCT40.1(16.0)
2240 i36 00 00 00 00 03 
2241 "n<5" 58 00 00 00 00 
2242 "n<5" 00 i132 00 00 00 00 01 58 PCT40.1(7.0)
2243 i228 00 00 00 00 01 58 PCT40.1(6.0)
2244 44 i1 00 00 00 01 58 PCT40.1(5.0)
2245 a4 i1 00 00 00 01 58 PCT40.1(21.0)
2246 i44 00 00 00 00 03 
2247 "n<5" 58 00 00 00 00 
2248 "n<5" 00 i140 00 00 00 00 01 58 PCT40.1(5.0)
2249 i236 00 00 00 00 03 
2250 "n<5" 58 00 00 00 00 
2251 "n<5" 00 4c i1 00 00 00 03 
2252 "n<5" 58 00 00 00 00 
2253 "n<5" 00 ac i1 00 00 00 01 58 PCT40.1(11.0)
2254 i52 00 00 00 00 03 
2255 "n<5" 58 00 00 00 00 
2256 "n<5" 00 i148 00 00 00 00 03 
2257 "n<5" 58 00 00 00 00 
2258 "n<5" 00 i244 00 00 00 00 03 
2259 "n<5" 58 00 00 00 00 
2260 "n<5" 00 54 i1 00 00 00 03 
2261 "n<5" 58 00 00 00 00 
2262 "n<5" 00 b4 i1 00 00 00 03 
2263 "n<5" 58 00 00 00 00 
2264 "n<5" 00 i60 00 00 00 00 03 
2265 "n<5" 58 00 00 00 00 
2266 "n<5" 00 i156 00 00 00 00 03 
2267 "n<5" 58 00 00 00 00 
2268 "n<5" 00 i252 00 00 00 00 03 
2269 "n<5" 58 00 00 00 00 
2270 "n<5" 00 5c i1 00 00 00 03 
2271 "n<5" 58 00 00 00 00 
2272 "n<5" 00 bc i1 00 00 00 03 
2273 "n<5" 58 00 00 00 00 
2274 "n<5" 00 i68 00 00 00 00 03 
2275 "n<5" 58 00 00 00 00 
2276 "n<5" 00 i164 00 00 00 00 03 
2277 "n<5" 58 00 00 00 00 
2278 "n<5" 00 04 i1 00 00 00 03 
2279 "n<5" 58 00 00 00 00 
2280 "n<5" 00 64 i1 00 00 00 03 
2281 "n<5" 58 00 00 00 00 
2282 "n<5" 00 c4 i1 00 00 00 03 
2283 "n<5" 58 00 00 00 00 
2284 "n<5" 00 i76 00 00 00 00 03 
2285 "n<5" 58 00 00 00 00 
2286 "n<5" 00 i172 00 00 00 00 03 
2287 "n<5" 58 00 00 00 00 
2288 "n<5" 00 0c i1 00 00 00 03 
2289 "n<5" 58 00 00 00 00 
2290 "n<5" 00 6c i1 00 00 00 03 
2291 "n<5" 58 00 00 00 00 
2292 "n<5" 00 cc i1 00 00 00 03 
2293 "n<5" 58 00 00 00 00 
2294 "n<5" 00 i84 00 00 00 00 03 
2295 "n<5" 58 00 00 00 00 
2296 "n<5" 00 i180 00 00 00 00 03 
2297 "n<5" 58 00 00 00 00 
2298 "n<5" 00 14 i1 00 00 00 03 
2299 "n<5" 58 00 00 00 00 
2300 "n<5" 00 74 i1 00 00 00 03 
2301 "n<5" 58 00 00 00 00 
2302 "n<5" 00 d4 i1 00 00 00 03 
2303 "n<5" 58 00 00 00 00 
2304 "n<5" 00 i92 00 00 00 00 01 58 PCT40.1(25.0)
2305 i188 00 00 00 00 01 58 PCT40.1(25.0)
2306 1c i1 00 00 00 01 58 PCT40.1(25.0)
2307 7c i1 00 00 00 01 58 PCT40.1(25.0)
2308 dc i1 00 00 00 01 58 PCT40.1(100.0)
2309 i5 00 00 00 00 03 
2310 "n<5" 58 00 00 00 00 
2311 "n<5" 00 i101 00 00 00 00 03 
2312 "n<5" 58 00 00 00 00 
2313 "n<5" 00 i197 00 00 00 00 03 
2314 "n<5" 58 00 00 00 00 
2315 "n<5" 00 25 i1 00 00 00 03 
2316 "n<5" 58 00 00 00 00 
2317 "n<5" 00 i13 00 00 00 00 01 58 F40.1(1.2)
2318 i109 00 00 00 00 03 
2319 "n<5" 58 00 00 00 00 
2320 "n<5" 00 i205 00 00 00 00 03 
2321 "n<5" 58 00 00 00 00 
2322 "n<5" 00 2d i1 00 00 00 03 
2323 "n<5" 58 00 00 00 00 
2324 "n<5" 00 i21 00 00 00 00 03 
2325 "n<5" 58 00 00 00 00 
2326 "n<5" 00 i117 00 00 00 00 03 
2327 "n<5" 58 00 00 00 00 
2328 "n<5" 00 i213 00 00 00 00 03 
2329 "n<5" 58 00 00 00 00 
2330 "n<5" 00 35 i1 00 00 00 03 
2331 "n<5" 58 00 00 00 00 
2332 "n<5" 00 i29 00 00 00 00 01 58 F40.1(1.0)
2333 i125 00 00 00 00 03 
2334 "n<5" 58 00 00 00 00 
2335 "n<5" 00 i221 00 00 00 00 01 58 F40.1(2.0)
2336 3d i1 00 00 00 03 
2337 "n<5" 58 00 00 00 00 
2338 "n<5" 00 i37 00 00 00 00 03 
2339 "n<5" 58 00 00 00 00 
2340 "n<5" 00 i133 00 00 00 00 01 58 F40.1(1.8)
2341 i229 00 00 00 00 01 58 F40.1(0.8)
2342 45 i1 00 00 00 01 58 F40.1(-0.2)
2343 i45 00 00 00 00 03 
2344 "n<5" 58 00 00 00 00 
2345 "n<5" 00 i141 00 00 00 00 01 58 F40.1(2.2)
2346 i237 00 00 00 00 03 
2347 "n<5" 58 00 00 00 00 
2348 "n<5" 00 4d i1 00 00 00 03 
2349 "n<5" 58 00 00 00 00 
2350 "n<5" 00 i53 00 00 00 00 03 
2351 "n<5" 58 00 00 00 00 
2352 "n<5" 00 i149 00 00 00 00 03 
2353 "n<5" 58 00 00 00 00 
2354 "n<5" 00 i245 00 00 00 00 03 
2355 "n<5" 58 00 00 00 00 
2356 "n<5" 00 55 i1 00 00 00 03 
2357 "n<5" 58 00 00 00 00 
2358 "n<5" 00 i61 00 00 00 00 03 
2359 "n<5" 58 00 00 00 00 
2360 "n<5" 00 i157 00 00 00 00 03 
2361 "n<5" 58 00 00 00 00 
2362 "n<5" 00 i253 00 00 00 00 03 
2363 "n<5" 58 00 00 00 00 
2364 "n<5" 00 5d i1 00 00 00 03 
2365 "n<5" 58 00 00 00 00 
2366 "n<5" 00 i69 00 00 00 00 03 
2367 "n<5" 58 00 00 00 00 
2368 "n<5" 00 i165 00 00 00 00 03 
2369 "n<5" 58 00 00 00 00 
2370 "n<5" 00 05 i1 00 00 00 03 
2371 "n<5" 58 00 00 00 00 
2372 "n<5" 00 65 i1 00 00 00 03 
2373 "n<5" 58 00 00 00 00 
2374 "n<5" 00 i77 00 00 00 00 03 
2375 "n<5" 58 00 00 00 00 
2376 "n<5" 00 i173 00 00 00 00 03 
2377 "n<5" 58 00 00 00 00 
2378 "n<5" 00 0d i1 00 00 00 03 
2379 "n<5" 58 00 00 00 00 
2380 "n<5" 00 6d i1 00 00 00 03 
2381 "n<5" 58 00 00 00 00 
2382 "n<5" 00 i85 00 00 00 00 03 
2383 "n<5" 58 00 00 00 00 
2384 "n<5" 00 i181 00 00 00 00 03 
2385 "n<5" 58 00 00 00 00 
2386 "n<5" 00 15 i1 00 00 00 03 
2387 "n<5" 58 00 00 00 00 
2388 "n<5" 00 75 i1 00 00 00 03 
2389 "n<5" 58 00 00 00 00 
2390 "n<5" 00 i6 00 00 00 00 03 
2391 "n<5" 58 00 00 00 00 
2392 "n<5" 00 i102 00 00 00 00 03 
2393 "n<5" 58 00 00 00 00 
2394 "n<5" 00 i198 00 00 00 00 03 
2395 "n<5" 58 00 00 00 00 
2396 "n<5" 00 26 i1 00 00 00 03 
2397 "n<5" 58 00 00 00 00 
2398 "n<5" 00 i14 00 00 00 00 01 58 F40.1(0.6)
2399 i110 00 00 00 00 03 
2400 "n<5" 58 00 00 00 00 
2401 "n<5" 00 i206 00 00 00 00 03 
2402 "n<5" 58 00 00 00 00 
2403 "n<5" 00 2e i1 00 00 00 03 
2404 "n<5" 58 00 00 00 00 
2405 "n<5" 00 i22 00 00 00 00 03 
2406 "n<5" 58 00 00 00 00 
2407 "n<5" 00 i118 00 00 00 00 03 
2408 "n<5" 58 00 00 00 00 
2409 "n<5" 00 i214 00 00 00 00 03 
2410 "n<5" 58 00 00 00 00 
2411 "n<5" 00 36 i1 00 00 00 03 
2412 "n<5" 58 00 00 00 00 
2413 "n<5" 00 i30 00 00 00 00 01 58 F40.1(0.5)
2414 i126 00 00 00 00 03 
2415 "n<5" 58 00 00 00 00 
2416 "n<5" 00 i222 00 00 00 00 01 58 F40.1(1.0)
2417 3e i1 00 00 00 03 
2418 "n<5" 58 00 00 00 00 
2419 "n<5" 00 i38 00 00 00 00 03 
2420 "n<5" 58 00 00 00 00 
2421 "n<5" 00 i134 00 00 00 00 01 58 F40.1(0.8)
2422 i230 00 00 00 00 01 58 F40.1(0.3)
2423 46 i1 00 00 00 01 58 F40.1(-0.1)
2424 i46 00 00 00 00 03 
2425 "n<5" 58 00 00 00 00 
2426 "n<5" 00 i142 00 00 00 00 01 58 F40.1(1.4)
2427 i238 00 00 00 00 03 
2428 "n<5" 58 00 00 00 00 
2429 "n<5" 00 4e i1 00 00 00 03 
2430 "n<5" 58 00 00 00 00 
2431 "n<5" 00 i54 00 00 00 00 03 
2432 "n<5" 58 00 00 00 00 
2433 "n<5" 00 i150 00 00 00 00 03 
2434 "n<5" 58 00 00 00 00 
2435 "n<5" 00 i246 00 00 00 00 03 
2436 "n<5" 58 00 00 00 00 
2437 "n<5" 00 56 i1 00 00 00 03 
2438 "n<5" 58 00 00 00 00 
2439 "n<5" 00 i62 00 00 00 00 03 
2440 "n<5" 58 00 00 00 00 
2441 "n<5" 00 i158 00 00 00 00 03 
2442 "n<5" 58 00 00 00 00 
2443 "n<5" 00 i254 00 00 00 00 03 
2444 "n<5" 58 00 00 00 00 
2445 "n<5" 00 5e i1 00 00 00 03 
2446 "n<5" 58 00 00 00 00 
2447 "n<5" 00 i70 00 00 00 00 03 
2448 "n<5" 58 00 00 00 00 
2449 "n<5" 00 i166 00 00 00 00 03 
2450 "n<5" 58 00 00 00 00 
2451 "n<5" 00 06 i1 00 00 00 03 
2452 "n<5" 58 00 00 00 00 
2453 "n<5" 00 66 i1 00 00 00 03 
2454 "n<5" 58 00 00 00 00 
2455 "n<5" 00 i78 00 00 00 00 03 
2456 "n<5" 58 00 00 00 00 
2457 "n<5" 00 i174 00 00 00 00 03 
2458 "n<5" 58 00 00 00 00 
2459 "n<5" 00 0e i1 00 00 00 03 
2460 "n<5" 58 00 00 00 00 
2461 "n<5" 00 6e i1 00 00 00 03 
2462 "n<5" 58 00 00 00 00 
2463 "n<5" 00 i86 00 00 00 00 03 
2464 "n<5" 58 00 00 00 00 
2465 "n<5" 00 i182 00 00 00 00 03 
2466 "n<5" 58 00 00 00 00 
2467 "n<5" 00 16 i1 00 00 00 03 
2468 "n<5" 58 00 00 00 00 
2469 "n<5" 00 76 i1 00 00 00 03 
2470 "n<5" 58 00 00 00 00 
2471 "n<5" 00 i7 00 00 00 00 03 
2472 "n<5" 58 00 00 00 00 
2473 "n<5" 00 i103 00 00 00 00 03 
2474 "n<5" 58 00 00 00 00 
2475 "n<5" 00 i199 00 00 00 00 03 
2476 "n<5" 58 00 00 00 00 
2477 "n<5" 00 27 i1 00 00 00 03 
2478 "n<5" 58 00 00 00 00 
2479 "n<5" 00 i15 00 00 00 00 01 58 F40.1(0.8)
2480 i111 00 00 00 00 03 
2481 "n<5" 58 00 00 00 00 
2482 "n<5" 00 i207 00 00 00 00 03 
2483 "n<5" 58 00 00 00 00 
2484 "n<5" 00 2f i1 00 00 00 03 
2485 "n<5" 58 00 00 00 00 
2486 "n<5" 00 i23 00 00 00 00 03 
2487 "n<5" 58 00 00 00 00 
2488 "n<5" 00 i119 00 00 00 00 03 
2489 "n<5" 58 00 00 00 00 
2490 "n<5" 00 i215 00 00 00 00 03 
2491 "n<5" 58 00 00 00 00 
2492 "n<5" 00 37 i1 00 00 00 03 
2493 "n<5" 58 00 00 00 00 
2494 "n<5" 00 i31 00 00 00 00 01 58 F40.1(0.6)
2495 i127 00 00 00 00 03 
2496 "n<5" 58 00 00 00 00 
2497 "n<5" 00 i223 00 00 00 00 01 58 F40.1(1.3)
2498 3f i1 00 00 00 03 
2499 "n<5" 58 00 00 00 00 
2500 "n<5" 00 i39 00 00 00 00 03 
2501 "n<5" 58 00 00 00 00 
2502 "n<5" 00 i135 00 00 00 00 01 58 F40.1(1.0)
2503 i231 00 00 00 00 01 58 F40.1(0.4)
2504 47 i1 00 00 00 01 58 F40.1(-0.1)
2505 i47 00 00 00 00 03 
2506 "n<5" 58 00 00 00 00 
2507 "n<5" 00 i143 00 00 00 00 01 58 F40.1(1.7)
2508 i239 00 00 00 00 03 
2509 "n<5" 58 00 00 00 00 
2510 "n<5" 00 4f i1 00 00 00 03 
2511 "n<5" 58 00 00 00 00 
2512 "n<5" 00 i55 00 00 00 00 03 
2513 "n<5" 58 00 00 00 00 
2514 "n<5" 00 i151 00 00 00 00 03 
2515 "n<5" 58 00 00 00 00 
2516 "n<5" 00 i247 00 00 00 00 03 
2517 "n<5" 58 00 00 00 00 
2518 "n<5" 00 57 i1 00 00 00 03 
2519 "n<5" 58 00 00 00 00 
2520 "n<5" 00 i63 00 00 00 00 03 
2521 "n<5" 58 00 00 00 00 
2522 "n<5" 00 i159 00 00 00 00 03 
2523 "n<5" 58 00 00 00 00 
2524 "n<5" 00 i255 00 00 00 00 03 
2525 "n<5" 58 00 00 00 00 
2526 "n<5" 00 5f i1 00 00 00 03 
2527 "n<5" 58 00 00 00 00 
2528 "n<5" 00 i71 00 00 00 00 03 
2529 "n<5" 58 00 00 00 00 
2530 "n<5" 00 i167 00 00 00 00 03 
2531 "n<5" 58 00 00 00 00 
2532 "n<5" 00 07 i1 00 00 00 03 
2533 "n<5" 58 00 00 00 00 
2534 "n<5" 00 67 i1 00 00 00 03 
2535 "n<5" 58 00 00 00 00 
2536 "n<5" 00 i79 00 00 00 00 03 
2537 "n<5" 58 00 00 00 00 
2538 "n<5" 00 i175 00 00 00 00 03 
2539 "n<5" 58 00 00 00 00 
2540 "n<5" 00 0f i1 00 00 00 03 
2541 "n<5" 58 00 00 00 00 
2542 "n<5" 00 6f i1 00 00 00 03 
2543 "n<5" 58 00 00 00 00 
2544 "n<5" 00 i87 00 00 00 00 03 
2545 "n<5" 58 00 00 00 00 
2546 "n<5" 00 i183 00 00 00 00 03 
2547 "n<5" 58 00 00 00 00 
2548 "n<5" 00 17 i1 00 00 00 03 
2549 "n<5" 58 00 00 00 00 
2550 "n<5" 00 77 i1 00 00 00 03 
2551 "n<5" 58 00 00 00 00 
2552 "n<5" 00