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