home *** CD-ROM | disk | FTP | other *** search
/ Telecom / 1996-04-telecom-walnutcreek.iso / technical / truevoice.dsp.analysis < prev    next >
Text File  |  1993-09-16  |  56KB  |  1,401 lines

  1.     
  2.    Subject: AT&T TrueVoice DSP Analysis
  3.    Date: Fri, 3 Sep 93 13:39:17 -0700
  4.    From: malcolm@apple.com
  5.     
  6. I've just finished an analysis of the AT&T TrueVoice demo that has
  7. been advertised by AT&T and discussed in the TELECOM Digest.  Here are
  8. the results of the analysis.
  9.     
  10. First, there is a reason that the TrueVoice version sounds louder.
  11. Above 300Hz there is a pretty uniform gain of 4dB.  Between 100-300 Hz
  12. there is a 14 dB gain peak (with a notch at 180 Hz to kill the third
  13. harmonic of the power line hum.)  Here are the details:
  14.     
  15.     0-100 Hz    Not much change.
  16.     100-300Hz    A broad gain bump of about 14dB
  17.     180Hz        Deep 12.5dB notch (back to 1.5 dB) 
  18.     300-4kHz    4dB extra gain with a .5dB ripple
  19.     
  20. Method:
  21.     
  22. The AT&T TrueVoice demo (1 800 932-2000) was digitized with the
  23. Telecom pod on the Macintosh Quadra 840AV (using the AT&T 3210 DSP
  24. chip).  Samples were converted with 16 bits of linear resolution,
  25. sampled at 8kHz, and stored in an AIFF file.  All data was collected
  26. from a single phone call using an analog phone line.
  27.     
  28. The results were loaded into Matlab on a Macintosh for analysis.  The
  29. TrueVoice demo starts with 30 seconds of normal speech and then
  30. automatically switches on the TrueVoice modification and replays the
  31. same speech.  The beginning of each demo sample was aligned by eye,
  32. and then a cross correlation was used to refine the relative starting
  33. positions.  All further analysis was done on these aligned samples of
  34. modified and unmodified speech.
  35.  
  36. Note, the TrueVoice modification is turned on over a second or two.
  37. (I don't know why AT&T does this.  Perhaps they didn't want the change
  38. to seem too jarring.)  The cross correlation analysis was done using
  39. these first couple of seconds: this should make the correlation more
  40. accurate.  The spectral analysis that followed skipped the first three
  41. seconds.
  42.     
  43. A periodogram analysis was performed using a window of data of length
  44. 2048 and skipping 16 samples between windows.  A Hamming window was
  45. used before FFT'ing and the power spectral density was computed.  The
  46. power spectral density for all windows was summed (averaged) to arrive
  47. at a robust estimate of the power spectral density of the entire
  48. sample.  A total of 170,000 data samples was used from each example.
  49.     
  50. The power spectral density for each example (unmodified and modified
  51. speech) was converted to dB.  The two PSDs are then subtracted to
  52. estimate the difference in spectral energy due to the TrueVoice
  53. filtering.
  54.     
  55. Results:
  56.     
  57. The broad filter characteristics are shown below.
  58.     
  59.     0-100 Hz    Not much change.
  60.     100-300Hz    A broad gain of 13.7 dB, 3dB Q is 1.5
  61.     120Hz        About a 1dB dip in the gain
  62.     180Hz        Narrow band reject down to 1.5 dB, 3dB Q is 18
  63.     300-4kHz    4dB extra gain with a .5dB ripple
  64.     
  65. Note, there is a deep notch at the 3rd harmonic of the power line
  66. frequency and a extra small dip at the second harmonic.  I don't have
  67. enough information to tell if they are doing anything different at
  68. 60Hz.
  69.     
  70. The filtering appears to be stationary.  The demo over the phone turns
  71. the filtering on gradually, but after a second there appears to be no
  72. change in the filter's characteristics.  The analysis described above
  73. was performed over several subsections of the data and there was no
  74. visible change in the filter's characteristics.
  75.     
  76. Acknowledgements:
  77.     
  78. Many thanks to Stuart Davidson for setting up the hardware and
  79. software to digitize the demo.  Thanks also to Michele Covell
  80. (Interval Research) for help with the filter analysis.  The
  81. periodogram is discussed in Larry Marple's book "Digital Spectral
  82. Analysis with Applications."
  83.     
  84. Disclaimer:
  85.     
  86. I have no affiliation with AT&T except as a mostly satisfied customer.
  87. This work is not an official Apple project.  TrueVoice and AT&T are
  88. undoubtably trademarks of AT&T.
  89.     
  90.     
  91. Malcolm Slaney    malcolm@apple.com
  92.  
  93.     
  94. ===================  Matlab Periodogram Code ============================
  95.     
  96. % function y=periodogram(x,width,skip)
  97. % Compute the periodogram (an estimate of the power spectral
  98. % density) of an array.  The width of each analysis defaults to 
  99. % 256 points, and the default skip between windows is half the
  100. % window size.
  101.     
  102. function y=periodogram(x,width,skip)
  103.     
  104. if (nargin < 2) width = 256; end
  105. if (nargin < 3) skip = width/2; end
  106. nwinds = fix((length(x)-width)/skip);
  107.     
  108. x = reshape(x,length(x),1);
  109. wind = hamming(width);
  110. y = zeros(width,1);
  111. for i=1:nwinds
  112.     firstPoint = (i-1)*skip + 1;
  113.     d = [x(firstPoint:firstPoint+width-1).*wind;zeros(width,1)];
  114.     f = fft(d);
  115.     f = f(1:width);
  116.     y = y + f .* conj(f);
  117. end
  118. y = y/nwinds;
  119.     
  120. ===============  Matlab TrueVoice Analysis Code =========================
  121.     
  122. % Analyze a recorded sample of the AT&T TrueVoice demo.
  123. % This script assumes that the entire demo is stored in
  124. % an array called tv.  The start of the first and second 
  125. % version of the demo are indicated by the first and second
  126. % pointers.  (These will be different for anybody else's 
  127. % recording of the phone call.)
  128.     
  129. first=116000;
  130. second=395500+41;
  131. firstEnd = 355000;
  132. secondEnd = 610000;
  133.     
  134. sampleRate = 8000;
  135. %segment = 170000;
  136. segment = 32768;
  137. offset = 30000;
  138. if (second + offset + segment > secondEnd)
  139.     disp('Segment is past end of second example.');
  140.     return;
  141. end
  142.     
  143. s1=tv(first+offset:first+offset+segment-1);
  144. s2=tv(second+offset:second+offset+segment-1);
  145.     
  146. % Optionally compute the optimum cross correlation.
  147. % If the alignment is done right, then the maximum
  148. % value of the cross correlation should be in the 
  149. % middle of the cross correlation or sample number
  150. % equal to segment size    .
  151.     
  152. % cor = xcorr(s1,s2);
  153. % plot(cor)
  154. % [m,i] = max(cor);
  155. % i
  156.     
  157. r1 = 10*log10(periodogram(s1, 512, 128));
  158. r2 = 10*log10(periodogram(s2, 512, 128));
  159. f = (0:length(r1)-1)/length(r1)*sampleRate/2;
  160.     
  161. ===============  Spectral Analysis of TrueVoice =========================
  162.     
  163. % Spectral analysis (in dB) of the AT&T TrueVoice demo.
  164. % The results are shown below at 1.9531Hz intervals from
  165. % 0Hz to nearly 4kHz.
  166.  
  167.    -0.0156   -0.0156   -0.0154   -0.0138
  168.     2.8762    1.5637    1.3204    0.2571
  169.     0.6921    0.9584    0.7187   -0.7438
  170.    -1.7550   -2.0471   -2.0754   -1.9768
  171.    -1.6302   -0.7998    0.7231    0.9736
  172.     0.9899    0.9882    0.9827    0.9418
  173.     0.2723   -0.3172   -0.4245    0.0216
  174.    -0.1162   -0.1018   -0.0875   -0.0747
  175.    -0.0601   -0.0360    0.1168    0.9137
  176.     2.4710    2.5066    3.5501    2.9577
  177.     3.3023    3.0256    3.8413    4.5084
  178.     6.3061    6.4052    7.6116    7.6745
  179.     8.5071    8.4967    9.0233    9.0818
  180.     9.5900    9.7797   10.1627   10.3327
  181.    10.6086   10.7367   10.9011   10.8782
  182.    10.5145   10.0140   10.3593   11.2615
  183.    11.8157   11.9453   12.0295   12.0388
  184.    12.0603   12.1355   12.3434   12.4985
  185.    12.6426   12.7032   12.8563   12.9541
  186.    13.0520   13.0989   13.2080   13.2716
  187.    13.3565   13.3807   13.4805   13.5283
  188.    13.5936   13.6157   13.6703   13.6777
  189.    13.6661   12.1029    5.5750    2.3909
  190.     1.6613    2.2414    4.9604   11.2490
  191.    13.7420   13.7310   13.7230   13.6977
  192.    13.6595   13.5861   13.5226   13.4833
  193.    13.4672   13.4355   13.3998   13.3534
  194.    13.3033   13.2455   13.1833   13.1151
  195.    13.0436   12.9571   12.8699   12.7882
  196.    12.6880   12.5852   12.5082   12.4377
  197.    12.3462   12.2276   12.1066   11.9765
  198.    11.8630   11.7580   11.6211   11.4772
  199.    11.3559   11.2418   11.0955   10.9580
  200.    10.8388   10.6905   10.5217   10.3533
  201.    10.2052   10.0873    9.9788    9.8533
  202.     9.7000    9.5401    9.3863    9.2267
  203.     9.0551    8.8746    8.7166    8.5856
  204.     8.4393    8.2574    8.0735    7.8216
  205.     7.2432    6.4982    6.2854    6.7300
  206.     7.0660    7.0194    6.8627    6.6837
  207.     6.4944    6.3324    6.1924    6.0580
  208.     5.9400    5.8304    5.6939    5.5120
  209.     5.3422    5.2091    5.0764    4.9489
  210.     4.8327    4.7075    4.5998    4.4920
  211.     4.3769    4.2938    4.2189    4.1290
  212.     4.0337    3.9499    3.8720    3.7967
  213.     3.7345    3.6756    3.6097    3.5443
  214.     3.4910    3.4470    3.4026    3.3690
  215.     3.3538    3.3306    3.2824    3.2459
  216.     3.2375    3.2455    3.2562    3.2654
  217.     3.2769    3.2867    3.2941    3.3026
  218.     3.3110    3.3201    3.3315    3.3440
  219.     3.3697    3.4085    3.4461    3.4825
  220.     3.5228    3.5549    3.5623    3.5717
  221.     3.6202    3.6865    3.7361    3.7728
  222.     3.7982    3.8225    3.8617    3.8934
  223.     3.9120    3.9411    3.9805    4.0103
  224.     4.0313    4.0423    4.0499    4.0719
  225.     4.1125    4.1634    4.1984    4.2129
  226.     4.2306    4.2533    4.2706    4.2897
  227.     4.3161    4.3271    4.3166    4.3097
  228.     4.3212    4.3222    4.3041    4.3011
  229.     4.3121    4.3238    4.3343    4.3339
  230.     4.3267    4.3170    4.2965    4.2704
  231.     4.2473    4.2342    4.2294    4.2322
  232.     4.2381    4.2338    4.2211    4.2096
  233.     4.2020    4.1905    4.1708    4.1571
  234.     4.1513    4.1370    4.1146    4.0957
  235.     4.0799    4.0686    4.0589    4.0159
  236.     3.9430    3.9157    3.9485    3.9754
  237.     3.9758    3.9720    3.9625    3.9376
  238.     3.9162    3.9101    3.9068    3.9034
  239.     3.9000    3.8920    3.8796    3.8663
  240.     3.8585    3.8588    3.8562    3.8374
  241.     3.8205    3.8194    3.8240    3.8239
  242.     3.8113    3.8002    3.8025    3.8091
  243.     3.8143    3.8212    3.8278    3.8367
  244.     3.8441    3.8418    3.8338    3.8264
  245.     3.8311    3.8473    3.8638    3.8787
  246.     3.8898    3.8965    3.8994    3.8999
  247.     3.9121    3.9445    3.9715    3.9803
  248.     3.9848    3.9975    4.0300    4.0597
  249.     4.0501    4.0212    4.0095    4.0264
  250.     4.0668    4.1108    4.1344    4.1324
  251.     4.1079    4.0761    4.0591    4.0615
  252.     4.0805    4.1049    4.1293    4.1566
  253.     4.1745    4.1746    4.1766    4.1942
  254.     4.2163    4.2459    4.2697    4.2636
  255.     4.2516    4.2672    4.2902    4.2960
  256.     4.2897    4.2854    4.2939    4.3081
  257.     4.3115    4.3180    4.3467    4.3717
  258.     4.3674    4.3452    4.3170    4.2937
  259.     4.2886    4.2898    4.2866    4.2869
  260.     4.2744    4.2453    4.2252    4.2041
  261.     4.1907    4.1994    4.2001    4.1973
  262.     4.2036    4.2054    4.1940    4.1572
  263.     4.1137    4.1197    4.1507    4.1396
  264.     4.1036    4.0570    4.0095    3.9778
  265.     3.9774    3.9987    4.0189    4.0231
  266.     4.0033    3.9736    3.9444    3.9261
  267.     3.9289    3.9371    3.9147    3.8360
  268.     3.7424    3.7082    3.7061    3.6903
  269.     3.6718    3.6725    3.6802    3.6756
  270.     3.6680    3.6843    3.7143    3.7304
  271.     3.7240    3.7022    3.6766    3.6636
  272.     3.6838    3.7364    3.7735    3.7715
  273.     3.7745    3.8092    3.8338    3.8216
  274.     3.8117    3.8196    3.8251    3.8316
  275.     3.8483    3.8663    3.8788    3.8834
  276.     3.8788    3.8763    3.8858    3.8962
  277.     3.8959    3.8940    3.9102    3.9491
  278.     3.9801    3.9850    4.0079    4.0531
  279.     4.0789    4.0709    4.0647    4.0794
  280.     4.0913    4.0958    4.1114    4.1341
  281.     4.1524    4.1771    4.1970    4.2059
  282.     4.2127    4.2154    4.2141    4.2150
  283.     4.2213    4.2226    4.2111    4.1941
  284.     4.1933    4.2252    4.2576    4.2572
  285.     4.2150    4.1531    4.1139    4.1130
  286.     4.1501    4.1874    4.1887    4.1605
  287.     4.1311    4.1236    4.1473    4.1852
  288.     4.2052    4.2233    4.2426    4.2489
  289.     4.2538    4.2531    4.2337    4.2260
  290.     4.2384    4.2403    4.2367    4.2453
  291.     4.2668    4.2789    4.2627    4.2359
  292.     4.2013    4.1635    4.1479    4.1810
  293.     4.2237    4.2029    4.1435    4.1030
  294.     4.0890    4.0912    4.1109    4.1343
  295.     4.1405    4.1113    4.0482    3.9993
  296.     3.9791    3.9588    3.9272    3.8873
  297.     3.8515    3.8288    3.8098    3.8065
  298.     3.8195    3.8113    3.7923    3.8059
  299.     3.8273    3.8364    3.8258    3.7813
  300.     3.7552    3.7867    3.8330    3.8302
  301.     3.8012    3.7939    3.7789    3.7384
  302.     3.7168    3.7019    3.6732    3.6598
  303.     3.6861    3.7230    3.7378    3.7430
  304.     3.7643    3.7819    3.7818    3.7938
  305.     3.7803    3.7341    3.7190    3.7303
  306.     3.7457    3.7783    3.8146    3.8645
  307.     3.9324    3.9773    4.0000    4.0181
  308.     3.9884    3.9119    3.8909    3.9387
  309.     4.0071    4.0808    4.1228    4.1229
  310.     4.1029    4.0704    4.0309    4.0110
  311.     4.0390    4.0767    4.0965    4.1365
  312.     4.1915    4.2151    4.2345    4.2727
  313.     4.2879    4.2576    4.2202    4.2258
  314.     4.2612    4.2724    4.2555    4.2427
  315.     4.2471    4.2661    4.2896    4.3010
  316.     4.3005    4.2957    4.2855    4.2740
  317.     4.2666    4.2695    4.2819    4.2873
  318.     4.2675    4.2188    4.1749    4.1607
  319.     4.1578    4.1489    4.1283    4.1087
  320.     4.1226    4.1646    4.1975    4.2025
  321.     4.1791    4.1383    4.1318    4.1720
  322.     4.1981    4.1785    4.1589    4.1588
  323.     4.1699    4.1828    4.1738    4.1261
  324.     4.0842    4.0948    4.1499    4.1747
  325.     4.1536    4.1222    4.0861    4.0489
  326.     4.0195    4.0093    4.0231    4.0133
  327.     3.9700    3.9524    3.9736    4.0181
  328.     4.0664    4.1272    4.1630    4.1220
  329.     4.0943    4.0931    4.0471    3.9736
  330.     3.9507    3.9191    3.8515    3.8284
  331.     3.8700    3.9406    3.9809    3.9753
  332.     3.9601    3.9425    3.9219    3.9120
  333.     3.8903    3.8508    3.8170    3.7936
  334.     3.7934    3.8167    3.8262    3.8181
  335.     3.8137    3.7817    3.7410    3.7353
  336.     3.7615    3.8004    3.8142    3.8099
  337.     3.8200    3.8412    3.8395    3.8060
  338.     3.7680    3.7490    3.7546    3.7850
  339.     3.8190    3.8374    3.8329    3.8101
  340.     3.7999    3.8239    3.8626    3.8995
  341.     3.9293    3.9370    3.9439    3.9866
  342.     4.0243    4.0340    4.0458    4.0547
  343.     4.0425    4.0240    4.0253    4.0536
  344.     4.0953    4.1350    4.1705    4.1965
  345.     4.2225    4.2664    4.2941    4.2819
  346.     4.2690    4.2711    4.2839    4.2996
  347.     4.3138    4.3118    4.2843    4.2663
  348.     4.2734    4.2854    4.2986    4.3212
  349.     4.3424    4.3508    4.3505    4.3336
  350.     4.3145    4.3226    4.3632    4.4118
  351.     4.4020    4.3286    4.2562    4.2137
  352.     4.2224    4.2605    4.2589    4.2231
  353.     4.2219    4.2602    4.2963    4.2905
  354.     4.2564    4.2230    4.2089    4.2149
  355.     4.2181    4.2004    4.1570    4.0962
  356.     4.0639    4.0803    4.0981    4.1046
  357.     4.0952    4.0567    4.0047    3.9813
  358.     3.9860    3.9971    4.0172    4.0371
  359.     4.0283    4.0047    3.9873    3.9645
  360.     3.9413    3.9515    3.9824    4.0022
  361.     3.9996    3.9690    3.9208    3.8792
  362.     3.8483    3.8223    3.8188    3.8511
  363.     3.8860    3.8773    3.8441    3.8372
  364.     3.8458    3.8453    3.8374    3.8258
  365.     3.7941    3.7560    3.7504    3.7584
  366.     3.7720    3.8059    3.8312    3.8020
  367.     3.7679    3.7848    3.8008    3.7833
  368.     3.7682    3.7858    3.8391    3.8853
  369.     3.8705    3.8409    3.8636    3.8996
  370.     3.8944    3.8579    3.8566    3.9188
  371.     4.0062    4.0474    4.0027    3.9218
  372.     3.8811    3.9004    3.9594    4.0117
  373.     4.0281    4.0135    3.9890    3.9866
  374.     4.0231    4.0668    4.0711    4.0718
  375.     4.0907    4.1074    4.1136    4.1138
  376.     4.1124    4.1224    4.1473    4.1677
  377.     4.1812    4.1931    4.2098    4.2496
  378.     4.2805    4.2600    4.2349    4.2179
  379.     4.1955    4.1807    4.1928    4.2267
  380.     4.2628    4.2767    4.2725    4.2779
  381.     4.2896    4.3012    4.3192    4.3254
  382.     4.3072    4.2831    4.2739    4.2812
  383.     4.2903    4.2892    4.2842    4.2814
  384.     4.2716    4.2685    4.2888    4.3127
  385.     4.3113    4.2756    4.2453    4.2532
  386.     4.2708    4.2649    4.2519    4.2465
  387.     4.2432    4.2347    4.2358    4.2439
  388.     4.2367    4.2059    4.1670    4.1390
  389.     4.1169    4.0873    4.0583    4.0420
  390.     4.0230    3.9962    3.9904    3.9978
  391.     3.9931    3.9969    3.9990    3.9734
  392.     3.9391    3.9346    3.9351    3.9215
  393.     3.9048    3.8817    3.8531    3.8234
  394.     3.7945    3.7757    3.7681    3.7504
  395.     3.7561    3.8093    3.8333    3.8044
  396.     3.7842    3.7740    3.7390    3.6953
  397.     3.7004    3.7884    3.8750    3.8778
  398.     3.8252    3.7715    3.7343    3.7136
  399.     3.7297    3.7714    3.7938    3.7986
  400.     3.8132    3.8214    3.8113    3.8082
  401.     3.8193    3.8296    3.8395    3.8442
  402.     3.8188    3.8019    3.8431    3.8958
  403.     3.9200    3.9416    3.9829    4.0340
  404.     4.0593    4.0356    3.9976    3.9609
  405.     3.9166    3.8948    3.9234    3.9567
  406.     3.9652    3.9733    3.9786    3.9787
  407.     4.0049    4.0699    4.1040    4.0790
  408.     4.0643    4.0772    4.0804    4.0748
  409.     4.0894    4.1372    4.1957    4.2248
  410.     4.2129    4.1991    4.2083    4.2033
  411.     4.1846    4.1891    4.2261    4.2594
  412.     4.2756    4.2879    4.2997    4.2884
  413.     4.2581    4.2359    4.2251    4.2259
  414.     4.2409    4.2656    4.2852    4.2798
  415.     4.2515    4.2234    4.2279    4.2725
  416.     4.3213    4.3505    4.3574    4.3353
  417.     4.2998    4.2797    4.2735    4.2693
  418.     4.2616    4.2305    4.1807    4.1626
  419.     4.1935    4.2462    4.2942    4.2951
  420.     4.2192    4.1520    4.1463    4.1483
  421.     4.1176    4.0722    4.0506    4.0581
  422.     4.0586    4.0511    4.0593    4.0653
  423.     4.0676    4.0712    4.0433    3.9804
  424.     3.9430    3.9524    3.9672    3.9626
  425.     3.9507    3.9430    3.9276    3.9017
  426.     3.8604    3.8038    3.7741    3.7966
  427.     3.8357    3.8557    3.8527    3.8440
  428.     3.8220    3.7784    3.7385    3.7200
  429.     3.7338    3.7643    3.7726    3.7769
  430.     3.7994    3.8130    3.8246    3.8414
  431.     3.8317    3.8082    3.7971    3.7695
  432.     3.7312    3.7098    3.7156    3.7561
  433.     3.7995    3.8393    3.8735    3.8685
  434.     3.8533    3.8750    3.9050    3.8990
  435.     3.8768    3.8811    3.9113    3.9429
  436.     3.9672    3.9982    4.0258    4.0165
  437.     3.9839    3.9711    3.9829    4.0049
  438.     4.0441    4.0756    4.0873    4.1022
  439.     4.1212    4.1225    4.0995    4.0704
  440.     4.0589    4.0752    4.0984    4.1119
  441.     4.1343    4.1586    4.1726    4.1798
  442.     4.1820    4.1855    4.2094    4.2572
  443.     4.2993    4.3176    4.3228    4.3257
  444.     4.3240    4.3044    4.2854    4.2829
  445.     4.2876    4.2851    4.2630    4.2451
  446.     4.2550    4.2679    4.2826    4.3160
  447.     4.3282    4.2968    4.2558    4.2432
  448.     4.2685    4.3072    4.3280    4.3404
  449.     4.3346    4.2759    4.1998    4.1702
  450.     4.2124    4.2732    4.2847    4.2629
  451.     4.2425    4.2098    4.1770    4.1763
  452.     4.1911    4.1882    4.1759    4.1663
  453.     4.1330    4.0891    4.0682    4.0682
  454.     4.0624    4.0448    4.0438    4.0718
  455.     4.0979    4.0821    4.0266    3.9864
  456.     4.0021    4.0353    4.0288    4.0025
  457.     3.9863    3.9888    4.0062    4.0005
  458.     3.9590    3.9127    3.8824    3.8720
  459.     3.8572    3.8300    3.8234    3.8445
  460.     3.8487    3.8179    3.7819    3.7594
  461.     3.7596    3.7757    3.7787    3.7721
  462.     3.7664    3.7472    3.7242    3.7326
  463.     3.7628    3.7598    3.7196    3.6824
  464.     3.6889    3.7206    3.7392    3.7456
  465.     3.7603    3.7863    3.8155    3.8447
  466.     3.8480    3.8398    3.8611    3.8849
  467.     3.8789    3.8712    3.8924    3.9250
  468.     3.9419    3.9403    3.9318    3.9006
  469.     3.8682    3.9011    3.9809    4.0246
  470.     4.0353    4.0516    4.0705    4.0590
  471.     4.0341    4.0256    4.0151    4.0109
  472.     4.0392    4.0860    4.1355    4.1624
  473.     4.1581    4.1609    4.1803    4.2018
  474.     4.2184    4.2250    4.2147    4.1899
  475.     4.1642    4.1482    4.1911    4.2695
  476.     4.2826    4.2485    4.2136    4.1887
  477.     4.2074    4.2838    4.3433    4.3051
  478.     4.1978    4.1125    4.1055    4.1904
  479.     4.2885    4.3294    4.3390    4.3447
  480.     4.3437    4.3337    4.2939    4.2301
  481.     4.1919    4.2039    4.2005    4.1584
  482.     4.1648    4.2182    4.2373    4.2478
  483.     4.2490    4.2036    4.1512    4.1438
  484.     4.1641    4.1804    4.1629    4.1034
  485.     4.0591    4.0682    4.0891    4.0944
  486.     4.1156    4.1410    4.1247    4.0698
  487.     4.0288    4.0200    4.0364    4.0512
  488.     4.0237    3.9955    4.0102    4.0145
  489.     3.9760    3.9662    4.0031    3.9971
  490.     3.9255    3.8581    3.8404    3.8401
  491.     3.8177    3.7523    3.7374    3.8234
  492.     3.8702    3.8596    3.8727    3.9066
  493.     3.8972    3.8594    3.8644    3.9048
  494.     3.9325    3.9488    3.9425    3.8726
  495.     3.7838    3.7260    3.7145    3.7316
  496.     3.7265    3.7039    3.7232    3.7572
  497.     3.7269    3.6752    3.6567    3.6789
  498.     3.7518    3.8376    3.8883    3.9189
  499.     3.9443    3.9508    3.9067    3.8554
  500.     3.9047    4.0260    4.0644    4.0403
  501.     4.0125    3.9892    4.0571    4.1430
  502.     4.0919    3.9942    3.9804    4.0280
  503.     4.0635    4.1130    4.2038    4.2403
  504.     4.2103    4.1852    4.1776    4.1395
  505.     4.0567    4.0227    4.1071    4.1994
  506.     4.2576    4.3552    4.4440    4.4127
  507.     4.3346    4.3393    4.3957    4.3489
  508.     4.1848    4.0975    4.0920    4.0744
  509.     4.1138    4.2179    4.2339    4.1554
  510.     4.1073    4.1208    4.0668    3.9841
  511.     4.0039    4.0003    3.9251    3.9485
  512.     4.0722    4.1164    4.0952    4.1228
  513.     4.2088    4.2388    4.2068    4.2166
  514.     4.2125    4.1202    4.0571    4.0532
  515.     4.1558    4.3152    4.2978    4.1616
  516.     4.1443    4.1086    4.0384    4.0687
  517.     4.0723    3.9987    3.9775    3.9429
  518.     3.9011    3.8918    3.8856    3.8072
  519.     3.6220    3.5458    3.7027    3.8685
  520.     3.8723    3.8022    3.7797    3.6861
  521.     3.4658    3.3700    3.4747    3.5662
  522.     3.6115    3.6012    3.4953    3.5476
  523.     3.7015    3.6951    3.5577    3.4871
  524.     3.4478    3.3931    3.3936    3.3991
  525.     3.3322    3.1924    3.0838    3.1296
  526.     3.3243    3.5037    3.5536    3.5758
  527.     3.5586    3.4281    3.3716    3.4918
  528.     3.5988    3.6349    3.5910    3.5086
  529.     3.4555    3.4986    3.6916    3.8286
  530.     3.7717    3.6641    3.6092    3.6049
  531.     3.6598    3.7989    3.8886    3.6724
  532.     3.4683    3.5635    3.7365    3.8570
  533.     3.9400    3.9338    3.8813    3.9444
  534.     4.1208    4.2367    4.1597    4.0182
  535.     3.9569    3.9355    3.9143    3.8876
  536.     3.9056    3.9516    3.9832    4.0654
  537.     4.1691    4.2439    4.2878    4.2749
  538.     4.2742    4.3295    4.3168    4.1415
  539.     3.9372    3.9371    4.1325    4.3543
  540.     4.4586    4.4060    4.3445    4.3805
  541.     4.3726    4.2661    4.1896    4.1046
  542.     3.9667    3.8929    4.0597    4.3152
  543.     4.3867    4.3182    4.2544    4.2140
  544.     4.1667    4.1149    4.0481    4.0083
  545.     4.0227    4.0487    4.1225    4.1894
  546.     4.1586    4.1040    4.0811    4.0557
  547.     4.1132    4.2713    4.3924    4.3247
  548.     4.1275    4.0199    4.0101    4.0239
  549.     4.0590    4.0638    3.9718    3.8246
  550.     3.7107    3.7541    3.9144    3.9891
  551.     3.9794    3.8180    3.6486    3.6818
  552.     3.7822    3.8763    4.0135    4.1085
  553.     4.0391    3.9151    3.8199    3.6551
  554.     3.4665    3.4429    3.5590    3.6877
  555.     3.7650    3.7755    3.7277    3.6902
  556.     3.6983    3.7011    3.6887    3.7134
  557.     3.7730    3.7947    3.7823    3.7317
  558.     3.6262    3.5784    3.5698    3.4989
  559.     3.5104    3.6605    3.7955    3.9019
  560.     3.9897    4.0021    3.9406    3.8701
  561.     3.7931    3.6613    3.5998    3.6305
  562.     3.6473    3.7123    3.8283    3.9245
  563.     4.0329    4.0829    4.0211    4.0096
  564.     4.1040    4.1869    4.2066    4.1136
  565.     3.9039    3.7299    3.7298    3.8234
  566.     3.8948    3.9680    4.0104    3.9448
  567.     3.8663    3.8502    3.8368    3.8798
  568.     4.0532    4.2471    4.3475    4.2682
  569.     4.1016    4.1576    4.4150    4.5706
  570.     4.5509    4.4277    4.3082    4.2466
  571.     4.1368    4.0491    4.0839    4.1753
  572.     4.2691    4.2812    4.1577    4.0094
  573.     3.9138    3.9199    4.0023    4.0903
  574.     4.2195    4.3667    4.4259    4.4122
  575.     4.4122    4.3466    4.1514    3.9618
  576.     3.9475    4.0487    4.1192    4.1147
  577.     4.0907    4.1024    4.1024    4.0307
  578.     3.9274    3.8137    3.7349    3.7556
  579.     3.8267    3.8344    3.8090    3.8208
  580.     3.9034    4.0498    4.1513    4.1832
  581.     4.2183    4.1704    3.9715    3.7718
  582.     3.6723    3.5610    3.4824    3.5552
  583.     3.6635    3.6271    3.5437    3.6304
  584.     3.7303    3.7012    3.6188    3.5569
  585.     3.5710    3.6532    3.7184    3.7485
  586.     3.7741    3.7638    3.7374    3.7146
  587.     3.6672    3.6052    3.6175    3.7730
  588.     3.8550    3.6726    3.4110    3.4656
  589.     3.8464    4.1414    4.1006    3.9079
  590.     3.8500    3.9691    4.0257    3.8513
  591.     3.6397    3.6523    3.8355    3.9043
  592.     3.8691    3.9021    3.9751    4.0474
  593.     4.0936    4.1213    4.1933    4.3028
  594.     4.4050    4.3897    4.2845    4.2412
  595.     4.1160    3.9072    3.9179    4.1168
  596.     4.3097    4.3819    4.3499    4.2688
  597.     4.1972    4.1233    4.0957    4.1848
  598.     4.2591    4.2379    4.2120    4.1625
  599.     4.0897    4.0789    4.1586    4.2863
  600.     4.3210    4.2028    4.0356    3.8960
  601.     3.8457    3.9294    4.0042    3.8854
  602.     3.7650    3.7648    3.7415    3.5443
  603.     3.3887    3.3969    3.3726    3.2292
  604.     3.0580    2.9826    2.9791    2.9773
  605.     2.9272    2.7399    2.5032    2.3386
  606.     2.2621    2.1826    2.0198    1.7527
  607.     1.3994    1.0421    0.8313    0.8379
  608.     1.0071    1.1620    1.1241    0.8451
  609.     0.5447    0.3268    0.0256   -0.3426
  610.    -0.5481   -0.5391   -0.4992   -0.6288
  611.    -0.8772   -1.0927   -1.3706   -1.9960
  612.    -2.6370   -2.8954   -3.0923   -3.2882
  613.    -3.3825   -3.5081   -3.5893   -3.6076
  614.    -3.7203   -3.8884   -3.9815   -4.0522
  615.    -4.0332   -3.9273   -4.2025   -4.8333
  616.    -5.4544   -5.7822   -5.4846   -4.8133
  617.    -4.6546   -5.0683   -5.6868   -5.9887
  618.    -5.6421   -5.0674   -4.9115   -4.9862
  619.    -5.0753   -5.4126   -5.7638   -5.3747
  620.    -4.3985   -3.9502   -4.3882   -4.6642
  621.    -4.0590   -3.2857   -3.0553   -3.0171
  622.    -2.9334   -2.6387   -2.3332   -2.4326
  623.    -2.7259   -2.8058   -2.7649   -2.7696
  624.    -2.8219   -2.9168   -3.0049   -2.9978
  625.    -2.8766   -2.7459   -2.7877   -2.7952
  626.    -2.6307   -2.4433   -2.6332   -3.1869
  627.    -3.2425   -2.2819   -1.0299   -0.2065
  628.    -0.0031   -0.2092   -0.4339   -0.9713
  629.    -1.9048   -2.3555   -2.1326   -2.0028
  630.    -2.2714   -2.4559   -2.1483   -1.5499
  631.    -1.1712   -1.4571   -2.2413   -2.4907
  632.    -2.1361   -1.7915   -1.7738   -1.9718
  633.    -2.1032   -1.8157   -1.2609   -1.0888
  634.    -1.4205   -1.6319   -1.4174   -1.0870
  635.    -0.6456    0.0054    0.4237    0.3262
  636.     0.0030   -0.1614    0.0100    0.1762
  637.     0.0037   -0.4210   -0.8006   -1.0810
  638.    -1.2003   -1.0901   -0.9077   -0.6167
  639.    -0.0365    0.6056    0.6823    0.2631
  640.     0.0315    0.1720    0.5950    0.9670
  641.     1.2035    1.0868    0.7313    0.2079
  642.    -0.4428   -1.0584   -1.3108   -0.8113
  643.    -0.1252   -0.0700   -0.4471   -0.4977
  644.    -0.0009    0.4090    0.4309    0.3372
  645.     0.3134    0.3018    0.2507   -0.0140
  646.    -0.2245   -0.2516   -0.0333    0.2052
  647.     0.3167    0.3388    0.2979    0.2408
  648.     0.2438    0.1288    0.0355   -0.0726
  649.     0.1884    0.5430    0.5037    0.3928
  650.     0.6536    0.9805    1.0402    0.8571
  651.     0.8218    0.8197    0.7281    0.5522
  652.     0.6925    1.0045    1.0707    0.6734
  653.     0.6085    1.0526    1.2845    1.1089
  654.     1.2953    1.3806    1.1912    0.9422
  655.     0.8630    0.9159    1.4254    1.8088
  656.     1.7759    1.2884    0.9880    0.8059
  657.     0.6631    0.3597    0.2877    0.5101
  658.     0.9324    1.1062    1.1189    1.0873
  659.     1.2963    1.4214    1.6282    1.7053
  660.     1.4973    0.9790    1.0983    1.3852
  661.     1.5429    1.5234    1.5292    1.3104
  662.     1.2757    0.8869    0.5145    0.7113
  663.     1.3543    1.3890    0.9667    0.7196
  664.     1.4537    2.0366    2.1264    1.8825
  665.     1.6793    1.3166    1.3493    1.3008
  666.     1.2872    1.2882    1.6478    1.8070
  667.     2.1904    2.2762    2.0932    1.6617
  668.     1.7195    2.0066    2.6213    2.6506
  669.     2.5683    2.3499    2.5807    2.5199
  670.     2.4837    1.9532    1.7694    1.8284
  671.     2.2359    2.1669    2.0885    1.9388
  672.     2.2269    2.5849    3.0879    2.8728
  673.     3.2147    3.0896    2.6566    1.8906
  674.     1.8568    1.8620    1.9197    0.5811
  675.     0.0707   -0.1140   -0.2507   -0.3872
  676.    -0.5261   -0.3324    0.6124    0.6609
  677.     0.7726    0.7911    0.8297    0.4739
  678.     0.2283    0.2148    0.4259    0.5007
  679.  
  680.     
  681. -------------------------------
  682.     
  683.     
  684.     
  685.     
  686. 
  687.     
  688.     From telecom@delta.eecs.nwu.edu Fri Sep  3 23:17:45 1993
  689.     Received: from delta.eecs.nwu.edu by gaak.LCS.MIT.EDU via TCP with SMTP
  690.         id AA17207; Fri, 3 Sep 93 23:17:40 EDT
  691.     Received: by delta.eecs.nwu.edu id AA00985
  692.       (5.65c/IDA-1.4.4 for ptownson@gaak.lcs.mit.edu); Fri, 3 Sep 1993 22:17:34 -0500
  693.     Date: Fri, 3 Sep 1993 22:17:34 -0500
  694.     From: TELECOM Moderator <telecom@delta.eecs.nwu.edu>
  695.     Message-Id: <199309040317.AA00985@delta.eecs.nwu.edu>
  696.     To: ptownson@gaak.LCS.MIT.EDU
  697.     Subject: AT&T TrueVoice DSP Analysis
  698.     Status: O
  699.     
  700.     >From telecom Fri Sep  3 22:15:46 1993
  701.     Received: by delta.eecs.nwu.edu id AA10360
  702.       (5.65c/IDA-1.4.4 for telecom); Fri, 3 Sep 1993 22:15:46 -0500
  703.     Date: Fri, 3 Sep 1993 22:15:46 -0500
  704.     From: TELECOM Moderator <telecom>
  705.     Message-Id: <199309040315.AA10360@delta.eecs.nwu.edu>
  706.     To: telecom
  707.     Subject: AT&T TrueVoice DSP Analysis
  708.     Status: R
  709.     
  710.     
  711.     A special report for the readers, submitted by malcolm@apple.com.
  712.     I hope you find it useful and interesting.
  713.     
  714.     PAT
  715.     
  716.        Subject: AT&T TrueVoice DSP Analysis
  717.        Date: Fri, 3 Sep 93 13:39:17 -0700
  718.        From: malcolm@apple.com
  719.     
  720.     I've just finished an analysis of the AT&T TrueVoice demo that has
  721.     been advertised by AT&T and discussed in the TELECOM Digest.  Here are
  722.     the results of the analysis.
  723.     
  724.     First, there is a reason that the TrueVoice version sounds louder.
  725.     Above 300Hz there is a pretty uniform gain of 4dB.  Between 100-300 Hz
  726.     there is a 14 dB gain peak (with a notch at 180 Hz to kill the third
  727.     harmonic of the power line hum.)  Here are the details:
  728.     
  729.         0-100 Hz    Not much change.
  730.         100-300Hz    A broad gain bump of about 14dB
  731.         180Hz        Deep 12.5dB notch (back to 1.5 dB) 
  732.         300-4kHz    4dB extra gain with a .5dB ripple
  733.     
  734.     Method:
  735.     
  736.     The AT&T TrueVoice demo (1 800 932-2000) was digitized with the
  737.     Telecom pod on the Macintosh Quadra 840AV (using the AT&T 3210 DSP
  738.     chip).  Samples were converted with 16 bits of linear resolution,
  739.     sampled at 8kHz, and stored in an AIFF file.  All data was collected
  740.     from a single phone call using an analog phone line.
  741.     
  742.     The results were loaded into Matlab on a Macintosh for analysis.  The
  743.     TrueVoice demo starts with 30 seconds of normal speech and then
  744.     automatically switches on the TrueVoice modification and replays the
  745.     same speech.  The beginning of each demo sample was aligned by eye,
  746.     and then a cross correlation was used to refine the relative starting
  747.     positions.  All further analysis was done on these aligned samples of
  748.     modified and unmodified speech.
  749.     
  750.     Note, the TrueVoice modification is turned on over a second or two.
  751.     (I don't know why AT&T does this.  Perhaps they didn't want the change
  752.     to seem too jarring.)  The cross correlation analysis was done using
  753.     these first couple of seconds: this should make the correlation more
  754.     accurate.  The spectral analysis that followed skipped the first three
  755.     seconds.
  756.     
  757.     A periodogram analysis was performed using a window of data of length
  758.     2048 and skipping 16 samples between windows.  A Hamming window was
  759.     used before FFT'ing and the power spectral density was computed.  The
  760.     power spectral density for all windows was summed (averaged) to arrive
  761.     at a robust estimate of the power spectral density of the entire
  762.     sample.  A total of 170,000 data samples was used from each example.
  763.     
  764.     The power spectral density for each example (unmodified and modified
  765.     speech) was converted to dB.  The two PSDs are then subtracted to
  766.     estimate the difference in spectral energy due to the TrueVoice
  767.     filtering.
  768.     
  769.     Results:
  770.     
  771.     The broad filter characteristics are shown below.
  772.     
  773.         0-100 Hz    Not much change.
  774.         100-300Hz    A broad gain of 13.7 dB, 3dB Q is 1.5
  775.         120Hz        About a 1dB dip in the gain
  776.         180Hz        Narrow band reject down to 1.5 dB, 3dB Q is 18
  777.         300-4kHz    4dB extra gain with a .5dB ripple
  778.     
  779.     Note, there is a deep notch at the 3rd harmonic of the power line
  780.     frequency and a extra small dip at the second harmonic.  I don't have
  781.     enough information to tell if they are doing anything different at
  782.     60Hz.
  783.     
  784.     The filtering appears to be stationary.  The demo over the phone turns
  785.     the filtering on gradually, but after a second there appears to be no
  786.     change in the filter's characteristics.  The analysis described above
  787.     was performed over several subsections of the data and there was no
  788.     visible change in the filter's characteristics.
  789.     
  790.     Acknowledgements:
  791.     
  792.     Many thanks to Stuart Davidson for setting up the hardware and
  793.     software to digitize the demo.  Thanks also to Michele Covell
  794.     (Interval Research) for help with the filter analysis.  The
  795.     periodogram is discussed in Larry Marple's book "Digital Spectral
  796.     Analysis with Applications."
  797.     
  798.     Disclaimer:
  799.     
  800.     I have no affiliation with AT&T except as a mostly satisfied customer.
  801.     This work is not an official Apple project.  TrueVoice and AT&T are
  802.     undoubtably trademarks of AT&T.
  803.     
  804.     
  805.     Malcolm Slaney    malcolm@apple.com
  806.     
  807.     
  808.     ===================  Matlab Periodogram Code ============================
  809.     
  810.     % function y=periodogram(x,width,skip)
  811.     % Compute the periodogram (an estimate of the power spectral
  812.     % density) of an array.  The width of each analysis defaults to 
  813.     % 256 points, and the default skip between windows is half the
  814.     % window size.
  815.     
  816.     function y=periodogram(x,width,skip)
  817.     
  818.     if (nargin < 2) width = 256; end
  819.     if (nargin < 3) skip = width/2; end
  820.     nwinds = fix((length(x)-width)/skip);
  821.     
  822.     x = reshape(x,length(x),1);
  823.     wind = hamming(width);
  824.     y = zeros(width,1);
  825.     for i=1:nwinds
  826.         firstPoint = (i-1)*skip + 1;
  827.         d = [x(firstPoint:firstPoint+width-1).*wind;zeros(width,1)];
  828.         f = fft(d);
  829.         f = f(1:width);
  830.         y = y + f .* conj(f);
  831.     end
  832.     y = y/nwinds;
  833.     
  834.     ===============  Matlab TrueVoice Analysis Code =========================
  835.     
  836.     % Analyze a recorded sample of the AT&T TrueVoice demo.
  837.     % This script assumes that the entire demo is stored in
  838.     % an array called tv.  The start of the first and second 
  839.     % version of the demo are indicated by the first and second
  840.     % pointers.  (These will be different for anybody else's 
  841.     % recording of the phone call.)
  842.     
  843.     first=116000;
  844.     second=395500+41;
  845.     firstEnd = 355000;
  846.     secondEnd = 610000;
  847.     
  848.     sampleRate = 8000;
  849.     %segment = 170000;
  850.     segment = 32768;
  851.     offset = 30000;
  852.     if (second + offset + segment > secondEnd)
  853.         disp('Segment is past end of second example.');
  854.         return;
  855.     end
  856.     
  857.     s1=tv(first+offset:first+offset+segment-1);
  858.     s2=tv(second+offset:second+offset+segment-1);
  859.     
  860.     % Optionally compute the optimum cross correlation.
  861.     % If the alignment is done right, then the maximum
  862.     % value of the cross correlation should be in the 
  863.     % middle of the cross correlation or sample number
  864.     % equal to segment size    .
  865.     
  866.     % cor = xcorr(s1,s2);
  867.     % plot(cor)
  868.     % [m,i] = max(cor);
  869.     % i
  870.     
  871.     r1 = 10*log10(periodogram(s1, 512, 128));
  872.     r2 = 10*log10(periodogram(s2, 512, 128));
  873.     f = (0:length(r1)-1)/length(r1)*sampleRate/2;
  874.     
  875.     ===============  Spectral Analysis of TrueVoice =========================
  876.     
  877.     % Spectral analysis (in dB) of the AT&T TrueVoice demo.
  878.     % The results are shown below at 1.9531Hz intervals from
  879.     % 0Hz to nearly 4kHz.
  880.     
  881.        -0.0156   -0.0156   -0.0154   -0.0138
  882.         2.8762    1.5637    1.3204    0.2571
  883.         0.6921    0.9584    0.7187   -0.7438
  884.        -1.7550   -2.0471   -2.0754   -1.9768
  885.        -1.6302   -0.7998    0.7231    0.9736
  886.         0.9899    0.9882    0.9827    0.9418
  887.         0.2723   -0.3172   -0.4245    0.0216
  888.        -0.1162   -0.1018   -0.0875   -0.0747
  889.        -0.0601   -0.0360    0.1168    0.9137
  890.         2.4710    2.5066    3.5501    2.9577
  891.         3.3023    3.0256    3.8413    4.5084
  892.         6.3061    6.4052    7.6116    7.6745
  893.         8.5071    8.4967    9.0233    9.0818
  894.         9.5900    9.7797   10.1627   10.3327
  895.        10.6086   10.7367   10.9011   10.8782
  896.        10.5145   10.0140   10.3593   11.2615
  897.        11.8157   11.9453   12.0295   12.0388
  898.        12.0603   12.1355   12.3434   12.4985
  899.        12.6426   12.7032   12.8563   12.9541
  900.        13.0520   13.0989   13.2080   13.2716
  901.        13.3565   13.3807   13.4805   13.5283
  902.        13.5936   13.6157   13.6703   13.6777
  903.        13.6661   12.1029    5.5750    2.3909
  904.         1.6613    2.2414    4.9604   11.2490
  905.        13.7420   13.7310   13.7230   13.6977
  906.        13.6595   13.5861   13.5226   13.4833
  907.        13.4672   13.4355   13.3998   13.3534
  908.        13.3033   13.2455   13.1833   13.1151
  909.        13.0436   12.9571   12.8699   12.7882
  910.        12.6880   12.5852   12.5082   12.4377
  911.        12.3462   12.2276   12.1066   11.9765
  912.        11.8630   11.7580   11.6211   11.4772
  913.        11.3559   11.2418   11.0955   10.9580
  914.        10.8388   10.6905   10.5217   10.3533
  915.        10.2052   10.0873    9.9788    9.8533
  916.         9.7000    9.5401    9.3863    9.2267
  917.         9.0551    8.8746    8.7166    8.5856
  918.         8.4393    8.2574    8.0735    7.8216
  919.         7.2432    6.4982    6.2854    6.7300
  920.         7.0660    7.0194    6.8627    6.6837
  921.         6.4944    6.3324    6.1924    6.0580
  922.         5.9400    5.8304    5.6939    5.5120
  923.         5.3422    5.2091    5.0764    4.9489
  924.         4.8327    4.7075    4.5998    4.4920
  925.         4.3769    4.2938    4.2189    4.1290
  926.         4.0337    3.9499    3.8720    3.7967
  927.         3.7345    3.6756    3.6097    3.5443
  928.         3.4910    3.4470    3.4026    3.3690
  929.         3.3538    3.3306    3.2824    3.2459
  930.         3.2375    3.2455    3.2562    3.2654
  931.         3.2769    3.2867    3.2941    3.3026
  932.         3.3110    3.3201    3.3315    3.3440
  933.         3.3697    3.4085    3.4461    3.4825
  934.         3.5228    3.5549    3.5623    3.5717
  935.         3.6202    3.6865    3.7361    3.7728
  936.         3.7982    3.8225    3.8617    3.8934
  937.         3.9120    3.9411    3.9805    4.0103
  938.         4.0313    4.0423    4.0499    4.0719
  939.         4.1125    4.1634    4.1984    4.2129
  940.         4.2306    4.2533    4.2706    4.2897
  941.         4.3161    4.3271    4.3166    4.3097
  942.         4.3212    4.3222    4.3041    4.3011
  943.         4.3121    4.3238    4.3343    4.3339
  944.         4.3267    4.3170    4.2965    4.2704
  945.         4.2473    4.2342    4.2294    4.2322
  946.         4.2381    4.2338    4.2211    4.2096
  947.         4.2020    4.1905    4.1708    4.1571
  948.         4.1513    4.1370    4.1146    4.0957
  949.         4.0799    4.0686    4.0589    4.0159
  950.         3.9430    3.9157    3.9485    3.9754
  951.         3.9758    3.9720    3.9625    3.9376
  952.         3.9162    3.9101    3.9068    3.9034
  953.         3.9000    3.8920    3.8796    3.8663
  954.         3.8585    3.8588    3.8562    3.8374
  955.         3.8205    3.8194    3.8240    3.8239
  956.         3.8113    3.8002    3.8025    3.8091
  957.         3.8143    3.8212    3.8278    3.8367
  958.         3.8441    3.8418    3.8338    3.8264
  959.         3.8311    3.8473    3.8638    3.8787
  960.         3.8898    3.8965    3.8994    3.8999
  961.         3.9121    3.9445    3.9715    3.9803
  962.         3.9848    3.9975    4.0300    4.0597
  963.         4.0501    4.0212    4.0095    4.0264
  964.         4.0668    4.1108    4.1344    4.1324
  965.         4.1079    4.0761    4.0591    4.0615
  966.         4.0805    4.1049    4.1293    4.1566
  967.         4.1745    4.1746    4.1766    4.1942
  968.         4.2163    4.2459    4.2697    4.2636
  969.         4.2516    4.2672    4.2902    4.2960
  970.         4.2897    4.2854    4.2939    4.3081
  971.         4.3115    4.3180    4.3467    4.3717
  972.         4.3674    4.3452    4.3170    4.2937
  973.         4.2886    4.2898    4.2866    4.2869
  974.         4.2744    4.2453    4.2252    4.2041
  975.         4.1907    4.1994    4.2001    4.1973
  976.         4.2036    4.2054    4.1940    4.1572
  977.         4.1137    4.1197    4.1507    4.1396
  978.         4.1036    4.0570    4.0095    3.9778
  979.         3.9774    3.9987    4.0189    4.0231
  980.         4.0033    3.9736    3.9444    3.9261
  981.         3.9289    3.9371    3.9147    3.8360
  982.         3.7424    3.7082    3.7061    3.6903
  983.         3.6718    3.6725    3.6802    3.6756
  984.         3.6680    3.6843    3.7143    3.7304
  985.         3.7240    3.7022    3.6766    3.6636
  986.         3.6838    3.7364    3.7735    3.7715
  987.         3.7745    3.8092    3.8338    3.8216
  988.         3.8117    3.8196    3.8251    3.8316
  989.         3.8483    3.8663    3.8788    3.8834
  990.         3.8788    3.8763    3.8858    3.8962
  991.         3.8959    3.8940    3.9102    3.9491
  992.         3.9801    3.9850    4.0079    4.0531
  993.         4.0789    4.0709    4.0647    4.0794
  994.         4.0913    4.0958    4.1114    4.1341
  995.         4.1524    4.1771    4.1970    4.2059
  996.         4.2127    4.2154    4.2141    4.2150
  997.         4.2213    4.2226    4.2111    4.1941
  998.         4.1933    4.2252    4.2576    4.2572
  999.         4.2150    4.1531    4.1139    4.1130
  1000.         4.1501    4.1874    4.1887    4.1605
  1001.         4.1311    4.1236    4.1473    4.1852
  1002.         4.2052    4.2233    4.2426    4.2489
  1003.         4.2538    4.2531    4.2337    4.2260
  1004.         4.2384    4.2403    4.2367    4.2453
  1005.         4.2668    4.2789    4.2627    4.2359
  1006.         4.2013    4.1635    4.1479    4.1810
  1007.         4.2237    4.2029    4.1435    4.1030
  1008.         4.0890    4.0912    4.1109    4.1343
  1009.         4.1405    4.1113    4.0482    3.9993
  1010.         3.9791    3.9588    3.9272    3.8873
  1011.         3.8515    3.8288    3.8098    3.8065
  1012.         3.8195    3.8113    3.7923    3.8059
  1013.         3.8273    3.8364    3.8258    3.7813
  1014.         3.7552    3.7867    3.8330    3.8302
  1015.         3.8012    3.7939    3.7789    3.7384
  1016.         3.7168    3.7019    3.6732    3.6598
  1017.         3.6861    3.7230    3.7378    3.7430
  1018.         3.7643    3.7819    3.7818    3.7938
  1019.         3.7803    3.7341    3.7190    3.7303
  1020.         3.7457    3.7783    3.8146    3.8645
  1021.         3.9324    3.9773    4.0000    4.0181
  1022.         3.9884    3.9119    3.8909    3.9387
  1023.         4.0071    4.0808    4.1228    4.1229
  1024.         4.1029    4.0704    4.0309    4.0110
  1025.         4.0390    4.0767    4.0965    4.1365
  1026.         4.1915    4.2151    4.2345    4.2727
  1027.         4.2879    4.2576    4.2202    4.2258
  1028.         4.2612    4.2724    4.2555    4.2427
  1029.         4.2471    4.2661    4.2896    4.3010
  1030.         4.3005    4.2957    4.2855    4.2740
  1031.         4.2666    4.2695    4.2819    4.2873
  1032.         4.2675    4.2188    4.1749    4.1607
  1033.         4.1578    4.1489    4.1283    4.1087
  1034.         4.1226    4.1646    4.1975    4.2025
  1035.         4.1791    4.1383    4.1318    4.1720
  1036.         4.1981    4.1785    4.1589    4.1588
  1037.         4.1699    4.1828    4.1738    4.1261
  1038.         4.0842    4.0948    4.1499    4.1747
  1039.         4.1536    4.1222    4.0861    4.0489
  1040.         4.0195    4.0093    4.0231    4.0133
  1041.         3.9700    3.9524    3.9736    4.0181
  1042.         4.0664    4.1272    4.1630    4.1220
  1043.         4.0943    4.0931    4.0471    3.9736
  1044.         3.9507    3.9191    3.8515    3.8284
  1045.         3.8700    3.9406    3.9809    3.9753
  1046.         3.9601    3.9425    3.9219    3.9120
  1047.         3.8903    3.8508    3.8170    3.7936
  1048.         3.7934    3.8167    3.8262    3.8181
  1049.         3.8137    3.7817    3.7410    3.7353
  1050.         3.7615    3.8004    3.8142    3.8099
  1051.         3.8200    3.8412    3.8395    3.8060
  1052.         3.7680    3.7490    3.7546    3.7850
  1053.         3.8190    3.8374    3.8329    3.8101
  1054.         3.7999    3.8239    3.8626    3.8995
  1055.         3.9293    3.9370    3.9439    3.9866
  1056.         4.0243    4.0340    4.0458    4.0547
  1057.         4.0425    4.0240    4.0253    4.0536
  1058.         4.0953    4.1350    4.1705    4.1965
  1059.         4.2225    4.2664    4.2941    4.2819
  1060.         4.2690    4.2711    4.2839    4.2996
  1061.         4.3138    4.3118    4.2843    4.2663
  1062.         4.2734    4.2854    4.2986    4.3212
  1063.         4.3424    4.3508    4.3505    4.3336
  1064.         4.3145    4.3226    4.3632    4.4118
  1065.         4.4020    4.3286    4.2562    4.2137
  1066.         4.2224    4.2605    4.2589    4.2231
  1067.         4.2219    4.2602    4.2963    4.2905
  1068.         4.2564    4.2230    4.2089    4.2149
  1069.         4.2181    4.2004    4.1570    4.0962
  1070.         4.0639    4.0803    4.0981    4.1046
  1071.         4.0952    4.0567    4.0047    3.9813
  1072.         3.9860    3.9971    4.0172    4.0371
  1073.         4.0283    4.0047    3.9873    3.9645
  1074.         3.9413    3.9515    3.9824    4.0022
  1075.         3.9996    3.9690    3.9208    3.8792
  1076.         3.8483    3.8223    3.8188    3.8511
  1077.         3.8860    3.8773    3.8441    3.8372
  1078.         3.8458    3.8453    3.8374    3.8258
  1079.         3.7941    3.7560    3.7504    3.7584
  1080.         3.7720    3.8059    3.8312    3.8020
  1081.         3.7679    3.7848    3.8008    3.7833
  1082.         3.7682    3.7858    3.8391    3.8853
  1083.         3.8705    3.8409    3.8636    3.8996
  1084.         3.8944    3.8579    3.8566    3.9188
  1085.         4.0062    4.0474    4.0027    3.9218
  1086.         3.8811    3.9004    3.9594    4.0117
  1087.         4.0281    4.0135    3.9890    3.9866
  1088.         4.0231    4.0668    4.0711    4.0718
  1089.         4.0907    4.1074    4.1136    4.1138
  1090.         4.1124    4.1224    4.1473    4.1677
  1091.         4.1812    4.1931    4.2098    4.2496
  1092.         4.2805    4.2600    4.2349    4.2179
  1093.         4.1955    4.1807    4.1928    4.2267
  1094.         4.2628    4.2767    4.2725    4.2779
  1095.         4.2896    4.3012    4.3192    4.3254
  1096.         4.3072    4.2831    4.2739    4.2812
  1097.         4.2903    4.2892    4.2842    4.2814
  1098.         4.2716    4.2685    4.2888    4.3127
  1099.         4.3113    4.2756    4.2453    4.2532
  1100.         4.2708    4.2649    4.2519    4.2465
  1101.         4.2432    4.2347    4.2358    4.2439
  1102.         4.2367    4.2059    4.1670    4.1390
  1103.         4.1169    4.0873    4.0583    4.0420
  1104.         4.0230    3.9962    3.9904    3.9978
  1105.         3.9931    3.9969    3.9990    3.9734
  1106.         3.9391    3.9346    3.9351    3.9215
  1107.         3.9048    3.8817    3.8531    3.8234
  1108.         3.7945    3.7757    3.7681    3.7504
  1109.         3.7561    3.8093    3.8333    3.8044
  1110.         3.7842    3.7740    3.7390    3.6953
  1111.         3.7004    3.7884    3.8750    3.8778
  1112.         3.8252    3.7715    3.7343    3.7136
  1113.         3.7297    3.7714    3.7938    3.7986
  1114.         3.8132    3.8214    3.8113    3.8082
  1115.         3.8193    3.8296    3.8395    3.8442
  1116.         3.8188    3.8019    3.8431    3.8958
  1117.         3.9200    3.9416    3.9829    4.0340
  1118.         4.0593    4.0356    3.9976    3.9609
  1119.         3.9166    3.8948    3.9234    3.9567
  1120.         3.9652    3.9733    3.9786    3.9787
  1121.         4.0049    4.0699    4.1040    4.0790
  1122.         4.0643    4.0772    4.0804    4.0748
  1123.         4.0894    4.1372    4.1957    4.2248
  1124.         4.2129    4.1991    4.2083    4.2033
  1125.         4.1846    4.1891    4.2261    4.2594
  1126.         4.2756    4.2879    4.2997    4.2884
  1127.         4.2581    4.2359    4.2251    4.2259
  1128.         4.2409    4.2656    4.2852    4.2798
  1129.         4.2515    4.2234    4.2279    4.2725
  1130.         4.3213    4.3505    4.3574    4.3353
  1131.         4.2998    4.2797    4.2735    4.2693
  1132.         4.2616    4.2305    4.1807    4.1626
  1133.         4.1935    4.2462    4.2942    4.2951
  1134.         4.2192    4.1520    4.1463    4.1483
  1135.         4.1176    4.0722    4.0506    4.0581
  1136.         4.0586    4.0511    4.0593    4.0653
  1137.         4.0676    4.0712    4.0433    3.9804
  1138.         3.9430    3.9524    3.9672    3.9626
  1139.         3.9507    3.9430    3.9276    3.9017
  1140.         3.8604    3.8038    3.7741    3.7966
  1141.         3.8357    3.8557    3.8527    3.8440
  1142.         3.8220    3.7784    3.7385    3.7200
  1143.         3.7338    3.7643    3.7726    3.7769
  1144.         3.7994    3.8130    3.8246    3.8414
  1145.         3.8317    3.8082    3.7971    3.7695
  1146.         3.7312    3.7098    3.7156    3.7561
  1147.         3.7995    3.8393    3.8735    3.8685
  1148.         3.8533    3.8750    3.9050    3.8990
  1149.         3.8768    3.8811    3.9113    3.9429
  1150.         3.9672    3.9982    4.0258    4.0165
  1151.         3.9839    3.9711    3.9829    4.0049
  1152.         4.0441    4.0756    4.0873    4.1022
  1153.         4.1212    4.1225    4.0995    4.0704
  1154.         4.0589    4.0752    4.0984    4.1119
  1155.         4.1343    4.1586    4.1726    4.1798
  1156.         4.1820    4.1855    4.2094    4.2572
  1157.         4.2993    4.3176    4.3228    4.3257
  1158.         4.3240    4.3044    4.2854    4.2829
  1159.         4.2876    4.2851    4.2630    4.2451
  1160.         4.2550    4.2679    4.2826    4.3160
  1161.         4.3282    4.2968    4.2558    4.2432
  1162.         4.2685    4.3072    4.3280    4.3404
  1163.         4.3346    4.2759    4.1998    4.1702
  1164.         4.2124    4.2732    4.2847    4.2629
  1165.         4.2425    4.2098    4.1770    4.1763
  1166.         4.1911    4.1882    4.1759    4.1663
  1167.         4.1330    4.0891    4.0682    4.0682
  1168.         4.0624    4.0448    4.0438    4.0718
  1169.         4.0979    4.0821    4.0266    3.9864
  1170.         4.0021    4.0353    4.0288    4.0025
  1171.         3.9863    3.9888    4.0062    4.0005
  1172.         3.9590    3.9127    3.8824    3.8720
  1173.         3.8572    3.8300    3.8234    3.8445
  1174.         3.8487    3.8179    3.7819    3.7594
  1175.         3.7596    3.7757    3.7787    3.7721
  1176.         3.7664    3.7472    3.7242    3.7326
  1177.         3.7628    3.7598    3.7196    3.6824
  1178.         3.6889    3.7206    3.7392    3.7456
  1179.         3.7603    3.7863    3.8155    3.8447
  1180.         3.8480    3.8398    3.8611    3.8849
  1181.         3.8789    3.8712    3.8924    3.9250
  1182.         3.9419    3.9403    3.9318    3.9006
  1183.         3.8682    3.9011    3.9809    4.0246
  1184.         4.0353    4.0516    4.0705    4.0590
  1185.         4.0341    4.0256    4.0151    4.0109
  1186.         4.0392    4.0860    4.1355    4.1624
  1187.         4.1581    4.1609    4.1803    4.2018
  1188.         4.2184    4.2250    4.2147    4.1899
  1189.         4.1642    4.1482    4.1911    4.2695
  1190.         4.2826    4.2485    4.2136    4.1887
  1191.         4.2074    4.2838    4.3433    4.3051
  1192.         4.1978    4.1125    4.1055    4.1904
  1193.         4.2885    4.3294    4.3390    4.3447
  1194.         4.3437    4.3337    4.2939    4.2301
  1195.         4.1919    4.2039    4.2005    4.1584
  1196.         4.1648    4.2182    4.2373    4.2478
  1197.         4.2490    4.2036    4.1512    4.1438
  1198.         4.1641    4.1804    4.1629    4.1034
  1199.         4.0591    4.0682    4.0891    4.0944
  1200.         4.1156    4.1410    4.1247    4.0698
  1201.         4.0288    4.0200    4.0364    4.0512
  1202.         4.0237    3.9955    4.0102    4.0145
  1203.         3.9760    3.9662    4.0031    3.9971
  1204.         3.9255    3.8581    3.8404    3.8401
  1205.         3.8177    3.7523    3.7374    3.8234
  1206.         3.8702    3.8596    3.8727    3.9066
  1207.         3.8972    3.8594    3.8644    3.9048
  1208.         3.9325    3.9488    3.9425    3.8726
  1209.         3.7838    3.7260    3.7145    3.7316
  1210.         3.7265    3.7039    3.7232    3.7572
  1211.         3.7269    3.6752    3.6567    3.6789
  1212.         3.7518    3.8376    3.8883    3.9189
  1213.         3.9443    3.9508    3.9067    3.8554
  1214.         3.9047    4.0260    4.0644    4.0403
  1215.         4.0125    3.9892    4.0571    4.1430
  1216.         4.0919    3.9942    3.9804    4.0280
  1217.         4.0635    4.1130    4.2038    4.2403
  1218.         4.2103    4.1852    4.1776    4.1395
  1219.         4.0567    4.0227    4.1071    4.1994
  1220.         4.2576    4.3552    4.4440    4.4127
  1221.         4.3346    4.3393    4.3957    4.3489
  1222.         4.1848    4.0975    4.0920    4.0744
  1223.         4.1138    4.2179    4.2339    4.1554
  1224.         4.1073    4.1208    4.0668    3.9841
  1225.         4.0039    4.0003    3.9251    3.9485
  1226.         4.0722    4.1164    4.0952    4.1228
  1227.         4.2088    4.2388    4.2068    4.2166
  1228.         4.2125    4.1202    4.0571    4.0532
  1229.         4.1558    4.3152    4.2978    4.1616
  1230.         4.1443    4.1086    4.0384    4.0687
  1231.         4.0723    3.9987    3.9775    3.9429
  1232.         3.9011    3.8918    3.8856    3.8072
  1233.         3.6220    3.5458    3.7027    3.8685
  1234.         3.8723    3.8022    3.7797    3.6861
  1235.         3.4658    3.3700    3.4747    3.5662
  1236.         3.6115    3.6012    3.4953    3.5476
  1237.         3.7015    3.6951    3.5577    3.4871
  1238.         3.4478    3.3931    3.3936    3.3991
  1239.         3.3322    3.1924    3.0838    3.1296
  1240.         3.3243    3.5037    3.5536    3.5758
  1241.         3.5586    3.4281    3.3716    3.4918
  1242.         3.5988    3.6349    3.5910    3.5086
  1243.         3.4555    3.4986    3.6916    3.8286
  1244.         3.7717    3.6641    3.6092    3.6049
  1245.         3.6598    3.7989    3.8886    3.6724
  1246.         3.4683    3.5635    3.7365    3.8570
  1247.         3.9400    3.9338    3.8813    3.9444
  1248.         4.1208    4.2367    4.1597    4.0182
  1249.         3.9569    3.9355    3.9143    3.8876
  1250.         3.9056    3.9516    3.9832    4.0654
  1251.         4.1691    4.2439    4.2878    4.2749
  1252.         4.2742    4.3295    4.3168    4.1415
  1253.         3.9372    3.9371    4.1325    4.3543
  1254.         4.4586    4.4060    4.3445    4.3805
  1255.         4.3726    4.2661    4.1896    4.1046
  1256.         3.9667    3.8929    4.0597    4.3152
  1257.         4.3867    4.3182    4.2544    4.2140
  1258.         4.1667    4.1149    4.0481    4.0083
  1259.         4.0227    4.0487    4.1225    4.1894
  1260.         4.1586    4.1040    4.0811    4.0557
  1261.         4.1132    4.2713    4.3924    4.3247
  1262.         4.1275    4.0199    4.0101    4.0239
  1263.         4.0590    4.0638    3.9718    3.8246
  1264.         3.7107    3.7541    3.9144    3.9891
  1265.         3.9794    3.8180    3.6486    3.6818
  1266.         3.7822    3.8763    4.0135    4.1085
  1267.         4.0391    3.9151    3.8199    3.6551
  1268.         3.4665    3.4429    3.5590    3.6877
  1269.         3.7650    3.7755    3.7277    3.6902
  1270.         3.6983    3.7011    3.6887    3.7134
  1271.         3.7730    3.7947    3.7823    3.7317
  1272.         3.6262    3.5784    3.5698    3.4989
  1273.         3.5104    3.6605    3.7955    3.9019
  1274.         3.9897    4.0021    3.9406    3.8701
  1275.         3.7931    3.6613    3.5998    3.6305
  1276.         3.6473    3.7123    3.8283    3.9245
  1277.         4.0329    4.0829    4.0211    4.0096
  1278.         4.1040    4.1869    4.2066    4.1136
  1279.         3.9039    3.7299    3.7298    3.8234
  1280.         3.8948    3.9680    4.0104    3.9448
  1281.         3.8663    3.8502    3.8368    3.8798
  1282.         4.0532    4.2471    4.3475    4.2682
  1283.         4.1016    4.1576    4.4150    4.5706
  1284.         4.5509    4.4277    4.3082    4.2466
  1285.         4.1368    4.0491    4.0839    4.1753
  1286.         4.2691    4.2812    4.1577    4.0094
  1287.         3.9138    3.9199    4.0023    4.0903
  1288.         4.2195    4.3667    4.4259    4.4122
  1289.         4.4122    4.3466    4.1514    3.9618
  1290.         3.9475    4.0487    4.1192    4.1147
  1291.         4.0907    4.1024    4.1024    4.0307
  1292.         3.9274    3.8137    3.7349    3.7556
  1293.         3.8267    3.8344    3.8090    3.8208
  1294.         3.9034    4.0498    4.1513    4.1832
  1295.         4.2183    4.1704    3.9715    3.7718
  1296.         3.6723    3.5610    3.4824    3.5552
  1297.         3.6635    3.6271    3.5437    3.6304
  1298.         3.7303    3.7012    3.6188    3.5569
  1299.         3.5710    3.6532    3.7184    3.7485
  1300.         3.7741    3.7638    3.7374    3.7146
  1301.         3.6672    3.6052    3.6175    3.7730
  1302.         3.8550    3.6726    3.4110    3.4656
  1303.         3.8464    4.1414    4.1006    3.9079
  1304.         3.8500    3.9691    4.0257    3.8513
  1305.         3.6397    3.6523    3.8355    3.9043
  1306.         3.8691    3.9021    3.9751    4.0474
  1307.         4.0936    4.1213    4.1933    4.3028
  1308.         4.4050    4.3897    4.2845    4.2412
  1309.         4.1160    3.9072    3.9179    4.1168
  1310.         4.3097    4.3819    4.3499    4.2688
  1311.         4.1972    4.1233    4.0957    4.1848
  1312.         4.2591    4.2379    4.2120    4.1625
  1313.         4.0897    4.0789    4.1586    4.2863
  1314.         4.3210    4.2028    4.0356    3.8960
  1315.         3.8457    3.9294    4.0042    3.8854
  1316.         3.7650    3.7648    3.7415    3.5443
  1317.         3.3887    3.3969    3.3726    3.2292
  1318.         3.0580    2.9826    2.9791    2.9773
  1319.         2.9272    2.7399    2.5032    2.3386
  1320.         2.2621    2.1826    2.0198    1.7527
  1321.         1.3994    1.0421    0.8313    0.8379
  1322.         1.0071    1.1620    1.1241    0.8451
  1323.         0.5447    0.3268    0.0256   -0.3426
  1324.        -0.5481   -0.5391   -0.4992   -0.6288
  1325.        -0.8772   -1.0927   -1.3706   -1.9960
  1326.        -2.6370   -2.8954   -3.0923   -3.2882
  1327.        -3.3825   -3.5081   -3.5893   -3.6076
  1328.        -3.7203   -3.8884   -3.9815   -4.0522
  1329.        -4.0332   -3.9273   -4.2025   -4.8333
  1330.        -5.4544   -5.7822   -5.4846   -4.8133
  1331.        -4.6546   -5.0683   -5.6868   -5.9887
  1332.        -5.6421   -5.0674   -4.9115   -4.9862
  1333.        -5.0753   -5.4126   -5.7638   -5.3747
  1334.        -4.3985   -3.9502   -4.3882   -4.6642
  1335.        -4.0590   -3.2857   -3.0553   -3.0171
  1336.        -2.9334   -2.6387   -2.3332   -2.4326
  1337.        -2.7259   -2.8058   -2.7649   -2.7696
  1338.        -2.8219   -2.9168   -3.0049   -2.9978
  1339.        -2.8766   -2.7459   -2.7877   -2.7952
  1340.        -2.6307   -2.4433   -2.6332   -3.1869
  1341.        -3.2425   -2.2819   -1.0299   -0.2065
  1342.        -0.0031   -0.2092   -0.4339   -0.9713
  1343.        -1.9048   -2.3555   -2.1326   -2.0028
  1344.        -2.2714   -2.4559   -2.1483   -1.5499
  1345.        -1.1712   -1.4571   -2.2413   -2.4907
  1346.        -2.1361   -1.7915   -1.7738   -1.9718
  1347.        -2.1032   -1.8157   -1.2609   -1.0888
  1348.        -1.4205   -1.6319   -1.4174   -1.0870
  1349.        -0.6456    0.0054    0.4237    0.3262
  1350.         0.0030   -0.1614    0.0100    0.1762
  1351.         0.0037   -0.4210   -0.8006   -1.0810
  1352.        -1.2003   -1.0901   -0.9077   -0.6167
  1353.        -0.0365    0.6056    0.6823    0.2631
  1354.         0.0315    0.1720    0.5950    0.9670
  1355.         1.2035    1.0868    0.7313    0.2079
  1356.        -0.4428   -1.0584   -1.3108   -0.8113
  1357.        -0.1252   -0.0700   -0.4471   -0.4977
  1358.        -0.0009    0.4090    0.4309    0.3372
  1359.         0.3134    0.3018    0.2507   -0.0140
  1360.        -0.2245   -0.2516   -0.0333    0.2052
  1361.         0.3167    0.3388    0.2979    0.2408
  1362.         0.2438    0.1288    0.0355   -0.0726
  1363.         0.1884    0.5430    0.5037    0.3928
  1364.         0.6536    0.9805    1.0402    0.8571
  1365.         0.8218    0.8197    0.7281    0.5522
  1366.         0.6925    1.0045    1.0707    0.6734
  1367.         0.6085    1.0526    1.2845    1.1089
  1368.         1.2953    1.3806    1.1912    0.9422
  1369.         0.8630    0.9159    1.4254    1.8088
  1370.         1.7759    1.2884    0.9880    0.8059
  1371.         0.6631    0.3597    0.2877    0.5101
  1372.         0.9324    1.1062    1.1189    1.0873
  1373.         1.2963    1.4214    1.6282    1.7053
  1374.         1.4973    0.9790    1.0983    1.3852
  1375.         1.5429    1.5234    1.5292    1.3104
  1376.         1.2757    0.8869    0.5145    0.7113
  1377.         1.3543    1.3890    0.9667    0.7196
  1378.         1.4537    2.0366    2.1264    1.8825
  1379.         1.6793    1.3166    1.3493    1.3008
  1380.         1.2872    1.2882    1.6478    1.8070
  1381.         2.1904    2.2762    2.0932    1.6617
  1382.         1.7195    2.0066    2.6213    2.6506
  1383.         2.5683    2.3499    2.5807    2.5199
  1384.         2.4837    1.9532    1.7694    1.8284
  1385.         2.2359    2.1669    2.0885    1.9388
  1386.         2.2269    2.5849    3.0879    2.8728
  1387.         3.2147    3.0896    2.6566    1.8906
  1388.         1.8568    1.8620    1.9197    0.5811
  1389.         0.0707   -0.1140   -0.2507   -0.3872
  1390.        -0.5261   -0.3324    0.6124    0.6609
  1391.         0.7726    0.7911    0.8297    0.4739
  1392.         0.2283    0.2148    0.4259    0.5007
  1393.     
  1394.     
  1395.           -------------------------------
  1396.     
  1397.     
  1398.     
  1399.     
  1400. 
  1401.