Files start with 15 bytes: 01 00 i3 01 (i0 or i1) (00 or 01) i15 36 00000000 01 00 03 00 00 00 01 00 00 00 01 15 00 00 00 (most TableData.bin) 9 00000000 01 00 03 00 00 00 01 00 00 00 00 15 00 00 00 (*NotesData.bin, *WarningData.bin) 1 00000000 01 00 03 00 00 00 01 01 00 00 01 15 00 00 00 (one TableData) Next groups of 4 bytes: 15 0000000f 32 00 00 00 i50 10 0000000f 42 00 00 00 i66 9 0000000f 27 00 00 00 i39 8 0000000f a2 00 00 00 i162 3 0000000f 31 00 00 00 i49 1 0000000f 68 01 00 00 i360 18 00000013 48 00 00 00 i72 10 00000013 60 00 00 00 i96 9 00000013 43 00 00 00 i67 8 00000013 a2 00 00 00 i162 1 00000013 68 01 00 00 i360 or all 8 bytes together: 3 0000000f 31 00 00 00 48 00 00 00 i49 i72 (some williams Tables) 15 0000000f 32 00 00 00 48 00 00 00 i50 i72 (rest of williams Tables) 10 0000000f 42 00 00 00 60 00 00 00 i66 i96 (smekens Tables) 9 0000000f 27 00 00 00 43 00 00 00 i39 i67 (germano Tables) 8 0000000f a2 00 00 00 a2 00 00 00 i162 i162 (all Notes) 1 0000000f 68 01 00 00 68 01 00 00 i360 i360 (germano Warning) Next 8 bytes: 21 00000017 24 00 00 00 78 00 00 00 i36 i120 (all williams) 13 00000017 1c 00 00 00 0a 01 00 00 i28 i266 (all germano) 12 00000017 30 00 00 00 a0 00 00 00 i48 i160 (all smekens) All 16 bytes starting at offset 15: 15 0000000f 32 00 00 00 48 00 00 00 24 00 00 00 78 00 00 00 i50 i72 i36 i120 10 0000000f 42 00 00 00 60 00 00 00 30 00 00 00 a0 00 00 00 i66 i96 i48 i160 9 0000000f 27 00 00 00 43 00 00 00 1c 00 00 00 0a 01 00 00 i39 i67 i28 i266 3 0000000f a2 00 00 00 a2 00 00 00 24 00 00 00 78 00 00 00 i162 i162 i36 i120 3 0000000f a2 00 00 00 a2 00 00 00 1c 00 00 00 0a 01 00 00 i162 i162 i28 i266 3 0000000f 31 00 00 00 48 00 00 00 24 00 00 00 78 00 00 00 i49 i72 i36 i120 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) 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) 2 bytes at offset 31 appears to be a sequence number within a procedure's output; it begins with 1 with the first .bin file for a procedure and increases, sometimes apparently skipping a number: 8 0000001f 03 00 |..| 8 0000001f 01 00 |..| 7 0000001f 04 00 |..| 6 0000001f 05 00 |..| 5 0000001f 07 00 |..| 5 0000001f 06 00 |..| 3 0000001f 08 00 |..| 2 0000001f 09 00 |..| 1 0000001f 0a 00 |..| 1 0000001f 02 00 |..| 2 bytes at offset 33 appear to identify a procedure, e.g.: smekens has only one procedure and all the same value: 12 00000021 20 73 | s| williams has three procedures and increments by 0x10 between them (it looks like a procedure was deleted before output was saved): 9 00000021 a0 97 |..| 4 00000021 b0 97 |..| 8 00000021 d0 97 |..| germano has a similar pattern across the three separate output files: 3 00000021 c0 38 |.8| 2 00000021 e0 38 |.8| 8 00000021 f0 38 |.8| Sorting on bytes 33-35 then on 31-32 we get a sorted list of tables: Byte 33 is always x0, for any digit x, across the corpus. 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 0000001f 01 00 20 73 bf 46 |.. s.F|./smekens/default/00000000011_lightNotesData.bin 0000001f 01 00 20 73 bf 46 |.. s.F|./smekens/modified/00000000011_lightNotesData.bin 0000001f 03 00 20 73 bf 46 |.. s.F|./smekens/default/00000000013_lightTableData.bin 0000001f 03 00 20 73 bf 46 |.. s.F|./smekens/modified/00000000013_lightTableData.bin 0000001f 04 00 20 73 bf 46 |.. s.F|./smekens/default/00000000014_lightTableData.bin 0000001f 04 00 20 73 bf 46 |.. s.F|./smekens/modified/00000000014_lightTableData.bin 0000001f 05 00 20 73 bf 46 |.. s.F|./smekens/default/00000000016_lightTableData.bin 0000001f 05 00 20 73 bf 46 |.. s.F|./smekens/modified/00000000016_lightTableData.bin 0000001f 06 00 20 73 bf 46 |.. s.F|./smekens/default/00000000017_lightTableData.bin 0000001f 06 00 20 73 bf 46 |.. s.F|./smekens/modified/00000000017_lightTableData.bin 0000001f 07 00 20 73 bf 46 |.. s.F|./smekens/default/00000000018_lightTableData.bin 0000001f 07 00 20 73 bf 46 |.. s.F|./smekens/modified/00000000018_lightTableData.bin 0000001f 01 00 a0 97 72 67 |....rg|./williams/00000000011_lightNotesData.bin 0000001f 03 00 a0 97 72 67 |....rg|./williams/00000000012_lightTableData.bin 0000001f 04 00 a0 97 72 67 |....rg|./williams/000000000131_lightTableData.bin 0000001f 05 00 a0 97 72 67 |....rg|./williams/000000000132_lightTableData.bin 0000001f 06 00 a0 97 72 67 |....rg|./williams/000000000133_lightTableData.bin 0000001f 07 00 a0 97 72 67 |....rg|./williams/000000000134_lightTableData.bin 0000001f 08 00 a0 97 72 67 |....rg|./williams/000000000135_lightTableData.bin 0000001f 09 00 a0 97 72 67 |....rg|./williams/000000000136_lightTableData.bin 0000001f 0a 00 a0 97 72 67 |....rg|./williams/000000000137_lightTableData.bin 0000001f 01 00 b0 97 72 67 |....rg|./williams/00000000031_lightNotesData.bin 0000001f 03 00 b0 97 72 67 |....rg|./williams/00000000032_lightTableData.bin 0000001f 04 00 b0 97 72 67 |....rg|./williams/00000000033_lightTableData.bin 0000001f 05 00 b0 97 72 67 |....rg|./williams/00000000034_lightTableData.bin 0000001f 01 00 c0 38 3d e1 |...8=.|./germano/Frequencies/00000000011_lightNotesData.bin 0000001f 03 00 c0 38 3d e1 |...8=.|./germano/Frequencies/00000000012_lightTableData.bin 0000001f 04 00 c0 38 3d e1 |...8=.|./germano/Frequencies/00000000013_lightTableData.bin 0000001f 01 00 d0 97 72 67 |....rg|./williams/00000000051_lightNotesData.bin 0000001f 03 00 d0 97 72 67 |....rg|./williams/00000000052_lightTableData.bin 0000001f 04 00 d0 97 72 67 |....rg|./williams/00000000053_lightTableData.bin 0000001f 05 00 d0 97 72 67 |....rg|./williams/00000000054_lightTableData.bin 0000001f 06 00 d0 97 72 67 |....rg|./williams/00000000055_lightTableData.bin 0000001f 07 00 d0 97 72 67 |....rg|./williams/00000000056_lightTableData.bin 0000001f 08 00 d0 97 72 67 |....rg|./williams/00000000057_lightTableData.bin 0000001f 09 00 d0 97 72 67 |....rg|./williams/00000000058_lightTableData.bin 0000001f 01 00 e0 38 3d e1 |...8=.|./germano/Descriptives/00000000001_lightNotesData.bin 0000001f 03 00 e0 38 3d e1 |...8=.|./germano/Descriptives/00000000002_lightTableData.bin 0000001f 01 00 f0 38 3d e1 |...8=.|./germano/Crosstabs/00000000011_lightNotesData.bin 0000001f 02 00 f0 38 3d e1 |...8=.|./germano/Crosstabs/00000000012_lightWarningData.bin 0000001f 03 00 f0 38 3d e1 |...8=.|./germano/Crosstabs/00000000013_lightTableData.bin 0000001f 04 00 f0 38 3d e1 |...8=.|./germano/Crosstabs/00000000014_lightTableData.bin 0000001f 05 00 f0 38 3d e1 |...8=.|./germano/Crosstabs/00000000015_lightTableData.bin 0000001f 06 00 f0 38 3d e1 |...8=.|./germano/Crosstabs/00000000016_lightTableData.bin 0000001f 07 00 f0 38 3d e1 |...8=.|./germano/Crosstabs/00000000017_lightTableData.bin 0000001f 08 00 f0 38 3d e1 |...8=.|./germano/Crosstabs/00000000018_lightTableData.bin blp@sigabrt:~/pspp/spv(0)$ Offsets 0x25 and 0x26 are always 5d c6. Title and Caption ----------------- starting at 0x27 tdump19 (title "Descriptive Statistics"): 03 "Descriptive Statistics" 58 "" "Descriptive Statistics" 01 03 "Descriptive Statistics" 58 "" "Descriptive Statistics" 01 31 03 "Descriptive Statistics" 58 "" "Descriptive Statistics" 01 58 58 i0 tdump32 (title "Communalities", caption "Extraction Method: Principal Axis Factoring."): 03 "Communalities" 58 "" "Communalities" 01 03 "Communalities" 58 "" "Communalities" 01 31 03 "Communalities" 58 "" "Communalities" 01 58 31 03 "Extraction Method: Principal Axis Factoring." 58 "" "Extraction Method: Principal Axis Factoring." 01 i0 [[]] below shows extra for footnote: tdump29 (title "Factor Matrix(a)", caption "Extraction Method: Principal Axis Factoring.", footnote (a) "4 factors extracted. 9 iterations required."): 03 "Factor Matrix" [31 01 00 i0 i0 i6: [i0 58 58]] "" 00 "Factor Matrix" 01 03 "Factor Matrix" 58 "" "Factor Matrix" 01 31 03 "Factor Matrix" [31 01 00 i0 i0 i6: [i0 58 58]] "" "Factor Matrix" 01 58 31 03 "Extraction Method: Principal Axis Factoring." 58 "" "Extraction Method: Principal Axis Factoring." 00 01 i0 58 "^1 factors extracted. ^2 iterations required." i2 i0 01 58 F40.0(4) i0 01 58 F40.0(9) 58 i1 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.") 03 "Rotated Factor Matrix" [[31 01 00 i0 i0 i6 i0 58]] 58 "" "Rotated Factor Matrix" 01 03 "Rotated Factor Matrix" 58 "" "Rotated Factor Matrix" 01 31 03 "Rotated Factor Matrix" [[31 01 00 i0 i0 i6 i0 58]] 58 "" "Rotated Factor Matrix" 01 58 31 00 58 "^1 \n ^2" i2 i0 03 "Extraction Method: Principal Axis Factoring." 58 "" "Extraction Method: Principal Axis Factoring." i0 00 03 "Rotation Method: Varimax with Kaiser Normalization." 58 "" "Rotation Method: Varimax with Kaiser Normalization." 00 01 i0 58 "Rotation converged in ^1 iterations." 01 i0 01 58 F40.0(5) 58 i1 tdump10 (title is "Q8_1 It is ..."): 05 58 "Q8New_1" "Q8_1 It is ..." 02 03 "Frequencies" 58 "" 00 "Frequencies" 01 31 05 58 "Q8New_1" "Q8_1 It is ..." 02 58 58 i0 00 tdump9 (title with variable substitution, variables have labels): (00 31 i0 i0 i43: (i37: (i0 31 "[%1: * ^1:]1 Crosstabulation") 58 58) "[%1: * ^1:]1 Crosstabulation" i1 i2 i0 05 58 "Q8New_4" "Q8_4 I think the claims made on..." 02 i0 05 58 "Q8New_1" "Q8_1 It is a corporation's..." 02 03 "Crosstabulation" 58 "" "Crosstabulation" 01 31 ((00 31 i0 i0 i43 i37 i0 31)) "[%1: * ^1:]1 Crosstabulation" 58 58 "[%1: * ^1:]1 Crosstabulation" i1 i2 i0 05 58 "Q8New_4" "Q8_4 I think the claims made on..." 02 i0 05 58 "Q8New_1" "Q8_1 It is a corporation's..." 02 58 58 "" tdump24 (title with variable substitution, no labels, caption with substitution): ((00 31 i0 i0 i43 i37 i0 31)) "[%1: * ^1:]1 Crosstabulation" 58 58 "[%1: * ^1:]1 Crosstabulation" i1 i2 i0 05 58 "cond" "" 03 i0 05 58 "fobia" "" 03 03 "Crosstabulation" 58 "" "Crosstabulation" 01 31 ((00 31 i0 i0 i43 i37 i0 31)) "[%1: * ^1:]1 Crosstabulation" 58 58 "[%1: * ^1:]1 Crosstabulation" i1 i2 i0 05 58 "cond" "" 03 i0 05 58 "fobia" "" 03 58 31 ((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 i0 05 58 "fobia" "" 03 i0 01 58 F6.2(0.05) 00 smekens/default/00000000018_lightTableData.bin: 03 "Factor Transformation Matrix" 58 "" "Factor Transformation Matrix" 01 03 "Factor Transformation Matrix" 58 "" "Factor Transformation Matrix" 01 31 03 "Factor Transformation Matrix" 58 "" "Factor Transformation Matrix" 01 58 31 00 58 "^1 \n ^2" i2 "" 03 "Extraction Method: Principal Axis Factoring. " 58 "" "Extraction Method: Principal Axis Factoring. " i0 00 03 "Rotation Method: Varimax with Kaiser Normalization. " 58 "" "Rotation Method: Varimax with Kaiser Normalization. " i0 00 smekens/default/00000000011_lightNotesData.bin: 03 "Notes" 58 "notes" "Notes" 01 03 "Notes" 58 "" "Notes" 01 31 03 "Notes" 58 "notes" "Notes" 01 58 58 i0 web/e5cce7d8b3200a550c0c018fff441e16/000000000344_lightTableData.bin: 03 "Omnibus Test" 31 i2 00 00 i1 00 00 i11: (i5: (00 00 00 00 58) 58 58) 00 00 00 00 "Omnibus Test" 01 03 "OmnibusTest" 58 00 00 00 00 "OmnibusTest" 01 31 03 "Omnibus Test" 31 i2 00 00 i1 00 00 i11: (i5: (00 00 00 00 58) 58 58) 00 00 00 00 "Omnibus Test" 01 58 31 00 31 i0 i0 i45: (i39: (00 00 00 00 31 "Dependent ^1 Model [%1:, ^1:]2") 58 58) "Dependent Variable\: ^1\nModel\: [%1:, ^1:]2" i2 i0 05 58 "Condom_Casual" "4. How often have you used condoms when you had sex with casual partners?" 02 i14 00 00 00 00 03 "(Intercept)" 58 00 00 00 00 "(Intercept)" 00 00 00 00 00 03 germano/Crosstabs/00000000014_lightTableData.bin: 00 31 i0 i0 i43: (i37: (00 00 00 00 31 "[%1: * ^1:]1 Crosstabulation") 58 58) "[%1: * ^1:]1 Crosstabulation" i1 i2 i0 05 58 "cond" 00 00 00 00 i3 00 05 58 "fobia" 00 00 00 00 03 03 "Crosstabulation" 58 "" "Crosstabulation" 01 31 00 31 i0 i0 i43: (i37: (00 00 00 00 31 "[%1: * ^1:]1 Crosstabulation") 58 58) "[%1: * ^1:]1 Crosstabulation" i1 i2 i0 05 58 "cond" 00 00 00 00 i3 00 05 58 "fobia" 00 00 00 00 03 58 31 00 31 i0 i0 i43: (i37: (00 00 00 00 31 "col prop test on ^1 at ^2...") 58 58) "Each subscript letter denotes a subset of ^1 categories whose column proportions do not differ significantly from each other at the ^2 level." i2 i0 05 58 "fobia" 00 00 00 00 i3 00 01 58 02 06 05 00 9a 99 99 99 99 99 a9 i63 00 web/7e29c00c8c2a7e490636b7f74598b6a4/000000002315210_lightTableData.bin: 05 31 i1 i0 00 00 i11: (i5: (00 00 00 00 58) 58 58) "meaning10" "routine household tasks" 02 03 "Frequencies" 58 00 00 00 00 "Frequencies" 01 31 05 31 i1 i0 00 00 i11: (i5: (00 00 00 00 58) 58 58) "meaning10" "routine household tasks" 02 58 58 i1 00 31 i0 i0 i36: (i30: (00 00 00 00 31 "[%1 = %2:, ^1 = ^2:]1") 58 58) "[%1 = %2:, ^1 = ^2:]1" i1 i2 i0 05 58 "meaning14" "level of enjoyment" i2 00 02 58 F40.2(3.80) web/67e54cc8a549f4a66331c0401ff4a775/0000000005112_lightTableData.bin: 00 58 "[:^1:]1" i1 i3 i0 01 58 F40.0(2) 00 00 00 00 03 ". " 58 00 00 00 00 ". " 00 00 00 00 00 03 "Word_Type" 58 00 00 00 00 "Word_Type" 00 03 "Estimated Marginal Means" 58 00 00 00 00 "Estimated Marginal Means" 01 31 00 58 "[:^1:]1" i1 i3 i0 01 58 F40.0(2) 00 00 00 00 03 ". " 58 00 00 00 00 ". " 00 00 00 00 00 03 "Word_Type" 58 00 00 00 00 "Word_Type" 00 58 58 00 00 00 00 web/9c0f5ba2cd60a97194a82cdc67efc3cb/0000000001774_lightTableData.bin: 03 "Classification Results" 31 i2 00 00 i2 00 00 i6 00 00 00 00 58 58 00 00 00 00 "Classification Results" 01 03 "Classification Results" 58 00 00 00 00 "Classification Results" 01 31 03 "Classification Results" 31 i2 00 00 i2 00 00 i6 00 00 00 00 58 58 00 00 00 00 "Classification Results" 01 58 58 i3 00 58 "^1 of original grouped cases correctly classified." i1 00 00 00 00 01 58 PCT40.1(84.4) 58 i1 03 "Cross validation is done only for those cases in the analysis. In cross validation, each case is classified by the functions derived from all cases other than that case." 58 00 00 00 00 "Cross validation is done only for those cases in the analysis. In cross validation, each case is classified by the functions derived from all cases other than that case." 01 58 i1 00 58 "^1 of cross-validated grouped cases correctly classified." i1 00 00 00 00 01 58 PCT40.1(80.0) web/6bd5afeffbab87befbcd8d201254a5e6/0000000008104_lightTableData.bin: 00 58 "[:^1:]1" i1 i5 00 00 00 00 01 58 F40.0(4) 00 00 00 00 03 ". " 58 00 00 00 00 ". " 00 00 00 00 00 03 "Direction" 58 00 00 00 00 "Direction" 00 00 00 00 00 03 " * " 58 00 00 00 00 " * " 00 00 00 00 00 03 "Speed" 58 00 00 00 00 "Speed" 00 03 "Estimated Marginal Means" 58 00 00 00 00 "Estimated Marginal Means" 01 31 00 58 "[:^1:]1" i1 i5 00 00 00 00 01 58 F40.0(4) 00 00 00 00 03 ". " 58 00 00 00 00 ". " 00 00 00 00 00 03 "Direction" 58 00 00 00 00 "Direction" 00 00 00 00 00 03 " * " 58 00 00 00 00 " * " 00 00 00 00 00 03 "Speed" 58 00 00 00 00 "Speed" 00 58 58 00 00 00 00 Footnotes --------- germano/Crosstabs/00000000016_lightTableData.bin: i4 03 "Not assuming the null hypothesis." 58 00 00 00 00 "Assuming the alternate hypothesis" 01 58 i11 03 "Using the asymptotic standard error assuming the null hypothesis." 58 00 00 00 00 "Using the asym std error ..." 01 58 i9 03 "Based on chi-square approximation" 58 00 00 00 00 "Based on chi-square approximation" 01 58 i2 03 "Likelihood ratio chi-square probability." 58 00 00 00 00 "Likelihood ratio chi-squ ..." 01 58 i3 web/1ae63a04381624dac939ac62eca63fec/00000000054_lightTableData.bin: i2 03 "Correlation is significant at the 0.05 level (2-tailed)." 58 00 00 00 00 "Correlation is significant at the 0.05 level (2-tailed)." 01 31 03 "*" 58 00 00 00 00 "*" 00 i2 03 "Correlation is significant at the 0.01 level (2-tailed)." 58 00 00 00 00 "Correlation is significant at the 0.01 level (2-tailed)." 01 31 03 "**" 58 00 00 00 00 "**" 00 i4 web/7e29c00c8c2a7e490636b7f74598b6a4/0000000011163_lightTableData.bin: 00 31 i0 i0 i60: (i54: (00 00 00 00 31 "^1 is constant when [%1 = %2:, ^1 = ^2:]2 ...") 58 58) "^1 is constant when [%1 = %2:, ^1 = ^2:]2. It has been omitted." i2 i0 05 58 "meaning14" "level of enjoyment" 02 i2 i0 05 58 "meaning13" "none of these" i2 00 02 58 F40.2(1.00) "meaning13" 00 00 00 00 02 58 i1 web/e6f958867667aa56d033d54211ff2aec/00000000015_lightTableData.bin: 00 58 "^1 cells (^2) have expected count less than 5. The minimum expected count is ^3." i3 i0 01 58 F40.0(18) i0 01 58 PCT40.1(75.0) i0 01 58 F(8.5)(something) smekens/default/00000000016_lightTableData.bin: 03 "Extraction Method: Principal Axis Factoring." 58 "" "Extraction Method: Principal Axis Factoring." 00 i1 00 58 "^1 factors extracted. ^2 iterations required." i2 i0 01 58 F40.0(4) i0 01 58 F40.0(9) Fonts ----- First number after 40 41 is attributes: 0=plain, 1=bold, ... (?) Second number after 40 41 is horz align: 0=center, 2=left, 1=right(?), 64173="mixed" for data Third number after 40 41 is vert align: 0=center, 1=top, 3=bottom Last four numbers are margins: left, right, top, bottom, probably in points but there's some confusion Rows are: 01 title 02 caption 03 footnote 04 row labels 05 column labels 06 corner labels 07 data 08 layers tdump1 to tdump18: 01 31 "SansSerif" 00 00 40 41 i1 i0 i0 00 "#000000" "#ffffff" i0 i0 00 i8 i11 i1 i8 02 31 "SansSerif" 00 00 40 41 i0 00 i2 i1 "#000000" "#ffffff" i0 i0 00 i8 i11 i1 i1 03 31 "SansSerif" 00 00 40 41 i0 00 i2 i1 "#000000" "#ffffff" i0 i0 00 i11 i8 i3 i4 04 31 "SansSerif" 00 00 40 41 i0 00 i2 i3 "#000000" "#ffffff" i0 i0 00 i8 i11 i1 i1 05 31 "SansSerif" 00 00 40 41 i0 i0 00 i3 "#000000" "#ffffff" i0 i0 00 i8 i11 i1 i4 06 31 "SansSerif" 00 00 40 41 i0 00 i2 i1 "#000000" "#ffffff" i0 i0 00 i8 i11 i1 i4 07 31 "SansSerif" 00 00 40 41 i0 00 i64173 i0 "#000000" "#ffffff" i0 i0 00 i8 i11 i1 i1 08 31 "SansSerif" 00 00 40 41 i0 00 i2 i3 "#000000" "#ffffff" i0 i0 00 i8 i11 i1 i4 i1 i0 -> 01 00 00 00 00 00 00 00 i0 00 -> 00 00 00 00 00 i0 i0 -> 00 00 00 00 00 00 00 00 tdump19 to tdump27: 01 31 "SansSerif" 00 00 40 41 i1 i0 i0 00 "#000000" "#ffffff" i0 i0 00 i8 i11 i1 i8 02 31 "SansSerif" 00 00 40 41 i0 00 i2 i1 "#000000" "#ffffff" i0 i0 00 i8 i11 i1 i1 03 31 "SansSerif" 00 00 40 41 i0 00 i2 i1 "#000000" "#ffffff" i0 i0 00 i11 i8 i3 i4 04 31 "SansSerif" 00 00 40 41 i0 00 i2 i3 "#000000" "#ffffff" i0 i0 00 i8 i11 i1 i1 05 31 "SansSerif" 00 00 40 41 i0 i0 00 i3 "#000000" "#ffffff" i0 i0 00 i8 i11 i1 i4 06 31 "SansSerif" 00 00 40 41 i0 00 i2 i1 "#000000" "#ffffff" i0 i0 00 i8 i11 i1 i4 07 31 "SansSerif" 00 00 40 41 i0 00 i64173 i0 "#000000" "#ffffff" i0 i0 00 i8 i11 i1 i1 08 31 "SansSerif" 00 00 40 41 i0 00 i2 i3 "#000000" "#ffffff" i0 i0 00 i8 i11 i1 i4 tdump28 to tdump36: 01 31 "SansSerif" 00 00 40 41 i1 i0 i0 00 "#000000" "#ffffff" i0 i0 00 i8 i10 i1 i8 02 31 "SansSerif" 00 00 40 41 i0 00 i2 i1 "#000000" "#ffffff" i0 i0 00 i8 i10 i1 i1 03 31 "SansSerif" 00 00 40 41 i0 00 i2 i1 "#000000" "#ffffff" i0 i0 00 i24 i24 i2 i4 04 31 "SansSerif" 00 00 40 41 i0 00 i2 i3 "#000000" "#ffffff" i0 i0 00 i8 i10 i1 i1 05 31 "SansSerif" 00 00 40 41 i0 i0 00 i3 "#000000" "#ffffff" i0 i0 00 i8 i10 i1 i4 06 31 "SansSerif" 00 00 40 41 i0 00 i2 i1 "#000000" "#ffffff" i0 i0 00 i8 i10 i1 i4 07 31 "SansSerif" 00 00 40 41 i0 00 i64173 i1 "#000000" "#ffffff" i0 i0 00 i8 i10 i1 i1 08 31 "SansSerif" 00 00 40 41 i0 00 i2 i3 "#000000" "#ffffff" i0 i0 00 i8 i10 i1 i4 tdump37: 01 31 "SansSerif" 00 00 40 41 i0 00 i2 i1 "#000000" "#ffffff" i0 i0 00 i8 i10 i1 i-1 02 31 "SansSerif" 00 00 40 41 i0 00 i2 i1 "#1a5f76" "#282a73" i0 i0 00 i8 i10 i1 i1 03 31 "SansSerif" 00 00 40 41 i0 00 i2 i1 "#000000" "#ffffff" i0 i0 00 i-1 i-1 i-1 i-1 04 31 "SansSerif" 00 00 40 41 i0 00 i2 i1 "#000000" "#ffffff" i0 i0 00 i8 i10 i1 i1 05 31 "SansSerif" 00 00 40 41 i0 00 i2 i1 "#000000" "#ffffff" i0 i0 00 i8 i10 i1 i-1 06 31 "SansSerif" 00 00 40 41 i0 00 i2 i1 "#000000" "#ffffff" i0 i0 00 i8 i10 i1 i-1 07 31 "SansSerif" 00 00 40 41 i0 00 i64173 i1 "#000000" "#ffffff" i0 i0 00 i8 i10 i1 i1 08 31 "SansSerif" 00 00 40 41 i0 00 i2 i1 "#000000" "#ffffff" i0 i0 00 i8 i10 i1 i-1 Styles ------ tdump1: i240 followed by 240 bytes: 00 00 00 i1 i19 i5 03 i255 00 00 00 i16 00 i255 00 00 00 i6 03 i255 00 00 00 i17 01 i255 00 00 00 i7 03 i255 00 00 00 i18 01 i255 00 00 00 i8 03 i255 00 00 00 i9 03 i255 00 00 00 i10 03 i255 00 00 00 i0 00 i255 00 00 00 i11 01 i255 00 00 00 i1 00 i255 00 00 00 i12 00 i255 00 00 00 i2 00 i255 00 00 00 i13 01 i255 00 00 00 i3 00 i255 00 00 00 i14 01 i255 00 00 00 i4 00 i255 00 00 00 i15 00 i255 00 00 00 00 i18 followed by 18 bytes: 00 00 00 i1 00 00 00 00 00 00 i2 00 i142 followed by 142 bytes: 00 00 00 i1 i4 00 01 01 01 i1 00 i24 00*28 "Default" but with 1-byte length (07). 00*34 i0 "en_NZ.windows-1252" i0 01 00 01 99 07 00 00 '.' ',' i5 "-,,," "-,,," "-,,," "-,,," "-,,," i355 followed by 355 bytes: i53: 00 01 00 00 02 i2 00*23 01 i16: 00*16 26 01 00 00 01 00 i4 "Regression" 00 00 00 00 "en" "windows-1252" "en_NZ.windows-1252" 01 00 01 01 99 07 00 00 '.' ',' 0.0001 "DataSet2" "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 i5 "-,,," "-,,," "-,,," "-,,," "-,,," '.' 00 tdump19: i240 followed by 240 bytes: 00 00 00 i1 i19 i9 03 i255 00 00 00 i10 03 i255 00 00 00 i0 00 i255 00 00 00 i11 01 i255 00 00 00 i1 00 i255 00 00 00 i12 00 i255 00 00 00 i2 00 i255 00 00 00 i13 01 i255 00 00 00 i3 00 i255 00 00 00 i14 01 i255 00 00 00 i4 00 i255 00 00 00 i15 00 i255 00 00 00 i5 03 i255 00 00 00 i16 00 i255 00 00 00 i6 03 i255 00 00 00 i17 01 i255 00 00 00 i7 03 i255 00 00 00 i18 01 i255 00 00 00 i8 03 i255 00 00 00 00 i18 followed by 18 bytes: 00 00 00 i1 00 00 00 00 00 00 i2 00 i117 followed by 117 bytes: 00 00 00 i1 i3 00 01 01 01 i1 00 i24 00*93 i0 "it_IT.windows-1252" i0 00 00 00 99 07 00 00 ',' '.' i5 "-,,," "-,,," "-,,," "-,,," "-,,," i196 followed by 196 bytes: i53: 00 01 00 00 03 i3 00*23 01 i16: 00*16 i135: 01 00 i3 "Descriptives" 00 00 00 00 "en" "windows-1252" "it_IT.windows-1252" 00 00 00 01 99 07 00 00 ',' '.' 0.000100 01 i5 "-,,," "-,,," "-,,," "-,,," "-,,," '.' 00 tdump28: i240 followed by 240 bytes: 00 00 00 i1 i19 i9 03 i255 00 00 00 i3 00 i255 00 00 00 i16 00 i255 00 00 00 i10 03 i255 00 00 00 i4 00 i255 00 00 00 i17 01 i255 00 00 00 i11 01 i255 00 00 00 i5 03 i255 00 00 00 i18 01 i255 00 00 00 i12 00 i255 00 00 00 i6 03 i255 00 00 00 i0 00 i255 00 00 00 i13 01 i255 00 00 00 i7 03 i255 00 00 00 i1 00 i255 00 00 00 i14 01 i255 00 00 00 i8 03 i255 00 00 00 i2 00 i255 00 00 00 i15 00 i255 00 00 00 00 i18 followed by 18 bytes: 00 00 00 i1 00 00 00 00 00 00 i2 00 i117 followed by 117 bytes: 00 00 00 i1 i3 00 01 01 01 01 i2 i24 00*93 i0 "nl_BE.windows-1252" i0 00 00 00 99 07 00 00 ',' ' ' i5 "-,,," "-,,," "-,,," "-,,," "-,,," i199: i53: 00*32 01 i16: 00*16 i138: 01 00 i3 "Factor Analysis" 00 00 00 00 "en" "windows-1252" "nl_BE.windows-1252" 00 00 00 01 99 07 00 00 ',' ' ' 0.000100 01 i5 "-,,," "-,,," "-,,," "-,,," "-,,," '.' 00 Dimensions ---------- format: dd ww ff 00, e.g. F40.1 is 01 28 05 00 01 - double (01 58 format double) 02 - instance of a numeric variable (02 58 format double "varname" "vallab") 03 - just a string (03 "Short Name" 58 "identifier" "Long Name") 04 - instance of a string variable (04 58 format "vallab" "varname" 02 "value" 05 - variable (05 58 "varname" "Variable Label") tdump5 (./williams/000000000135_lightTableData.bin): i2 05 58 "Q8New_5" "Q8_5 I would..." 02 00 00 i2 01 00 i1 00 i3 03 "Valid" 58 "valid" "Valid" 01 00 00 01 i2 i-1 i2 01 58 F40.0(0) 01 00 01 i2 i-1 i1 01 58 F40.0(-1) 01 00 01 i0 i-1 i5 02 58 F40.0(1) "Q8New_5" "Strongly disagree" i2 i2 i0 i0 02 58 F40.0(2) "Q8New_5" "Disgaree" i2 i2 i1 i0 02 58 F40.0(3) "Q8New_5" "Neutral" i2 i2 i2 i0 02 58 F40.0(4) "Q8New_5" "Agree" i2 i2 i3 i0 02 58 F40.0(5) "Q8New_5" "Strongly agree" i2 i2 i4 i0 03 "Total" 58 "total_4" "Total" i1 i2 i5 i0 03 "Missing" 58 "missing_observations" "Missing" 01 00 00 01 i2 i-1 i1 03 "System" 58 "gsysmis" "System Missing" i1 i2 i6 i0 03 "Total" 58 "total_4" "Total" i1 i2 i7 i0 03 "Statistics" 58 "statistics_10" "Statistics" 01 00 01 i2 01 00 01 i1 i4 03 "Frequency" 58 "frequency" "Frequency" i1 i2 00 00 00 00 00 00 00 00 03 "Percent" 58 "percent" "Percent" i1 i2 i1 00 00 00 00 03 "Valid Percent" 58 "valid_percent" "Valid Percent" i1 i2 i2 00 00 00 00 03 "Cumulative Percent" 58 "cumulative_percent" "Cumulative Percent" i1 i2 i3 i0 tdump9 (./williams/00000000033_lightTableData.bin): i3 05 58 "Q8New_4" "Q8_4 I think..." 02 00 00 i2 01 00 i1 00 i2 05 58 "Q8New_4" "Q8_4 I think..." 02 00 00 i1 00 ff ff ff ff i5 02 58 F40.0(1) "Q8New_4" "Strongly disagree" i2 i2 00 00 00 00 00 00 00 00 02 58 F40.0(2) "Q8New_4" "Disgaree" i2 i2 i1 00 00 00 00 02 58 F40.0(3) "Q8New_4" "Neutral" i2 i2 i2 00 00 00 00 02 58 F40.0(4) "Q8New_4" "Agree" i2 i2 i3 00 00 00 00 02 58 F40.0(5) "Q8New_4" "Strongly agree" i2 i2 i4 00 00 00 00 03 "Total" 58 "total_4" "Total" i1 i2 i5 00 00 00 00 05 58 "Q8New_1" "Q8_1 It is a..." 02 00 00 i2 01 00 01 i1 i2 05 58 "Q8New_1" "Q8_1 It is a..." 02 00 00 i1 00 ff ff ff ff i5 02 58 F40.0(1) "Q8New_1" "Strongly disagree" i2 i2 00 00 00 00 00 00 00 00 02 58 F40.0(2) "Q8New_1" "Disgaree" i2 i2 i1 00 00 00 00 02 58 F40.0(3) "Q8New_1" "Neutral" i2 i2 i2 00 00 00 00 02 58 F40.0(4) "Q8New_1" "Agree" i2 i2 i3 00 00 00 00 02 58 F40.0(5) "Q8New_1" "Strongly agree" i2 i2 i4 00 00 00 00 03 "Total" 58 "total_4" "Total" i1 i2 i5 00 00 00 00 03 "Statistics" 58 "statistics_10" "Statistics" 01 00 01 i2 01 00 01 i2 i4 03 "Count" 58 "count_6" "Count" i1 i2 00 00 00 00 00 00 00 00 03 "Expected Count" 58 "expected_count" "Expected Count" i1 i2 i1 i0 00 31 i0 i0 i26: (i20: (i0 31 "row % of ^1") 58 58) "% within ^1" i1 i0 05 58 "Q8New_4" "Q8_4 I think..." i2 i2 i2 i0 03 "Adjusted Residual" 58 "adjusted_standardized_residual" "Adjusted Residual" i1 i2 i3 00 00 00 00 00 00 00 00 tdump14 (./williams/00000000034_lightTableData.bin): i2 03 "Statistics" 58 "statistics_10" "Statistics" 01 00 00 i2 01 00 i1 00 i4 03 "A" 58 "" "A" 00 01 00 01 i2 i-1 i2 03 "Pearson Chi-Square" 58 "chi-square_crosstabs_1" "Pearson Chi-Square" i1 i2 00 00 00 00 00 00 00 00 03 "Continuity Correction" 58 "yates_correction_for_continuity" "Continuity Correction" i1 i2 i1 00 00 00 00 03 "B" 58 "" "B" 00 01 00 01 i2 i-1 i1 03 "Likelihood Ratio" 58 "likelihood-ratio_chi-square" "Likelihood Ratio" i1 i2 i2 00 00 00 00 03 "Linear-by-Linear Association" 58 "linear-by-linear_association_crosstabs" "Linear-by-Linear Association" i1 i2 i3 00 00 00 00 03 "N of Valid Cases" 58 "valid" "N of Valid Cases" i1 i2 i4 00 00 00 00 03 "Values" 58 "values_10" "Values" 01 00 01 i2 01 00 01 i1 i3 03 "Value" 58 "value_18" "Value" i1 i2 00 00 00 00 00 00 00 00 03 "df" 58 "df" "df" i1 i2 i1 00 00 00 00 03 "Asymp. Sig. (2-sided)" 58 "asymptotic_significance" "Asymptotic Significance" i1 i2 i2 00 00 00 00 tdump15 (./williams/00000000032_lightTableData.bin): i3 03 "Crosstabulation" 58 "crosstabulation" "Crosstabulation" 01 00 00 i2 01 00 i1 00 i1 00 31 i0 i0 i27: (i21: (i0 31 "[%1: * ^1:]1") 58 58) "[%1: * ^1:]1" i1 i2 i0 05 58 "Q8New_4" "Q8_4 I think..." i2 00 05 58 "Q8New_1" "Q8_1 It is a..." i2 i2 i0 i0 03 "Statistics" 58 "statistics_10" "Statistics" 01 00 01 i2 01 00 01 i1 i2 03 "N" 58 "n" "N" i1 i2 00 00 00 00 00 00 00 00 03 "Percent" 58 "percent_2" "Percent" i1 i2 i1 00 00 00 00 03 "Cases" 58 "cases" "Cases" 01 00 01 i2 00 00 01 i2 i3 03 "Valid" 58 "valid" "Valid" i1 i2 00 00 00 00 00 00 00 00 03 "Missing" 58 "missing_observations" "Missing" i1 i2 i1 00 00 00 00 03 "Total" 58 "total_4" "Total" i1 i2 i2 i0 tdump19: i3 (three dimensions) 03 "Stat Type" 58 "stat_type" "Stat Type" 01 00 00 i2 01 00 i1 00 i2 03 "Statistic" 58 "statistic" "Statistic" 01 00 00 00 i2 i0 00 00 00 00 03 "Std. Error" 58 "standard_error" "Std. Error" 01 00 00 00 i2 i1 00 00 00 00 03 "Statistics" 58 "statistics_10" "Statistics" 01 00 01 i2 01 00 01 i1 i10 03 "N" 58 "n" "N" 01 00 00 00 i2 i0 00 00 00 00 03 "Range" 58 "range" "Range" 01 00 00 00 i2 i1 00 00 00 00 03 "Minimum" 58 "minimum" "Minimum" 01 00 00 00 i2 i2 00 00 00 00 03 "Maximum" 58 "maximum" "Maximum" 01 00 00 00 i2 i3 00 00 00 00 03 "Sum" 58 "sum" "Sum" 01 00 00 00 i2 i4 00 00 00 00 03 "Mean" 58 "mean" "Mean" 01 00 00 00 i2 i5 00 00 00 00 03 "Std. Deviation" 58 "gbar11" "Std. Deviation" 01 00 00 00 i2 i6 00 00 00 00 03 "Variance" 58 "variance" "Variance" 01 00 00 00 i2 i7 00 00 00 00 03 "Skewness" 58 "skewness" "Skewness" 01 00 00 00 i2 i8 00 00 00 00 03 "Kurtosis" 58 "kurtosis" "Kurtosis" 01 00 00 00 i2 i9 00 00 00 00 03 "Variables" 58 "variable_s_1" "Variables" 01 00 01 i2 01 00 01 i2 i4 05 58 "fqc_b" 00 00 00 00 i3 i2 00 00 00 00 00 00 00 00 05 58 "fqc_p" 00 00 00 00 i3 i2 i1 00 00 00 00 05 58 "fqc_d" 00 00 00 00 i3 i2 i2 00 00 00 00 03 "Valid N (listwise)" 58 "valid_n_listwise" "Valid N (listwise)" 01 00 00 00 i2 i3 00 00 00 00 tdump20 ./germano/Crosstabs/00000000018_lightTableData.bin: i2 03 "Statistics" 58 "statistics_10" "Statistics" 01 00 00 i2 01 00 i1 00 i1 00 31 i0 i42: (i36: (i0 31 "Odds Ratio for ^1 (^2 / ^3)") 58 58) "Odds Ratio for ^1 (^2 / ^3)" i3 i0 05 58 "cond" "" i3 00 02 58 F40.0(1) "cond" "" i3 00 02 58 F40.0(2) "cond" "" i3 i2 i0 i0 03 "Values" 58 "values_10" "Values" 01 00 01 i2 01 00 01 i1 i1 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 tdump27 (germano/Frequencies.pdf): i2 (two dimensions) 03 "Variables" 58 "variable_s_1" "Variables" 01 00 02 i2 01 00 i1 00 i1 05 58 "fobia" "" i3 i2 i0 i0 03 "Statistics" 58 "statistics_10" "Statistics" 01 00 00 i2 01 00 01 i1 i16 03 "N" 58 "n" "N" 01 00 00 01 i2 i-1 i2 03 "Valid" 58 "valid" "Valid i1 i2 i0 i0 03 "Missing" 58 "missing_observations" "Missing" i1 i2 i1 i0 03 "Mean" 58 "mean" "Mean i1 i2 i2 i0 03 "Std. Error of Mean" 58 "gfreq13" "Std. Error of Mean" i1 i2 i3 i0 03 "Median" 58 "median" "Median" i1 i2 i4 i0 03 "Mode" 58 "mode_frequencies" "Mode" i1 i2 i5 i0 03 "Std. Deviation" 58 "gbar11" "Std. Deviation" i1 i2 i6 i0 03 "Variance" 58 "variance" "Variance" i1 i2 i7 i0 03 "Skewness" 58 "skewness" "Skewness" i1 i2 i8 i0 03 "Std. Error of Skewness" 58 "standard_error_of_skewness" "Std. Error of Skewness" i1 i2 i9 i0 03 "Kurtosis" 58 "kurtosis" "Kurtosis" i1 i2 i10 i0 03 "Std. Error of Kurtosis" 58 "standard_error_of_kurtosis" "Std. Error of Kurtosis" i1 i2 i11 i0 03 "Range" 58 "range" "Range" i1 i2 i12 i0 03 "Minimum" 58 "minimum" "Minimum" i1 i2 i13 i0 03 "Maximum" 58 "maximum" "Maximum" i1 i2 i14 i0 03 "Sum" 58 "sum" "Sum" i1 i2 i15 i0 03 "Percentiles" 58 "percentiles" "Percentiles" 01 00 00 01 i2 i-1 i5 01 58 F3.0(10.0) 00 00 00 i2 i16 i0 01 58 F3.0(25.0) 00 00 00 i2 i17 i0 01 58 F3.0(50.0) 00 00 00 i2 i18 i0 01 58 F3.0(75.0) 00 00 00 i2 i19 i0 01 58 F3.0(90.0) 00 00 00 i2 i20 i0 tdump24 (germano/Crosstabs.pdf): i3 (three dimensions) 05 58 "cond" "" 03 00 00 i2 01 00 i1 00 i2 05 58 "cond" "" 03 00 00 i1 00 i-1 i4 02 58 F40.0(1) "cond" "" i3 i2 i0 i0 02 58 F40.0(2) "cond" "" i3 i2 i1 i0 02 58 F40.0(3) "cond" "" i3 i2 i2 i0 02 58 F40.0(4) "cond" "" i3 i2 i3 i0 03 "Total" 58 "total_4" "Total" i1 i2 i4 i0 05 58 "fobia" "" 03 00 00 i2 01 00 01 i1 i2 05 58 "fobia" "" 03 00 00 i1 00 i-1 i11 02 58 F40.0(0) "fobia" "" i3 i2 i0 i0 02 58 F40.0(1) "fobia" "" i3 i2 i1 i0 02 58 F40.0(2) "fobia" "" i3 i2 i2 i0 02 58 F40.0(3) "fobia" "" i3 i2 i3 i0 02 58 F40.0(4) "fobia" "" i3 i2 i4 i0 02 58 F40.0(5) "fobia" "" i3 i2 i5 i0 02 58 F40.0(6) "fobia" "" i3 i2 i6 i0 02 58 F40.0(7) "fobia" "" i3 i2 i7 i0 02 58 F40.0(8) "fobia" "" i3 i2 i8 i0 02 58 F40.0(9) "fobia" "" i3 i2 i9 i0 02 58 F40.0(10) "fobia" "" i3 i2 i10 i0 03 "Total" 58 "total_4" "Total" i1 i2 i11 i0 03 "Statistics" 58 "statistics_10" "Statistics" 01 00 01 i2 01 00 01 i2 i8 03 "Count" 58 "count_6" "Count" i1 i2 i0 i0 03 "Expected Count" 58 "expected_count" "Expected Count" i1 i2 i1 i0 00 31 i0 i0 i26: (i20: (i0 31 "row % of ^1") 58 58) "% within ^1" i1 i0 05 58 "cond" "" i3 i2 i2 i0 00 31 i0 i0 i26: (i20: (i0 31 "col % of ^1") 58 58) "% within ^1" i1 i0 05 58 "fobia" "" i3 i2 i3 i0 03 "% of Total" 58 "_pct_of_total" "% of Total" i1 i2 i4 i0 03 "Residual" 58 "residual_3" "Residual" i1 i2 i5 i0 03 "Std. Residual" 58 "std_residuals" "Std. Residual" i1 i2 i6 i0 03 "Adj. Residual" 58 "adj_residuals" "Adj. Residual" i1 i2 i7 i0 tdump25 (germano/Crosstabs.pdf): i3 (3 dimensions) 03 "Crosstabulation" 58 "crosstabulation" "Crosstabulation" 01 00 00 i2 01 00 i1 00 i1 00 31 i0 i0 i27: (i21: (i0 31 "[%1: * ^1:]1") 58 58) "[%1: * ^1:]1" i1 i2 i0 05 58 "cond" "" i3 00 05 58 "fobia" "" i3 i2 i0 i0 03 "Statistics" 58 "statistics_10" "Statistics" 01 00 01 i2 01 00 01 i1 i2 03 "N" 58 "n" "N" i1 i2 00 00 00 00 00 00 00 00 03 "Percent" 58 "percent_2" "Percent" i1 i2 i1 00 00 00 00 03 "Cases" 58 "cases" "Cases" 01 00 01 i2 00 00 01 i2 i3 03 "Valid" 58 "valid" "Valid" i1 i2 i0 i0 03 "Missing" 58 "missing_observations" "Missing" i1 i2 i1 i0 03 "Total" 58 "total_4" "Total" i1 i2 i2 i0 tdump21 ./germano/Crosstabs/00000000016_lightTableData.bin (Directional Measures): i3 (three dimensions) 03 "Direction" 58 "direction" "Direction" 01 00 00 i2 01 00 i1 00 i3 03 "Symmetric" 58 "symmetric" "Symmetric" i1 i2 i0 i0 00 31 i0 i0 i27: (i21: (i0 31 "^1 Dependent") 58 58) "^1 Dependent" i1 i0 05 58 "cond" "" i3 i2 i1 i0 00 31 i0 i0 i27: (i21: (i0 31 "^1 Dependent") 58 58) "^1 Dependent" i1 i0 05 58 "fobia" "" i3 i2 i2 i0 03 "Statistics" 58 "statistics_10" "Statistics" 01 00 00 i2 01 00 01 i1 i3 03 "Nominal by Nominal" 58 "nominal_measures" "Nominal by Nominal" 01 00 00 01 i2 i-1 i3 03 "Lambda" 58 "lambda" "Lambda" i1 i2 00 00 00 00 00 00 00 00 03 "Goodman and Kruskal tau" 58 "goodman_and_kruskals_tau" "Goodman and Kruskal tau" i1 i2 i1 00 00 00 00 03 "Uncertainty Coefficient" 58 "uncertainty_coefficient" "Uncertainty Coefficient" i1 i2 i2 00 00 00 00 03 "Ordinal by Ordinal" 58 "ordinal_measures" "Ordinal by Ordinal" 01 00 00 01 i2 i-1 i1 03 "Somers' d" 58 "somers_d" "Somers' d" i1 i2 i3 00 00 00 00 03 "Nominal by Interval" 58 "nominal_by_interval_measures" "Nominal by Interval" 01 00 00 01 i2 i-1 i1 03 "Eta" 58 "eta_crosstabs" "Eta" i1 i2 i4 00 00 00 00 03 "Values" 58 "values_10" "Values" 01 00 01 i2 01 00 01 i2 i4 03 "Value" 58 "value_18" "Value" i1 i2 00 00 00 00 00 00 00 00 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 03 "Approx. T" 31 i1 i1 00 00 i11: (i5: ("" 58) 58 58) "approximate_t" "Approximate T" i1 i2 i2 00 00 00 00 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 tdump22 ./germano/Crosstabs/00000000017_lightTableData.bin (Symmetric Measures): This is a good example for footnotes: there are three footnotes in the table and two of them are referenced from the dimensions. i2 03 "Statistics" 58 "statistics_10" "Statistics" 01 00 00 i2 01 00 i1 00 i5 03 "Nominal by Nominal" 58 "nominal_measures" "Nominal by Nominal" 01 00 00 01 i2 ff ff ff ff i3 03 "Phi" 58 "phi" "Phi" i1 i2 00 00 00 00 00 00 00 00 03 "Cramer's V" 58 "cramers_v" "Cramer's V" i1 i2 i1 00 00 00 00 03 "Contingency Coefficient" 58 "contingency_coefficient" "Contingency Coefficient" i1 i2 i2 00 00 00 00 03 "Ordinal by Ordinal" 58 "ordinal_measures" "Ordinal by Ordinal" 01 00 00 01 i2 ff ff ff ff i4 03 "Kendall's tau-b" 58 "kendalls_tau-b_1" "Kendall's tau-b" i1 i2 i3 00 00 00 00 03 "Kendall's tau-c" 58 "kendalls_tau-c" "Kendall's tau-c" i1 i2 i4 00 00 00 00 03 "Gamma" 58 "gamma" "Gamma" i1 i2 i5 00 00 00 00 03 "Spearman Correlation" 58 "spearman_correlation" "Spearman Correlation" i1 i2 i7 00 00 00 00 03 "Interval by Interval" 58 00 00 00 00 "Interval by Interval" 01 00 00 01 i2 ff ff ff ff i1 03 "Pearson's R" 58 "pearson_correlation_coefficient" "Pearson's R" i1 i2 i6 00 00 00 00 03 "Measure of Agreement" 58 "other" "Measure of Agreement" 01 00 00 01 i2 ff ff ff ff i1 03 "Kappa" 58 "kappa" "Kappa" i1 i2 i8 00 00 00 00 03 "N of Valid Cases" 58 "valid" "N of Valid Cases" i1 i2 i9 00 00 00 00 03 "Values" 58 "values_10" "Values" 01 00 01 i2 01 00 01 i1 i4 03 "Value" 58 "value_18" "Value" i1 i2 00 00 00 00 00 00 00 00 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 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 03 "Approx. Sig." 58 "approximate_probability" "Approximate Significance" i1 i2 i3 i0 i0 tdump24 ./germano/Crosstabs/00000000014_lightTableData.bin i3 05 58 "cond" 00 00 00 00 03 00 00 i2 01 00 i1 00 i2 05 58 "cond" 00 00 00 00 03 00 00 i1 00 ff ff ff ff i4 02 58 F40.0(1) "cond" 00 00 00 00 i3 i2 00 00 00 00 00 00 00 00 02 58 F40.0(2) "cond" 00 00 00 00 i3 i2 i1 00 00 00 00 02 58 F40.0(3) "cond" 00 00 00 00 i3 i2 i2 00 00 00 00 02 58 F40.0(4) "cond" 00 00 00 00 i3 i2 i3 00 00 00 00 03 "Total" 58 "total_4" "Total" i1 i2 i4 00 00 00 00 05 58 "fobia" 00 00 00 00 03 00 00 i2 01 00 01 i1 i2 05 58 "fobia" 00 00 00 00 03 00 00 i1 00 ff ff ff ff i11 02 58 F40.0(0) "fobia" 00 00 00 00 i3 i2 00 00 00 00 00 00 00 00 02 58 F40.0(1) "fobia" 00 00 00 00 i3 i2 i1 00 00 00 00 02 58 F40.0(2) "fobia" 00 00 00 00 i3 i2 i2 00 00 00 00 02 58 F40.0(3) "fobia" 00 00 00 00 i3 i2 i3 00 00 00 00 02 58 F40.0(4) "fobia" 00 00 00 00 i3 i2 i4 00 00 00 00 02 58 F40.0(5) "fobia" 00 00 00 00 i3 i2 i5 00 00 00 00 02 58 F40.0(6) "fobia" 00 00 00 00 i3 i2 i6 00 00 00 00 02 58 F40.0(7) "fobia" 00 00 00 00 i3 i2 i7 00 00 00 00 02 58 F40.0(8) "fobia" 00 00 00 00 i3 i2 i8 00 00 00 00 02 58 F40.0(9) "fobia" 00 00 00 00 i3 i2 i9 00 00 00 00 02 58 F40.0(10) "fobia" 00 00 00 00 i3 i2 i10 00 00 00 00 03 "Total" 58 "total_4" "Total" i1 i2 i11 00 00 00 00 03 "Statistics" 58 "statistics_10" "Statistics" 01 00 01 i2 01 00 01 i2 i8 03 "Count" 58 "count_6" "Count" i1 i2 00 00 00 00 00 00 00 00 03 "Expected Count" 58 "expected_count" "Expected Count" i1 i2 i1 00 00 00 00 00 31 i0 i0 i26: (i20: (i0 31 "row % of ^1") 58 58) "% within ^1" i1 i0 05 58 "cond" 00 00 00 00 i3 i2 i2 00 00 00 00 00 31 i0 i0 i26: (i20: (i0 31 "col % of ^1") 58 58) "% within ^1" i1 i0 05 58 "fobia" 00 00 00 00 i3 i2 i3 00 00 00 00 03 "% of Total" 58 "_pct_of_total" "% of Total" i1 i2 i4 00 00 00 00 03 "Residual" 58 "residual_3" "Residual" i1 i2 i5 00 00 00 00 03 "Std. Residual" 58 "standardized_residuals" "Standardized Residual" i1 i2 i6 00 00 00 00 03 "Adjusted Residual" 58 "adjusted_standardized_residual" "Adjusted Residual" i1 i2 i7 00 00 00 00 tdump25 ./germano/Crosstabs/00000000013_lightTableData.bin i3 03 "Crosstabulation" 58 "crosstabulation" "Crosstabulation" 01 00 00 i2 01 00 i1 00 i1 00 31 i0 i0 i27: (i21: (i0 31 "[%1: * ^1:]1") 58 58) "[%1: * ^1:]1" i1 i2 i0 05 58 "cond" "" i3 00 05 58 "fobia" "" i3 i2 i0 i0 03 "Statistics" 58 "statistics_10" "Statistics" 01 00 01 i2 01 00 01 i1 i2 03 "N" 58 "n" "N" i1 i2 00 00 00 00 00 00 00 00 03 "Percent" 58 "percent_2" "Percent" i1 i2 i1 00 00 00 00 03 "Cases" 58 "cases" "Cases" 01 00 01 i2 00 00 01 i2 i3 03 "Valid" 58 "valid" "Valid" i1 i2 00 00 00 00 00 00 00 00 03 "Missing" 58 "missing_observations" "Missing" i1 i2 i1 00 00 00 00 03 "Total" 58 "total_4" "Total" i1 i2 i2 i0 i0 0427a44fc2a99165411ecd27896fe4fd/00000000013_lightTableData.bin: i2 03 "Variables" 58 "variable_s_1" "Variables" 01 00 00 i2 01 00 i1 00 i23 00 31 i0 i0 i22: (i16: ("" 31 "Pair ^1") 58 58) "Pair ^1" i1 i0 01 58 F40.0(1) 00 00 01 i2 i-1 i2 05 58 "pre1.1" 00 00 00 00 i2 i2 00 00 00 00 00 00 00 00 05 58 "post1.1" 00 00 00 00 i2 i2 i1 00 00 00 00 00 31 i0 i0 i22: (i16: ("" 31 "Pair ^1" 58 58) "Pair ^1" i1 i0 01 58 F40.0(2) 00 00 01 i2 ff ff ff ff i2 05 58 "pre1.2" 00 00 00 00 i2 i2 i2 00 00 00 00 05 58 "post1.2" 00 00 00 00 i2 i2 i3 00 00 00 00 00 31 i0 i0 i22: i16: ("" 31 "Pair ^1") 58 58) "Pair ^1" i1 i0 01 58 F40.0(3) 00 00 01 i2 ff ff ff ff i2 05 58 "pre1.3" 00 00 00 00 i2 i2 i4 00 00 00 00 05 58 "post1.3" 00 00 00 00 i2 i2 i5 00 00 00 00 00 ... web/1ae63a04381624dac939ac62eca63fec/00000000053_lightTableData.bin (descriptives) i2 03 "Variables" 58 "variable_s_1" "Variables" 01 00 00 i2 01 00 i1 00 i8 05 58 "GODINEPACIJENTA" "GODINE PACIJENTA" i2 i2 00 00 00 00 00 00 00 00 05 58 "HLOCORPUS" "HLO CORPUS" i2 i2 i1 00 00 00 00 05 58 "INFLCORPUS" "INFL CORPUS" i2 i2 i2 00 00 00 00 05 58 "AKT.CORPUS" "AKT. CORPUS" i2 i2 i3 00 00 00 00 05 58 "VgmCORPUS" "Vgm CORPUS" i2 i2 i4 00 00 00 00 05 58 "VgfCORPUS" "Vgf CORPUS" i2 i2 i5 00 00 00 00 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 05 58 "VglpCORPUS" "Vglp CORPUS" i2 i2 i7 00 00 00 00 03 "Statistics" 58 "statistics_10" "Statistics" 01 00 01 i2 01 00 01 i1 i3 03 "Mean" 58 "mean" "Mean" i1 i2 00 00 00 00 00 00 00 00 03 "Std. Deviation" 58 "gbar11" "Std. Deviation" i1 i2 i1 00 00 00 00 03 "N" 58 "n" "N" i1 i2 i2 00 00 00 00 00 00 00 00 ./web/76e9b53e9f775fb690a88919ccdbb03c/000000007251_lightTableData.bin: i6 05 58 "Gender_R" "" 02 00 02 i2 00 00 i1 00 i2 02 58 F40.0(0) "Gender_R" "Male" i2 i2 00 00 00 00 00 00 00 00 02 58 F40.0(1) "Gender_R" "Female" i2 i2 i1 00 00 00 00 03 "Statistics" 58 "statistics_10" "Statistics" 01 00 00 i2 01 00 01 i1 i4 03 "Mean Difference (I-J)" 58 "mean_difference_i-j" "Mean Difference (I-J)" i1 i2 00 00 00 00 00 00 00 00 03 "Std. Error" 58 "standard_error" "Std. Error" i1 i2 i1 00 00 00 00 03 "Sig." 58 "significance_level" "Significance" i1 i2 i2 00 00 00 00 00 31 i0 i0 i38: (i32: (i0 31 "^1% Confidence Interval") 58 58) "^1% Confidence Interval" i1 00 00 00 00 01 58 00 03 i5 00 00 00 c0 57 40 00 00 01 i2 i-1 i2 03 "Lower Bound" 58 "lower_bound" "Lower Bound" i1 i2 i3 00 00 00 00 03 "Upper Bound" 58 "upper_bound" "Upper Bound" i1 i2 i4 00 00 00 00 00 31 i0 i0 i21: (i15: (i0 31 "(J) ^1") 58 58) "(J) ^1" i1 00 00 00 00 05 58 "sexorient_r" "" 02 00 00 i2 00 00 01 i2 i3 02 58 F40.0(0) "sexorient_r" "Straight" i2 i2 00 00 00 00 00 00 00 00 02 58 F40.0(1)"sexorient_r" "Bisexual" i2 i2 i1 00 00 00 00 02 58 F40.0(2) "sexorient_r" "Gay/Lesbian/Homosexual" i2 i2 i2 00 00 00 00 00 ... web/76e9b53e9f775fb690a88919ccdbb03c/000000001361_lightTableData.bin (crosstabs): i3 05 58 "marst" "Demographics - Marital Status" 02 00 00 i2 01 00 i1 00 i2 05 58 "marst" "Demographics - Marital Status" 02 00 00 i1 00 ff ff ff ff i4 04 58 00 03 01 00 "Single (never married)" "marst" 02 "A" 00 00 00 i2 00 00 00 00 00 00 00 00 04 58 00 03 01 00 "Married, living with spouse" "marst" 02 "B" 00 00 00 i2 i1 00 00 00 00 04 58 00 03 01 00 "Unmarried, living with partner" "marst" 02 "C" 00 00 00 i2 i2 00 00 00 00 04 58 00 03 01 00 "Divorced" "marst" 02 "E" 00 00 00 i2 i3 00 00 00 00 03 "Total" 58 "total_4" "Total" i1 i2 i4 00 00 00 00 05 58 "Gender_R" 00 00 00 00 02 00 00 i2 01 00 01 i1 i2 05 58 "Gender_R" 00 00 00 00 02 00 00 i1 00 ff ff ff ff i2 02 58 F40.0(0) "Gender_R" "Male" i2 i2 00 00 00 00 00 00 00 00 02 58 F40.0(1) "Gender_R" "Female" i2 i2 i1 00 00 00 00 03 "Total" 58 "total_4" "Total" i1 i2 i2 00 00 00 00 03 "Statistics" 58 "statistics_10" "Statistics" 01 00 01 i2 01 00 01 i2 i2 03 "Count" 58 "count_6" "Count" i1 i2 00 00 00 00 00 00 00 00 00 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 05 58 "Gender_R" 00 00 00 00 i2 i2 i1 00 00 00 00 00 00 00 00 ... web/76e9b53e9f775fb690a88919ccdbb03c/00000000703_lightTableData.bin (oneway descriptives): i4 05 58 "Gender_R" 00 00 00 00 02 00 00 i2 00 00 i1 00 i2 02 58 F40.0(0) "Gender_R" "Male" i2 i2 00 00 00 00 00 00 00 00 02 58 F40.0(1) "Gender_R" "Female" i2 i2 i1 00 00 00 00 03 "Groups" 58 "groups" "Groups" 01 00 00 i2 01 00 01 i1 i2 05 58 "sexorient_r" "" 02 01 00 i1 00 i-1 i3 02 58 F40.0(0) "sexorient_r" "Straight" i2 i2 i0 i0 02 58 F40.0(1) "sexorient_r" "Bisexual" i2 i2 i1 i0 02 58 F40.0(2) "sexorient_r" "Gay/Lesbian/Homosexual" i2 i2 i2 00 00 00 00 03 "Total" 58 "total_4" "Total" i1 i2 i3 00 00 00 00 .... web/76e9b53e9f775fb690a88919ccdbb03c/00000000725212_lightTableData.bin (Gender_R homogeneous subsets): good example for title and footnotes (?) i3 03 "Statistics" 58 "statistics_10" "Statistics" 01 00 00 i2 01 00 i1 00 i2 03 "N" 58 "n" "N" i1 i2 i0 i0 00 31 i0 i0 i36: (i30: ("" 31 "Subset for alpha = ^1") 58 58) "Subset for alpha = ^1" i1 i0 03 "0.05" 58 "" "0.05" 00 00 00 01 i2 i-1 i1 01 58 F40.0(1) 00 00 00 i2 i1 00 00 00 00 05 58 "sexorient_r" 00 00 00 00 02 00 00 i2 00 00 01 i1 i2 03 "Group" 58 00 00 00 00 "Group" 00 01 00 01 i2 i-1 i3 02 58 F40.0(0) "sexorient_r" "Straight" i2 i2 00 00 00 00 00 00 00 00 02 58 F40.0(2) "sexorient_r" "Gay/Lesbian/Homosexual" i2 i2 i1 00 00 00 00 02 58 F40.0(1) "sexorient_r" "Bisexual" i2 i2 i2 i0 03 "Sig." 58 "significance_level" "Significance" i1 i2 i3 00 00 00 00 03 "Test" 58 "test" "Test" 01 00 01 i2 01 00 01 i2 i2 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 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 ... web/6c3246ad09f0f6434a33b91c731636a3/00000000062_lightTableData.bin (descriptives): i2 03 "Statistics" 58 "statistics_10" "Statistics" 01 00 00 i2 01 00 i1 00 i5 03 "N" 58 "n" "N" i1 i2 00 00 00 00 00 00 00 00 03 "Minimum" 58 "minimum" "Minimum" i1 i2 i1 00 00 00 00 03 "Maximum" 58 "maximum" "Maximum" i1 i2 i2 00 00 00 00 03 "Mean" 58 "mean" "Mean" i1 i2 i3 00 00 00 00 03 "Std. Deviation" 58 "gbar11" "Std. Deviation" i1 i2 i4 00 00 00 00 03 "Variables" 58 "variable_s_1" "Variables" 01 00 01 i2 01 00 01 i1 i16 05 58 "TAAS_neg_T1" "TAAS negative affect Time 1" i2 i2 00 00 00 00 00 00 00 00 05 58 "TAAS_pos_T1" "TAAS positive affect Time 1" i2 i2 i1 00 00 00 00 05 58 "TAAS_overall_T1" "TAAS overall Time 1" i2 i2 i2 00 00 00 00 05 58 "DTS_scale" "DTS McHugh and Otto" i2 i2 i3 00 00 00 00 05 58 "DASS_Stress" 00 00 00 00 i2 i2 i4 00 00 00 00 05 58 "DASS_Anxiety" 00 00 00 00 i2 i2 i5 00 00 00 00 05 58 "DASS_Depression" 00 00 00 00 i2 i2 i6 00 00 00 00 05 58 "DERS_Nonacceptance" 00 00 00 00 i2 i2 i7 00 00 00 00 05 58 "DERS_Goals" 00 00 00 00 i2 i2 i8 00 00 00 00 05 58 "DERS_Impulse" 00 00 00 00 i2 i2 i9 00 00 00 00 05 58 "DERS_Awareness" 00 00 00 00 i2 i2 i10 00 00 00 00 05 58 "DERS_Strategies" 00 00 00 00 i2 i2 i11 00 00 00 00 05 58 "DERS_Clarity" 00 00 00 00 i2 i2 i12 00 00 00 00 05 58 "TOMS_Eating" 00 00 00 00 i2 i2 i13 00 00 00 00 05 58 "TOMS_General" 00 00 00 00 i2 i2 i14 00 00 00 00 03 "" 58 "" "" i0 i2 i15 i0 i0 web/17936f440753fa5f6771e084c26a1724/00000000033_lightTableData.bin (Paired Samples Statistics): i2 03 "Variables" 58 "variable_s_1" "Variables" 01 00 00 i2 01 00 i1 00 i2 00 58 "Pair ^1" i1 00 00 00 00 01 58 F40.0(1) 00 00 01 i2 i-1 i2 05 58 "related" "related" i2 i2 00 00 00 00 00 00 00 00 05 58 "unrelated" "unrelated" i2 i2 i1 00 00 00 00 00 58 "Pair ^1" i1 00 00 00 00 01 58 F40.0(2) 00 00 01 i2 i-1 i2 05 58 "nwrelated" "related" i2 i2 i2 00 00 00 00 05 58 "nwunrelated" "unrelated" i2 i2 i3 00 00 00 00 03 "Statistics" 58 "statistics_10" "Statistics" 01 00 01 i2 01 00 01 i1 i4 03 "Mean" 58 "mean" "Mean" i1 i2 00 00 00 00 00 00 00 00 03 "N" 58 "n" "N" i1 i2 i1 00 00 00 00 03 "Std. Deviation" 58 "gbar11" "Std. Deviation" i1 i2 i2 00 00 00 00 03 "Std. Error Mean" 58 "gfreq13" "Std. Error Mean" i1 i2 i3 00 00 00 00 web/fa39cdfb372fe296d34fa4c191ceed0f/00000000299_lightTableData.bin ("ATTITUDES"): This has a title with crazy substitutions. i3 03 "Variables" 58 "variable_s_1" "Variables" 01 00 02 i2 01 00 i1 00 i1 05 58 "ATTITUDES" 00 00 00 00 i2 i2 00 00 00 00 00 00 00 00 05 58 "Q7" "Do you have a family member with a DD?" 02 00 00 i2 00 00 01 i1 i2 03 "Dummy" 58 "" "Dummy" 01 01 00 i1 00 ff ff ff ff i2 02 58 F40.2(0.00) "Q7" "No" i2 i2 00 00 00 00 00 00 00 00 02 58 F40.2(1.00) "Q7" "Yes" i2 i2 i1 00 00 00 00 03 "Total" 58 "total_4" "Total" i1 i2 i2 00 00 00 00 03 "Statistics" 58 "statistics_10" "Statistics" 01 00 01 i2 01 00 01 i2 i3 03 "Mean" 58 "mean" "Mean" i1 i2 00 00 00 00 00 00 00 00 03 "N" 58 "n" "N" i1 i2 i1 00 00 00 00 03 "Std. Deviation" 58 "gbar11" "Std. Deviation" i1 i2 i2 00 00 00 00 web/a57e5529f1f2d4b25f5b9ad78f91864e/000000000310122_lightTableData.bin (homogeneous subsets): i3 03 "Statistics" 58 "statistics_10" "Statistics" 01 00 02 i2 01 00 i1 00 i2 03 "N" 58 "n" "N" i1 i2 00 00 00 00 00 00 00 00 03 "Subset" 58 "homogeneous_subsets" "Subset" 01 00 00 01 i2 ff ff ff ff i3 01 58 F40.0(1) 00 00 00 i2 i1 00 00 00 00 01 58 F40.0(2) 00 00 00 i2 i2 00 00 00 00 01 58 F40.0(3) 00 00 00 i2 i3 00 00 00 00 05 58 "Lakes" 00 00 00 00 02 00 00 i2 00 00 01 i1 i2 03 "Group" 58 00 00 00 00 "Group" 00 01 00 01 i2 ff ff ff ff i3 04 58 00 10 i1 00 00 "Lakes" 02 "Lake Michigan" 00 00 00 i2 00 00 00 00 00 00 00 00 04 58 00 10 i1 00 00 "Lakes" 02 "Greene's Lake" 00 00 00 i2 i1 00 00 00 00 04 58 00 10 i1 00 00 "Lakes" 02 "Lake Genesereth" 00 00 00 i2 i2 00 00 00 00 03 "Sig." 58 "significance_level" "Sig." i1 i2 i3 00 00 00 00 03 "Test" 58 "multivariate_tests" "Test" 01 00 01 i2 01 00 01 i2 i1 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 web/a57e5529f1f2d4b25f5b9ad78f91864e/00000000038_lightTableData.bin (Tests of Within-Subjects Contrasts): ... "Source" 58 "source_of_variation" "Source" 01 00 00 i2 00 00 01 i2 i4 00 58 "[%1: * ^1:]1" i1 i1 00 00 00 00 03 "Time" 58 00 00 00 00 "Time" 00 00 00 00 i2 00 00 00 00 00 00 00 00 00 58 "[%1: * ^1:]1 *[: ^1:]2" i2 i1 00 00 00 00 03 "Time" 58 00 00 00 00 "Time" 00 i1 00 00 00 00 05 58 "Lakes" "" i1 i2 i1 00 00 00 00 00 58 "[%1: * ^1:]1 *[: ^1:]2" i2 i1 00 00 00 00 03 "Time" 58 00 00 00 00 "Time" 00 i1 00 00 00 00 05 58 "Treatments" 00 00 00 00 i1 i2 i2 00 00 00 00 00 58 "Error([%1:*^1:]1)" i1 i1 00 00 00 00 03 "Time" 58 00 00 00 00 "Time" 00 00 00 00 i2 i3 00 00 00 00 03 "Statistics" 58 "statistics_10" "Statistics" 01 00 01 i2 01 00 01 i3 i5 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 03 "df" 58 "df" "df" i1 i2 i1 00 00 00 00 03 "Mean Square" 58 "mean_square" "Mean Square" i1 i2 i2 00 00 00 00 03 "F" 58 "f_value" "F" i1 i2 i3 00 00 00 00 03 "Sig." 58 "significance_level" "Sig." i1 i2 i4 00 00 00 00 00 00 00 00 web/a57e5529f1f2d4b25f5b9ad78f91864e/00000000031021_lightTableData.bin (POSTHOC Multiple Comparisons): i5 03 "Statistics" 58 "statistics_10" "Statistics" 01 00 02 i2 01 00 i1 00 i4 03 "Mean Difference (I-J)" 58 "mean_difference_i-j" "Mean Difference (I-J)" i1 i2 00 00 00 00 00 00 00 00 03 "Std. Error" 58 "standard_error" "Std. Error" i1 i2 i1 00 00 00 00 03 "Sig." 58 "significance_level" "Sig." i1 i2 i2 00 00 00 00 00 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 03 "Lower Bound" 58 "lower_bound" "Lower Bound" i1 i2 i3 00 00 00 00 03 "Upper Bound" 58 "upper_bound" "Upper Bound" i1 i2 i4 00 00 00 00 00 58 "(J) ^1" i1 i0 05 58 "Treatments" 00 00 00 00 02 00 00 i2 00 00 01 i1 i4 04 58 00 03 i1 00 00 "Treatments" 02 "C" 00 00 00 i2 00 00 00 00 00 00 00 00 04 58 00 03 i1 00 00 "Treatments" 02 "N" 00 00 00 i2 i1 00 00 00 00 04 58 00 03 i1 00 00 "Treatments" 02 "NP" 00 00 00 i2 i2 00 00 00 00 04 58 00 03 i1 00 00 "Treatments" 02 "P" 00 00 00 i2 i3 00 00 00 00 00 ... web/a57e5529f1f2d4b25f5b9ad78f91864e/00000000034_lightTableData.bin (Between-Subjects Factors): i2 03 "Factor Levels" 58 "factor_levels" "Factor Levels" 01 00 00 i2 01 00 i1 00 i2 05 58 "Lakes" 00 00 00 00 02 00 00 01 i2 ff ff ff ff i3 04 58 A16.0 "" "Lakes" 01 "Greene's Lake" 00 00 00 i2 00 00 00 00 00 00 00 00 04 58 00 10 i1 00 00 "Lakes" 01 "Lake Genesereth" 00 00 00 i2 i1 00 00 00 00 04 58 00 10 i1 00 00 "Lakes" 01 "Lake Michigan" 00 00 00 i2 i2 00 00 00 00 05 58 "Treatments" 00 00 00 00 02 00 00 01 i2 ff ff ff ff i4 04 58 00 03 i1 00 00 "Treatments" 01 "C" 00 00 00 i2 i3 00 00 00 00 04 58 00 03 i1 00 00 "Treatments" 01 "N" 00 00 00 i2 i4 00 00 00 00 04 58 00 03 i1 00 00 "Treatments" 01 "NP" 00 00 00 i2 i5 00 00 00 00 04 58 00 03 i1 00 00 "Treatments" 01 "P" 00 00 00 i2 i6 00 00 00 00 03 "Properties" 58 "properties_dimension" "Properties" 01 00 01 i2 01 00 01 i1 i2 03 "Value Label" 58 "value_labels_2" "Value Label" i1 i2 00 00 00 00 00 00 00 00 03 "N" 58 "n" "N" i1 i2 i1 00 00 00 00 00 00 00 00 web/7a17f5600db5be64b985ac37b1346aa8/00000000072_lightTableData.bin (Between-Subjects Factors): i2 03 "Factor Levels" 58 "factor_levels" "Factor Levels" 01 00 00 i2 01 00 i1 00 i1 05 58 "HouseholdIncome" "HouseholdIncome" 02 00 00 01 i2 ff ff ff ff i4 02 58 F40.2(1.00) "HouseholdIncome" "< 45,000" i1 i2 00 00 00 00 00 00 00 00 02 58 F40.2(2.00) "HouseholdIncome" "45,001 - 80,000" i1 i2 i1 00 00 00 00 02 58 F40.2(3.00) "HouseholdIncome" "80,001 - 120,000" i1 i2 i2 00 00 00 00 02 58 F40.2(4.00) "HouseholdIncome" "120,001+" i1 i2 i3 00 00 00 00 ... web/6f1f8df78363208fec048190af27097e/00000000053_lightTableData.bin ([%1: * ^1:]1 Crosstabulation): i4 05 58 "agerange" "agerange" 02 75 02 i2 00 00 i1 00 i3 02 58 F40.2(1.00) "agerange" 00 00 00 00 i2 i2 00 00 00 00 00 00 00 00 02 58 F40.2(2.00) "agerange" 00 00 00 00 i2 i2 i1 00 00 00 00 02 58 F40.2(3.00) "agerange" 00 00 00 00 i2 i2 i2 00 00 00 00 05 58 "sex" "RESPONDENTS SEX" 02 00 00 i2 01 00 01 i1 i2 05 58 "sex" "RESPONDENTS SEX" 02 00 00 i1 00 ff ff ff ff i2 02 58 F40.0(1) "sex" "male" i2 i2 00 00 00 00 00 00 00 00 02 58 F40.0(2) "sex" "female" i2 i2 i1 00 00 00 00 03 "Total" 58 "total_4" "Total" i1 i2 i2 00 00 00 00 05 58 "pres92" "VOTE FOR CLINTON, BUSH, PEROT" 02 00 00 i2 01 00 01 i2 i2 05 58 "pres92" "VOTE FOR CLINTON, BUSH, PEROT" 02 00 00 i1 00 ff ff ff ff i3 02 58 F40.0(1) "pres92" "Bush" i2 i2 00 00 00 00 00 00 00 00 02 58 F40.0(2) "pres92" "Perot" i2 i2 i1 00 00 00 00 02 58 F40.0(3) "pres92" "Clinton" i2 i2 i2 00 00 00 00 03 "Total" 58 "total_4" "Total" i1 i2 i3 00 00 00 00 03 "Statistics" 58 "statistics_10" "Statistics" 01 00 01 i2 01 00 01 i3 i1 03 "Count" 58 "count_6" "Count" i1 i2 00 00 00 00 00 00 00 00 web/75e80a604626e6bdbb6a107901dc9b36/000000000344_lightTableData.bin (Frequencies): i2 05 58 "Sex" 00 00 00 00 03 00 00 i2 01 00 i1 00 i1 03 "Valid" 58 "valid" "Valid" 01 00 00 01 i2 ff ff ff ff i2 01 58 F40.0(0) 01 00 01 i2 ff ff ff ff i1 01 58 F40.0(-1) 01 00 i1 00 ff ff ff ff i3 04 58 00 06 01 00 "Male" "Sex" 03 "1" 00 00 00 i2 00 00 00 00 00 00 00 00 04 58 00 06 01 00 "Female" "Sex" 03 "2" 00 00 00 i2 i1 00 00 00 00 04 58 00 06 01 00 "Other" "Sex" 03 "3" 00 00 00 i2 i2 00 00 00 00 03 "Total" 58 "total_4" "Total" i1 i2 i3 00 00 00 00 03 "Statistics" 58 "statistics_10" "Statistics" 01 00 01 i2 01 00 01 i1 i4 03 "Frequency" 58 "frequency" "Frequency" i1 i2 00 00 00 00 00 00 00 00 03 "Percent" 58 "percent" "Percent" i1 i2 i1 00 00 00 00 03 "Valid Percent" 58 "valid_percent" "Valid Percent" i1 i2 i2 00 00 00 00 03 "Cumulative Percent" 58 "cumulative_percent" "Cumulative Percent" i1 i2 i3 00 00 00 00 00 00 00 00 web/9c0f5ba2cd60a97194a82cdc67efc3cb/000000000176_lightTableData.bin (Functions at Group Centroids): i2 05 58 "group" "" 02 00 00 00 00 00 00 00 00 i1 00 i2 02 58 F40.0(1) "group" 00 00 00 00 i2 i2 00 00 00 00 00 00 00 00 02 58 F40.0(2) "group" 00 00 00 00 i2 i2 i1 00 00 00 00 03 "Function" 58 "function_6" "Function" 01 00 01 i2 00 00 01 i1 i1 01 58 F40.0(1) web/b257771a29873ce68ce0c0a4e7582f76/000000000432_lightTableData.bin (Pearson Chi-Square Tests): i2 03 "Row" 58 00 00 00 00 "Row" 01 00 00 i2 01 00 i1 00 i1 05 58 "Judge_Indiziert" "Overall Judgement indicated" 02 00 00 01 i2 ff ff ff ff i1 02 58 F40.2(1.00) "Judge_Indiziert" "indicated" 02 00 00 01 i2 ff ff ff ff i1 05 58 "CAS" "Navigation" 02 00 00 01 i2 ff ff ff ff i3 03 "Chi-square" 58 00 00 00 00 "Chi-square" i1 i2 00 00 00 00 00 00 00 00 03 "df" 58 00 00 00 00 "df" i1 i2 i1 00 00 00 00 03 "Sig." 58 00 00 00 00 "Sig." i1 i2 i2 00 00 00 00 03 "Column" 58 00 00 00 00 "Column" 01 00 01 i2 01 00 01 i1 i1 05 58 "Judge_Gemacht" "Overall Judgement done" i2 i2 00 00 00 00 00 00 00 00 00 00 00 00 web/f1b07f87ef9cd720e78efebe4f2551fa/0000000007912_lightTableData.bin (Pairwise Comparisons): i4 03 "Statistics" 58 "statistics_10" "Statistics" 01 00 00 i2 01 00 i1 00 i4 03 "Mean Difference (I-J)" 58 "mean_difference_i-j" "Mean Difference (I-J)" i1 i2 00 00 00 00 00 00 00 00 03 "Std. Error" 58 "standard_error" "Std. Error" i1 i2 i1 00 00 00 00 03 "Sig." 31 i1 i1 00 00 i11: (i5: ("" 58) 58 58) "significance_level" "Significance" i1 i2 i2 00 00 00 00 00 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 01 58 00 03 i5 00 00 00 c0 57 40 00 00 01 i2 ff ff ff ff i2 03 "Lower Bound" 58 "lower_bound" "Lower Bound" i1 i2 i3 00 00 00 00 03 "Upper Bound" 58 "upper_bound" "Upper Bound" i1 i2 i4 00 00 00 00 00 31 00 00 00 00 00 00 00 00 i21: (i15: ("" 31 "(J) ^1") 58 58) "(J) ^1" i1 00 00 00 00 05 58 "Group" "Group" 02 00 00 i2 00 00 01 i1 i2 02 58 F40.0(1) "Group" "Experimental Group" i3 i2 00 00 00 00 00 00 00 00 02 58 F40.0(2) "Group" "Control Group" i3 i2 i1 00 00 00 00 00 31 00 00 00 00 00 00 00 00 i21: (i15: ("" 31 "(I) ^1") 58 58 ) "(I) ^1" i1 00 00 00 00 05 58 "Group" "Group" 02 00 00 i2 00 00 01 i2 i2 02 58 F40.0(1) "Group" "Experimental Group" i3 i2 00 00 00 00 00 00 00 00 02 58 F40.0(2) "Group" "Control Group" i3 i2 i1 00 00 00 00 03 "Dependent Variable" 58 "dependent_variable_2" "Dependent Variable" 01 00 01 i2 00 00 01 i3 i12 05 58 "PSYCAP_POST2" 00 00 00 00 i3 i2 00 00 00 00 00 00 00 00 05 58 "SE_POST2" 00 00 00 00 i3 i2 i1 00 00 00 00 05 58 "HOPE_POST2" 00 00 00 00 i3 i2 i2 00 00 00 00 05 58 "RES_POST2" 00 00 00 00 i3 i2 i3 00 00 00 00 05 58 "OPT_POST2" 00 00 00 00 i3 i2 i4 00 00 00 00 05 58 "PWB_POST2" 00 00 00 00 i3 i2 i5 00 00 00 00 05 58 "AUTO_POST2" 00 00 00 00 i3 i2 i6 00 00 00 00 05 58 "EM_POST2" 00 00 00 00 i3 i2 i7 00 00 00 00 05 58 "PG_POST2" 00 00 00 00 i3 i2 i8 00 00 00 00 05 58 "PR_POST2" 00 00 00 00 i3 i2 i9 00 00 00 00 05 58 "PL_POST2" 00 00 00 00 i3 i2 i10 00 00 00 00 05 58 "SA_POST2" 00 00 00 00 i3 i2 i11 00 00 00 00 web/67e54cc8a549f4a66331c0401ff4a775/00000000079_lightTableData.bin (Tests of Within-Subjects Contrasts): This one is just puzzling. i4 03 "Word_Type" 58 00 00 00 00 "Word_Type" 00 00 02 i2 00 00 i1 00 i1 03 "Linear" 58 "linear" "Linear" i1 i2 00 00 00 00 00 00 00 00 03 "Measure" 58 "measure_3" "Measure" 01 00 00 i2 00 00 01 i1 i1 00 58 "MEASURE_^1" i1 00 00 00 00 01 58 F40.0(1) 00 00 00 i2 00 00 00 00 00 00 00 00 03 "Source" 58 "source_of_variation" "Source" 01 00 00 i2 00 00 01 i2 i5 00 58 "[%1: * ^1:]1" i1 i1 00 00 00 00 03 "Word_Type" 58 00 00 00 00 "Word_Type" 00 00 00 00 i2 00 00 00 00 00 00 00 00 00 58 "[%1: * ^1:]1 *[: ^1:]2" i2 i1 00 00 00 00 03 "Word_Type" 58 "" "Word_Type" 00 i1 00 00 00 00 05 58 "Word_Color" "" i1 i2 i1 00 00 00 00 00 58 "[%1: * ^1:]1 *[: ^1:]2" i2 i1 i0 03 "Word_Type" 58 "" "Word_Type" 00 i1 i0 05 58 "Order" "" i1 i2 i2 i0 00 58 "[%1: * ^1:]1 *[: ^1:]2" i2 i1 i0 03 "Word_Type" 58 "" "Word_Type" 00 i3 i0 05 58 "Word_Color" "" i1 00 03 " * " 58 "" " * " i0 00 05 58 "Order" "" i1 i2 i3 i0 00 58 "Error([%1:*^1:]1)" i1 i1 00 00 00 00 03 "Word_Type" 58 00 00 00 00 "Word_Type" 00 00 00 00 i2 i4 00 00 00 00 03 "Statistics" 58 "statistics_10" "Statistics" 01 00 01 i2 01 00 01 i3 i6 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 03 "df" 58 "df" "df" i1 i2 i1 00 00 00 00 03 "Mean Square" 58 "mean_square" "Mean Square" i1 i2 i2 00 00 00 00 03 "F" 58 "f_value" "F" i1 i2 i3 00 00 00 00 03 "Sig." 58 "significance_level" "Sig." i1 i2 i4 00 00 00 00 03 "Partial Eta Squared" 58 "estimates_of_effect_size" "Partial Eta Squared" i1 i2 i5 i0 web/c4757deb6f4f21d5f51745073835937d/000000000171_lightTableData.bin (Averaged Multivariate Tests): i3 ... 03 "Within Subjects Effect" 58 "within-subjects_3" "Within Subjects Effect" 01 00 00 i2 00 00 01 i1 i4 00 58 "[%1: * ^1:]1" i1 i1 00 00 00 00 03 "Time" 58 00 00 00 00 "Time" 00 00 00 00 i2 00 00 00 00 00 00 00 00 00 58 "[%1: * ^1:]1 *[: ^1:]2" i2 i1 00 00 00 00 03 "Time" 58 00 00 00 00 "Time" 00 i1 00 00 00 00 05 58 "Lakes" 00 00 00 00 i1 i2 i1 00 00 00 00 00 58 "[%1: * ^1:]1 *[: ^1:]2" i2 i1 00 00 00 00 03 "Time" 58 00 00 00 00 "Time" 00 i1 00 00 00 00 05 58 "Treatments" 00 00 00 00 i1 i2 i2 00 00 00 00 00 58 "[%1: * ^1:]1 *[: ^1:]2" i2 i1 00 00 00 00 03 "Time" 58 00 00 00 00 "Time" 00 i3 00 00 00 00 05 58 "Lakes" "" 01 i0 03 " * " 58 00 00 00 00 " * " 00 00 00 00 00 05 58 "Treatments" 00 00 00 00 i1 i2 i3 00 00 00 00 03 "Statistics" 58 "statistics_10" "Statistics" 01 00 01 i2 01 00 01 i2 i5 03 "Value" 58 "value_18" "Value" i1 i2 00 00 00 00 00 00 00 00 03 "F" 58 "f_value" "F" i1 i2 i1 00 00 00 00 03 "Hypothesis df" 58 "df" "Hypothesis df" i1 i2 i2 00 00 00 00 03 "Error df" 58 "error_df" "Error df" i1 i2 i3 00 00 00 00 03 "Sig." 58 "significance_level" "Sig." i1 i2 i4 00 00 00 00 00 00 00 00 web/c50e357352131aa1a8925003483b31ad/000000000161_lightTableData.bin (Custom Univariate Tests): i4 03 "Epsilon Corrections" 58 "epsilon_general_loglinear" "Epsilon Corrections" 01 00 00 i2 01 00 i1 00 i4 03 "Sphericity Assumed" 58 "sphericity_assumed" "Sphericity Assumed" i1 i2 00 00 00 00 00 00 00 00 03 "Greenhouse-Geisser" 58 "greenhouse-geisser_epsilon" "Greenhouse-Geisser" i1 i2 i1 00 00 00 00 03 "Huynh-Feldt" 58 "huynh-feldt_epsilon" "Huynh-Feldt" i1 i2 i2 00 00 00 00 03 "Lower-bound" 58 "lowerbound_epsilon" "Lower-bound" i1 i2 i3 00 00 00 00 03 "Measure" 58 "measure_3" "Measure" 01 00 00 i2 00 00 01 i1 i4 03 "ALT" 58 00 00 00 00 "ALT" 00 00 00 00 i2 00 00 00 00 00 00 00 00 03 "VLT" 58 00 00 00 00 "VLT" 00 00 00 00 i2 i1 00 00 00 00 03 "PSS" 58 00 00 00 00 "PSS" 00 00 00 00 i2 i2 00 00 00 00 03 "FWHM" 58 00 00 00 00 "FWHM" 00 00 00 00 i2 i3 00 00 00 00 03 "Source" 58 "source_of_variation" "Source" 01 00 00 i2 00 00 01 i2 i21 00 58 "[%1: * ^1:]1" i1 i1 00 00 00 00 03 "Language" 58 00 00 00 00 "Language" 00 00 00 00 i2 00 00 00 00 00 00 00 00 00 58 "[%1: * ^1:]1 *[: ^1:]2" i2 i1 00 00 00 00 03 "Language" 58 00 00 00 00 "Language" 00 i1 00 00 00 00 05 58 "Gender" "Gender" i1 i2 i1 00 00 00 00 00 58 "Error([%1:*^1:]1)" i1 i1 00 00 00 00 03 "Language" 58 00 00 00 00 "Language" 00 00 00 00 i2 i2 00 00 00 00 00 58 "[%1: * ^1:]1" i1 i1 00 00 00 00 03 "Size_AOI" 58 00 00 00 00 "Size_AOI" 00 00 00 00 i2 i3 00 00 00 00 00 58 "[%1: * ^1:]1 *[: ^1:]2" i2 i1 00 00 00 00 03 "Size_AOI" 58 00 00 00 00 "Size_AOI" 00 i1 00 00 00 00 05 58 "Gender" "Gender" i1 i2 i4 00 00 00 00 00 58 "Error([%1:*^1:]1)" i1 i1 00 00 00 00 03 "Size_AOI" 58 00 00 00 00 "Size_AOI" 00 00 00 00 i2 i5 00 00 00 00 00 58 "[%1: * ^1:]1" i1 i1 00 00 00 00 03 "Area" 58 00 00 00 00 "Area" 00 00 00 00 i2 i6 00 00 00 00 00 58 "[%1: * ^1:]1 *[: ^1:]2" i2 i1 00 00 00 00 03 "Area" 58 00 00 00 00 "Area" 00 i1 00 00 00 00 05 58 "Gender" "Gender" i1 i2 i7 00 00 00 00 00 58 "Error([%1:*^1:]1)" i1 i1 00 00 00 00 03 "Area" 58 00 00 00 00 "Area" 00 00 00 00 i2 i8 00 00 00 00 00 58 "[%1: * ^1:]1" i1 i2 00 00 00 00 03 "Language" 58 00 00 00 00 "Language" 00 00 00 00 00 03 "Size_AOI" 58 00 00 00 00 "Size_AOI" 00 00 00 00 i2 i9 00 00 00 00 00 58 "[%1: * ^1:]1 *[: ^1:]2" i2 i2 00 00 00 00 03 "Language" 58 00 00 00 00 "Language" 00 00 00 00 00 03 "Size_AOI" 58 00 00 00 00 "Size_AOI" 00 i1 00 00 00 00 05 58 "Gender" "Gender" i1 i2 i10 00 00 00 00 00 58 "Error([%1:*^1:]1)" i1 i2 00 00 00 00 03 "Language" 58 00 00 00 00 "Language" 00 00 00 00 00 03 "Size_AOI" 58 00 00 00 00 "Size_AOI" 00 00 00 00 i2 i11 00 00 00 00 00 58 "[%1: * ^1:]1" i1 i2 00 00 00 00 03 "Language" 58 00 00 00 00 "Language" 00 00 00 00 00 03 "Area" 58 00 00 00 00 "Area" 00 00 00 00 i2 i12 00 00 00 00 00 58 "[%1: * ^1:]1 *[: ^1:]2" i2 i2 00 00 00 00 03 "Language" 58 00 00 00 00 "Language" 00 00 00 00 00 03 "Area" 58 00 00 00 00 "Area" 00 i1 00 00 00 00 05 58 "Gender" "Gender" i1 i2 i13 00 00 00 00 00 58 "Error([%1:*^1:]1)" i1 i2 00 00 00 00 03 "Language" 58 00 00 00 00 "Language" 00 00 00 00 00 03 "Area" 58 00 00 00 00 "Area" 00 00 00 00 i2 i14 00 00 00 00 00 58 "[%1: * ^1:]1" i1 i2 00 00 00 00 03 "Size_AOI" 58 00 00 00 00 "Size_AOI" 00 00 00 00 00 03 "Area" 58 00 00 00 00 "Area" 00 00 00 00 i2 i15 00 00 00 00 00 58 "[%1: * ^1:]1 *[: ^1:]2" i2 i2 00 00 00 00 03 "Size_AOI" 58 00 00 00 00 "Size_AOI" 00 00 00 00 00 03 "Area" 58 00 00 00 00 "Area" 00 i1 00 00 00 00 05 58 "Gender" "Gender" i1 i2 i16 00 00 00 00 00 58 "Error([%1:*^1:]1)" i1 i2 00 00 00 00 03 "Size_AOI" 58 00 00 00 00 "Size_AOI" 00 00 00 00 00 03 "Area" 58 00 00 00 00 "Area" 00 00 00 00 i2 i17 00 00 00 00 00 58 "[%1: * ^1:]1" i1 i3 00 00 00 00 03 "Language" 58 00 00 00 00 "Language" 00 00 00 00 00 03 "Size_AOI" 58 00 00 00 00 "Size_AOI" 00 00 00 00 00 03 "Area" 58 00 00 00 00 "Area" 00 00 00 00 i2 i18 00 00 00 00 00 58 "[%1: * ^1:]1 *[: ^1:]2" i2 i3 00 00 00 00 03 "Language" 58 00 00 00 00 "Language" 00 00 00 00 00 03 "Size_AOI" 58 00 00 00 00 "Size_AOI" 00 00 00 00 00 03 "Area" 58 00 00 00 00 "Area" 00 i1 00 00 00 00 05 58 "Gender" "Gender" i1 i2 i19 00 00 00 00 00 58 "Error([%1:*^1:]1)" i1 i3 00 00 00 00 03 "Language" 58 00 00 00 00 "Language" 00 00 00 00 00 03 "Size_AOI" 58 00 00 00 00 "Size_AOI" 00 00 00 00 00 03 "Area" 58 00 00 00 00 "Area" 00 00 00 00 i2 i20 00 00 00 00 03 "Statistics" 58 "statistics_10" "Statistics" 01 00 01 i2 01 00 01 i3 i6 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 03 "df" 58 "df" "df" i1 i2 i1 00 00 00 00 03 "Mean Square" 58 "mean_square" "Mean Square" i1 i2 i2 00 00 00 00 03 "F" 58 "f_value" "F" i1 i2 i3 00 00 00 00 03 "Sig." 58 "significance_level" "Sig." i1 i2 i4 00 00 00 00 03 "Partial Eta Squared" 58 "estimates_of_effect_size" "Partial Eta Squared" i1 i2 i5 00 00 00 00 00 00 00 00 web/bf0de88830dd9a93323cfb8d7501f342/00000000075_lightTableData.bin (Default Multivariate Tests): i3 03 "Test" 58 "multivariate_tests" "Test" 01 00 00 i2 01 00 i1 00 i4 03 "Pillai's Trace" 58 "pillais_trace" "Pillai's Trace" i1 i2 00 00 00 00 00 00 00 00 03 "Wilks' Lambda" 58 "wilks_lambda" "Wilks' Lambda" i1 i2 i1 00 00 00 00 03 "Hotelling's Trace" 58 "hotellings_trace" "Hotelling's Trace" i1 i2 i2 00 00 00 00 03 "Roy's Largest Root" 58 "roys_largest_root" "Roy's Largest Root" i1 i2 i3 00 00 00 00 03 "Effect" 58 "effect" "Effect" 01 00 00 i2 00 00 01 i1 i2 00 31 i0 i0 i25: (i19: ("" 31 "[%1:*^1:]1") 58 58) "[%1: * ^1:]1" i1 i1 00 00 00 00 03 "Time" 58 00 00 00 00 "Time" 00 00 00 00 i2 00 00 00 00 00 00 00 00 00 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 i1 00 00 00 00 03 "Time" 58 00 00 00 00 "Time" 00 i3 00 00 00 00 05 58 "Condition" 00 00 00 00 i1 00 03 " * " 58 00 00 00 00 " * " 00 00 00 00 00 05 58 "Extraversio" 00 00 00 00 i1 i2 i1 00 00 00 00 03 "Statistics" 58 "statistics_10" "Statistics" 01 00 01 i2 01 00 01 i2 i5 03 "Value" 58 "value_18" "Value" i1 i2 00 00 00 00 00 00 00 00 03 "F" 58 "f_value" "F" i1 i2 i1 00 00 00 00 03 "Hypothesis df" 58 "df" "Hypothesis df" i1 i2 i2 00 00 00 00 03 "Error df" 58 "error_df" "Error df" i1 i2 i3 00 00 00 00 03 "Sig." 58 "significance_level" "Significance" i1 i2 i4 00 00 00 00 00 00 00 00 Data ---- williams/00000000053_lightTableData.bin: i0 i1 i1 i0 i1 i4 i0 i0 01 31 i1 i0 00 00 i11: (i5: ("" 58) 58 58) F40.3(0.760) i1 i0 01 58 F40.3(0.578) i2 i0 01 58 F40.3(0.573) i3 i0 01 58 F40.3(0.666) germano/Crosstabs/00000000014_lightTableData.bin: i432 i0 i0 03 "<5 " 31 i0 i1 "a" i11: (i5: ("" 58) 58 58) i0 "<5 " 00 i96 i0 03 "<5 " 31 i0 i1 "a" i11: (i5: ("" 58) 58 58) i0 "<5 " 00 i192 i0 03 "<5 " 31 i0 i1 "a" i11 i5 00 00 00 00 58 58 58 i0 "<5 " 00 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 80 i1 00 00 00 01 58 F40.0(12) i8 00 00 00 00 01 31 i0 i1 "a" i11: (i5: (i0 58) 58 58) F40.0(5) i104 00 00 00 00 03 "<5 " 31 i0 i1 "a" i11: (i5: ("" 58) 58 58) 00 00 00 00 "<5 " 00 i200 00 00 00 00 03 "<5 " i49 00 i1 "a" i11 i5 00 00 00 00 58 58 58 00 00 00 00 "<5 " 00 28 i1 00 00 00 03 "<5 " i49 00 i1 "a" i11 i5 00 00 00 00 58 58 58 00 00 00 00 "<5 " 00 88 i1 00 00 00 01 58 F40.0(15) i16 00 00 00 00 03 "<5 " i49 00 i1 "a" i11 i5 00 00 00 00 58 58 58 00 00 00 00 "<5 " 00 i112 00 00 00 00 03 "<5 " i49 00 i1 "a" i11 i5 00 00 00 00 58 58 58 00 00 00 00 "<5 " 00 i208 00 00 00 00 03 "<5 " i49 00 i1 "a" i11 i5 00 00 00 00 58 58 58 00 00 00 00 "<5 " 00 30 i1 00 00 00 03 "<5 " i49 00 i1 "a" i11 i5 00 00 00 00 58 58 58 00 00 00 00 "<5 " 00 90 i1 00 00 00 01 58 F40.0(12) i24 00 00 00 00 01 i49 00 i1 web/c6b0660f7afccdb067f766a44ded21ab/00000000038_lightTableData.bin (Rotated Factor Matrix): i315 i0 03 " " 58 "" "" 00 i1 i0 03 " " 58 "" "" 00 i6 i0 03 " " 58 00 00 00 00 " " 00 i11 00 00 00 00 03 " " 58 00 00 00 00 web/f748b5e575e0a0c2e55698c3b18d272e/00000000134_lightTableData.bin (Report): i226 00 00 00 00 02 58 F40.0(sysmis) "V4" 00 00 00 00 02 i241 00 00 00 00 02 58 F40.0(342345) "V4" 00 00 00 00 02 00 i1 00 00 00 02 58 F40.0(sysmis) "V4" 00 00 00 00 02 0f i1 00 00 00 02 58 F40.0(sysmis) "V4" 00 00 00 00 02 1e i1 00 00 00 02 58 F40.0(522773) "V4" 00 00 00 00 02 2d i1 00 00 00 02 58 F40.0(sysmis) "V4" 00 00 00 00 02 web/f748b5e575e0a0c2e55698c3b18d272e/00000000134_lightTableData.bin (Report): i497 i0 04 58 00 19 i1 00 00 "V5" 02 "% of total particles" i512 04 58 00 19 i1 00 00 "V5" 02 "322." 0f i2 00 00 00 04 58 00 19 i1 00 00 "V5" 02 "% of total mass" 1e i2 00 00 00 04 58 00 19 i1 00 00 "V5" 02 "% of total particles" 2d i2 00 00 00 04 58 00 19 i1 00 00 "V5" 02 "581." germano/Crosstabs/00000000014_lightTableData.bin (Crosstabulation): i0 i2 i1 i2 i0 i1 i432 i0 i0 03 "<5 " 31 i0 i1 "a" i11 i5 00 00 00 00 58 58 58 00 00 00 00 "<5 " 00 i96 00 00 00 00 03 "<5 " i49 00 i1 "a" i11 i5 00 00 00 00 58 58 58 00 00 00 00 "<5 " 00 i192 00 00 00 00 03 "<5 " i49 00 i1 "a" i11 i5 00 00 00 00 58 58 58 00 00 00 00 "<5 " 00 20 i1 00 00 00 03 "<5 " i49 00 i1 "a" i11 i5 00 00 00 00 58 58 58 00 00 00 00 "<5 " 00 80 i1 00 00 00 01 58 F40.0(12) i8 00 00 00 00 01 i49 00 i1 "a" i11 i5 00 00 00 00 58 58 58 F40.0(5) web/1fe57275203d4c8b7eca5bd796738e71/00000000014_lightTableData.bin (Correlation Matrix): 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) i34 00 00 00 00 01 58 F40.3(0.318) i51 00 00 00 00 01 58 F40.3(0.486) i68 00 00 00 00 01 58 F40.3(0.226) i85 00 00 00 00 01 58 F40.3(0.183) i102 00 00 00 00 01 58 F40.3(0.278) i119 00 00 00 00 01 58 F40.3(0.275) i136 00 00 00 00 01 58 F40.3(0.019) web/f748b5e575e0a0c2e55698c3b18d272e/00000000075_lightTableData.bin (Case Processing Summary): i5 i0 i0 01 58 F40.0(46) i1 i0 01 58 F40.0(0) i2 i0 01 31 i2 00 00 i1 00 00 i6 00 00 00 00 58 58 F40.0(62) i3 i0 01 58 F40.0(15) i4 i0 01 58 F40.0(15) web/76e9b53e9f775fb690a88919ccdbb03c/00000000743_lightWarningData.bin (Warnings): 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 i0 05 58 "soi_tot" 00 00 00 00 02 i2 i0 05 58 "erotica_virgin" 00 00 00 00 i2 00 02 58 F40.1(1.0) "erotica_virgin" "EROTICA VIRGIN" 02 web/c6b0660f7afccdb067f766a44ded21ab/00000000031_lightNotesData.bin (Notes): i13 i0 01 58 DTIME13.2(0.156) i14 i0 01 58 DTIME13.2(0.14) i15 i0 00 31 i0 i0 i29: (i23: ("" 31 "^1 (^2K) bytes") 58 58 ) "^1 (^2K) bytes" i2 i0 01 58 F40.0(459728) i0 01 58 03 28 28 00 00 00 00 00 40 0f 7c 40 web/f748b5e575e0a0c2e55698c3b18d272e/00000000094_lightTableData.bin (Model Description): i10 i0 i0 00 58 "^1" i1 i0 03 "MOD_2" 58 "" "MOD_2" 00 i1 i0 05 58 "V15" "mass/breath" 02 i2 i0 05 58 "V29" "particles/breath-v2" 02 i3 i0 03 "None" 58 "" "None" 01 i4 00 00 00 00 01 58 F40.0(0) i5 00 00 00 00 01 58 F40.0(0) i6 00 00 00 00 03 "No periodicity" 58 "no_help" "No periodicity" 01 i7 00 00 00 00 01 58 F40.0(16) 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 i9 00 00 00 00 03 "All lags" 58 "no_help" "All lags" 01 web/f748b5e575e0a0c2e55698c3b18d272e/00000000253_lightWarningData.bi (Warnings): i12 i0 i0 00 58 "There are fewer than two groups for dependent variable ^1 in split file [%1 = %2:, ^1 = ^2:]2. No statistics are computed." i2 i0 05 58 "Tot_Part_V1" "Total particles" 02 i2 i0 05 58 "Sitting" "Sitting" 02 i0 02 58 F40.0(50) "Sitting" "" 02 i1 i0 00 58 "There are fewer than two groups for dependent variable ^1 in split file [%1 = %2:, ^1 = ^2:]2. No statistics are computed." i2 i0 05 58 "Samp_timeV2" "Sampling time-v2" 02 i2 i0 05 58 "Sitting" "Sitting" i2 00 02 58 F40.0(50) "Sitting" i0 02 i2 i0 00 58 "There are fewer than two groups for dependent variable ^1 in split file [%1 = %2:, ^1 = ^2:]2. No statistics are computed." i2 00 00 00 00 05 58 "Sampling_time_V1" "Sampling time" 02 i2 00 00 00 00 05 58 smekens/default/00000000011_lightNotesData.bin (Notes): i15 i0 00 58 "^1 (^2K) bytes" i2 i0 01 58 F40.0(40024) i0 01 58 03 28 i40 00 00 00 8b 43 40 Data: tdump21 (germano/Crosstabs.pdf) ------------- i0 i0 01 58 F40.3(0.084) i20 i0 01 58 F40.3(0.147) i40 i0 01 58 F40.3(0.025) i24 i0 01 58 F40.3(0.061) i44 i0 01 58 F40.3(0.017) i8 i0 01 58 F40.3(0.054) i28 i0 01 58 F40.3(0.069) i48 i0 01 58 F40.3(0.045) i12 i0 01 58 F40.3(0.028) i32 i0 01 58 F40.3(0.026) i52 i0 01 58 F40.3(0.030) i36 i0 01 58 F40.3(0.196) i56 i0 01 58 F40.3(0.077) - i1 i0 01 58 F40.3(0.055) i21 i0 01 58 F40.3(0.077) i41 i0 01 58 F40.3(0.056) i25 i0 01 58 F40.3(0.020) i45 i0 01 58 F40.3(0.010) i9 i0 01 58 F40.3(0.021) i29 i0 01 58 F40.3(0.026) i49 i0 01 58 F40.3(0.017) i13 i0 01 58 F40.3(0.083) i33 i0 01 58 F40.3(0.078) i53 i0 01 58 F40.3(0.090) i2 i0 01 58 F40.3(1.498) i22 i0 01 58 F40.3(1.789) i42 i0 01 58 F40.3(0.448) i10 i0 01 58 F40.3(2.594) i30 i0 01 58 F40.3(2.594) i50 i0 01 58 F40.3(2.594) i14 i0 01 58 F40.3(0.337) i34 i0 01 58 F40.3(0.337) i54 i0 01 58 F40.3(0.337) i3 i0 01 58 F40.3(0.134) i23 i0 01 58 F40.3(0.074) i43 i0 01 58 F40.3(0.654) with footnote c (2): i27 i0 01 31 i1 i2 00 00 i11: (i5: ("" 58) 58 58) F40.3(0.955) i47 i0 01 31 i1 i2 00 00 i11: (i5: ("" 58) 58 58) F40.3(0.975) with footnote d (3): i11 i0 01 31 i1 i3 00 00 i11: (i5: ("" 58) 58 58) F40.3(0.939) i31 i0 01 31 i1 i3 00 00 i11: (i5: ("" 58) 58 58) F40.3(0.939) i51 i0 01 31 i1 i3 00 00 i11: (i5: ("" 58) 58 58) F40.3(0.939) i15 i0 01 58 F40.3(0.736) i35 i0 01 58 F40.3(0.736) i55 i0 01 58 F40.3(0.736) Data: tdump9 ------------ 0c == font size in points? i3 i0 01 31 i0 i0 i51: (i5: ("" 58) 31 00 00 00 01 "#000000" "#fbf873" "SansSerif" 0c 58) F40.1(11.0) ... i59 i0 01 31 i0 i0 i51: (i5: ("" 58) 31 00 00 00 01 "#000000" "#fbf873" "SansSerif" 0c 58) F40.1(3.3) ... i107 i0 01 31 i0 i0 i51: (i5: ("" 58) 31 00 00 00 01 "#000000" "#fbf873" "SansSerif" 0c 58) F40.1(-2.8) ... i87 i0 01 31 i0 i0 i51: (i5: ("" 58) 31 00 00 00 01 "#000000" "#fbf873" "SansSerif" 0c 58) F40.1(2.5) ... i111 i0 01 31 i0 i0 i51: (i5: ("" 58) 31 00 00 00 01 "#000000" "#fbf873" "SansSerif" 0c 58) F40.1(-3.5) ... i67 i0 01 31 i0 i0 i51: (i5: ("" 58) 31 00 00 00 01 "#000000" "#fbf873" "SansSerif" 0c 58) F40.1(-3.5) ... i115 i0 01 31 i0 i0 i51: (i5: ("" 58) 31 00 00 00 01 "#000000" "#fbf873" "SansSerif" 0c 58) F40.1(6.9) Data: tdump19 ------------- 40 observations (i40): i0 i1 i2 i2 00 00 00 00 i1 i40 i0 00 00 00 00 01 58 F40.0(100) i4 00 00 00 00 01 58 F40.1(16.0) i8 00 00 00 00 01 58 F40.1(64.0) i12 00 00 00 00 01 58 F40.1(80.0) i16 00 00 00 00 01 58 F40.1(7227.0) i20 00 00 00 00 01 58 F40.3(72.270) i60 00 00 00 00 01 58 F40.4(0.3216) i24 00 00 00 00 01 58 F40.4(3.2157) i28 00 00 00 00 01 58 F40.3(10.341) i32 00 00 00 00 01 58 F40.3(-0.032) i72 00 00 00 00 01 58 F40.3(0.241) i36 00 00 00 00 01 58 F40.3(-0.235) i76 00 00 00 00 01 58 F40.3(0.478) i1 00 00 00 00 01 58 F40.0(100) i5 00 00 00 00 01 58 F40.1(25.0) i9 00 00 00 00 01 58 F40.1(62.0) i13 00 00 00 00 01 58 F40.1(87.0) i17 00 00 00 00 01 58 F40.1(7385.0) i21 00 00 00 00 01 58 F40.3(73.850) i61 00 00 00 00 01 58 F40.4(0.5131) i25 00 00 00 00 01 58 F40.4(5.1314) i29 00 00 00 00 01 58 F40.3(26.331) i33 00 00 00 00 01 58 F40.3(0.055) i73 00 00 00 00 01 58 F40.3(0.241) i37 00 00 00 00 01 58 F40.3(-0.213) i77 00 00 00 00 01 58 F40.3(0.478) i2 00 00 00 00 01 58 F40.0(100) i6 00 00 00 00 01 58 F40.1(22.0) i10 00 00 00 00 01 58 F40.1(64.0) i14 00 00 00 00 01 58 F40.1(86.0) i18 00 00 00 00 01 58 F40.1(7280.0) i22 00 00 00 00 01 58 F40.3(72.800) i62 00 00 00 00 01 58 F40.4(0.4740) i26 00 00 00 00 01 58 F40.4(4.7397) i30 00 00 00 00 01 58 F40.3(22.465) i34 00 00 00 00 01 58 F40.3(0.223) i74 00 00 00 00 01 58 F40.3(0.241) i38 00 00 00 00 01 58 F40.3(-0.099) i78 00 00 00 00 01 58 F40.3(0.478) i3 00 00 00 00 01 58 F40.0(100) Data: tdump27 ------------- 21 observations (i21): 01 00 00 00 i1 00 00 00 00 00 00 00 00 i1 i21 i0 00 00 00 00 01 58 F40.0(100) i1 00 00 00 00 01 58 F40.0(0) i2 00 00 00 00 01 58 F40.2(3.31) i3 00 00 00 00 01 58 F40.3(0.244) i4 00 00 00 00 01 58 F40.2(3.00) i5 00 00 00 00 01 58 F40.0(4) i6 00 00 00 00 01 58 F40.3(2.444) i7 00 00 00 00 01 58 F40.3(5.974) i8 00 00 00 00 01 58 F40.3(0.796) i9 00 00 00 00 01 58 F40.3(0.241) i10 00 00 00 00 01 58 F40.3(0.451) i11 00 00 00 00 01 58 F40.3(0.478) i12 00 00 00 00 01 58 F40.0(10) i13 00 00 00 00 01 58 F40.0(0) i14 00 00 00 00 01 58 F40.0(10) i15 00 00 00 00 01 58 F40.0(331) i16 00 00 00 00 01 58 F40.2(0.00) i17 00 00 00 00 01 58 F40.2(1.00) i18 00 00 00 00 01 58 F40.2(3.00) i19 00 00 00 00 01 58 F40.2(4.00) i20 00 00 00 00 01 58 F40.2(7.00) Data: tdump24 (germano/Crosstabs.pdf) ------------- 432 observations (i432): i0 i2 i1 i2 i0 i432 i0 i0 00 00 03 "<5" 31 i0 i1 "a" i11: (i5: ("" 58) 58 58) 00 00 00 00 "<5" 00 i96 i0 03 "<5" 31 i0 i1 "a" i11: (i5: ("" 58) 58 58) 00 00 00 00 "<5" 00 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 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 i384 i0 01 58 F40.0(12) i8 i0 01 ((31 i0 i1 "a" i11 i5 i0 58 58)) 58 F40.0(5) i104 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 i200 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 28 i1 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 88 i1 00 00 00 01 58 F40.0(15) i16 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 i112 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 i208 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 30 i1 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 i400 i0 01 58 F40.0(12) i24 00 00 00 00 01 31 00 00 00 00 i1 "a" i11 i5 00 00 00 00 58 58 58 F40.0(5) i120 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 i216 00 00 00 00 01 31 00 00 00 00 i1 "a" i11 i5 00 00 00 00 58 58 58 F40.0(6) 38 i1 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 98 i1 00 00 00 01 58 F40.0(16) i32 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 i128 00 00 00 00 01 31 00 00 00 00 i1 "a" i11 i5 00 00 00 00 58 58 58 F40.0(7) i224 00 00 00 00 01 31 00 00 00 00 i1 "a" i11 i5 00 00 00 00 58 58 58 F40.0(6) 40 i1 00 00 00 01 31 00 00 00 00 i1 "a" i11 i5 00 00 00 00 58 58 58 F40.0(5) a0 i1 00 00 00 01 58 F40.0(21) i40 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 i136 00 00 00 00 01 31 00 00 00 00 i1 "a" i11 i5 00 00 00 00 58 58 58 F40.0(5) i232 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 48 i1 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 a8 i1 00 00 00 01 58 F40.0(11) i48 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 i144 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 i240 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 50 i1 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 b0 i1 00 00 00 03 "<5" 58 00 00 00 00 "<5" 00 i56 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 i152 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 i248 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 58 i1 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 b8 i1 00 00 00 03 "<5" 58 00 00 00 00 "<5" 00 i64 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 i160 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 00 i1 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 60 i1 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 c0 i1 00 00 00 03 "<5" 58 00 00 00 00 "<5" 00 i72 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 i168 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 08 i1 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 68 i1 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 c8 i1 00 00 00 03 "<5" 58 00 00 00 00 "<5" 00 i80 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 i176 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 10 i1 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 70 i1 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 d0 i1 00 00 00 03 "<5" 58 00 00 00 00 "<5" 00 i88 00 00 00 00 01 58 F40.0(25) i184 00 00 00 00 01 58 F40.0(25) 18 i1 00 00 00 01 58 F40.0(25) 78 i1 00 00 00 01 58 F40.0(25) d8 i1 00 00 00 01 58 F40.0(100) i1 00 00 00 00 01 58 F40.1(3.0) i97 00 00 00 00 01 58 F40.1(3.0) i193 00 00 00 00 01 58 F40.1(3.0) i277 00 00 00 00 01 58 F40.1(3.0) 81 i1 00 00 00 01 58 F40.1(12.0) i9 00 00 00 00 01 58 F40.1(3.8) i105 00 00 00 00 01 58 F40.1(3.8) i201 00 00 00 00 01 58 F40.1(3.8) 29 i1 00 00 00 01 58 F40.1(3.8) 89 i1 00 00 00 01 58 F40.1(15.0) i17 00 00 00 00 01 58 F40.1(3.0) i113 00 00 00 00 01 58 F40.1(3.0) i209 00 00 00 00 01 58 F40.1(3.0) 31 i1 00 00 00 01 58 F40.1(3.0) 91 i1 00 00 00 01 58 F40.1(12.0) i25 00 00 00 00 01 58 F40.1(4.0) i121 00 00 00 00 01 58 F40.1(4.0) i217 00 00 00 00 01 58 F40.1(4.0) 39 i1 00 00 00 01 58 F40.1(4.0) 99 i1 00 00 00 01 58 F40.1(16.0) i33 00 00 00 00 01 58 F40.1(5.2) i129 00 00 00 00 01 58 F40.1(5.2) i225 00 00 00 00 01 58 F40.1(5.2) 41 i1 00 00 00 01 58 F40.1(5.2) a1 i1 00 00 00 01 58 F40.1(21.0) i41 00 00 00 00 01 58 F40.1(2.8) i137 00 00 00 00 01 58 F40.1(2.8) i233 00 00 00 00 01 58 F40.1(2.8) 49 i1 00 00 00 01 58 F40.1(2.8) a9 i1 00 00 00 01 58 F40.1(11.0) 31 00 00 00 00 00 00 00 03 "n<5" 58 00 00 00 00 "n<5" 00 i145 00 00 00 00 03 "n<5" 58 00 00 00 00 "n<5" 00 i241 00 00 00 00 03 "n<5" 58 00 00 00 00 "n<5" 00 51 i1 00 00 00 03 "n<5" 58 00 00 00 00 "n<5" 00 b1 i1 00 00 00 03 "<5" 58 00 00 00 00 "<5" 00 i57 00 00 00 00 03 "n<5" 58 00 00 00 00 "n<5" 00 i153 00 00 00 00 03 "n<5" 58 00 00 00 00 "n<5" 00 i249 00 00 00 00 03 "n<5" 58 00 00 00 00 "n<5" 00 59 i1 00 00 00 03 "n<5" 58 00 00 00 00 "n<5" 00 b9 i1 00 00 00 03 "<5" 58 00 00 00 00 "<5" 00 i65 00 00 00 00 03 "n<5" 58 00 00 00 00 "n<5" 00 i161 00 00 00 00 03 "n<5" 58 00 00 00 00 "n<5" 00 01 i1 00 00 00 03 "n<5" 58 00 00 00 00 "n<5" 00 61 i1 00 00 00 03 "n<5" 58 00 00 00 00 "n<5" 00 c1 i1 00 00 00 03 "<5" 58 00 00 00 00 "<5" 00 i73 00 00 00 00 03 "n<5" 58 00 00 00 00 "n<5" 00 i169 00 00 00 00 03 "n<5" 58 00 00 00 00 "n<5" 00 09 i1 00 00 00 03 "n<5" 58 00 00 00 00 "n<5" 00 69 i1 00 00 00 03 "n<5" 58 00 00 00 00 "n<5" 00 c9 i1 00 00 00 03 "<5" 58 00 00 00 00 "<5" 00 i81 00 00 00 00 03 "n<5" 58 00 00 00 00 "n<5" 00 i177 00 00 00 00 03 "n<5" 58 00 00 00 00 "n<5" 00 11 i1 00 00 00 03 "n<5" 58 00 00 00 00 "n<5" 00 71 i1 00 00 00 03 "n<5" 58 00 00 00 00 "n<5" 00 d1 i1 00 00 00 03 "<5" 58 00 00 00 00 "<5" 00 i89 00 00 00 00 01 58 F40.1(25.0) i185 00 00 00 00 01 58 F40.1(25.0) 19 i1 00 00 00 01 58 F40.1(25.0) 79 i1 00 00 00 01 58 F40.1(25.0) d9 i1 00 00 00 01 58 F40.1(100.0) i2 00 00 00 00 03 "n<5" 58 00 00 00 00 "n<5" 00 i98 00 00 00 00 03 "n<5" 58 00 00 00 00 "n<5" 00 i194 00 00 00 00 03 "n<5" 58 00 00 00 00 "n<5" 00 22 i1 00 00 00 03 "n<5" 58 00 00 00 00 "n<5" 00 82 i1 00 00 00 01 58 PCT40.1(12.0) i10 00 00 00 00 01 58 PCT40.1(20.0) i106 00 00 00 00 03 "n<5" 58 00 00 00 00 "n<5" 00 i202 00 00 00 00 03 "n<5" 58 00 00 00 00 "n<5" 00 2a i1 00 00 00 03 "n<5" 58 00 00 00 00 "n<5" 00 8a i1 00 00 00 01 58 PCT40.1(15.0) i18 00 00 00 00 03 "n<5" 58 00 00 00 00 "n<5" 00 i114 00 00 00 00 03 "n<5" 58 00 00 00 00 "n<5" 00 i210 00 00 00 00 03 "n<5" 58 00 00 00 00 "n<5" 00 32 i1 00 00 00 03 "n<5" 58 00 00 00 00 "n<5" 00 92 i1 00 00 00 01 58 PCT40.1(12.0) i26 00 00 00 00 01 58 PCT40.1(20.0) i122 00 00 00 00 03 "n<5" 58 00 00 00 00 "n<5" 00 i218 00 00 00 00 01 58 PCT40.1(24.0) 3a i1 00 00 00 03 "n<5" 58 00 00 00 00 "n<5" 00 9a i1 00 00 00 01 58 PCT40.1(16.0) i34 00 00 00 00 03 "n<5" 58 00 00 00 00 "n<5" 00 i130 00 00 00 00 01 58 PCT40.1(28.0) i226 00 00 00 00 01 58 PCT40.1(24.0) 42 i1 00 00 00 01 58 PCT40.1(20.0) a2 i1 00 00 00 01 58 PCT40.1(21.0) i42 00 00 00 00 03 "n<5" 58 00 00 00 00 "n<5" 00 i138 00 00 00 00 01 58 PCT40.1(20.0) i234 00 00 00 00 03 "n<5" 58 00 00 00 00 "n<5" 00 4a i1 00 00 00 03 "n<5" 58 00 00 00 00 "n<5" 00 aa i1 00 00 00 01 58 PCT40.1(11.0) i50 00 00 00 00 03 "n<5" 58 00 00 00 00 "n<5" 00 i146 00 00 00 00 03 "n<5" 58 00 00 00 00 "n<5" 00 i242 00 00 00 00 03 "n<5" 58 00 00 00 00 "n<5" 00 52 i1 00 00 00 03 "n<5" 58 00 00 00 00 "n<5" 00 b2 i1 00 00 00 03 "n<5" 58 00 00 00 00 "n<5" 00 i58 00 00 00 00 03 "n<5" 58 00 00 00 00 "n<5" 00 i154 00 00 00 00 03 "n<5" 58 00 00 00 00 "n<5" 00 i250 00 00 00 00 03 "n<5" 58 00 00 00 00 "n<5" 00 5a i1 00 00 00 03 "n<5" 58 00 00 00 00 "n<5" 00 ba i1 00 00 00 03 "n<5" 58 00 00 00 00 "n<5" 00 i66 00 00 00 00 03 "n<5" 58 00 00 00 00 "n<5" 00 i162 00 00 00 00 03 "n<5" 58 00 00 00 00 "n<5" 00 02 i1 00 00 00 03 "n<5" 58 00 00 00 00 "n<5" 00 62 i1 00 00 00 03 "n<5" 58 00 00 00 00 "n<5" 00 c2 i1 00 00 00 03 "n<5" 58 00 00 00 00 "n<5" 00 i74 00 00 00 00 03 "n<5" 58 00 00 00 00 "n<5" 00 i170 00 00 00 00 03 "n<5" 58 00 00 00 00 "n<5" 00 0a i1 00 00 00 03 "n<5" 58 00 00 00 00 "n<5" 00 6a i1 00 00 00 03 "n<5" 58 00 00 00 00 "n<5" 00 ca i1 00 00 00 03 "n<5" 58 00 00 00 00 "n<5" 00 i82 00 00 00 00 03 "n<5" 58 00 00 00 00 "n<5" 00 i178 00 00 00 00 03 "n<5" 58 00 00 00 00 "n<5" 00 12 i1 00 00 00 03 "n<5" 58 00 00 00 00 "n<5" 00 72 i1 00 00 00 03 "n<5" 58 00 00 00 00 "n<5" 00 d2 i1 00 00 00 03 "n<5" 58 00 00 00 00 "n<5" 00 i90 00 00 00 00 01 58 PCT40.1(100.0) i186 00 00 00 00 01 58 PCT40.1(100.0) 1a i1 00 00 00 01 58 PCT40.1(100.0) 7a i1 00 00 00 01 58 PCT40.1(100.0) da i1 00 00 00 01 58 PCT40.1(100.0) i3 00 00 00 00 03 "n<5" 58 00 00 00 00 "n<5" 00 i99 00 00 00 00 03 "n<5" 58 00 00 00 00 "n<5" 00 i195 00 00 00 00 03 "n<5" 58 00 00 00 00 "n<5" 00 23 i1 00 00 00 03 "n<5" 58 00 00 00 00 "n<5" 00 83 i1 00 00 00 01 58 PCT40.1(100.0) i11 00 00 00 00 01 58 PCT40.1(33.3) i107 00 00 00 00 03 "n<5" 58 00 00 00 00 "n<5" 00 i203 00 00 00 00 03 "n<5" 58 00 00 00 00 "n<5" 00 2b i1 00 00 00 03 "n<5" 58 00 00 00 00 "n<5" 00 8b i1 00 00 00 01 58 PCT40.1(100.0) i19 00 00 00 00 03 "n<5" 58 00 00 00 00 "n<5" 00 i115 00 00 00 00 03 "n<5" 58 00 00 00 00 "n<5" 00 i211 00 00 00 00 03 "n<5" 58 00 00 00 00 "n<5" 00 33 i1 00 00 00 03 "n<5" 58 00 00 00 00 "n<5" 00 93 i1 00 00 00 01 58 PCT40.1(100.0) i27 00 00 00 00 01 58 PCT40.1(31.2) i123 00 00 00 00 03 "n<5" 58 00 00 00 00 "n<5" 00 i219 00 00 00 00 01 58 PCT40.1(37.5) 3b i1 00 00 00 03 "n<5" 58 00 00 00 00 "n<5" 00 9b i1 00 00 00 01 58 PCT40.1(100.0) i35 00 00 00 00 03 "n<5" 58 00 00 00 00 "n<5" 00 i131 00 00 00 00 01 58 PCT40.1(33.3) i227 00 00 00 00 01 58 PCT40.1(28.6) 43 i1 00 00 00 01 58 PCT40.1(23.8) a3 i1 00 00 00 01 58 PCT40.1(100.0) i43 00 00 00 00 03 "n<5" 58 00 00 00 00 "n<5" 00 i139 00 00 00 00 01 58 PCT40.1(45.5) i235 00 00 00 00 03 "n<5" 58 00 00 00 00 "n<5" 00 4b i1 00 00 00 03 "n<5" 58 00 00 00 00 "n<5" 00 ab i1 00 00 00 01 58 PCT40.1(100.0) i51 00 00 00 00 03 "n<5" 58 00 00 00 00 "n<5" 00 i147 00 00 00 00 03 "n<5" 58 00 00 00 00 "n<5" 00 i243 00 00 00 00 03 "n<5" 58 00 00 00 00 "n<5" 00 53 i1 00 00 00 03 "n<5" 58 00 00 00 00 "n<5" 00 b3 i1 00 00 00 01 58 PCT40.1(100.0) i59 00 00 00 00 03 "n<5" 58 00 00 00 00 "n<5" 00 i155 00 00 00 00 03 "n<5" 58 00 00 00 00 "n<5" 00 i251 00 00 00 00 03 "n<5" 58 00 00 00 00 "n<5" 00 5b i1 00 00 00 03 "n<5" 58 00 00 00 00 "n<5" 00 bb i1 00 00 00 01 58 PCT40.1(100.0) i67 00 00 00 00 03 "n<5" 58 00 00 00 00 "n<5" 00 i163 00 00 00 00 03 "n<5" 58 00 00 00 00 "n<5" 00 03 i1 00 00 00 03 "n<5" 58 00 00 00 00 "n<5" 00 63 i1 00 00 00 03 "n<5" 58 00 00 00 00 "n<5" 00 c3 i1 00 00 00 01 58 PCT40.1(100.0) i75 00 00 00 00 03 "n<5" 58 00 00 00 00 "n<5" 00 i171 00 00 00 00 03 "n<5" 58 00 00 00 00 "n<5" 00 0b i1 00 00 00 03 "n<5" 58 00 00 00 00 "n<5" 00 6b i1 00 00 00 03 "n<5" 58 00 00 00 00 "n<5" 00 cb i1 00 00 00 01 58 PCT40.1(100.0) i83 00 00 00 00 03 "n<5" 58 00 00 00 00 "n<5" 00 i179 00 00 00 00 03 "n<5" 58 00 00 00 00 "n<5" 00 13 i1 00 00 00 03 "n<5" 58 00 00 00 00 "n<5" 00 73 i1 00 00 00 03 "n<5" 58 00 00 00 00 "n<5" 00 d3 i1 00 00 00 01 58 PCT40.1(100.0) i91 00 00 00 00 01 58 PCT40.1(25.0) i187 00 00 00 00 01 58 PCT40.1(25.0) 1b i1 00 00 00 01 58 PCT40.1(25.0) 7b i1 00 00 00 01 58 PCT40.1(25.0) db i1 00 00 00 01 58 PCT40.1(100.0) i4 00 00 00 00 03 "n<5" 58 00 00 00 00 "n<5" 00 i100 00 00 00 00 03 "n<5" 58 00 00 00 00 "n<5" 00 i196 00 00 00 00 03 "n<5" 58 00 00 00 00 "n<5" 00 24 i1 00 00 00 03 "n<5" 58 00 00 00 00 "n<5" 00 84 i1 00 00 00 01 58 PCT40.1(12.0) i12 00 00 00 00 01 58 PCT40.1(5.0) i108 00 00 00 00 03 "n<5" 58 00 00 00 00 "n<5" 00 i204 00 00 00 00 03 "n<5" 58 00 00 00 00 "n<5" 00 2c i1 00 00 00 03 "n<5" 58 00 00 00 00 "n<5" 00 8c i1 00 00 00 01 58 PCT40.1(15.0) i20 00 00 00 00 03 "n<5" 58 00 00 00 00 "n<5" 00 i116 00 00 00 00 03 "n<5" 58 00 00 00 00 "n<5" 00 i212 00 00 00 00 03 "n<5" 58 00 00 00 00 "n<5" 00 34 i1 00 00 00 03 "n<5" 58 00 00 00 00 "n<5" 00 94 i1 00 00 00 01 58 PCT40.1(12.0) i28 00 00 00 00 01 58 PCT40.1(5.0) i124 00 00 00 00 03 "n<5" 58 00 00 00 00 "n<5" 00 i220 00 00 00 00 01 58 PCT40.1(6.0) 3c i1 00 00 00 03 "n<5" 58 00 00 00 00 "n<5" 00 9c i1 00 00 00 01 58 PCT40.1(16.0) i36 00 00 00 00 03 "n<5" 58 00 00 00 00 "n<5" 00 i132 00 00 00 00 01 58 PCT40.1(7.0) i228 00 00 00 00 01 58 PCT40.1(6.0) 44 i1 00 00 00 01 58 PCT40.1(5.0) a4 i1 00 00 00 01 58 PCT40.1(21.0) i44 00 00 00 00 03 "n<5" 58 00 00 00 00 "n<5" 00 i140 00 00 00 00 01 58 PCT40.1(5.0) i236 00 00 00 00 03 "n<5" 58 00 00 00 00 "n<5" 00 4c i1 00 00 00 03 "n<5" 58 00 00 00 00 "n<5" 00 ac i1 00 00 00 01 58 PCT40.1(11.0) i52 00 00 00 00 03 "n<5" 58 00 00 00 00 "n<5" 00 i148 00 00 00 00 03 "n<5" 58 00 00 00 00 "n<5" 00 i244 00 00 00 00 03 "n<5" 58 00 00 00 00 "n<5" 00 54 i1 00 00 00 03 "n<5" 58 00 00 00 00 "n<5" 00 b4 i1 00 00 00 03 "n<5" 58 00 00 00 00 "n<5" 00 i60 00 00 00 00 03 "n<5" 58 00 00 00 00 "n<5" 00 i156 00 00 00 00 03 "n<5" 58 00 00 00 00 "n<5" 00 i252 00 00 00 00 03 "n<5" 58 00 00 00 00 "n<5" 00 5c i1 00 00 00 03 "n<5" 58 00 00 00 00 "n<5" 00 bc i1 00 00 00 03 "n<5" 58 00 00 00 00 "n<5" 00 i68 00 00 00 00 03 "n<5" 58 00 00 00 00 "n<5" 00 i164 00 00 00 00 03 "n<5" 58 00 00 00 00 "n<5" 00 04 i1 00 00 00 03 "n<5" 58 00 00 00 00 "n<5" 00 64 i1 00 00 00 03 "n<5" 58 00 00 00 00 "n<5" 00 c4 i1 00 00 00 03 "n<5" 58 00 00 00 00 "n<5" 00 i76 00 00 00 00 03 "n<5" 58 00 00 00 00 "n<5" 00 i172 00 00 00 00 03 "n<5" 58 00 00 00 00 "n<5" 00 0c i1 00 00 00 03 "n<5" 58 00 00 00 00 "n<5" 00 6c i1 00 00 00 03 "n<5" 58 00 00 00 00 "n<5" 00 cc i1 00 00 00 03 "n<5" 58 00 00 00 00 "n<5" 00 i84 00 00 00 00 03 "n<5" 58 00 00 00 00 "n<5" 00 i180 00 00 00 00 03 "n<5" 58 00 00 00 00 "n<5" 00 14 i1 00 00 00 03 "n<5" 58 00 00 00 00 "n<5" 00 74 i1 00 00 00 03 "n<5" 58 00 00 00 00 "n<5" 00 d4 i1 00 00 00 03 "n<5" 58 00 00 00 00 "n<5" 00 i92 00 00 00 00 01 58 PCT40.1(25.0) i188 00 00 00 00 01 58 PCT40.1(25.0) 1c i1 00 00 00 01 58 PCT40.1(25.0) 7c i1 00 00 00 01 58 PCT40.1(25.0) dc i1 00 00 00 01 58 PCT40.1(100.0) i5 00 00 00 00 03 "n<5" 58 00 00 00 00 "n<5" 00 i101 00 00 00 00 03 "n<5" 58 00 00 00 00 "n<5" 00 i197 00 00 00 00 03 "n<5" 58 00 00 00 00 "n<5" 00 25 i1 00 00 00 03 "n<5" 58 00 00 00 00 "n<5" 00 i13 00 00 00 00 01 58 F40.1(1.2) i109 00 00 00 00 03 "n<5" 58 00 00 00 00 "n<5" 00 i205 00 00 00 00 03 "n<5" 58 00 00 00 00 "n<5" 00 2d i1 00 00 00 03 "n<5" 58 00 00 00 00 "n<5" 00 i21 00 00 00 00 03 "n<5" 58 00 00 00 00 "n<5" 00 i117 00 00 00 00 03 "n<5" 58 00 00 00 00 "n<5" 00 i213 00 00 00 00 03 "n<5" 58 00 00 00 00 "n<5" 00 35 i1 00 00 00 03 "n<5" 58 00 00 00 00 "n<5" 00 i29 00 00 00 00 01 58 F40.1(1.0) i125 00 00 00 00 03 "n<5" 58 00 00 00 00 "n<5" 00 i221 00 00 00 00 01 58 F40.1(2.0) 3d i1 00 00 00 03 "n<5" 58 00 00 00 00 "n<5" 00 i37 00 00 00 00 03 "n<5" 58 00 00 00 00 "n<5" 00 i133 00 00 00 00 01 58 F40.1(1.8) i229 00 00 00 00 01 58 F40.1(0.8) 45 i1 00 00 00 01 58 F40.1(-0.2) i45 00 00 00 00 03 "n<5" 58 00 00 00 00 "n<5" 00 i141 00 00 00 00 01 58 F40.1(2.2) i237 00 00 00 00 03 "n<5" 58 00 00 00 00 "n<5" 00 4d i1 00 00 00 03 "n<5" 58 00 00 00 00 "n<5" 00 i53 00 00 00 00 03 "n<5" 58 00 00 00 00 "n<5" 00 i149 00 00 00 00 03 "n<5" 58 00 00 00 00 "n<5" 00 i245 00 00 00 00 03 "n<5" 58 00 00 00 00 "n<5" 00 55 i1 00 00 00 03 "n<5" 58 00 00 00 00 "n<5" 00 i61 00 00 00 00 03 "n<5" 58 00 00 00 00 "n<5" 00 i157 00 00 00 00 03 "n<5" 58 00 00 00 00 "n<5" 00 i253 00 00 00 00 03 "n<5" 58 00 00 00 00 "n<5" 00 5d i1 00 00 00 03 "n<5" 58 00 00 00 00 "n<5" 00 i69 00 00 00 00 03 "n<5" 58 00 00 00 00 "n<5" 00 i165 00 00 00 00 03 "n<5" 58 00 00 00 00 "n<5" 00 05 i1 00 00 00 03 "n<5" 58 00 00 00 00 "n<5" 00 65 i1 00 00 00 03 "n<5" 58 00 00 00 00 "n<5" 00 i77 00 00 00 00 03 "n<5" 58 00 00 00 00 "n<5" 00 i173 00 00 00 00 03 "n<5" 58 00 00 00 00 "n<5" 00 0d i1 00 00 00 03 "n<5" 58 00 00 00 00 "n<5" 00 6d i1 00 00 00 03 "n<5" 58 00 00 00 00 "n<5" 00 i85 00 00 00 00 03 "n<5" 58 00 00 00 00 "n<5" 00 i181 00 00 00 00 03 "n<5" 58 00 00 00 00 "n<5" 00 15 i1 00 00 00 03 "n<5" 58 00 00 00 00 "n<5" 00 75 i1 00 00 00 03 "n<5" 58 00 00 00 00 "n<5" 00 i6 00 00 00 00 03 "n<5" 58 00 00 00 00 "n<5" 00 i102 00 00 00 00 03 "n<5" 58 00 00 00 00 "n<5" 00 i198 00 00 00 00 03 "n<5" 58 00 00 00 00 "n<5" 00 26 i1 00 00 00 03 "n<5" 58 00 00 00 00 "n<5" 00 i14 00 00 00 00 01 58 F40.1(0.6) i110 00 00 00 00 03 "n<5" 58 00 00 00 00 "n<5" 00 i206 00 00 00 00 03 "n<5" 58 00 00 00 00 "n<5" 00 2e i1 00 00 00 03 "n<5" 58 00 00 00 00 "n<5" 00 i22 00 00 00 00 03 "n<5" 58 00 00 00 00 "n<5" 00 i118 00 00 00 00 03 "n<5" 58 00 00 00 00 "n<5" 00 i214 00 00 00 00 03 "n<5" 58 00 00 00 00 "n<5" 00 36 i1 00 00 00 03 "n<5" 58 00 00 00 00 "n<5" 00 i30 00 00 00 00 01 58 F40.1(0.5) i126 00 00 00 00 03 "n<5" 58 00 00 00 00 "n<5" 00 i222 00 00 00 00 01 58 F40.1(1.0) 3e i1 00 00 00 03 "n<5" 58 00 00 00 00 "n<5" 00 i38 00 00 00 00 03 "n<5" 58 00 00 00 00 "n<5" 00 i134 00 00 00 00 01 58 F40.1(0.8) i230 00 00 00 00 01 58 F40.1(0.3) 46 i1 00 00 00 01 58 F40.1(-0.1) i46 00 00 00 00 03 "n<5" 58 00 00 00 00 "n<5" 00 i142 00 00 00 00 01 58 F40.1(1.4) i238 00 00 00 00 03 "n<5" 58 00 00 00 00 "n<5" 00 4e i1 00 00 00 03 "n<5" 58 00 00 00 00 "n<5" 00 i54 00 00 00 00 03 "n<5" 58 00 00 00 00 "n<5" 00 i150 00 00 00 00 03 "n<5" 58 00 00 00 00 "n<5" 00 i246 00 00 00 00 03 "n<5" 58 00 00 00 00 "n<5" 00 56 i1 00 00 00 03 "n<5" 58 00 00 00 00 "n<5" 00 i62 00 00 00 00 03 "n<5" 58 00 00 00 00 "n<5" 00 i158 00 00 00 00 03 "n<5" 58 00 00 00 00 "n<5" 00 i254 00 00 00 00 03 "n<5" 58 00 00 00 00 "n<5" 00 5e i1 00 00 00 03 "n<5" 58 00 00 00 00 "n<5" 00 i70 00 00 00 00 03 "n<5" 58 00 00 00 00 "n<5" 00 i166 00 00 00 00 03 "n<5" 58 00 00 00 00 "n<5" 00 06 i1 00 00 00 03 "n<5" 58 00 00 00 00 "n<5" 00 66 i1 00 00 00 03 "n<5" 58 00 00 00 00 "n<5" 00 i78 00 00 00 00 03 "n<5" 58 00 00 00 00 "n<5" 00 i174 00 00 00 00 03 "n<5" 58 00 00 00 00 "n<5" 00 0e i1 00 00 00 03 "n<5" 58 00 00 00 00 "n<5" 00 6e i1 00 00 00 03 "n<5" 58 00 00 00 00 "n<5" 00 i86 00 00 00 00 03 "n<5" 58 00 00 00 00 "n<5" 00 i182 00 00 00 00 03 "n<5" 58 00 00 00 00 "n<5" 00 16 i1 00 00 00 03 "n<5" 58 00 00 00 00 "n<5" 00 76 i1 00 00 00 03 "n<5" 58 00 00 00 00 "n<5" 00 i7 00 00 00 00 03 "n<5" 58 00 00 00 00 "n<5" 00 i103 00 00 00 00 03 "n<5" 58 00 00 00 00 "n<5" 00 i199 00 00 00 00 03 "n<5" 58 00 00 00 00 "n<5" 00 27 i1 00 00 00 03 "n<5" 58 00 00 00 00 "n<5" 00 i15 00 00 00 00 01 58 F40.1(0.8) i111 00 00 00 00 03 "n<5" 58 00 00 00 00 "n<5" 00 i207 00 00 00 00 03 "n<5" 58 00 00 00 00 "n<5" 00 2f i1 00 00 00 03 "n<5" 58 00 00 00 00 "n<5" 00 i23 00 00 00 00 03 "n<5" 58 00 00 00 00 "n<5" 00 i119 00 00 00 00 03 "n<5" 58 00 00 00 00 "n<5" 00 i215 00 00 00 00 03 "n<5" 58 00 00 00 00 "n<5" 00 37 i1 00 00 00 03 "n<5" 58 00 00 00 00 "n<5" 00 i31 00 00 00 00 01 58 F40.1(0.6) i127 00 00 00 00 03 "n<5" 58 00 00 00 00 "n<5" 00 i223 00 00 00 00 01 58 F40.1(1.3) 3f i1 00 00 00 03 "n<5" 58 00 00 00 00 "n<5" 00 i39 00 00 00 00 03 "n<5" 58 00 00 00 00 "n<5" 00 i135 00 00 00 00 01 58 F40.1(1.0) i231 00 00 00 00 01 58 F40.1(0.4) 47 i1 00 00 00 01 58 F40.1(-0.1) i47 00 00 00 00 03 "n<5" 58 00 00 00 00 "n<5" 00 i143 00 00 00 00 01 58 F40.1(1.7) i239 00 00 00 00 03 "n<5" 58 00 00 00 00 "n<5" 00 4f i1 00 00 00 03 "n<5" 58 00 00 00 00 "n<5" 00 i55 00 00 00 00 03 "n<5" 58 00 00 00 00 "n<5" 00 i151 00 00 00 00 03 "n<5" 58 00 00 00 00 "n<5" 00 i247 00 00 00 00 03 "n<5" 58 00 00 00 00 "n<5" 00 57 i1 00 00 00 03 "n<5" 58 00 00 00 00 "n<5" 00 i63 00 00 00 00 03 "n<5" 58 00 00 00 00 "n<5" 00 i159 00 00 00 00 03 "n<5" 58 00 00 00 00 "n<5" 00 i255 00 00 00 00 03 "n<5" 58 00 00 00 00 "n<5" 00 5f i1 00 00 00 03 "n<5" 58 00 00 00 00 "n<5" 00 i71 00 00 00 00 03 "n<5" 58 00 00 00 00 "n<5" 00 i167 00 00 00 00 03 "n<5" 58 00 00 00 00 "n<5" 00 07 i1 00 00 00 03 "n<5" 58 00 00 00 00 "n<5" 00 67 i1 00 00 00 03 "n<5" 58 00 00 00 00 "n<5" 00 i79 00 00 00 00 03 "n<5" 58 00 00 00 00 "n<5" 00 i175 00 00 00 00 03 "n<5" 58 00 00 00 00 "n<5" 00 0f i1 00 00 00 03 "n<5" 58 00 00 00 00 "n<5" 00 6f i1 00 00 00 03 "n<5" 58 00 00 00 00 "n<5" 00 i87 00 00 00 00 03 "n<5" 58 00 00 00 00 "n<5" 00 i183 00 00 00 00 03 "n<5" 58 00 00 00 00 "n<5" 00 17 i1 00 00 00 03 "n<5" 58 00 00 00 00 "n<5" 00 77 i1 00 00 00 03 "n<5" 58 00 00 00 00 "n<5" 00 Substitutions ------------- The primary format specifier for substitution 1 is ^1. Substitutions with multiple values take the form [:^1:]1, where ]1 references substitution 1 and ^1 refers to the first value within the substitution. The : are mandatory even though not apparently useful. There can be extra text, e.g. [:^1\n:]1. Substitutions with two forms for multiple values are written as [%1:, ^1:]1. The general form appears to be [a:b:]x. Apparently, % is used in a and ^ is used in b, but there's no obvious reason why. Substitutions can take two values at a time, like: [:^1 = ^2:]1 but more often there would be two forms: [%1 = %2:, ^1 = ^2:]1. A literal : is written \: Presumably a literal ^ is written \^ but there are no examples. WM is constant when Age = 19.00. It will be included in any boxplots produced but other output will be omitted. Design: Intercept Within Subjects Design: Looks+Charisma+Looks*Charisma Dependent Variable: Num_Diagnostic Model: (Intercept), functdent, Sex, nursebeds, BaseAge, offset = log_period_yr Error(Time)