>> I have to say I didn't see much improvement with 8192 point wavetable and 
>> tabosc4~ 
 
In your patch you substituted the carrier but the problem is the modulator. 
Once you use [tabosc4~] as the modulator, the drift is minimal (but it's still 
there). Actually it doesn't matter if you use [osc~] or [tabosc4~] as the 
carrier. (See my attached patch).

I tested it in SC and you're right, I couldn't see any change in the waveform 
either - even after a couple of minutes. 

Some weird things so far: 
1) [tabosc4~] is a better modulator than [osc~]
1) 8-points are better than 8192-points. 
2) [osc~] and [tabosc4~] will never null out, so [osc~] is implemented 
differently (but how?)

Some interesting side note: SC actually doesn't use 4-point interpolation for 
wavetable lookup but rather a form of linear interpolation: 
http://doc.sccode.org/Classes/Wavetable.html
http://doc.sccode.org/Classes/Osc.html

Still I'm asking myself if Max and SC might do some internal calculations with 
higher precision than Pd...

Maybe Miller can help us with this?



Gesendet: Sonntag, 22. November 2015 um 05:11 Uhr
Von: "Alexandre Torres Porres" <por...@gmail.com>
An: "Christof Ressi" <christof.re...@gmx.at>
Cc: "Matt Barber" <brbrof...@gmail.com>, Pd-List <pd-list@lists.iem.at>
Betreff: Re: Re: [PD] oscillators (osc~ / cycle~) not working well in FM?

well, I was trying [phasor~] + [cos~] instead of [osc~] and same thing happens, 
so whatever is the deal with [osc~] seems to be also with that.
 
I have to say I didn't see much improvement with 8192 point wavetable and 
tabosc4~ 
 
check my test patch, both behave the same way
 
and, again, in SC or max is just perfect, anyone tried it? 
 

SC code again:
 
{SinOsc.ar(SinOsc.ar(100, 0, 100 * 2pi), pi/2)}.scope
 
cheers
 
2015-11-21 19:54 GMT-02:00 Christof Ressi <christof.re...@gmx.at>:I've checked 
if there's a possible time drift between [osc~] and [tabosc4~] and there's 
clearly none (I had them both run in parallel for several minutes and compared 
the results).
Then I did a testing patch (see attachment) where I take the difference between 
the output of [osc~] and three [tabosc4~] objects (with various table sizes). 
While the difference between the various [tabosc4~] objects shows a nice 
periodicity and symmetry, the difference between [osc~] and any [tabosc4~] 
object is somehow periodic but it's not symmetric (and it's much larger). Does 
anyone understand how [osc~] is actually implemented and why it generates a 
different output than [tabosc4~]?



 
 

Gesendet: Samstag, 21. November 2015 um 20:24 Uhr
Von: "Matt Barber" <brbrof...@gmail.com>
An: "Christof Ressi" <christof.re...@gmx.at>
Cc: "Alexandre Torres Porres" <por...@gmail.com>, Pd-List <pd-list@lists.iem.at>
Betreff: Re: [PD] oscillators (osc~ / cycle~) not working well in FM?

Try it with an 8-point table and [tabosc4~]. It's still far more stable than 
[osc~].
 
 
 
On Sat, Nov 21, 2015 at 1:50 PM, Christof Ressi <christof.re...@gmx.at> 
wrote:I've found the reason! Looking at the Pd source code (d_osc.c and m_pd.h) 
[osc~] seems to read from a 512 (1<<9) point wavetable (defined by 
LOGCOSTABSIZE and COSTABSIZE in m_pd.h), whereas SuperCollider's SinOsc uses 
8192 points. (Both programs do their audio math with 32-bit floats.)
So I tried to substitute [osc~] with [tabosc4~] reading from a 8192 point 
wavetable (done with a simple cosinesum) - and the result is far more stable 
(although not perfect)! I think you can't really prevent this kind of drift 
with FM, although you can keep it very small by using very large wavetables. 
The better solution, however, is using PM, as you've discovered anyway.
 

Gesendet: Samstag, 21. November 2015 um 19:12 Uhr
Von: "Alexandre Torres Porres" <por...@gmail.com[por...@gmail.com]>
An: "Christof Ressi" <christof.re...@gmx.at[christof.re...@gmx.at]>
Cc: Pd-List <pd-list@lists.iem.at[pd-list@lists.iem.at]>
Betreff: Re: Re: [PD] oscillators (osc~ / cycle~) not working well in FM?

> Does this make sense? :-D
 
yeah, I kinda had the same idea
 
> Can anyone explain why this kind doesn't in SC or Max?
 
that what I'd really love to know
 
here's my SC code that relates to my first example patch I posted here
 

// 0Hz FM
{SinOsc.ar(SinOsc.ar(100, 0, 100 * 2pi), pi/2)}.scope
 
quite stable
 
2015-11-21 15:47 GMT-02:00 Christof Ressi 
<christof.re...@gmx.at[christof.re...@gmx.at]>:

Hey Alexander, that's very interesting! What's funny: when using [metro] + 
[vline~] instead of [phasor~], the drift is clearly slower. As you noted, PM 
seems to be stable (It is noteworthy that DX7 actually uses PM for better 
stability).
 
My guess it, it has something to do with rounding errors. And I can somehow 
intuitively see how this will affect FM but not PM:
 
Let's imagine a huge truck on a highway. On the truck is another car which can 
move forwards and backwards. And then there's a motercycle going at a fixed 
speed.
 
FM -> The car would remain fixed on the truck and someone would press and 
release the gas pedal of the truck periodically (starting from the same speed 
as the motercycle). If the amount of pressure/relief is not 100% precise, you 
can't really tell where exactly the car+truck will be after a couple of miles, 
even if the timing of manipulating the gas pedal is 100% exact, because small 
errors in speed will immediately result in small but lasting errors in 
location. So there will probably be a slow drift over time between the 
truck+car and the motercycle.
 
PM -> The truck moves at a fixed speed (same as the motorcycle) while the car 
on the truck goes forwards and backwards at a fixed intervall. The car is 
guaranteed to be in the middle of truck every N seconds. So even if the 
movement of the car might not be perfect, the location is 100% predictable at 
least every N*k seconds and this means that it will stay in phase with the 
motorcycle.
 
Does this make sense? :-D
 
Can anyone explain why this kind doesn't in SC or Max??? (I didn't test it 
myself) Larger look-up tables? More precision?
 
 

Gesendet: Samstag, 21. November 2015 um 17:06 Uhr
Von: "Alexandre Torres Porres" 
<por...@gmail.com[por...@gmail.com][por...@gmail.com[por...@gmail.com]]>
An: "Roman Haefeli" 
<reduz...@gmail.com[reduz...@gmail.com][reduz...@gmail.com[reduz...@gmail.com]]>
Cc: 
"pd-list@lists.iem.at[pd-list@lists.iem.at][pd-list@lists.iem.at[pd-list@lists.iem.at]]"
 
<pd-list@lists.iem.at[pd-list@lists.iem.at][pd-list@lists.iem.at[pd-list@lists.iem.at]]>
Betreff: Re: [PD] oscillators (osc~ / cycle~) not working well in FM?

By the way, I was wondering and thinking if this was a particularity of the 
"0Hz carrier FM", that is: a FM patch with no carrier frequency. But I tried 
other regular FM patches with a carrier signal and could see that it didn't 
keep static as well.
 
On the other hand, the same patch implemented as Phase Modulation (PM) 
maintains a static waveform in Pd.
 
In my last example, the patch I had as "waveshaping" could be thought of as a 
"0hz PM" patch.
 
Now, I tested the PM stability with the [phasor~] + [cos~] architecture and 
also with [cycle~]. 
 
The FM instability happened with both [osc~] and [cycle~].
 
In Max, a FM patch with [cycle~] is stable.
 
In short, there's something fishy with FM in Pd...
 
cheers
 
2015-11-21 13:25 GMT-02:00 Alexandre Torres Porres 
<por...@gmail.com[por...@gmail.com][por...@gmail.com[por...@gmail.com]]>:
> Can you elaborate?
 
Not easily I'm afraid, so I'll try to keep it simple: it's a demonstration on 
the relationship between FM and waveshaping, compare now both patches in my new 
example. The waveshaping does not change through time.
 
But let me attempt to reason why it should keep static - it's like any other FM 
patch, once you have set the parameters, the waveform must be static and not 
change in time. My tests with supercollider and Max had a good result (waveform 
kept static). I also tried in Pd with cycle~ and in the newest vanilla.
 
cheers
 

2015-11-21 11:26 GMT-02:00 Roman Haefeli 
<reduz...@gmail.com[reduz...@gmail.com][reduz...@gmail.com[reduz...@gmail.com]]>:

On Sat, 2015-11-21 at 02:59 -0200, Alexandre Torres Porres wrote:
> howdy, attached there's a patch where I was experimenting with FM
>
>
> the waveform shouldn't change with time, but it does. Give it a while
> though, 30 seconds is enough to hear a change in tone quality, then
> resseting the oscillator phase brings it back to where it was
>
>
> don't know why it does come out of phase, an equivalent patch in SC
> and Max does not get out of phase...

I hear and see what you mean. Interesting question. Frankly, I don't
quite understand why it is expected to stay in phase. Can you elaborate?

Roman

 _______________________________________________
Pd-list@lists.iem.at[Pd-list@lists.iem.at][Pd-list@lists.iem.at[Pd-list@lists.iem.at]]
 mailing listUNSUBSCRIBE and account-management -> 
http://lists.puredata.info/listinfo/pd-list[http://lists.puredata.info/listinfo/pd-list][http://lists.puredata.info/listinfo/pd-list[http://lists.puredata.info/listinfo/pd-list]][http://lists.puredata.info/listinfo/pd-list[http://lists.puredata.info/listinfo/pd-list][http://lists.puredata.info/listinfo/pd-list[http://lists.puredata.info/listinfo/pd-list]]][http://lists.puredata.info/listinfo/pd-list[http://lists.puredata.info/listinfo/pd-list][http://lists.puredata.info/listinfo/pd-list[http://lists.puredata.info/listinfo/pd-list]][http://lists.puredata.info/listinfo/pd-list[http://lists.puredata.info/listinfo/pd-list][http://lists.puredata.info/listinfo/pd-list[http://lists.puredata.info/listinfo/pd-list]]]]
 _______________________________________________ 
Pd-list@lists.iem.at[Pd-list@lists.iem.at][Pd-list@lists.iem.at[Pd-list@lists.iem.at]]
 mailing list UNSUBSCRIBE and account-management -> 
http://lists.puredata.info/listinfo/pd-list[http://lists.puredata.info/listinfo/pd-list][http://lists.puredata.info/listinfo/pd-list[http://lists.puredata.info/listinfo/pd-list]][http://lists.puredata.info/listinfo/pd-list[http://lists.puredata.info/listinfo/pd-list][http://lists.puredata.info/listinfo/pd-list[http://lists.puredata.info/listinfo/pd-list]]][http://lists.puredata.info/listinfo/pd-list[http://lists.puredata.info/listinfo/pd-list][http://lists.puredata.info/listinfo/pd-list[http://lists.puredata.info/listinfo/pd-list]][http://lists.puredata.info/listinfo/pd-list[http://lists.puredata.info/listinfo/pd-list][http://lists.puredata.info/listinfo/pd-list[http://lists.puredata.info/listinfo/pd-list]]]]

_______________________________________________
Pd-list@lists.iem.at[Pd-list@lists.iem.at] mailing list
UNSUBSCRIBE and account-management -> 
http://lists.puredata.info/listinfo/pd-list[http://lists.puredata.info/listinfo/pd-list][http://lists.puredata.info/listinfo/pd-list[http://lists.puredata.info/listinfo/pd-list]]
 
#N canvas 51 50 1004 513 10;
#X obj -10 342 cnv 15 198 138 empty empty empty 20 12 0 14 -212789
-66577 0;
#N canvas 0 50 450 300 (subpatch) 0;
#X array out 700 float 1;
#A 0 -0.758782 -0.711721 -0.661849 -0.609495 -0.555053 -0.498843 -0.441241
-0.382576 -0.323162 -0.263323 -0.203354 -0.143535 -0.0841286 -0.0253769
0.0324942 0.0892796 0.144795 0.198873 0.251371 0.302165 0.351138 0.398209
0.443307 0.486378 0.527385 0.566306 0.603119 0.637841 0.670494 0.701085
0.729668 0.756292 0.780999 0.803848 0.824915 0.844263 0.861966 0.878116
0.892797 0.90606 0.918025 0.928765 0.938341 0.946859 0.954397 0.961036
0.966851 0.971892 0.97627 0.980028 0.98325 0.985962 0.988252 0.990165
0.991747 0.993044 0.994101 0.994935 0.995583 0.996085 0.99645 0.996682
0.996812 0.996841 0.996768 0.996593 0.996316 0.995881 0.995328 0.994587
0.99367 0.992527 0.991105 0.989384 0.987319 0.984834 0.981899 0.978469
0.974435 0.969786 0.964405 0.958241 0.951221 0.943264 0.934292 0.924227
0.912961 0.900436 0.886567 0.87126 0.854432 0.836017 0.81593 0.794094
0.77044 0.744907 0.717443 0.687987 0.656496 0.622948 0.587313 0.549575
0.509746 0.467837 0.423875 0.377907 0.329994 0.280217 0.228666 0.175461
0.120738 0.0646462 0.00736324 -0.0509185 -0.109986 -0.169604 -0.229522
-0.28947 -0.349159 -0.408282 -0.466526 -0.523566 -0.579042 -0.632621
-0.683931 -0.732637 -0.778335 -0.820701 -0.859377 -0.894017 -0.924287
-0.94987 -0.970472 -0.985824 -0.995686 -0.999851 -0.998147 -0.990396
-0.976539 -0.956517 -0.930294 -0.897946 -0.859528 -0.815202 -0.765166
-0.709628 -0.648916 -0.583372 -0.513388 -0.439399 -0.361895 -0.281408
-0.198501 -0.113772 -0.027847 0.0586264 0.144983 0.230547 0.314633
0.396563 0.475668 0.551293 0.622808 0.689607 0.751097 0.806772 0.85615
0.898799 0.934311 0.962407 0.982837 0.99539 0.999961 0.996523 0.985089
0.965734 0.938658 0.904092 0.862299 0.813675 0.758639 0.697655 0.631235
0.559964 0.484442 0.405301 0.323188 0.238794 0.152804 0.0659086 -0.0212026
-0.107849 -0.193366 -0.277109 -0.358459 -0.436831 -0.511677 -0.582487
-0.648801 -0.710205 -0.766334 -0.816867 -0.861535 -0.900152 -0.932559
-0.958631 -0.978365 -0.991703 -0.99876 -0.999572 -0.994321 -0.983186
-0.96635 -0.944088 -0.916681 -0.884432 -0.847668 -0.806734 -0.761992
-0.713815 -0.66258 -0.608647 -0.552425 -0.494284 -0.434584 -0.373702
-0.31198 -0.249755 -0.187356 -0.125084 -0.0632261 -0.00205004 0.0581964
0.117287 0.175017 0.231206 0.285681 0.338316 0.388976 0.437577 0.484023
0.528257 0.570239 0.609941 0.647351 0.682475 0.71533 0.745926 0.774336
0.800585 0.82476 0.846889 0.867078 0.885403 0.901946 0.916794 0.930043
0.941796 0.952114 0.961132 0.968923 0.975608 0.98124 0.985939 0.989795
0.992892 0.995319 0.997143 0.998441 0.999324 0.999796 0.999981 0.999927
0.999666 0.999269 0.998786 0.998239 0.997683 0.997166 0.99668 0.996293
0.995967 0.995758 0.995666 0.995691 0.995834 0.996094 0.996451 0.99688
0.997392 0.997926 0.998469 0.998991 0.999446 0.999786 0.999966 0.999939
0.999631 0.99898 0.997936 0.996418 0.994333 0.991627 0.98821 0.983997
0.9789 0.972832 0.965667 0.957362 0.947776 0.936853 0.924466 0.910526
0.894948 0.877641 0.858518 0.837487 0.814465 0.789406 0.762214 0.732867
0.701277 0.66744 0.631324 0.592915 0.552216 0.509245 0.464038 0.416652
0.367137 0.315604 0.262148 0.20691 0.150027 0.0916797 0.032059 -0.0286215
-0.0901261 -0.152198 -0.214563 -0.276926 -0.338971 -0.400368 -0.460785
-0.519842 -0.5772 -0.632465 -0.685261 -0.735217 -0.78195 -0.825082
-0.864243 -0.899079 -0.929251 -0.954443 -0.974363 -0.988748 -0.997358
-0.999967 -0.996455 -0.986663 -0.970543 -0.948041 -0.91921 -0.884071
-0.842792 -0.795545 -0.742534 -0.684062 -0.62047 -0.552141 -0.479511
-0.403064 -0.323323 -0.240856 -0.156263 -0.0701728 0.0167592 0.10386
0.190446 0.275826 0.35931 0.440207 0.51785 0.591596 0.660825 0.724943
0.783392 0.835689 0.881386 0.920063 0.951399 0.975135 0.991055 0.999006
0.998953 0.990903 0.974884 0.951088 0.919726 0.881056 0.835424 0.783247
0.724976 0.661099 0.592173 0.518791 0.441571 0.361153 0.2782 0.193384
0.107391 0.0209013 -0.0654138 -0.150896 -0.234905 -0.316828 -0.396081
-0.472117 -0.544418 -0.612517 -0.675999 -0.734492 -0.787669 -0.83524
-0.877015 -0.912796 -0.942484 -0.966002 -0.983345 -0.994514 -0.999619
-0.998763 -0.992079 -0.979788 -0.962111 -0.939302 -0.91164 -0.87943
-0.842996 -0.802678 -0.758804 -0.711745 -0.661875 -0.609522 -0.555081
-0.498873 -0.441272 -0.382607 -0.323194 -0.263356 -0.203387 -0.143569
-0.0841624 -0.0254108 0.0324603 0.0892458 0.144762 0.19884 0.251338
0.302133 0.351106 0.398178 0.443277 0.486349 0.527356 0.566279 0.603092
0.637815 0.670469 0.701061 0.729645 0.756269 0.780978 0.803828 0.824896
0.844245 0.861948 0.8781 0.892782 0.906046 0.918012 0.928752 0.938329
0.946848 0.954387 0.961027 0.966843 0.971884 0.976263 0.980021 0.983244
0.985956 0.988247 0.99016 0.991743 0.99304 0.994097 0.994931 0.99558
0.996082 0.996447 0.996679 0.996809 0.996838 0.996765 0.99659 0.996314
0.995878 0.995324 0.994584 0.993667 0.992523 0.991101 0.98938 0.987314
0.984828 0.981892 0.978463 0.974428 0.969777 0.964397 0.958231 0.951211
0.943253 0.93428 0.924214 0.912948 0.900421 0.886551 0.871243 0.854414
0.835998 0.815911 0.794074 0.770419 0.744885 0.71742 0.687963 0.656471
0.622922 0.587286 0.549547 0.509717 0.467807 0.423845 0.377876 0.329963
0.280185 0.228634 0.175429 0.120705 0.0646133 0.00733026 -0.0509514
-0.110019 -0.169636 -0.229554 -0.289502 -0.34919 -0.408312 -0.466555
-0.523595 -0.579068 -0.632647 -0.683955 -0.732659 -0.778355 -0.820719
-0.859394 -0.894032 -0.924299 -0.94988 -0.97048 -0.98583 -0.995689
-0.999852 -0.998145 -0.990392 -0.976532 -0.956507 -0.930282 -0.897931
-0.859512 -0.815183 -0.765145 -0.709605 -0.648891 -0.583345 -0.51336
-0.439369 -0.361864 -0.281376 -0.198469 -0.11374 -0.0278143 0.0586591
0.145015 0.230579 0.314664 0.396593 0.475697 0.551321 0.622833 0.68963
0.751119 0.806791 0.856167 0.898813 0.934323 0.962416 0.982843 0.995393
0.999961 0.996521 0.985083 0.965726 0.938647 0.904079 0.862283 0.813656
0.758618 0.697631 0.631209 0.559937 0.484413 0.405271 0.323157 0.238762
0.152771 0.0658759 -0.0212354 -0.107882 -0.193399 -0.27714 -0.35849
-0.436861 -0.511705 -0.582514 -0.648826 -0.710228 -0.766355 -0.816886
-0.861551 -0.900166 -0.932571 -0.95864 -0.978372 -0.991707 -0.998762
-0.999571 -0.994317 -0.983181 -0.966341 -0.944077 -0.916668 -0.884417
-0.84765 -0.806715 -0.761971 -0.713792 -0.662556 -0.608621 -0.552398
-0.494256 -0.434555 -0.373671 -0.311949 -0.249723 -0.187323 -0.125051
-0.0631932 -0.00201711 0.0582293 0.117319 0.175049 0.231238 0.285713
0.338347 0.389006 0.437607 0.484052 0.528285 0.570267 0.609967 0.647376
0.682499 0.715354 0.745948 0.774357 0.800605 0.824779 0.846906 0.867095
0.885419 0.90196 0.916807 0.930055 0.941807 0.952124;
#X coords 0 1 699 -1 200 140 1;
#X restore -11 341 graph;
#X text -27 339 1;
#X text -33 463 -1;
#X text -28 404 0;
#X obj 56 219 osc~;
#X msg 148 128 0;
#N canvas 227 235 427 341 gain 0;
#X obj 77 211 *~;
#X obj 65 274 dac~;
#X obj 106 181 line~;
#X msg 106 155 \$1 10;
#X obj 106 129 pow 4;
#X obj 77 61 inlet~;
#X obj 109 105 hsl 100 15 0 1 0 0 empty empty empty -2 -8 0 10 -163060
-1 -1 0 1;
#X text 137 104 ganho;
#X obj 164 203 tgl 15 0 empty empty empty 17 7 0 10 -228856 -1 -1 1
1;
#X obj 164 224 metro 220;
#X obj 164 174 loadbang;
#X obj 152 254 tabwrite~ out;
#X msg 259 226 \; pd dsp 1;
#X connect 0 0 1 0;
#X connect 0 0 1 1;
#X connect 2 0 0 1;
#X connect 3 0 2 0;
#X connect 4 0 3 0;
#X connect 5 0 0 0;
#X connect 5 0 11 0;
#X connect 6 0 4 0;
#X connect 8 0 9 0;
#X connect 9 0 11 0;
#X connect 10 0 8 0;
#X connect 10 0 12 0;
#X coords 0 -1 1 1 120 25 2 100 100;
#X restore 56 249 pd gain;
#X obj 148 60 tgl 15 0 empty empty empty 17 7 0 10 -262144 -1 -1 0
1;
#X obj 148 83 metro 30000;
#X obj 148 106 bng 15 250 50 0 empty empty empty 17 7 0 10 -262144
-1 -1;
#X obj 231 33 loadbang;
#X obj 64 152 *~ 629;
#X obj 240 341 cnv 15 198 138 empty empty empty 20 12 0 14 -212789
-66577 0;
#N canvas 0 50 450 300 (subpatch) 0;
#X array wavetable 700 float 1;
#A 0 -0.758797 -0.711741 -0.66186 -0.609514 -0.555063 -0.498862 -0.441257
-0.382586 -0.323176 -0.263338 -0.203369 -0.143549 -0.0841415 -0.0253895
0.0324821 0.0892682 0.144784 0.198863 0.251362 0.302153 0.351129 0.398203
0.443303 0.486374 0.52738 0.566297 0.603115 0.63784 0.670488 0.701085
0.72967 0.756287 0.780991 0.803843 0.824909 0.84426 0.861971 0.878123
0.892795 0.906069 0.918031 0.928762 0.938347 0.946869 0.954407 0.961042
0.96685 0.971905 0.976279 0.98004 0.983252 0.985975 0.988268 0.990181
0.991764 0.99306 0.994108 0.994945 0.995599 0.996096 0.996457 0.996698
0.996829 0.996858 0.996785 0.996607 0.996315 0.995897 0.995334 0.994604
0.993679 0.992527 0.991111 0.989389 0.987317 0.984843 0.981914 0.97847
0.97445 0.969787 0.964412 0.958253 0.951233 0.943276 0.9343 0.924225
0.912967 0.900443 0.886569 0.871262 0.854439 0.836022 0.815931 0.794095
0.770443 0.744911 0.717441 0.687984 0.656496 0.622944 0.587307 0.549573
0.509742 0.467832 0.423869 0.377901 0.329987 0.280206 0.228656 0.175451
0.120726 0.0646345 0.0073508 -0.0509313 -0.109998 -0.169617 -0.229535
-0.289483 -0.349171 -0.408298 -0.466544 -0.523579 -0.57906 -0.632636
-0.683951 -0.732643 -0.778353 -0.820721 -0.859394 -0.89403 -0.924296
-0.949879 -0.970483 -0.98584 -0.995706 -0.999868 -0.99815 -0.990411
-0.976554 -0.956523 -0.930309 -0.897951 -0.859539 -0.815212 -0.765163
-0.709636 -0.648925 -0.583377 -0.513388 -0.439398 -0.361896 -0.281409
-0.198502 -0.113772 -0.0278462 0.0586281 0.144985 0.230548 0.314635
0.396568 0.475676 0.551303 0.622815 0.689606 0.751107 0.806787 0.856162
0.8988 0.934326 0.962425 0.982844 0.995401 0.99998 0.996534 0.985091
0.965747 0.938667 0.904086 0.862304 0.813681 0.758637 0.697648 0.631234
0.559962 0.484435 0.405288 0.323179 0.238785 0.152794 0.065897 -0.0212154
-0.107863 -0.19338 -0.277122 -0.358473 -0.436846 -0.511692 -0.582505
-0.648821 -0.710224 -0.766348 -0.816878 -0.861555 -0.900169 -0.932568
-0.958651 -0.978369 -0.991723 -0.998764 -0.999588 -0.994336 -0.983188
-0.96636 -0.944102 -0.916696 -0.884446 -0.847681 -0.806747 -0.762003
-0.713821 -0.662578 -0.608655 -0.552431 -0.494286 -0.434589 -0.373704
-0.311981 -0.249758 -0.187357 -0.125084 -0.0632253 -0.00204887 0.0581982
0.11729 0.17502 0.231206 0.285686 0.338318 0.388983 0.437579 0.484028
0.528265 0.570249 0.609952 0.647362 0.682483 0.715332 0.745939 0.774344
0.800598 0.824762 0.846902 0.867094 0.885419 0.901962 0.916811 0.930059
0.9418 0.95213 0.961144 0.968939 0.975611 0.981252 0.985956 0.989812
0.992907 0.995327 0.997152 0.99846 0.999324 0.999814 0.999995 0.999929
0.999671 0.999275 0.998786 0.998249 0.9977 0.997173 0.996696 0.996293
0.995981 0.995775 0.995682 0.995708 0.995851 0.996105 0.996458 0.996897
0.997398 0.997939 0.998487 0.999008 0.999462 0.999804 0.999985 0.99995
0.999642 0.998997 0.997949 0.996425 0.99435 0.991646 0.988229 0.984014
0.978913 0.972834 0.965685 0.95737 0.947793 0.93686 0.924474 0.910539
0.894963 0.877654 0.858525 0.837493 0.81448 0.789413 0.762228 0.732868
0.701289 0.667452 0.631334 0.592924 0.552224 0.509253 0.464045 0.416652
0.367143 0.315607 0.262153 0.206911 0.15003 0.0916823 0.0320606 -0.0286207
-0.0901261 -0.1522 -0.214565 -0.276927 -0.338972 -0.400372 -0.460783
-0.519849 -0.577202 -0.63247 -0.685271 -0.735226 -0.781955 -0.825083
-0.864243 -0.899081 -0.929259 -0.954456 -0.974379 -0.98876 -0.997363
-0.999985 -0.996465 -0.986681 -0.970556 -0.94806 -0.919215 -0.88409
-0.842811 -0.795553 -0.742549 -0.684082 -0.620489 -0.552159 -0.479527
-0.403078 -0.323337 -0.24087 -0.156277 -0.0701861 0.0167469 0.10385
0.190437 0.275817 0.359298 0.440198 0.517847 0.591595 0.660821 0.724937
0.783396 0.835695 0.881384 0.920068 0.951411 0.975143 0.991059 0.999023
0.998969 0.990903 0.974899 0.951105 0.919734 0.881064 0.835439 0.783259
0.72498 0.661105 0.592183 0.5188 0.441577 0.361156 0.2782 0.193386
0.107393 0.0209028 -0.0654134 -0.150896 -0.234907 -0.316831 -0.396083
-0.472116 -0.544419 -0.612524 -0.676008 -0.734499 -0.787671 -0.835253
-0.877021 -0.912808 -0.942495 -0.966016 -0.983351 -0.994532 -0.999631
-0.998767 -0.992094 -0.979807 -0.962132 -0.939322 -0.911661 -0.87945
-0.843014 -0.802687 -0.758819 -0.711765 -0.661885 -0.609541 -0.555091
-0.498891 -0.441287 -0.382618 -0.323208 -0.263371 -0.203402 -0.143583
-0.0841753 -0.0254234 0.0324482 0.0892344 0.14475 0.19883 0.251329
0.30212 0.351098 0.398172 0.443272 0.486345 0.527351 0.566269 0.603088
0.637814 0.670463 0.701061 0.729647 0.756265 0.78097 0.803823 0.82489
0.844242 0.861954 0.878107 0.892779 0.906055 0.918017 0.92875 0.938336
0.946858 0.954397 0.961032 0.966841 0.971897 0.976272 0.980033 0.983246
0.98597 0.988262 0.990176 0.991759 0.993056 0.994105 0.994941 0.995596
0.996093 0.996454 0.996695 0.996827 0.996855 0.996782 0.996604 0.996312
0.995894 0.995331 0.9946 0.993675 0.992523 0.991106 0.989385 0.987312
0.984837 0.981907 0.978463 0.974442 0.969779 0.964403 0.958243 0.951223
0.943265 0.934289 0.924213 0.912954 0.900429 0.886554 0.871245 0.854422
0.836003 0.815912 0.794075 0.770422 0.744889 0.717418 0.68796 0.656471
0.622918 0.58728 0.549545 0.509714 0.467802 0.423839 0.37787 0.329956
0.280175 0.228624 0.175419 0.120693 0.0646016 0.00731782 -0.0509643
-0.110031 -0.169649 -0.229567 -0.289514 -0.349202 -0.408328 -0.466573
-0.523607 -0.579086 -0.632661 -0.683975 -0.732666 -0.778374 -0.82074
-0.859411 -0.894044 -0.924308 -0.949889 -0.970491 -0.985846 -0.995709
-0.999868 -0.998147 -0.990407 -0.976547 -0.956513 -0.930297 -0.897937
-0.859522 -0.815193 -0.765142 -0.709613 -0.6489 -0.583351 -0.513359
-0.439369 -0.361866 -0.281378 -0.19847 -0.11374 -0.0278135 0.0586608
0.145017 0.23058 0.314666 0.396598 0.475705 0.55133 0.62284 0.68963
0.751129 0.806806 0.856179 0.898814 0.934338 0.962434 0.98285 0.995404
0.99998 0.996532 0.985086 0.965739 0.938656 0.904073 0.862287 0.813662
0.758616 0.697624 0.631208 0.559935 0.484407 0.405258 0.323148 0.238753
0.152761 0.0658643 -0.0212481 -0.107895 -0.193412 -0.277154 -0.358503
-0.436875 -0.511721 -0.582532 -0.648846 -0.710247 -0.766369 -0.816897
-0.861571 -0.900184 -0.93258 -0.95866 -0.978375 -0.991727 -0.998765
-0.999588 -0.994333 -0.983182 -0.966351 -0.944091 -0.916683 -0.884431
-0.847664 -0.806727 -0.761982 -0.713798 -0.662553 -0.608629 -0.552404
-0.494257 -0.43456 -0.373673 -0.31195 -0.249726 -0.187325 -0.125051
-0.0631924 -0.00201595 0.058231 0.117322 0.175053 0.231238 0.285718
0.338349 0.389013 0.437609 0.484056 0.528294 0.570276 0.609978 0.647387
0.682507 0.715356 0.745961 0.774365 0.800618 0.82478 0.84692 0.867111
0.885435 0.901976 0.916824 0.930071 0.941811 0.95214;
#X coords 0 1 699 -1 200 140 1;
#X restore 239 340 graph;
#X text 223 338 1;
#X text 217 462 -1;
#X text 222 403 0;
#N canvas 227 235 427 341 gain 0;
#X obj 77 211 *~;
#X obj 65 274 dac~;
#X obj 106 181 line~;
#X msg 106 155 \$1 10;
#X obj 106 129 pow 4;
#X obj 77 61 inlet~;
#X obj 109 105 hsl 100 15 0 1 0 0 empty empty empty -2 -8 0 10 -163060
-1 -1 0 1;
#X text 137 104 ganho;
#X obj 164 203 tgl 15 0 empty empty empty 17 7 0 10 -228856 -1 -1 1
1;
#X obj 164 224 metro 220;
#X obj 164 174 loadbang;
#X obj 152 254 tabwrite~ wavetable;
#X connect 0 0 1 0;
#X connect 0 0 1 1;
#X connect 2 0 0 1;
#X connect 3 0 2 0;
#X connect 4 0 3 0;
#X connect 5 0 0 0;
#X connect 5 0 11 0;
#X connect 6 0 4 0;
#X connect 8 0 9 0;
#X connect 9 0 11 0;
#X connect 10 0 8 0;
#X coords 0 -1 1 1 120 25 2 100 100;
#X restore 307 263 pd gain;
#N canvas 0 50 450 250 (subpatch) 0;
#X array wavetable4 8195 float 3;
#A 0 1 1 1 0.999999 0.999997 0.999995 0.999993 0.999989 0.999986 0.999981
0.999976 0.999971 0.999964 0.999958 0.99995 0.999942 0.999934 0.999925
0.999915 0.999905 0.999894 0.999882 0.99987 0.999858 0.999844 0.999831
0.999816 0.999801 0.999786 0.999769 0.999753 0.999735 0.999717 0.999699
0.99968 0.99966 0.99964 0.999619 0.999597 0.999575 0.999553 0.999529
0.999506 0.999481 0.999456 0.999431 0.999404 0.999378 0.99935 0.999322
0.999294 0.999265 0.999235 0.999205 0.999174 0.999142 0.99911 0.999078
0.999044 0.999011 0.998976 0.998941 0.998906 0.99887 0.998833 0.998795
0.998758 0.998719 0.99868 0.99864 0.9986 0.998559 0.998518 0.998476
0.998433 0.99839 0.998346 0.998302 0.998257 0.998211 0.998165 0.998118
0.998071 0.998023 0.997974 0.997925 0.997876 0.997825 0.997774 0.997723
0.997671 0.997618 0.997565 0.997511 0.997457 0.997402 0.997347 0.99729
0.997234 0.997176 0.997119 0.99706 0.997001 0.996941 0.996881 0.99682
0.996759 0.996697 0.996634 0.996571 0.996507 0.996443 0.996378 0.996313
0.996247 0.99618 0.996113 0.996045 0.995976 0.995907 0.995838 0.995767
0.995697 0.995625 0.995553 0.995481 0.995408 0.995334 0.99526 0.995185
0.995109 0.995033 0.994957 0.994879 0.994802 0.994723 0.994644 0.994565
0.994484 0.994404 0.994322 0.99424 0.994158 0.994075 0.993991 0.993907
0.993822 0.993737 0.993651 0.993564 0.993477 0.993389 0.993301 0.993212
0.993122 0.993032 0.992942 0.99285 0.992759 0.992666 0.992573 0.99248
0.992385 0.992291 0.992195 0.992099 0.992003 0.991906 0.991808 0.99171
0.991611 0.991511 0.991411 0.991311 0.99121 0.991108 0.991006 0.990903
0.990799 0.990695 0.99059 0.990485 0.990379 0.990273 0.990166 0.990058
0.98995 0.989841 0.989732 0.989622 0.989512 0.9894 0.989289 0.989177
0.989064 0.98895 0.988836 0.988722 0.988607 0.988491 0.988374 0.988258
0.98814 0.988022 0.987903 0.987784 0.987664 0.987544 0.987423 0.987301
0.987179 0.987057 0.986933 0.986809 0.986685 0.98656 0.986434 0.986308
0.986181 0.986054 0.985926 0.985798 0.985668 0.985539 0.985408 0.985278
0.985146 0.985014 0.984882 0.984749 0.984615 0.984481 0.984346 0.98421
0.984074 0.983937 0.9838 0.983662 0.983524 0.983385 0.983246 0.983106
0.982965 0.982824 0.982682 0.982539 0.982396 0.982253 0.982109 0.981964
0.981819 0.981673 0.981526 0.981379 0.981232 0.981083 0.980935 0.980785
0.980635 0.980485 0.980334 0.980182 0.98003 0.979877 0.979724 0.97957
0.979415 0.97926 0.979104 0.978948 0.978791 0.978634 0.978476 0.978317
0.978158 0.977999 0.977838 0.977677 0.977516 0.977354 0.977191 0.977028
0.976864 0.9767 0.976535 0.97637 0.976204 0.976037 0.97587 0.975702
0.975534 0.975365 0.975195 0.975025 0.974855 0.974684 0.974512 0.974339
0.974167 0.973993 0.973819 0.973644 0.973469 0.973293 0.973117 0.97294
0.972762 0.972584 0.972406 0.972227 0.972047 0.971866 0.971685 0.971504
0.971322 0.971139 0.970956 0.970772 0.970588 0.970403 0.970217 0.970031
0.969845 0.969657 0.96947 0.969281 0.969092 0.968903 0.968713 0.968522
0.968331 0.968139 0.967947 0.967754 0.96756 0.967366 0.967172 0.966977
0.966781 0.966584 0.966388 0.96619 0.965992 0.965793 0.965594 0.965394
0.965194 0.964993 0.964792 0.96459 0.964387 0.964184 0.96398 0.963776
0.963571 0.963366 0.96316 0.962953 0.962746 0.962539 0.96233 0.962121
0.961912 0.961702 0.961492 0.961281 0.961069 0.960857 0.960644 0.960431
0.960217 0.960002 0.959787 0.959572 0.959355 0.959139 0.958921 0.958704
0.958485 0.958266 0.958047 0.957826 0.957606 0.957385 0.957163 0.95694
0.956717 0.956494 0.95627 0.956045 0.95582 0.955594 0.955368 0.955141
0.954914 0.954686 0.954457 0.954228 0.953999 0.953768 0.953537 0.953306
0.953074 0.952842 0.952609 0.952375 0.952141 0.951906 0.951671 0.951435
0.951199 0.950962 0.950724 0.950486 0.950248 0.950008 0.949769 0.949528
0.949287 0.949046 0.948804 0.948561 0.948318 0.948075 0.94783 0.947586
0.94734 0.947094 0.946848 0.946601 0.946353 0.946105 0.945857 0.945607
0.945358 0.945107 0.944856 0.944605 0.944353 0.9441 0.943847 0.943594
0.943339 0.943085 0.942829 0.942573 0.942317 0.94206 0.941802 0.941544
0.941285 0.941026 0.940767 0.940506 0.940245 0.939984 0.939722 0.939459
0.939196 0.938933 0.938668 0.938404 0.938138 0.937872 0.937606 0.937339
0.937072 0.936804 0.936535 0.936266 0.935996 0.935726 0.935455 0.935184
0.934912 0.934639 0.934366 0.934093 0.933819 0.933544 0.933269 0.932993
0.932717 0.93244 0.932162 0.931884 0.931606 0.931327 0.931047 0.930767
0.930486 0.930205 0.929923 0.929641 0.929358 0.929075 0.928791 0.928506
0.928221 0.927936 0.927649 0.927363 0.927075 0.926788 0.926499 0.92621
0.925921 0.925631 0.92534 0.925049 0.924758 0.924466 0.924173 0.92388
0.923586 0.923292 0.922997 0.922701 0.922405 0.922109 0.921812 0.921514
0.921216 0.920917 0.920618 0.920318 0.920018 0.919717 0.919416 0.919114
0.918812 0.918509 0.918205 0.917901 0.917596 0.917291 0.916985 0.916679
0.916372 0.916065 0.915757 0.915449 0.91514 0.91483 0.91452 0.91421
0.913899 0.913587 0.913275 0.912962 0.912649 0.912335 0.912021 0.911706
0.911391 0.911075 0.910758 0.910441 0.910124 0.909806 0.909487 0.909168
0.908848 0.908528 0.908208 0.907886 0.907564 0.907242 0.906919 0.906596
0.906272 0.905947 0.905622 0.905297 0.904971 0.904644 0.904317 0.903989
0.903661 0.903333 0.903003 0.902673 0.902343 0.902012 0.901681 0.901349
0.901017 0.900684 0.90035 0.900016 0.899682 0.899346 0.899011 0.898675
0.898338 0.898001 0.897663 0.897325 0.896986 0.896647 0.896307 0.895966
0.895626 0.895284 0.894942 0.8946 0.894257 0.893913 0.893569 0.893224
0.892879 0.892534 0.892188 0.891841 0.891494 0.891146 0.890798 0.890449
0.8901 0.88975 0.889399 0.889049 0.888697 0.888345 0.887993 0.88764
0.887286 0.886932 0.886578 0.886223 0.885867 0.885511 0.885154 0.884797
0.88444 0.884081 0.883723 0.883364 0.883004 0.882644 0.882283 0.881921
0.88156 0.881197 0.880834 0.880471 0.880107 0.879743 0.879378 0.879012
0.878646 0.87828 0.877913 0.877545 0.877177 0.876809 0.87644 0.87607
0.8757 0.87533 0.874959 0.874587 0.874215 0.873842 0.873469 0.873095
0.872721 0.872346 0.871971 0.871595 0.871219 0.870842 0.870465 0.870087
0.869709 0.86933 0.868951 0.868571 0.868191 0.86781 0.867428 0.867046
0.866664 0.866281 0.865898 0.865514 0.865129 0.864744 0.864359 0.863973
0.863587 0.8632 0.862812 0.862424 0.862036 0.861647 0.861257 0.860867
0.860477 0.860086 0.859694 0.859302 0.858909 0.858516 0.858123 0.857729
0.857334 0.856939 0.856544 0.856148 0.855751 0.855354 0.854956 0.854558
0.85416 0.853761 0.853361 0.852961 0.85256 0.852159 0.851758 0.851355
0.850953 0.85055 0.850146 0.849742 0.849337 0.848932 0.848527 0.848121
0.847714 0.847307 0.846899 0.846491 0.846083 0.845674 0.845264 0.844854
0.844443 0.844032 0.843621 0.843208 0.842796 0.842383 0.841969 0.841555
0.841141 0.840726 0.84031 0.839894 0.839478 0.83906 0.838643 0.838225
0.837806 0.837387 0.836968 0.836548 0.836128 0.835707 0.835285 0.834863
0.834441 0.834018 0.833594 0.83317 0.832746 0.832321 0.831896 0.83147
0.831044 0.830617 0.830189 0.829762 0.829333 0.828904 0.828475 0.828045
0.827615 0.827184 0.826753 0.826321 0.825889 0.825456 0.825023 0.82459
0.824155 0.823721 0.823286 0.82285 0.822414 0.821977 0.82154 0.821103
0.820665 0.820226 0.819787 0.819348 0.818908 0.818467 0.818026 0.817585
0.817143 0.816701 0.816258 0.815815 0.815371 0.814927 0.814482 0.814037
0.813591 0.813145 0.812698 0.812251 0.811803 0.811355 0.810907 0.810458
0.810008 0.809558 0.809107 0.808657 0.808205 0.807753 0.807301 0.806848
0.806395 0.805941 0.805486 0.805032 0.804576 0.804121 0.803665 0.803208
0.802751 0.802293 0.801835 0.801377 0.800918 0.800458 0.799998 0.799538
0.799077 0.798615 0.798153 0.797691 0.797228 0.796765 0.796301 0.795837
0.795373 0.794907 0.794442 0.793976 0.793509 0.793042 0.792575 0.792107
0.791639 0.79117 0.7907 0.790231 0.78976 0.78929 0.788818 0.788347
0.787875 0.787402 0.786929 0.786456 0.785982 0.785507 0.785032 0.784557
0.784081 0.783605 0.783128 0.782651 0.782173 0.781695 0.781217 0.780738
0.780258 0.779778 0.779298 0.778817 0.778336 0.777854 0.777372 0.776889
0.776406 0.775922 0.775438 0.774953 0.774468 0.773983 0.773497 0.773011
0.772524 0.772037 0.771549 0.771061 0.770572 0.770083 0.769594 0.769104
0.768613 0.768122 0.767631 0.767139 0.766647 0.766154 0.765661 0.765168
0.764674 0.764179 0.763684 0.763189 0.762693 0.762197 0.7617 0.761203
0.760705 0.760207 0.759709 0.75921 0.75871 0.75821 0.75771 0.757209
0.756708 0.756206 0.755704 0.755202 0.754699 0.754195 0.753691 0.753187
0.752682 0.752177 0.751672 0.751166 0.750659 0.750152 0.749645 0.749137
0.748628 0.74812 0.747611 0.747101 0.746591 0.74608 0.74557 0.745058
0.744546 0.744034 0.743521 0.743008 0.742495 0.741981 0.741466 0.740952
0.740436 0.73992 0.739404 0.738888 0.738371 0.737853 0.737335 0.736817
0.736298 0.735779 0.735259 0.734739 0.734219 0.733698 0.733177 0.732655
0.732132 0.73161 0.731087 0.730563 0.730039 0.729515 0.72899 0.728465
0.727939 0.727413 0.726887 0.72636 0.725832 0.725304 0.724776 0.724248
0.723718 0.723189 0.722659 0.722129 0.721598 0.721067;
#A 1000 0.720535 0.720003 0.719471 0.718938 0.718404 0.71787 0.717336
0.716802 0.716267 0.715731 0.715195 0.714659 0.714122 0.713585 0.713048
0.71251 0.711971 0.711433 0.710893 0.710354 0.709814 0.709273 0.708732
0.708191 0.707649 0.707107 0.706565 0.706022 0.705478 0.704935 0.70439
0.703846 0.703301 0.702755 0.702209 0.701663 0.701116 0.700569 0.700022
0.699474 0.698925 0.698377 0.697828 0.697278 0.696728 0.696178 0.695627
0.695076 0.694524 0.693972 0.69342 0.692867 0.692313 0.69176 0.691206
0.690651 0.690096 0.689541 0.688985 0.688429 0.687873 0.687316 0.686759
0.686201 0.685643 0.685084 0.684525 0.683966 0.683406 0.682846 0.682285
0.681725 0.681163 0.680601 0.680039 0.679477 0.678914 0.678351 0.677787
0.677223 0.676658 0.676093 0.675528 0.674962 0.674396 0.673829 0.673263
0.672695 0.672128 0.671559 0.670991 0.670422 0.669853 0.669283 0.668713
0.668143 0.667572 0.667 0.666429 0.665857 0.665284 0.664712 0.664138
0.663565 0.662991 0.662416 0.661842 0.661266 0.660691 0.660115 0.659539
0.658962 0.658385 0.657807 0.657229 0.656651 0.656072 0.655493 0.654914
0.654334 0.653754 0.653173 0.652592 0.652011 0.651429 0.650847 0.650265
0.649682 0.649099 0.648515 0.647931 0.647347 0.646762 0.646177 0.645591
0.645005 0.644419 0.643832 0.643245 0.642658 0.64207 0.641482 0.640893
0.640304 0.639715 0.639125 0.638535 0.637944 0.637354 0.636762 0.636171
0.635579 0.634987 0.634394 0.633801 0.633207 0.632614 0.632019 0.631425
0.63083 0.630234 0.629639 0.629043 0.628446 0.62785 0.627252 0.626655
0.626057 0.625459 0.62486 0.624261 0.623662 0.623062 0.622462 0.621861
0.621261 0.620659 0.620058 0.619456 0.618854 0.618251 0.617648 0.617045
0.616441 0.615837 0.615232 0.614627 0.614022 0.613417 0.612811 0.612204
0.611598 0.610991 0.610383 0.609776 0.609168 0.608559 0.60795 0.607341
0.606732 0.606122 0.605512 0.604901 0.60429 0.603679 0.603067 0.602455
0.601843 0.60123 0.600617 0.600004 0.59939 0.598776 0.598161 0.597547
0.596931 0.596316 0.5957 0.595084 0.594467 0.59385 0.593233 0.592615
0.591997 0.591379 0.59076 0.590141 0.589522 0.588902 0.588282 0.587662
0.587041 0.58642 0.585799 0.585177 0.584555 0.583932 0.583309 0.582686
0.582063 0.581439 0.580815 0.58019 0.579565 0.57894 0.578314 0.577689
0.577062 0.576436 0.575809 0.575182 0.574554 0.573926 0.573298 0.572669
0.57204 0.571411 0.570781 0.570151 0.569521 0.568891 0.56826 0.567628
0.566997 0.566365 0.565732 0.5651 0.564467 0.563834 0.5632 0.562566
0.561932 0.561297 0.560662 0.560027 0.559391 0.558755 0.558119 0.557483
0.556846 0.556208 0.555571 0.554933 0.554295 0.553656 0.553017 0.552378
0.551739 0.551099 0.550459 0.549818 0.549177 0.548536 0.547895 0.547253
0.546611 0.545968 0.545326 0.544683 0.544039 0.543396 0.542751 0.542107
0.541462 0.540817 0.540172 0.539527 0.538881 0.538234 0.537588 0.536941
0.536294 0.535646 0.534998 0.53435 0.533702 0.533053 0.532404 0.531754
0.531105 0.530455 0.529804 0.529154 0.528503 0.527851 0.5272 0.526548
0.525896 0.525243 0.52459 0.523937 0.523284 0.52263 0.521976 0.521322
0.520667 0.520012 0.519357 0.518701 0.518045 0.517389 0.516733 0.516076
0.515419 0.514761 0.514103 0.513445 0.512787 0.512129 0.51147 0.51081
0.510151 0.509491 0.508831 0.50817 0.50751 0.506849 0.506187 0.505526
0.504864 0.504202 0.503539 0.502876 0.502213 0.50155 0.500886 0.500222
0.499558 0.498893 0.498228 0.497563 0.496898 0.496232 0.495566 0.4949
0.494233 0.493566 0.492899 0.492231 0.491564 0.490896 0.490227 0.489559
0.48889 0.48822 0.487551 0.486881 0.486211 0.485541 0.48487 0.484199
0.483528 0.482856 0.482185 0.481512 0.48084 0.480167 0.479495 0.478821
0.478148 0.477474 0.4768 0.476126 0.475451 0.474776 0.474101 0.473426
0.47275 0.472074 0.471398 0.470721 0.470044 0.469367 0.46869 0.468012
0.467334 0.466656 0.465977 0.465299 0.464619 0.46394 0.463261 0.462581
0.461901 0.46122 0.46054 0.459859 0.459177 0.458496 0.457814 0.457132
0.45645 0.455767 0.455084 0.454401 0.453718 0.453034 0.45235 0.451666
0.450982 0.450297 0.449612 0.448927 0.448241 0.447556 0.44687 0.446183
0.445497 0.44481 0.444123 0.443436 0.442748 0.44206 0.441372 0.440684
0.439995 0.439306 0.438617 0.437928 0.437238 0.436548 0.435858 0.435167
0.434477 0.433786 0.433095 0.432403 0.431712 0.43102 0.430327 0.429635
0.428942 0.428249 0.427556 0.426862 0.426169 0.425475 0.424781 0.424086
0.423391 0.422696 0.422001 0.421306 0.42061 0.419914 0.419218 0.418521
0.417825 0.417128 0.41643 0.415733 0.415035 0.414337 0.413639 0.412941
0.412242 0.411543 0.410844 0.410145 0.409445 0.408745 0.408045 0.407345
0.406644 0.405943 0.405242 0.404541 0.403839 0.403138 0.402436 0.401733
0.401031 0.400328 0.399625 0.398922 0.398218 0.397515 0.396811 0.396107
0.395402 0.394698 0.393993 0.393288 0.392583 0.391877 0.391171 0.390465
0.389759 0.389053 0.388346 0.387639 0.386932 0.386225 0.385517 0.384809
0.384101 0.383393 0.382684 0.381976 0.381267 0.380558 0.379848 0.379139
0.378429 0.377719 0.377008 0.376298 0.375587 0.374876 0.374165 0.373454
0.372742 0.37203 0.371318 0.370606 0.369893 0.369181 0.368468 0.367755
0.367041 0.366328 0.365614 0.3649 0.364186 0.363471 0.362757 0.362042
0.361327 0.360611 0.359896 0.35918 0.358464 0.357748 0.357032 0.356315
0.355599 0.354882 0.354164 0.353447 0.352729 0.352012 0.351294 0.350576
0.349857 0.349138 0.34842 0.347701 0.346981 0.346262 0.345542 0.344822
0.344102 0.343382 0.342662 0.341941 0.34122 0.340499 0.339778 0.339056
0.338335 0.337613 0.336891 0.336169 0.335446 0.334723 0.334001 0.333278
0.332554 0.331831 0.331107 0.330383 0.329659 0.328935 0.328211 0.327486
0.326761 0.326036 0.325311 0.324586 0.32386 0.323135 0.322409 0.321683
0.320956 0.32023 0.319503 0.318776 0.318049 0.317322 0.316594 0.315867
0.315139 0.314411 0.313683 0.312954 0.312226 0.311497 0.310768 0.310039
0.30931 0.30858 0.307851 0.307121 0.306391 0.305661 0.30493 0.3042
0.303469 0.302738 0.302007 0.301276 0.300544 0.299813 0.299081 0.298349
0.297617 0.296884 0.296152 0.295419 0.294686 0.293953 0.29322 0.292487
0.291753 0.29102 0.290286 0.289552 0.288817 0.288083 0.287349 0.286614
0.285879 0.285144 0.284409 0.283673 0.282938 0.282202 0.281466 0.28073
0.279994 0.279257 0.278521 0.277784 0.277047 0.27631 0.275573 0.274835
0.274098 0.27336 0.272622 0.271884 0.271146 0.270408 0.269669 0.268931
0.268192 0.267453 0.266714 0.265975 0.265235 0.264495 0.263756 0.263016
0.262276 0.261536 0.260795 0.260055 0.259314 0.258573 0.257832 0.257091
0.25635 0.255608 0.254867 0.254125 0.253383 0.252641 0.251899 0.251157
0.250414 0.249671 0.248929 0.248186 0.247443 0.246699 0.245956 0.245213
0.244469 0.243725 0.242981 0.242237 0.241493 0.240749 0.240004 0.239259
0.238515 0.23777 0.237025 0.23628 0.235534 0.234789 0.234043 0.233297
0.232551 0.231805 0.231059 0.230313 0.229566 0.22882 0.228073 0.227326
0.226579 0.225832 0.225085 0.224338 0.22359 0.222842 0.222095 0.221347
0.220599 0.219851 0.219102 0.218354 0.217605 0.216857 0.216108 0.215359
0.21461 0.213861 0.213111 0.212362 0.211612 0.210863 0.210113 0.209363
0.208613 0.207863 0.207113 0.206362 0.205612 0.204861 0.20411 0.203359
0.202608 0.201857 0.201106 0.200354 0.199603 0.198851 0.1981 0.197348
0.196596 0.195844 0.195091 0.194339 0.193587 0.192834 0.192082 0.191329
0.190576 0.189823 0.18907 0.188317 0.187563 0.18681 0.186056 0.185303
0.184549 0.183795 0.183041 0.182287 0.181533 0.180778 0.180024 0.17927
0.178515 0.17776 0.177005 0.17625 0.175495 0.17474 0.173985 0.17323
0.172474 0.171719 0.170963 0.170207 0.169451 0.168696 0.167939 0.167183
0.166427 0.165671 0.164914 0.164158 0.163401 0.162644 0.161888 0.161131
0.160374 0.159617 0.158859 0.158102 0.157345 0.156587 0.15583 0.155072
0.154314 0.153556 0.152798 0.15204 0.151282 0.150524 0.149766 0.149007
0.148249 0.14749 0.146732 0.145973 0.145214 0.144455 0.143696 0.142937
0.142178 0.141419 0.140659 0.1399 0.139141 0.138381 0.137621 0.136862
0.136102 0.135342 0.134582 0.133822 0.133062 0.132302 0.131541 0.130781
0.13002 0.12926 0.128499 0.127739 0.126978 0.126217 0.125456 0.124695
0.123934 0.123173 0.122412 0.121651 0.120889 0.120128 0.119366 0.118605
0.117843 0.117082 0.11632 0.115558 0.114796 0.114034 0.113272 0.11251
0.111748 0.110986 0.110223 0.109461 0.108699 0.107936 0.107174 0.106411
0.105648 0.104886 0.104123 0.10336 0.102597 0.101834 0.101071 0.100308
0.0995449 0.0987816 0.0980184 0.0972551 0.0964917 0.0957282 0.0949647
0.0942012 0.0934376 0.0926739 0.0919102 0.0911464 0.0903826 0.0896187
0.0888548 0.0880908 0.0873268 0.0865627 0.0857986 0.0850344 0.0842701
0.0835059 0.0827415 0.0819771 0.0812127 0.0804482 0.0796837 0.0789191
0.0781545 0.0773898 0.0766251 0.0758604 0.0750956 0.0743307 0.0735658
0.0728009 0.0720359 0.0712709 0.0705058 0.0697407 0.0689756 0.0682104
0.0674452 0.0666799 0.0659146 0.0651493 0.0643839 0.0636185 0.062853
0.0620875 0.061322 0.0605564 0.0597908 0.0590252 0.0582595 0.0574938
0.0567281 0.0559623 0.0551965 0.0544307 0.0536648 0.0528989 0.052133
0.051367 0.050601 0.049835 0.049069 0.0483029 0.0475368 0.0467706 0.0460045
0.0452383 0.0444721 0.0437058 0.0429395 0.0421733 0.0414069 0.0406406
0.0398742 0.0391078 0.0383414;
#A 2000 0.037575 0.0368085 0.036042 0.0352755 0.034509 0.0337425 0.0329759
0.0322093 0.0314427 0.0306761 0.0299095 0.0291428 0.0283761 0.0276094
0.0268427 0.026076 0.0253093 0.0245425 0.0237758 0.023009 0.0222422
0.0214754 0.0207086 0.0199417 0.0191749 0.018408 0.0176412 0.0168743
0.0161074 0.0153405 0.0145736 0.0138067 0.0130398 0.0122729 0.0115059
0.010739 0.00997203 0.00920507 0.00843811 0.00767115 0.00690418 0.00613721
0.00537023 0.00460325 0.00383627 0.00306928 0.00230229 0.00153531 0.000768316
1.32679e-006 -0.000765663 -0.00153265 -0.00229964 -0.00306663 -0.00383361
-0.0046006 -0.00536758 -0.00613455 -0.00690153 -0.0076685 -0.00843546
-0.00920242 -0.00996938 -0.0107363 -0.0115033 -0.0122702 -0.0130371
-0.0138041 -0.014571 -0.0153379 -0.0161048 -0.0168716 -0.0176385 -0.0184054
-0.0191722 -0.0199391 -0.0207059 -0.0214727 -0.0222395 -0.0230063 -0.0237731
-0.0245399 -0.0253066 -0.0260734 -0.0268401 -0.0276068 -0.0283735 -0.0291402
-0.0299068 -0.0306735 -0.0314401 -0.0322067 -0.0329733 -0.0337398 -0.0345064
-0.0352729 -0.0360394 -0.0368059 -0.0375723 -0.0383388 -0.0391052 -0.0398716
-0.0406379 -0.0414043 -0.0421706 -0.0429369 -0.0437032 -0.0444694 -0.0452356
-0.0460018 -0.046768 -0.0475341 -0.0483002 -0.0490663 -0.0498324 -0.0505984
-0.0513644 -0.0521303 -0.0528963 -0.0536622 -0.054428 -0.0551939 -0.0559597
-0.0567254 -0.0574912 -0.0582569 -0.0590226 -0.0597882 -0.0605538 -0.0613194
-0.0620849 -0.0628504 -0.0636158 -0.0643812 -0.0651466 -0.065912 -0.0666773
-0.0674425 -0.0682078 -0.0689729 -0.0697381 -0.0705032 -0.0712683 -0.0720333
-0.0727982 -0.0735632 -0.0743281 -0.0750929 -0.0758577 -0.0766225 -0.0773872
-0.0781519 -0.0789165 -0.079681 -0.0804456 -0.0812101 -0.0819745 -0.0827389
-0.0835032 -0.0842675 -0.0850317 -0.0857959 -0.0865601 -0.0873241 -0.0880882
-0.0888522 -0.0896161 -0.09038 -0.0911438 -0.0919076 -0.0926713 -0.0934349
-0.0941985 -0.0949621 -0.0957256 -0.096489 -0.0972524 -0.0980157 -0.098779
-0.0995422 -0.100305 -0.101068 -0.101831 -0.102594 -0.103357 -0.10412
-0.104883 -0.105646 -0.106408 -0.107171 -0.107934 -0.108696 -0.109458
-0.110221 -0.110983 -0.111745 -0.112507 -0.11327 -0.114032 -0.114794
-0.115555 -0.116317 -0.117079 -0.117841 -0.118602 -0.119364 -0.120125
-0.120887 -0.121648 -0.122409 -0.12317 -0.123932 -0.124693 -0.125454
-0.126214 -0.126975 -0.127736 -0.128497 -0.129257 -0.130018 -0.130778
-0.131539 -0.132299 -0.133059 -0.133819 -0.134579 -0.135339 -0.136099
-0.136859 -0.137619 -0.138378 -0.139138 -0.139897 -0.140657 -0.141416
-0.142175 -0.142935 -0.143694 -0.144453 -0.145211 -0.14597 -0.146729
-0.147488 -0.148246 -0.149005 -0.149763 -0.150521 -0.15128 -0.152038
-0.152796 -0.153554 -0.154312 -0.155069 -0.155827 -0.156585 -0.157342
-0.158099 -0.158857 -0.159614 -0.160371 -0.161128 -0.161885 -0.162642
-0.163399 -0.164155 -0.164912 -0.165668 -0.166424 -0.167181 -0.167937
-0.168693 -0.169449 -0.170205 -0.17096 -0.171716 -0.172472 -0.173227
-0.173982 -0.174738 -0.175493 -0.176248 -0.177003 -0.177758 -0.178512
-0.179267 -0.180021 -0.180776 -0.18153 -0.182284 -0.183038 -0.183792
-0.184546 -0.1853 -0.186054 -0.186807 -0.187561 -0.188314 -0.189067
-0.18982 -0.190573 -0.191326 -0.192079 -0.192832 -0.193584 -0.194337
-0.195089 -0.195841 -0.196593 -0.197345 -0.198097 -0.198849 -0.1996
-0.200352 -0.201103 -0.201854 -0.202606 -0.203357 -0.204107 -0.204858
-0.205609 -0.206359 -0.20711 -0.20786 -0.20861 -0.20936 -0.21011 -0.21086
-0.21161 -0.212359 -0.213109 -0.213858 -0.214607 -0.215356 -0.216105
-0.216854 -0.217603 -0.218351 -0.2191 -0.219848 -0.220596 -0.221344
-0.222092 -0.22284 -0.223588 -0.224335 -0.225082 -0.22583 -0.226577
-0.227324 -0.228071 -0.228817 -0.229564 -0.23031 -0.231057 -0.231803
-0.232549 -0.233295 -0.23404 -0.234786 -0.235532 -0.236277 -0.237022
-0.237767 -0.238512 -0.239257 -0.240002 -0.240746 -0.24149 -0.242235
-0.242979 -0.243723 -0.244466 -0.24521 -0.245954 -0.246697 -0.24744
-0.248183 -0.248926 -0.249669 -0.250412 -0.251154 -0.251896 -0.252639
-0.253381 -0.254122 -0.254864 -0.255606 -0.256347 -0.257088 -0.25783
-0.258571 -0.259311 -0.260052 -0.260793 -0.261533 -0.262273 -0.263013
-0.263753 -0.264493 -0.265233 -0.265972 -0.266711 -0.26745 -0.268189
-0.268928 -0.269667 -0.270405 -0.271144 -0.271882 -0.27262 -0.273358
-0.274095 -0.274833 -0.27557 -0.276308 -0.277045 -0.277781 -0.278518
-0.279255 -0.279991 -0.280727 -0.281463 -0.282199 -0.282935 -0.283671
-0.284406 -0.285141 -0.285876 -0.286611 -0.287346 -0.288081 -0.288815
-0.289549 -0.290283 -0.291017 -0.291751 -0.292484 -0.293218 -0.293951
-0.294684 -0.295417 -0.296149 -0.296882 -0.297614 -0.298346 -0.299078
-0.29981 -0.300542 -0.301273 -0.302004 -0.302736 -0.303466 -0.304197
-0.304928 -0.305658 -0.306388 -0.307118 -0.307848 -0.308578 -0.309307
-0.310037 -0.310766 -0.311495 -0.312223 -0.312952 -0.31368 -0.314408
-0.315136 -0.315864 -0.316592 -0.317319 -0.318047 -0.318774 -0.319501
-0.320227 -0.320954 -0.32168 -0.322406 -0.323132 -0.323858 -0.324583
-0.325309 -0.326034 -0.326759 -0.327484 -0.328208 -0.328933 -0.329657
-0.330381 -0.331105 -0.331828 -0.332552 -0.333275 -0.333998 -0.334721
-0.335444 -0.336166 -0.336888 -0.33761 -0.338332 -0.339054 -0.339775
-0.340497 -0.341218 -0.341939 -0.342659 -0.34338 -0.3441 -0.34482 -0.34554
-0.346259 -0.346979 -0.347698 -0.348417 -0.349136 -0.349855 -0.350573
-0.351291 -0.352009 -0.352727 -0.353445 -0.354162 -0.354879 -0.355596
-0.356313 -0.357029 -0.357746 -0.358462 -0.359178 -0.359894 -0.360609
-0.361324 -0.362039 -0.362754 -0.363469 -0.364183 -0.364897 -0.365611
-0.366325 -0.367039 -0.367752 -0.368465 -0.369178 -0.369891 -0.370603
-0.371316 -0.372028 -0.37274 -0.373451 -0.374163 -0.374874 -0.375585
-0.376295 -0.377006 -0.377716 -0.378426 -0.379136 -0.379846 -0.380555
-0.381264 -0.381973 -0.382682 -0.38339 -0.384099 -0.384807 -0.385515
-0.386222 -0.386929 -0.387637 -0.388344 -0.38905 -0.389757 -0.390463
-0.391169 -0.391875 -0.39258 -0.393285 -0.393991 -0.394695 -0.3954
-0.396104 -0.396808 -0.397512 -0.398216 -0.398919 -0.399623 -0.400326
-0.401028 -0.401731 -0.402433 -0.403135 -0.403837 -0.404538 -0.40524
-0.405941 -0.406642 -0.407342 -0.408043 -0.408743 -0.409443 -0.410142
-0.410842 -0.411541 -0.41224 -0.412938 -0.413637 -0.414335 -0.415033
-0.415731 -0.416428 -0.417125 -0.417822 -0.418519 -0.419215 -0.419912
-0.420608 -0.421303 -0.421999 -0.422694 -0.423389 -0.424084 -0.424778
-0.425472 -0.426166 -0.42686 -0.427554 -0.428247 -0.42894 -0.429632
-0.430325 -0.431017 -0.431709 -0.432401 -0.433092 -0.433783 -0.434474
-0.435165 -0.435856 -0.436546 -0.437236 -0.437925 -0.438615 -0.439304
-0.439993 -0.440681 -0.44137 -0.442058 -0.442746 -0.443433 -0.444121
-0.444808 -0.445494 -0.446181 -0.446867 -0.447553 -0.448239 -0.448925
-0.44961 -0.450295 -0.450979 -0.451664 -0.452348 -0.453032 -0.453716
-0.454399 -0.455082 -0.455765 -0.456447 -0.45713 -0.457812 -0.458494
-0.459175 -0.459856 -0.460537 -0.461218 -0.461898 -0.462578 -0.463258
-0.463938 -0.464617 -0.465296 -0.465975 -0.466653 -0.467332 -0.46801
-0.468687 -0.469365 -0.470042 -0.470719 -0.471395 -0.472071 -0.472748
-0.473423 -0.474099 -0.474774 -0.475449 -0.476123 -0.476798 -0.477472
-0.478146 -0.478819 -0.479492 -0.480165 -0.480838 -0.48151 -0.482182
-0.482854 -0.483526 -0.484197 -0.484868 -0.485538 -0.486209 -0.486879
-0.487549 -0.488218 -0.488887 -0.489556 -0.490225 -0.490893 -0.491561
-0.492229 -0.492897 -0.493564 -0.494231 -0.494897 -0.495564 -0.49623
-0.496896 -0.497561 -0.498226 -0.498891 -0.499556 -0.50022 -0.500884
-0.501548 -0.502211 -0.502874 -0.503537 -0.504199 -0.504862 -0.505524
-0.506185 -0.506846 -0.507507 -0.508168 -0.508829 -0.509489 -0.510149
-0.510808 -0.511467 -0.512126 -0.512785 -0.513443 -0.514101 -0.514759
-0.515416 -0.516073 -0.51673 -0.517387 -0.518043 -0.518699 -0.519354
-0.52001 -0.520665 -0.521319 -0.521974 -0.522628 -0.523282 -0.523935
-0.524588 -0.525241 -0.525894 -0.526546 -0.527198 -0.527849 -0.5285
-0.529151 -0.529802 -0.530452 -0.531102 -0.531752 -0.532402 -0.533051
-0.533699 -0.534348 -0.534996 -0.535644 -0.536291 -0.536939 -0.537586
-0.538232 -0.538878 -0.539524 -0.54017 -0.540815 -0.54146 -0.542105
-0.542749 -0.543393 -0.544037 -0.54468 -0.545323 -0.545966 -0.546609
-0.547251 -0.547893 -0.548534 -0.549175 -0.549816 -0.550456 -0.551097
-0.551736 -0.552376 -0.553015 -0.553654 -0.554293 -0.554931 -0.555569
-0.556206 -0.556844 -0.55748 -0.558117 -0.558753 -0.559389 -0.560025
-0.56066 -0.561295 -0.56193 -0.562564 -0.563198 -0.563831 -0.564465
-0.565098 -0.56573 -0.566363 -0.566995 -0.567626 -0.568257 -0.568888
-0.569519 -0.570149 -0.570779 -0.571409 -0.572038 -0.572667 -0.573296
-0.573924 -0.574552 -0.575179 -0.575807 -0.576434 -0.57706 -0.577686
-0.578312 -0.578938 -0.579563 -0.580188 -0.580812 -0.581437 -0.58206
-0.582684 -0.583307 -0.58393 -0.584552 -0.585175 -0.585796 -0.586418
-0.587039 -0.58766 -0.58828 -0.5889 -0.58952 -0.590139 -0.590758 -0.591377
-0.591995 -0.592613 -0.593231 -0.593848 -0.594465 -0.595082 -0.595698
-0.596314 -0.596929 -0.597544 -0.598159 -0.598774 -0.599388 -0.600002
-0.600615 -0.601228 -0.601841 -0.602453 -0.603065 -0.603677 -0.604288
-0.604899 -0.60551 -0.60612 -0.60673 -0.607339 -0.607948 -0.608557
-0.609166 -0.609774 -0.610381 -0.610989 -0.611596 -0.612202 -0.612809
-0.613415 -0.61402 -0.614625 -0.61523 -0.615835 -0.616439 -0.617042
-0.617646 -0.618249 -0.618851 -0.619454 -0.620056 -0.620657 -0.621258
-0.621859 -0.62246 -0.62306 -0.62366 -0.624259 -0.624858 -0.625457
-0.626055 -0.626653 -0.62725 -0.627847 -0.628444 -0.629041 -0.629637
-0.630232 -0.630828 -0.631423 -0.632017 -0.632611 -0.633205 -0.633799
-0.634392 -0.634984 -0.635577 -0.636169 -0.63676 -0.637352 -0.637942
-0.638533 -0.639123 -0.639713 -0.640302 -0.640891 -0.64148 -0.642068
-0.642656 -0.643243 -0.64383 -0.644417 -0.645003 -0.645589 -0.646175
-0.64676 -0.647345 -0.647929 -0.648513 -0.649097 -0.64968 -0.650263
-0.650845 -0.651427 -0.652009 -0.65259 -0.653171 -0.653752 -0.654332
-0.654912 -0.655491 -0.65607 -0.656649 -0.657227 -0.657805 -0.658383
-0.65896 -0.659537 -0.660113 -0.660689 -0.661264 -0.66184 -0.662414
-0.662989 -0.663563 -0.664136 -0.66471 -0.665282 -0.665855;
#A 3000 -0.666427 -0.666998 -0.66757 -0.668141 -0.668711 -0.669281
-0.669851 -0.67042 -0.670989 -0.671557 -0.672126 -0.672693 -0.673261
-0.673828 -0.674394 -0.67496 -0.675526 -0.676091 -0.676656 -0.677221
-0.677785 -0.678349 -0.678912 -0.679475 -0.680037 -0.6806 -0.681161
-0.681723 -0.682284 -0.682844 -0.683404 -0.683964 -0.684523 -0.685082
-0.685641 -0.686199 -0.686757 -0.687314 -0.687871 -0.688427 -0.688983
-0.689539 -0.690094 -0.690649 -0.691204 -0.691758 -0.692312 -0.692865
-0.693418 -0.69397 -0.694522 -0.695074 -0.695625 -0.696176 -0.696726
-0.697276 -0.697826 -0.698375 -0.698924 -0.699472 -0.70002 -0.700567
-0.701114 -0.701661 -0.702207 -0.702753 -0.703299 -0.703844 -0.704388
-0.704933 -0.705476 -0.70602 -0.706563 -0.707105 -0.707648 -0.708189
-0.708731 -0.709271 -0.709812 -0.710352 -0.710892 -0.711431 -0.71197
-0.712508 -0.713046 -0.713583 -0.714121 -0.714657 -0.715194 -0.715729
-0.716265 -0.7168 -0.717334 -0.717869 -0.718402 -0.718936 -0.719469
-0.720001 -0.720533 -0.721065 -0.721596 -0.722127 -0.722657 -0.723187
-0.723717 -0.724246 -0.724774 -0.725303 -0.72583 -0.726358 -0.726885
-0.727411 -0.727937 -0.728463 -0.728988 -0.729513 -0.730037 -0.730561
-0.731085 -0.731608 -0.732131 -0.732653 -0.733175 -0.733696 -0.734217
-0.734738 -0.735258 -0.735777 -0.736296 -0.736815 -0.737334 -0.737851
-0.738369 -0.738886 -0.739403 -0.739919 -0.740434 -0.74095 -0.741465
-0.741979 -0.742493 -0.743007 -0.74352 -0.744032 -0.744545 -0.745056
-0.745568 -0.746079 -0.746589 -0.747099 -0.747609 -0.748118 -0.748627
-0.749135 -0.749643 -0.75015 -0.750657 -0.751164 -0.75167 -0.752176
-0.752681 -0.753185 -0.75369 -0.754194 -0.754697 -0.7552 -0.755703
-0.756205 -0.756706 -0.757208 -0.757708 -0.758209 -0.758708 -0.759208
-0.759707 -0.760205 -0.760703 -0.761201 -0.761698 -0.762195 -0.762691
-0.763187 -0.763682 -0.764177 -0.764672 -0.765166 -0.76566 -0.766153
-0.766645 -0.767138 -0.767629 -0.768121 -0.768612 -0.769102 -0.769592
-0.770082 -0.770571 -0.771059 -0.771547 -0.772035 -0.772522 -0.773009
-0.773495 -0.773981 -0.774467 -0.774952 -0.775436 -0.77592 -0.776404
-0.776887 -0.77737 -0.777852 -0.778334 -0.778815 -0.779296 -0.779777
-0.780256 -0.780736 -0.781215 -0.781694 -0.782172 -0.782649 -0.783126
-0.783603 -0.784079 -0.784555 -0.785031 -0.785506 -0.78598 -0.786454
-0.786927 -0.7874 -0.787873 -0.788345 -0.788817 -0.789288 -0.789759
-0.790229 -0.790699 -0.791168 -0.791637 -0.792105 -0.792573 -0.793041
-0.793508 -0.793974 -0.79444 -0.794906 -0.795371 -0.795836 -0.7963
-0.796764 -0.797227 -0.79769 -0.798152 -0.798614 -0.799075 -0.799536
-0.799996 -0.800456 -0.800916 -0.801375 -0.801833 -0.802292 -0.802749
-0.803206 -0.803663 -0.804119 -0.804575 -0.80503 -0.805485 -0.805939
-0.806393 -0.806846 -0.807299 -0.807752 -0.808203 -0.808655 -0.809106
-0.809556 -0.810006 -0.810456 -0.810905 -0.811354 -0.811802 -0.812249
-0.812697 -0.813143 -0.813589 -0.814035 -0.81448 -0.814925 -0.815369
-0.815813 -0.816257 -0.816699 -0.817142 -0.817584 -0.818025 -0.818466
-0.818906 -0.819346 -0.819786 -0.820225 -0.820663 -0.821101 -0.821539
-0.821976 -0.822412 -0.822849 -0.823284 -0.823719 -0.824154 -0.824588
-0.825022 -0.825455 -0.825888 -0.82632 -0.826752 -0.827183 -0.827614
-0.828044 -0.828474 -0.828903 -0.829332 -0.82976 -0.830188 -0.830615
-0.831042 -0.831468 -0.831894 -0.83232 -0.832745 -0.833169 -0.833593
-0.834016 -0.834439 -0.834862 -0.835284 -0.835705 -0.836126 -0.836547
-0.836967 -0.837386 -0.837805 -0.838224 -0.838642 -0.839059 -0.839476
-0.839893 -0.840309 -0.840724 -0.841139 -0.841554 -0.841968 -0.842381
-0.842794 -0.843207 -0.843619 -0.844031 -0.844442 -0.844852 -0.845262
-0.845672 -0.846081 -0.84649 -0.846898 -0.847305 -0.847713 -0.848119
-0.848525 -0.848931 -0.849336 -0.849741 -0.850145 -0.850548 -0.850951
-0.851354 -0.851756 -0.852158 -0.852559 -0.852959 -0.85336 -0.853759
-0.854158 -0.854557 -0.854955 -0.855353 -0.85575 -0.856146 -0.856542
-0.856938 -0.857333 -0.857727 -0.858122 -0.858515 -0.858908 -0.859301
-0.859693 -0.860084 -0.860475 -0.860866 -0.861256 -0.861645 -0.862034
-0.862423 -0.862811 -0.863198 -0.863585 -0.863972 -0.864358 -0.864743
-0.865128 -0.865512 -0.865896 -0.86628 -0.866663 -0.867045 -0.867427
-0.867808 -0.868189 -0.86857 -0.868949 -0.869329 -0.869708 -0.870086
-0.870464 -0.870841 -0.871218 -0.871594 -0.87197 -0.872345 -0.87272
-0.873094 -0.873468 -0.873841 -0.874213 -0.874586 -0.874957 -0.875328
-0.875699 -0.876069 -0.876439 -0.876808 -0.877176 -0.877544 -0.877912
-0.878279 -0.878645 -0.879011 -0.879377 -0.879742 -0.880106 -0.88047
-0.880833 -0.881196 -0.881558 -0.88192 -0.882281 -0.882642 -0.883003
-0.883362 -0.883722 -0.88408 -0.884438 -0.884796 -0.885153 -0.88551
-0.885866 -0.886221 -0.886577 -0.886931 -0.887285 -0.887639 -0.887992
-0.888344 -0.888696 -0.889047 -0.889398 -0.889749 -0.890098 -0.890448
-0.890796 -0.891145 -0.891492 -0.89184 -0.892186 -0.892533 -0.892878
-0.893223 -0.893568 -0.893912 -0.894255 -0.894598 -0.894941 -0.895283
-0.895624 -0.895965 -0.896306 -0.896645 -0.896985 -0.897324 -0.897662
-0.898 -0.898337 -0.898673 -0.89901 -0.899345 -0.89968 -0.900015 -0.900349
-0.900682 -0.901015 -0.901348 -0.90168 -0.902011 -0.902342 -0.902672
-0.903002 -0.903331 -0.90366 -0.903988 -0.904316 -0.904643 -0.90497
-0.905296 -0.905621 -0.905946 -0.906271 -0.906595 -0.906918 -0.907241
-0.907563 -0.907885 -0.908206 -0.908527 -0.908847 -0.909167 -0.909486
-0.909805 -0.910123 -0.91044 -0.910757 -0.911074 -0.91139 -0.911705
-0.91202 -0.912334 -0.912648 -0.912961 -0.913274 -0.913586 -0.913898
-0.914209 -0.914519 -0.914829 -0.915139 -0.915448 -0.915756 -0.916064
-0.916371 -0.916678 -0.916984 -0.91729 -0.917595 -0.9179 -0.918204
-0.918507 -0.91881 -0.919113 -0.919415 -0.919716 -0.920017 -0.920317
-0.920617 -0.920916 -0.921215 -0.921513 -0.921811 -0.922108 -0.922404
-0.9227 -0.922996 -0.923291 -0.923585 -0.923879 -0.924172 -0.924465
-0.924757 -0.925048 -0.925339 -0.92563 -0.92592 -0.926209 -0.926498
-0.926787 -0.927074 -0.927362 -0.927648 -0.927935 -0.92822 -0.928505
-0.92879 -0.929074 -0.929357 -0.92964 -0.929922 -0.930204 -0.930485
-0.930766 -0.931046 -0.931326 -0.931605 -0.931883 -0.932161 -0.932439
-0.932716 -0.932992 -0.933268 -0.933543 -0.933818 -0.934092 -0.934365
-0.934638 -0.934911 -0.935183 -0.935454 -0.935725 -0.935995 -0.936265
-0.936534 -0.936803 -0.937071 -0.937338 -0.937605 -0.937872 -0.938137
-0.938403 -0.938667 -0.938932 -0.939195 -0.939458 -0.939721 -0.939983
-0.940244 -0.940505 -0.940766 -0.941025 -0.941285 -0.941543 -0.941801
-0.942059 -0.942316 -0.942572 -0.942828 -0.943084 -0.943338 -0.943593
-0.943846 -0.944099 -0.944352 -0.944604 -0.944856 -0.945106 -0.945357
-0.945607 -0.945856 -0.946104 -0.946353 -0.9466 -0.946847 -0.947094
-0.947339 -0.947585 -0.94783 -0.948074 -0.948317 -0.948561 -0.948803
-0.949045 -0.949287 -0.949527 -0.949768 -0.950007 -0.950247 -0.950485
-0.950723 -0.950961 -0.951198 -0.951434 -0.95167 -0.951905 -0.95214
-0.952374 -0.952608 -0.952841 -0.953073 -0.953305 -0.953537 -0.953767
-0.953998 -0.954227 -0.954457 -0.954685 -0.954913 -0.95514 -0.955367
-0.955594 -0.955819 -0.956045 -0.956269 -0.956493 -0.956717 -0.95694
-0.957162 -0.957384 -0.957605 -0.957826 -0.958046 -0.958265 -0.958484
-0.958703 -0.958921 -0.959138 -0.959355 -0.959571 -0.959786 -0.960001
-0.960216 -0.96043 -0.960643 -0.960856 -0.961068 -0.96128 -0.961491
-0.961701 -0.961911 -0.962121 -0.96233 -0.962538 -0.962745 -0.962953
-0.963159 -0.963365 -0.963571 -0.963775 -0.96398 -0.964183 -0.964387
-0.964589 -0.964791 -0.964993 -0.965194 -0.965394 -0.965594 -0.965793
-0.965991 -0.966189 -0.966387 -0.966584 -0.96678 -0.966976 -0.967171
-0.967366 -0.96756 -0.967753 -0.967946 -0.968139 -0.96833 -0.968521
-0.968712 -0.968902 -0.969092 -0.969281 -0.969469 -0.969657 -0.969844
-0.970031 -0.970217 -0.970402 -0.970587 -0.970772 -0.970955 -0.971139
-0.971321 -0.971503 -0.971685 -0.971866 -0.972046 -0.972226 -0.972405
-0.972584 -0.972762 -0.972939 -0.973116 -0.973293 -0.973468 -0.973644
-0.973818 -0.973992 -0.974166 -0.974339 -0.974511 -0.974683 -0.974854
-0.975025 -0.975195 -0.975364 -0.975533 -0.975702 -0.975869 -0.976037
-0.976203 -0.976369 -0.976535 -0.9767 -0.976864 -0.977028 -0.977191
-0.977353 -0.977515 -0.977677 -0.977838 -0.977998 -0.978158 -0.978317
-0.978475 -0.978633 -0.978791 -0.978948 -0.979104 -0.97926 -0.979415
-0.979569 -0.979723 -0.979877 -0.980029 -0.980182 -0.980333 -0.980484
-0.980635 -0.980785 -0.980934 -0.981083 -0.981231 -0.981379 -0.981526
-0.981672 -0.981818 -0.981963 -0.982108 -0.982252 -0.982396 -0.982539
-0.982681 -0.982823 -0.982964 -0.983105 -0.983245 -0.983385 -0.983524
-0.983662 -0.9838 -0.983937 -0.984074 -0.98421 -0.984345 -0.98448 -0.984614
-0.984748 -0.984881 -0.985014 -0.985146 -0.985277 -0.985408 -0.985538
-0.985668 -0.985797 -0.985926 -0.986054 -0.986181 -0.986308 -0.986434
-0.98656 -0.986685 -0.986809 -0.986933 -0.987056 -0.987179 -0.987301
-0.987423 -0.987544 -0.987664 -0.987784 -0.987903 -0.988022 -0.98814
-0.988257 -0.988374 -0.98849 -0.988606 -0.988721 -0.988836 -0.98895
-0.989063 -0.989176 -0.989288 -0.9894 -0.989511 -0.989622 -0.989732
-0.989841 -0.98995 -0.990058 -0.990165 -0.990272 -0.990379 -0.990485
-0.99059 -0.990695 -0.990799 -0.990902 -0.991005 -0.991108 -0.991209
-0.991311 -0.991411 -0.991511 -0.991611 -0.991709 -0.991808 -0.991905
-0.992002 -0.992099 -0.992195 -0.99229 -0.992385 -0.992479 -0.992573
-0.992666 -0.992758 -0.99285 -0.992941 -0.993032 -0.993122 -0.993212
-0.993301 -0.993389 -0.993477 -0.993564 -0.99365 -0.993736 -0.993822
-0.993907 -0.993991 -0.994075 -0.994158 -0.99424 -0.994322 -0.994403
-0.994484 -0.994564 -0.994644 -0.994723 -0.994801 -0.994879 -0.994956
-0.995033 -0.995109 -0.995184 -0.995259 -0.995334 -0.995407 -0.995481
-0.995553 -0.995625 -0.995696 -0.995767 -0.995837 -0.995907 -0.995976
-0.996044 -0.996112 -0.99618 -0.996246 -0.996312 -0.996378 -0.996443
-0.996507 -0.996571 -0.996634 -0.996697 -0.996759 -0.99682 -0.996881
-0.996941 -0.997001 -0.99706 -0.997118 -0.997176;
#A 4000 -0.997234 -0.99729 -0.997346 -0.997402 -0.997457 -0.997511
-0.997565 -0.997618 -0.997671 -0.997723 -0.997774 -0.997825 -0.997875
-0.997925 -0.997974 -0.998023 -0.998071 -0.998118 -0.998165 -0.998211
-0.998256 -0.998301 -0.998346 -0.99839 -0.998433 -0.998475 -0.998517
-0.998559 -0.9986 -0.99864 -0.99868 -0.998719 -0.998757 -0.998795 -0.998833
-0.998869 -0.998906 -0.998941 -0.998976 -0.999011 -0.999044 -0.999078
-0.99911 -0.999142 -0.999174 -0.999205 -0.999235 -0.999265 -0.999294
-0.999322 -0.99935 -0.999378 -0.999404 -0.999431 -0.999456 -0.999481
-0.999506 -0.999529 -0.999553 -0.999575 -0.999597 -0.999619 -0.99964
-0.99966 -0.99968 -0.999699 -0.999717 -0.999735 -0.999753 -0.999769
-0.999786 -0.999801 -0.999816 -0.999831 -0.999844 -0.999858 -0.99987
-0.999882 -0.999894 -0.999905 -0.999915 -0.999925 -0.999934 -0.999942
-0.99995 -0.999958 -0.999964 -0.999971 -0.999976 -0.999981 -0.999986
-0.999989 -0.999993 -0.999995 -0.999997 -0.999999 -1 -1 -1 -0.999999
-0.999997 -0.999995 -0.999993 -0.999989 -0.999986 -0.999981 -0.999976
-0.999971 -0.999964 -0.999958 -0.99995 -0.999942 -0.999934 -0.999925
-0.999915 -0.999905 -0.999894 -0.999882 -0.99987 -0.999858 -0.999844
-0.999831 -0.999816 -0.999801 -0.999786 -0.999769 -0.999753 -0.999735
-0.999717 -0.999699 -0.99968 -0.99966 -0.99964 -0.999619 -0.999597
-0.999575 -0.999553 -0.999529 -0.999506 -0.999481 -0.999456 -0.999431
-0.999405 -0.999378 -0.99935 -0.999322 -0.999294 -0.999265 -0.999235
-0.999205 -0.999174 -0.999143 -0.99911 -0.999078 -0.999045 -0.999011
-0.998976 -0.998941 -0.998906 -0.99887 -0.998833 -0.998796 -0.998758
-0.998719 -0.99868 -0.99864 -0.9986 -0.998559 -0.998518 -0.998476 -0.998433
-0.99839 -0.998346 -0.998302 -0.998257 -0.998211 -0.998165 -0.998118
-0.998071 -0.998023 -0.997975 -0.997925 -0.997876 -0.997826 -0.997775
-0.997723 -0.997671 -0.997619 -0.997565 -0.997512 -0.997457 -0.997402
-0.997347 -0.997291 -0.997234 -0.997177 -0.997119 -0.99706 -0.997001
-0.996942 -0.996881 -0.996821 -0.996759 -0.996697 -0.996635 -0.996571
-0.996508 -0.996443 -0.996378 -0.996313 -0.996247 -0.99618 -0.996113
-0.996045 -0.995977 -0.995907 -0.995838 -0.995768 -0.995697 -0.995625
-0.995554 -0.995481 -0.995408 -0.995334 -0.99526 -0.995185 -0.995109
-0.995033 -0.994957 -0.99488 -0.994802 -0.994723 -0.994644 -0.994565
-0.994485 -0.994404 -0.994323 -0.994241 -0.994158 -0.994075 -0.993991
-0.993907 -0.993822 -0.993737 -0.993651 -0.993564 -0.993477 -0.99339
-0.993301 -0.993212 -0.993123 -0.993033 -0.992942 -0.992851 -0.992759
-0.992666 -0.992573 -0.99248 -0.992386 -0.992291 -0.992196 -0.9921
-0.992003 -0.991906 -0.991808 -0.99171 -0.991611 -0.991512 -0.991412
-0.991311 -0.99121 -0.991108 -0.991006 -0.990903 -0.990799 -0.990695
-0.990591 -0.990485 -0.99038 -0.990273 -0.990166 -0.990059 -0.98995
-0.989842 -0.989732 -0.989622 -0.989512 -0.989401 -0.989289 -0.989177
-0.989064 -0.988951 -0.988837 -0.988722 -0.988607 -0.988491 -0.988375
-0.988258 -0.988141 -0.988022 -0.987904 -0.987785 -0.987665 -0.987544
-0.987423 -0.987302 -0.98718 -0.987057 -0.986934 -0.98681 -0.986685
-0.98656 -0.986435 -0.986309 -0.986182 -0.986054 -0.985927 -0.985798
-0.985669 -0.985539 -0.985409 -0.985278 -0.985147 -0.985015 -0.984882
-0.984749 -0.984615 -0.984481 -0.984346 -0.984211 -0.984075 -0.983938
-0.983801 -0.983663 -0.983525 -0.983386 -0.983246 -0.983106 -0.982965
-0.982824 -0.982682 -0.98254 -0.982397 -0.982253 -0.982109 -0.981964
-0.981819 -0.981673 -0.981527 -0.98138 -0.981232 -0.981084 -0.980935
-0.980786 -0.980636 -0.980485 -0.980334 -0.980183 -0.98003 -0.979878
-0.979724 -0.97957 -0.979416 -0.979261 -0.979105 -0.978949 -0.978792
-0.978634 -0.978477 -0.978318 -0.978159 -0.977999 -0.977839 -0.977678
-0.977517 -0.977355 -0.977192 -0.977029 -0.976865 -0.976701 -0.976536
-0.97637 -0.976204 -0.976038 -0.97587 -0.975703 -0.975534 -0.975366
-0.975196 -0.975026 -0.974855 -0.974684 -0.974512 -0.97434 -0.974167
-0.973994 -0.97382 -0.973645 -0.97347 -0.973294 -0.973118 -0.972941
-0.972763 -0.972585 -0.972406 -0.972227 -0.972047 -0.971867 -0.971686
-0.971505 -0.971322 -0.97114 -0.970957 -0.970773 -0.970588 -0.970404
-0.970218 -0.970032 -0.969845 -0.969658 -0.96947 -0.969282 -0.969093
-0.968904 -0.968713 -0.968523 -0.968332 -0.96814 -0.967947 -0.967755
-0.967561 -0.967367 -0.967172 -0.966977 -0.966781 -0.966585 -0.966388
-0.966191 -0.965993 -0.965794 -0.965595 -0.965395 -0.965195 -0.964994
-0.964793 -0.964591 -0.964388 -0.964185 -0.963981 -0.963777 -0.963572
-0.963367 -0.963161 -0.962954 -0.962747 -0.962539 -0.962331 -0.962122
-0.961913 -0.961703 -0.961492 -0.961281 -0.96107 -0.960857 -0.960645
-0.960431 -0.960217 -0.960003 -0.959788 -0.959572 -0.959356 -0.959139
-0.958922 -0.958704 -0.958486 -0.958267 -0.958047 -0.957827 -0.957607
-0.957385 -0.957164 -0.956941 -0.956718 -0.956495 -0.956271 -0.956046
-0.955821 -0.955595 -0.955369 -0.955142 -0.954915 -0.954687 -0.954458
-0.954229 -0.953999 -0.953769 -0.953538 -0.953307 -0.953075 -0.952843
-0.952609 -0.952376 -0.952142 -0.951907 -0.951672 -0.951436 -0.9512
-0.950963 -0.950725 -0.950487 -0.950248 -0.950009 -0.949769 -0.949529
-0.949288 -0.949047 -0.948805 -0.948562 -0.948319 -0.948076 -0.947831
-0.947587 -0.947341 -0.947095 -0.946849 -0.946602 -0.946354 -0.946106
-0.945858 -0.945608 -0.945359 -0.945108 -0.944857 -0.944606 -0.944354
-0.944101 -0.943848 -0.943594 -0.94334 -0.943085 -0.94283 -0.942574
-0.942318 -0.942061 -0.941803 -0.941545 -0.941286 -0.941027 -0.940767
-0.940507 -0.940246 -0.939985 -0.939723 -0.93946 -0.939197 -0.938933
-0.938669 -0.938405 -0.938139 -0.937873 -0.937607 -0.93734 -0.937073
-0.936804 -0.936536 -0.936267 -0.935997 -0.935727 -0.935456 -0.935185
-0.934913 -0.93464 -0.934367 -0.934094 -0.933819 -0.933545 -0.93327
-0.932994 -0.932718 -0.932441 -0.932163 -0.931885 -0.931607 -0.931328
-0.931048 -0.930768 -0.930487 -0.930206 -0.929924 -0.929642 -0.929359
-0.929076 -0.928792 -0.928507 -0.928222 -0.927936 -0.92765 -0.927364
-0.927076 -0.926789 -0.9265 -0.926211 -0.925922 -0.925632 -0.925341
-0.92505 -0.924759 -0.924467 -0.924174 -0.923881 -0.923587 -0.923293
-0.922998 -0.922702 -0.922406 -0.92211 -0.921813 -0.921515 -0.921217
-0.920918 -0.920619 -0.920319 -0.920019 -0.919718 -0.919417 -0.919115
-0.918813 -0.91851 -0.918206 -0.917902 -0.917597 -0.917292 -0.916986
-0.91668 -0.916373 -0.916066 -0.915758 -0.91545 -0.915141 -0.914832
-0.914522 -0.914211 -0.9139 -0.913588 -0.913276 -0.912963 -0.91265
-0.912336 -0.912022 -0.911707 -0.911392 -0.911076 -0.91076 -0.910443
-0.910125 -0.909807 -0.909488 -0.909169 -0.90885 -0.908529 -0.908209
-0.907887 -0.907566 -0.907243 -0.90692 -0.906597 -0.906273 -0.905949
-0.905624 -0.905298 -0.904972 -0.904645 -0.904318 -0.903991 -0.903662
-0.903334 -0.903004 -0.902675 -0.902344 -0.902013 -0.901682 -0.90135
-0.901018 -0.900685 -0.900351 -0.900017 -0.899683 -0.899348 -0.899012
-0.898676 -0.898339 -0.898002 -0.897664 -0.897326 -0.896987 -0.896648
-0.896308 -0.895968 -0.895627 -0.895285 -0.894943 -0.894601 -0.894258
-0.893914 -0.89357 -0.893226 -0.892881 -0.892535 -0.892189 -0.891842
-0.891495 -0.891147 -0.890799 -0.89045 -0.890101 -0.889751 -0.889401
-0.88905 -0.888698 -0.888346 -0.887994 -0.887641 -0.887288 -0.886934
-0.886579 -0.886224 -0.885868 -0.885512 -0.885156 -0.884799 -0.884441
-0.884083 -0.883724 -0.883365 -0.883005 -0.882645 -0.882284 -0.881923
-0.881561 -0.881199 -0.880836 -0.880472 -0.880108 -0.879744 -0.879379
-0.879014 -0.878648 -0.878281 -0.877914 -0.877547 -0.877179 -0.87681
-0.876441 -0.876072 -0.875701 -0.875331 -0.87496 -0.874588 -0.874216
-0.873843 -0.87347 -0.873096 -0.872722 -0.872348 -0.871972 -0.871597
-0.87122 -0.870844 -0.870466 -0.870089 -0.86971 -0.869331 -0.868952
-0.868572 -0.868192 -0.867811 -0.86743 -0.867048 -0.866665 -0.866283
-0.865899 -0.865515 -0.865131 -0.864746 -0.86436 -0.863974 -0.863588
-0.863201 -0.862814 -0.862426 -0.862037 -0.861648 -0.861259 -0.860869
-0.860478 -0.860087 -0.859695 -0.859303 -0.858911 -0.858518 -0.858124
-0.85773 -0.857336 -0.856941 -0.856545 -0.856149 -0.855752 -0.855355
-0.854958 -0.85456 -0.854161 -0.853762 -0.853362 -0.852962 -0.852562
-0.852161 -0.851759 -0.851357 -0.850954 -0.850551 -0.850148 -0.849743
-0.849339 -0.848934 -0.848528 -0.848122 -0.847715 -0.847308 -0.846901
-0.846493 -0.846084 -0.845675 -0.845265 -0.844855 -0.844445 -0.844034
-0.843622 -0.84321 -0.842797 -0.842384 -0.841971 -0.841557 -0.841142
-0.840727 -0.840312 -0.839895 -0.839479 -0.839062 -0.838644 -0.838226
-0.837808 -0.837389 -0.836969 -0.836549 -0.836129 -0.835708 -0.835287
-0.834865 -0.834442 -0.834019 -0.833596 -0.833172 -0.832748 -0.832323
-0.831897 -0.831471 -0.831045 -0.830618 -0.830191 -0.829763 -0.829335
-0.828906 -0.828477 -0.828047 -0.827617 -0.827186 -0.826755 -0.826323
-0.825891 -0.825458 -0.825025 -0.824591 -0.824157 -0.823722 -0.823287
-0.822852 -0.822415 -0.821979 -0.821542 -0.821104 -0.820666 -0.820228
-0.819789 -0.819349 -0.818909 -0.818469 -0.818028 -0.817587 -0.817145
-0.816702 -0.81626 -0.815816 -0.815372 -0.814928 -0.814483 -0.814038
-0.813592 -0.813146 -0.8127 -0.812252 -0.811805 -0.811357 -0.810908
-0.810459 -0.81001 -0.80956 -0.809109 -0.808658 -0.808207 -0.807755
-0.807302 -0.806849 -0.806396 -0.805942 -0.805488 -0.805033 -0.804578
-0.804122 -0.803666 -0.803209 -0.802752 -0.802295 -0.801837 -0.801378
-0.800919 -0.80046 -0.8 -0.799539 -0.799078 -0.798617 -0.798155 -0.797693
-0.79723 -0.796767 -0.796303 -0.795839 -0.795374 -0.794909 -0.794443
-0.793977 -0.793511 -0.793044 -0.792576 -0.792109 -0.79164 -0.791171
-0.790702 -0.790232 -0.789762 -0.789291 -0.78882 -0.788348 -0.787876
-0.787404 -0.786931 -0.786457 -0.785983 -0.785509 -0.785034 -0.784559
-0.784083 -0.783607 -0.78313 -0.782653 -0.782175 -0.781697 -0.781218
-0.780739 -0.78026 -0.77978 -0.779299 -0.778819 -0.778337 -0.777855
-0.777373 -0.776891 -0.776407 -0.775924 -0.77544 -0.774955 -0.77447
-0.773985 -0.773499 -0.773013 -0.772526 -0.772038 -0.771551 -0.771063
-0.770574 -0.770085;
#A 5000 -0.769595 -0.769105 -0.768615 -0.768124 -0.767633 -0.767141
-0.766649 -0.766156 -0.765663 -0.765169 -0.764675 -0.764181 -0.763686
-0.763191 -0.762695 -0.762198 -0.761702 -0.761204 -0.760707 -0.760209
-0.75971 -0.759211 -0.758712 -0.758212 -0.757712 -0.757211 -0.75671
-0.756208 -0.755706 -0.755203 -0.754701 -0.754197 -0.753693 -0.753189
-0.752684 -0.752179 -0.751673 -0.751167 -0.750661 -0.750154 -0.749646
-0.749139 -0.74863 -0.748122 -0.747612 -0.747103 -0.746593 -0.746082
-0.745571 -0.74506 -0.744548 -0.744036 -0.743523 -0.74301 -0.742497
-0.741983 -0.741468 -0.740953 -0.740438 -0.739922 -0.739406 -0.73889
-0.738373 -0.737855 -0.737337 -0.736819 -0.7363 -0.735781 -0.735261
-0.734741 -0.734221 -0.7337 -0.733178 -0.732656 -0.732134 -0.731612
-0.731089 -0.730565 -0.730041 -0.729517 -0.728992 -0.728467 -0.727941
-0.727415 -0.726888 -0.726361 -0.725834 -0.725306 -0.724778 -0.724249
-0.72372 -0.723191 -0.722661 -0.72213 -0.7216 -0.721069 -0.720537 -0.720005
-0.719472 -0.718939 -0.718406 -0.717872 -0.717338 -0.716804 -0.716269
-0.715733 -0.715197 -0.714661 -0.714124 -0.713587 -0.71305 -0.712512
-0.711973 -0.711435 -0.710895 -0.710356 -0.709816 -0.709275 -0.708734
-0.708193 -0.707651 -0.707109 -0.706567 -0.706024 -0.70548 -0.704936
-0.704392 -0.703848 -0.703303 -0.702757 -0.702211 -0.701665 -0.701118
-0.700571 -0.700024 -0.699476 -0.698927 -0.698379 -0.697829 -0.69728
-0.69673 -0.69618 -0.695629 -0.695078 -0.694526 -0.693974 -0.693421
-0.692869 -0.692315 -0.691762 -0.691208 -0.690653 -0.690098 -0.689543
-0.688987 -0.688431 -0.687875 -0.687318 -0.68676 -0.686203 -0.685645
-0.685086 -0.684527 -0.683968 -0.683408 -0.682848 -0.682287 -0.681727
-0.681165 -0.680603 -0.680041 -0.679479 -0.678916 -0.678353 -0.677789
-0.677225 -0.67666 -0.676095 -0.67553 -0.674964 -0.674398 -0.673831
-0.673265 -0.672697 -0.67213 -0.671561 -0.670993 -0.670424 -0.669855
-0.669285 -0.668715 -0.668145 -0.667574 -0.667002 -0.666431 -0.665859
-0.665286 -0.664714 -0.66414 -0.663567 -0.662993 -0.662418 -0.661844
-0.661268 -0.660693 -0.660117 -0.659541 -0.658964 -0.658387 -0.657809
-0.657231 -0.656653 -0.656074 -0.655495 -0.654916 -0.654336 -0.653756
-0.653175 -0.652594 -0.652013 -0.651431 -0.650849 -0.650267 -0.649684
-0.649101 -0.648517 -0.647933 -0.647349 -0.646764 -0.646179 -0.645593
-0.645007 -0.644421 -0.643834 -0.643247 -0.64266 -0.642072 -0.641484
-0.640895 -0.640306 -0.639717 -0.639127 -0.638537 -0.637947 -0.637356
-0.636764 -0.636173 -0.635581 -0.634989 -0.634396 -0.633803 -0.633209
-0.632616 -0.632021 -0.631427 -0.630832 -0.630237 -0.629641 -0.629045
-0.628448 -0.627852 -0.627254 -0.626657 -0.626059 -0.625461 -0.624862
-0.624263 -0.623664 -0.623064 -0.622464 -0.621863 -0.621263 -0.620661
-0.62006 -0.619458 -0.618856 -0.618253 -0.61765 -0.617047 -0.616443
-0.615839 -0.615234 -0.614629 -0.614024 -0.613419 -0.612813 -0.612207
-0.6116 -0.610993 -0.610386 -0.609778 -0.60917 -0.608561 -0.607953
-0.607343 -0.606734 -0.606124 -0.605514 -0.604903 -0.604292 -0.603681
-0.603069 -0.602457 -0.601845 -0.601232 -0.600619 -0.600006 -0.599392
-0.598778 -0.598163 -0.597549 -0.596933 -0.596318 -0.595702 -0.595086
-0.594469 -0.593852 -0.593235 -0.592617 -0.591999 -0.591381 -0.590762
-0.590143 -0.589524 -0.588904 -0.588284 -0.587664 -0.587043 -0.586422
-0.585801 -0.585179 -0.584557 -0.583934 -0.583311 -0.582688 -0.582065
-0.581441 -0.580817 -0.580192 -0.579567 -0.578942 -0.578317 -0.577691
-0.577065 -0.576438 -0.575811 -0.575184 -0.574556 -0.573928 -0.5733
-0.572671 -0.572042 -0.571413 -0.570784 -0.570154 -0.569523 -0.568893
-0.568262 -0.567631 -0.566999 -0.566367 -0.565735 -0.565102 -0.564469
-0.563836 -0.563202 -0.562568 -0.561934 -0.561299 -0.560664 -0.560029
-0.559394 -0.558758 -0.558121 -0.557485 -0.556848 -0.556211 -0.555573
-0.554935 -0.554297 -0.553658 -0.55302 -0.55238 -0.551741 -0.551101
-0.550461 -0.54982 -0.54918 -0.548538 -0.547897 -0.547255 -0.546613
-0.545971 -0.545328 -0.544685 -0.544041 -0.543398 -0.542754 -0.542109
-0.541465 -0.54082 -0.540174 -0.539529 -0.538883 -0.538237 -0.53759
-0.536943 -0.536296 -0.535648 -0.535001 -0.534352 -0.533704 -0.533055
-0.532406 -0.531757 -0.531107 -0.530457 -0.529807 -0.529156 -0.528505
-0.527854 -0.527202 -0.52655 -0.525898 -0.525245 -0.524593 -0.52394
-0.523286 -0.522632 -0.521978 -0.521324 -0.520669 -0.520014 -0.519359
-0.518703 -0.518048 -0.517391 -0.516735 -0.516078 -0.515421 -0.514763
-0.514106 -0.513448 -0.512789 -0.512131 -0.511472 -0.510813 -0.510153
-0.509493 -0.508833 -0.508173 -0.507512 -0.506851 -0.50619 -0.505528
-0.504866 -0.504204 -0.503541 -0.502879 -0.502216 -0.501552 -0.500888
-0.500224 -0.49956 -0.498896 -0.498231 -0.497566 -0.4969 -0.496234
-0.495568 -0.494902 -0.494235 -0.493568 -0.492901 -0.492234 -0.491566
-0.490898 -0.49023 -0.489561 -0.488892 -0.488223 -0.487553 -0.486883
-0.486213 -0.485543 -0.484872 -0.484201 -0.48353 -0.482859 -0.482187
-0.481515 -0.480842 -0.48017 -0.479497 -0.478824 -0.47815 -0.477476
-0.476802 -0.476128 -0.475453 -0.474779 -0.474103 -0.473428 -0.472752
-0.472076 -0.4714 -0.470723 -0.470046 -0.469369 -0.468692 -0.468014
-0.467336 -0.466658 -0.46598 -0.465301 -0.464622 -0.463943 -0.463263
-0.462583 -0.461903 -0.461223 -0.460542 -0.459861 -0.45918 -0.458498
-0.457816 -0.457134 -0.456452 -0.45577 -0.455087 -0.454404 -0.45372
-0.453037 -0.452353 -0.451669 -0.450984 -0.4503 -0.449615 -0.448929
-0.448244 -0.447558 -0.446872 -0.446186 -0.445499 -0.444812 -0.444125
-0.443438 -0.44275 -0.442063 -0.441374 -0.440686 -0.439997 -0.439309
-0.438619 -0.43793 -0.43724 -0.43655 -0.43586 -0.43517 -0.434479 -0.433788
-0.433097 -0.432406 -0.431714 -0.431022 -0.43033 -0.429637 -0.428945
-0.428252 -0.427558 -0.426865 -0.426171 -0.425477 -0.424783 -0.424088
-0.423394 -0.422699 -0.422004 -0.421308 -0.420612 -0.419916 -0.41922
-0.418524 -0.417827 -0.41713 -0.416433 -0.415735 -0.415038 -0.41434
-0.413642 -0.412943 -0.412245 -0.411546 -0.410846 -0.410147 -0.409447
-0.408748 -0.408047 -0.407347 -0.406647 -0.405946 -0.405245 -0.404543
-0.403842 -0.40314 -0.402438 -0.401736 -0.401033 -0.40033 -0.399628
-0.398924 -0.398221 -0.397517 -0.396813 -0.396109 -0.395405 -0.3947
-0.393995 -0.39329 -0.392585 -0.391879 -0.391174 -0.390468 -0.389762
-0.389055 -0.388348 -0.387641 -0.386934 -0.386227 -0.385519 -0.384812
-0.384104 -0.383395 -0.382687 -0.381978 -0.381269 -0.38056 -0.379851
-0.379141 -0.378431 -0.377721 -0.377011 -0.3763 -0.37559 -0.374879
-0.374167 -0.373456 -0.372744 -0.372033 -0.371321 -0.370608 -0.369896
-0.369183 -0.36847 -0.367757 -0.367044 -0.36633 -0.365616 -0.364902
-0.364188 -0.363474 -0.362759 -0.362044 -0.361329 -0.360614 -0.359898
-0.359183 -0.358467 -0.357751 -0.357034 -0.356318 -0.355601 -0.354884
-0.354167 -0.35345 -0.352732 -0.352014 -0.351296 -0.350578 -0.34986
-0.349141 -0.348422 -0.347703 -0.346984 -0.346264 -0.345545 -0.344825
-0.344105 -0.343385 -0.342664 -0.341944 -0.341223 -0.340502 -0.33978
-0.339059 -0.338337 -0.337615 -0.336893 -0.336171 -0.335449 -0.334726
-0.334003 -0.33328 -0.332557 -0.331833 -0.33111 -0.330386 -0.329662
-0.328938 -0.328213 -0.327489 -0.326764 -0.326039 -0.325314 -0.324588
-0.323863 -0.323137 -0.322411 -0.321685 -0.320959 -0.320232 -0.319506
-0.318779 -0.318052 -0.317324 -0.316597 -0.315869 -0.315141 -0.314413
-0.313685 -0.312957 -0.312228 -0.3115 -0.310771 -0.310042 -0.309312
-0.308583 -0.307853 -0.307123 -0.306393 -0.305663 -0.304933 -0.304202
-0.303472 -0.302741 -0.302009 -0.301278 -0.300547 -0.299815 -0.299083
-0.298351 -0.297619 -0.296887 -0.296154 -0.295422 -0.294689 -0.293956
-0.293223 -0.292489 -0.291756 -0.291022 -0.290288 -0.289554 -0.28882
-0.288086 -0.287351 -0.286616 -0.285881 -0.285146 -0.284411 -0.283676
-0.28294 -0.282204 -0.281469 -0.280732 -0.279996 -0.27926 -0.278523
-0.277787 -0.27705 -0.276313 -0.275575 -0.274838 -0.274101 -0.273363
-0.272625 -0.271887 -0.271149 -0.27041 -0.269672 -0.268933 -0.268194
-0.267455 -0.266716 -0.265977 -0.265238 -0.264498 -0.263758 -0.263018
-0.262278 -0.261538 -0.260798 -0.260057 -0.259317 -0.258576 -0.257835
-0.257094 -0.256352 -0.255611 -0.254869 -0.254128 -0.253386 -0.252644
-0.251901 -0.251159 -0.250417 -0.249674 -0.248931 -0.248188 -0.247445
-0.246702 -0.245959 -0.245215 -0.244472 -0.243728 -0.242984 -0.24224
-0.241496 -0.240751 -0.240007 -0.239262 -0.238517 -0.237772 -0.237027
-0.236282 -0.235537 -0.234791 -0.234046 -0.2333 -0.232554 -0.231808
-0.231062 -0.230315 -0.229569 -0.228822 -0.228076 -0.227329 -0.226582
-0.225835 -0.225088 -0.22434 -0.223593 -0.222845 -0.222097 -0.221349
-0.220601 -0.219853 -0.219105 -0.218357 -0.217608 -0.216859 -0.21611
-0.215362 -0.214613 -0.213863 -0.213114 -0.212365 -0.211615 -0.210865
-0.210116 -0.209366 -0.208616 -0.207865 -0.207115 -0.206365 -0.205614
-0.204863 -0.204113 -0.203362 -0.202611 -0.20186 -0.201108 -0.200357
-0.199605 -0.198854 -0.198102 -0.19735 -0.196598 -0.195846 -0.195094
-0.194342 -0.193589 -0.192837 -0.192084 -0.191331 -0.190579 -0.189826
-0.189072 -0.188319 -0.187566 -0.186812 -0.186059 -0.185305 -0.184551
-0.183798 -0.183044 -0.18229 -0.181535 -0.180781 -0.180027 -0.179272
-0.178518 -0.177763 -0.177008 -0.176253 -0.175498 -0.174743 -0.173988
-0.173232 -0.172477 -0.171721 -0.170966 -0.17021 -0.169454 -0.168698
-0.167942 -0.167186 -0.16643 -0.165673 -0.164917 -0.16416 -0.163404
-0.162647 -0.16189 -0.161133 -0.160376 -0.159619 -0.158862 -0.158105
-0.157347 -0.15659 -0.155832 -0.155075 -0.154317 -0.153559 -0.152801
-0.152043 -0.151285 -0.150527 -0.149768 -0.14901 -0.148251 -0.147493
-0.146734 -0.145976 -0.145217 -0.144458 -0.143699 -0.14294 -0.142181
-0.141421 -0.140662 -0.139903 -0.139143 -0.138384 -0.137624 -0.136864
-0.136104 -0.135345 -0.134585 -0.133824 -0.133064 -0.132304 -0.131544
-0.130783 -0.130023 -0.129263 -0.128502 -0.127741 -0.126981 -0.12622
-0.125459 -0.124698 -0.123937 -0.123176 -0.122415 -0.121653 -0.120892
-0.120131 -0.119369 -0.118608 -0.117846 -0.117084 -0.116322 -0.115561
-0.114799 -0.114037 -0.113275 -0.112513 -0.111751;
#A 6000 -0.110988 -0.110226 -0.109464 -0.108701 -0.107939 -0.107176
-0.106414 -0.105651 -0.104888 -0.104126 -0.103363 -0.1026 -0.101837
-0.101074 -0.100311 -0.0995475 -0.0987843 -0.098021 -0.0972577 -0.0964943
-0.0957309 -0.0949674 -0.0942038 -0.0934402 -0.0926766 -0.0919128 -0.0911491
-0.0903853 -0.0896214 -0.0888574 -0.0880935 -0.0873294 -0.0865653 -0.0858012
-0.085037 -0.0842728 -0.0835085 -0.0827442 -0.0819798 -0.0812153 -0.0804509
-0.0796863 -0.0789218 -0.0781571 -0.0773925 -0.0766278 -0.075863 -0.0750982
-0.0743334 -0.0735685 -0.0728035 -0.0720386 -0.0712735 -0.0705085 -0.0697434
-0.0689782 -0.0682131 -0.0674478 -0.0666826 -0.0659173 -0.0651519 -0.0643865
-0.0636211 -0.0628557 -0.0620902 -0.0613247 -0.0605591 -0.0597935 -0.0590279
-0.0582622 -0.0574965 -0.0567307 -0.055965 -0.0551992 -0.0544333 -0.0536675
-0.0529016 -0.0521356 -0.0513697 -0.0506037 -0.0498377 -0.0490716 -0.0483055
-0.0475394 -0.0467733 -0.0460071 -0.0452409 -0.0444747 -0.0437085 -0.0429422
-0.0421759 -0.0414096 -0.0406432 -0.0398769 -0.0391105 -0.0383441 -0.0375776
-0.0368112 -0.0360447 -0.0352782 -0.0345117 -0.0337451 -0.0329786 -0.032212
-0.0314454 -0.0306788 -0.0299121 -0.0291455 -0.0283788 -0.0276121 -0.0268454
-0.0260787 -0.0253119 -0.0245452 -0.0237784 -0.0230116 -0.0222448 -0.021478
-0.0207112 -0.0199444 -0.0191775 -0.0184107 -0.0176438 -0.016877 -0.0161101
-0.0153432 -0.0145763 -0.0138094 -0.0130424 -0.0122755 -0.0115086 -0.0107416
-0.00997468 -0.00920773 -0.00844077 -0.0076738 -0.00690683 -0.00613986
-0.00537288 -0.0046059 -0.00383892 -0.00307193 -0.00230495 -0.00153796
-0.00077097 -3.98039e-006 0.000763009 0.00153 0.00229699 0.00306397
0.00383096 0.00459794 0.00536492 0.0061319 0.00689887 0.00766584 0.00843281
0.00919977 0.00996672 0.0107337 0.0115006 0.0122675 0.0130345 0.0138014
0.0145683 0.0153352 0.0161021 0.016869 0.0176359 0.0184027 0.0191696
0.0199364 0.0207033 0.0214701 0.0222369 0.0230037 0.0237705 0.0245372
0.025304 0.0260707 0.0268374 0.0276041 0.0283708 0.0291375 0.0299042
0.0306708 0.0314374 0.032204 0.0329706 0.0337372 0.0345037 0.0352702
0.0360367 0.0368032 0.0375697 0.0383361 0.0391025 0.0398689 0.0406353
0.0414016 0.042168 0.0429342 0.0437005 0.0444668 0.045233 0.0459992
0.0467653 0.0475315 0.0482976 0.0490637 0.0498297 0.0505957 0.0513617
0.0521277 0.0528936 0.0536595 0.0544254 0.0551912 0.055957 0.0567228
0.0574885 0.0582542 0.0590199 0.0597855 0.0605511 0.0613167 0.0620822
0.0628477 0.0636132 0.0643786 0.065144 0.0659093 0.0666746 0.0674399
0.0682051 0.0689703 0.0697354 0.0705005 0.0712656 0.0720306 0.0727956
0.0735605 0.0743254 0.0750903 0.0758551 0.0766198 0.0773845 0.0781492
0.0789138 0.0796784 0.0804429 0.0812074 0.0819718 0.0827362 0.0835006
0.0842649 0.0850291 0.0857933 0.0865574 0.0873215 0.0880855 0.0888495
0.0896134 0.0903773 0.0911411 0.0919049 0.0926686 0.0934323 0.0941959
0.0949595 0.095723 0.0964864 0.0972498 0.0980131 0.0987764 0.0995396
0.100303 0.101066 0.101829 0.102592 0.103355 0.104118 0.10488 0.105643
0.106406 0.107168 0.107931 0.108693 0.109456 0.110218 0.11098 0.111743
0.112505 0.113267 0.114029 0.114791 0.115553 0.116315 0.117076 0.117838
0.1186 0.119361 0.120123 0.120884 0.121645 0.122407 0.123168 0.123929
0.12469 0.125451 0.126212 0.126973 0.127733 0.128494 0.129255 0.130015
0.130776 0.131536 0.132296 0.133056 0.133817 0.134577 0.135337 0.136097
0.136856 0.137616 0.138376 0.139135 0.139895 0.140654 0.141414 0.142173
0.142932 0.143691 0.14445 0.145209 0.145968 0.146726 0.147485 0.148244
0.149002 0.14976 0.150519 0.151277 0.152035 0.152793 0.153551 0.154309
0.155067 0.155824 0.156582 0.157339 0.158097 0.158854 0.159611 0.160368
0.161125 0.161882 0.162639 0.163396 0.164153 0.164909 0.165665 0.166422
0.167178 0.167934 0.16869 0.169446 0.170202 0.170958 0.171713 0.172469
0.173224 0.17398 0.174735 0.17549 0.176245 0.177 0.177755 0.17851 0.179264
0.180019 0.180773 0.181528 0.182282 0.183036 0.18379 0.184544 0.185297
0.186051 0.186805 0.187558 0.188311 0.189065 0.189818 0.190571 0.191324
0.192076 0.192829 0.193582 0.194334 0.195086 0.195838 0.196591 0.197343
0.198094 0.198846 0.199598 0.200349 0.201101 0.201852 0.202603 0.203354
0.204105 0.204856 0.205606 0.206357 0.207107 0.207858 0.208608 0.209358
0.210108 0.210858 0.211607 0.212357 0.213106 0.213856 0.214605 0.215354
0.216103 0.216852 0.2176 0.218349 0.219097 0.219845 0.220594 0.221342
0.22209 0.222837 0.223585 0.224332 0.22508 0.225827 0.226574 0.227321
0.228068 0.228815 0.229561 0.230308 0.231054 0.2318 0.232546 0.233292
0.234038 0.234784 0.235529 0.236274 0.23702 0.237765 0.23851 0.239254
0.239999 0.240743 0.241488 0.242232 0.242976 0.24372 0.244464 0.245207
0.245951 0.246694 0.247438 0.248181 0.248924 0.249666 0.250409 0.251151
0.251894 0.252636 0.253378 0.25412 0.254862 0.255603 0.256345 0.257086
0.257827 0.258568 0.259309 0.26005 0.26079 0.26153 0.262271 0.263011
0.263751 0.26449 0.26523 0.265969 0.266709 0.267448 0.268187 0.268926
0.269664 0.270403 0.271141 0.271879 0.272617 0.273355 0.274093 0.27483
0.275568 0.276305 0.277042 0.277779 0.278516 0.279252 0.279989 0.280725
0.281461 0.282197 0.282933 0.283668 0.284403 0.285139 0.285874 0.286609
0.287343 0.288078 0.288812 0.289547 0.290281 0.291015 0.291748 0.292482
0.293215 0.293948 0.294681 0.295414 0.296147 0.296879 0.297612 0.298344
0.299076 0.299808 0.300539 0.301271 0.302002 0.302733 0.303464 0.304195
0.304925 0.305656 0.306386 0.307116 0.307846 0.308575 0.309305 0.310034
0.310763 0.311492 0.312221 0.312949 0.313678 0.314406 0.315134 0.315862
0.316589 0.317317 0.318044 0.318771 0.319498 0.320225 0.320951 0.321678
0.322404 0.32313 0.323855 0.324581 0.325306 0.326031 0.326756 0.327481
0.328206 0.32893 0.329654 0.330378 0.331102 0.331826 0.332549 0.333273
0.333996 0.334718 0.335441 0.336164 0.336886 0.337608 0.33833 0.339051
0.339773 0.340494 0.341215 0.341936 0.342657 0.343377 0.344097 0.344817
0.345537 0.346257 0.346976 0.347696 0.348415 0.349133 0.349852 0.350571
0.351289 0.352007 0.352725 0.353442 0.35416 0.354877 0.355594 0.35631
0.357027 0.357743 0.358459 0.359175 0.359891 0.360607 0.361322 0.362037
0.362752 0.363466 0.364181 0.364895 0.365609 0.366323 0.367036 0.36775
0.368463 0.369176 0.369888 0.370601 0.371313 0.372025 0.372737 0.373449
0.37416 0.374871 0.375582 0.376293 0.377003 0.377714 0.378424 0.379134
0.379843 0.380553 0.381262 0.381971 0.382679 0.383388 0.384096 0.384804
0.385512 0.38622 0.386927 0.387634 0.388341 0.389048 0.389754 0.39046
0.391166 0.391872 0.392578 0.393283 0.393988 0.394693 0.395398 0.396102
0.396806 0.39751 0.398214 0.398917 0.39962 0.400323 0.401026 0.401728
0.402431 0.403133 0.403834 0.404536 0.405237 0.405938 0.406639 0.40734
0.40804 0.40874 0.40944 0.41014 0.410839 0.411538 0.412237 0.412936
0.413634 0.414333 0.41503 0.415728 0.416426 0.417123 0.41782 0.418516
0.419213 0.419909 0.420605 0.421301 0.421996 0.422692 0.423387 0.424081
0.424776 0.42547 0.426164 0.426858 0.427551 0.428244 0.428937 0.42963
0.430323 0.431015 0.431707 0.432398 0.43309 0.433781 0.434472 0.435163
0.435853 0.436543 0.437233 0.437923 0.438612 0.439301 0.43999 0.440679
0.441367 0.442055 0.442743 0.443431 0.444118 0.444805 0.445492 0.446179
0.446865 0.447551 0.448237 0.448922 0.449607 0.450292 0.450977 0.451662
0.452346 0.45303 0.453713 0.454397 0.45508 0.455763 0.456445 0.457127
0.457809 0.458491 0.459173 0.459854 0.460535 0.461215 0.461896 0.462576
0.463256 0.463935 0.464615 0.465294 0.465973 0.466651 0.467329 0.468007
0.468685 0.469362 0.470039 0.470716 0.471393 0.472069 0.472745 0.473421
0.474096 0.474772 0.475446 0.476121 0.476795 0.477469 0.478143 0.478817
0.47949 0.480163 0.480835 0.481508 0.48218 0.482852 0.483523 0.484194
0.484865 0.485536 0.486206 0.486877 0.487546 0.488216 0.488885 0.489554
0.490223 0.490891 0.491559 0.492227 0.492894 0.493562 0.494228 0.494895
0.495561 0.496227 0.496893 0.497559 0.498224 0.498889 0.499553 0.500218
0.500882 0.501545 0.502209 0.502872 0.503535 0.504197 0.504859 0.505521
0.506183 0.506844 0.507505 0.508166 0.508826 0.509486 0.510146 0.510806
0.511465 0.512124 0.512783 0.513441 0.514099 0.514757 0.515414 0.516071
0.516728 0.517385 0.518041 0.518697 0.519352 0.520007 0.520662 0.521317
0.521972 0.522626 0.523279 0.523933 0.524586 0.525239 0.525891 0.526543
0.527195 0.527847 0.528498 0.529149 0.5298 0.53045 0.5311 0.53175 0.532399
0.533048 0.533697 0.534346 0.534994 0.535642 0.536289 0.536936 0.537583
0.53823 0.538876 0.539522 0.540168 0.540813 0.541458 0.542103 0.542747
0.543391 0.544035 0.544678 0.545321 0.545964 0.546606 0.547249 0.54789
0.548532 0.549173 0.549814 0.550454 0.551094 0.551734 0.552374 0.553013
0.553652 0.55429 0.554929 0.555566 0.556204 0.556841 0.557478 0.558115
0.558751 0.559387 0.560023 0.560658 0.561293 0.561927 0.562562 0.563196
0.563829 0.564463 0.565095 0.565728 0.56636 0.566992 0.567624 0.568255
0.568886 0.569517 0.570147 0.570777 0.571407 0.572036 0.572665 0.573294
0.573922 0.57455 0.575177 0.575805 0.576431 0.577058 0.577684 0.57831
0.578936 0.579561 0.580186 0.58081 0.581434 0.582058 0.582682 0.583305
0.583928 0.58455 0.585172 0.585794 0.586416 0.587037 0.587658 0.588278
0.588898 0.589518 0.590137 0.590756 0.591375 0.591993 0.592611 0.593229
0.593846 0.594463 0.595079 0.595696 0.596312 0.596927 0.597542 0.598157
0.598772 0.599386 0.599999 0.600613 0.601226 0.601839 0.602451 0.603063
0.603675 0.604286 0.604897 0.605507 0.606118 0.606728 0.607337 0.607946
0.608555 0.609163;
#A 7000 0.609771 0.610379 0.610987 0.611594 0.6122 0.612806 0.613412
0.614018 0.614623 0.615228 0.615833 0.616437 0.61704 0.617644 0.618247
0.618849 0.619452 0.620054 0.620655 0.621256 0.621857 0.622458 0.623058
0.623658 0.624257 0.624856 0.625455 0.626053 0.626651 0.627248 0.627845
0.628442 0.629039 0.629635 0.63023 0.630826 0.631421 0.632015 0.632609
0.633203 0.633797 0.63439 0.634982 0.635575 0.636167 0.636758 0.63735
0.63794 0.638531 0.639121 0.639711 0.6403 0.640889 0.641478 0.642066
0.642654 0.643241 0.643828 0.644415 0.645001 0.645587 0.646173 0.646758
0.647343 0.647927 0.648511 0.649095 0.649678 0.650261 0.650843 0.651425
0.652007 0.652588 0.653169 0.65375 0.65433 0.65491 0.655489 0.656068
0.656647 0.657225 0.657803 0.658381 0.658958 0.659535 0.660111 0.660687
0.661262 0.661838 0.662412 0.662987 0.663561 0.664134 0.664708 0.66528
0.665853 0.666425 0.666996 0.667568 0.668139 0.668709 0.669279 0.669849
0.670418 0.670987 0.671556 0.672124 0.672691 0.673259 0.673826 0.674392
0.674958 0.675524 0.676089 0.676654 0.677219 0.677783 0.678347 0.67891
0.679473 0.680035 0.680598 0.681159 0.681721 0.682282 0.682842 0.683402
0.683962 0.684521 0.68508 0.685639 0.686197 0.686755 0.687312 0.687869
0.688425 0.688981 0.689537 0.690093 0.690647 0.691202 0.691756 0.69231
0.692863 0.693416 0.693968 0.69452 0.695072 0.695623 0.696174 0.696724
0.697274 0.697824 0.698373 0.698922 0.69947 0.700018 0.700565 0.701113
0.701659 0.702206 0.702751 0.703297 0.703842 0.704387 0.704931 0.705475
0.706018 0.706561 0.707103 0.707646 0.708187 0.708729 0.70927 0.70981
0.71035 0.71089 0.711429 0.711968 0.712506 0.713044 0.713582 0.714119
0.714655 0.715192 0.715728 0.716263 0.716798 0.717333 0.717867 0.718401
0.718934 0.719467 0.719999 0.720531 0.721063 0.721594 0.722125 0.722655
0.723185 0.723715 0.724244 0.724773 0.725301 0.725829 0.726356 0.726883
0.727409 0.727935 0.728461 0.728986 0.729511 0.730036 0.73056 0.731083
0.731606 0.732129 0.732651 0.733173 0.733694 0.734215 0.734736 0.735256
0.735775 0.736295 0.736813 0.737332 0.73785 0.738367 0.738884 0.739401
0.739917 0.740433 0.740948 0.741463 0.741977 0.742491 0.743005 0.743518
0.744031 0.744543 0.745055 0.745566 0.746077 0.746587 0.747097 0.747607
0.748116 0.748625 0.749133 0.749641 0.750149 0.750656 0.751162 0.751668
0.752174 0.752679 0.753184 0.753688 0.754192 0.754695 0.755198 0.755701
0.756203 0.756705 0.757206 0.757707 0.758207 0.758707 0.759206 0.759705
0.760204 0.760702 0.761199 0.761697 0.762193 0.76269 0.763185 0.763681
0.764176 0.76467 0.765164 0.765658 0.766151 0.766644 0.767136 0.767628
0.768119 0.76861 0.7691 0.76959 0.77008 0.770569 0.771057 0.771546
0.772033 0.772521 0.773007 0.773494 0.77398 0.774465 0.77495 0.775435
0.775919 0.776402 0.776886 0.777368 0.77785 0.778332 0.778814 0.779294
0.779775 0.780255 0.780734 0.781213 0.781692 0.78217 0.782648 0.783125
0.783602 0.784078 0.784554 0.785029 0.785504 0.785978 0.786452 0.786926
0.787399 0.787871 0.788343 0.788815 0.789286 0.789757 0.790227 0.790697
0.791166 0.791635 0.792104 0.792572 0.793039 0.793506 0.793973 0.794439
0.794904 0.795369 0.795834 0.796298 0.796762 0.797225 0.797688 0.79815
0.798612 0.799074 0.799534 0.799995 0.800455 0.800914 0.801373 0.801832
0.80229 0.802748 0.803205 0.803661 0.804118 0.804573 0.805028 0.805483
0.805938 0.806391 0.806845 0.807298 0.80775 0.808202 0.808653 0.809104
0.809555 0.810005 0.810454 0.810903 0.811352 0.8118 0.812248 0.812695
0.813142 0.813588 0.814034 0.814479 0.814924 0.815368 0.815812 0.816255
0.816698 0.81714 0.817582 0.818023 0.818464 0.818905 0.819345 0.819784
0.820223 0.820662 0.8211 0.821537 0.821974 0.822411 0.822847 0.823283
0.823718 0.824152 0.824587 0.82502 0.825453 0.825886 0.826318 0.82675
0.827181 0.827612 0.828042 0.828472 0.828901 0.82933 0.829759 0.830186
0.830614 0.831041 0.831467 0.831893 0.832318 0.832743 0.833167 0.833591
0.834015 0.834438 0.83486 0.835282 0.835704 0.836125 0.836545 0.836965
0.837385 0.837804 0.838222 0.83864 0.839058 0.839475 0.839891 0.840307
0.840723 0.841138 0.841552 0.841966 0.84238 0.842793 0.843206 0.843618
0.844029 0.84444 0.844851 0.845261 0.845671 0.84608 0.846488 0.846896
0.847304 0.847711 0.848118 0.848524 0.84893 0.849335 0.849739 0.850143
0.850547 0.85095 0.851353 0.851755 0.852156 0.852557 0.852958 0.853358
0.853758 0.854157 0.854555 0.854954 0.855351 0.855748 0.856145 0.856541
0.856936 0.857332 0.857726 0.85812 0.858514 0.858907 0.859299 0.859691
0.860083 0.860474 0.860864 0.861255 0.861644 0.862033 0.862422 0.862809
0.863197 0.863584 0.86397 0.864356 0.864742 0.865127 0.865511 0.865895
0.866279 0.866661 0.867044 0.867426 0.867807 0.868188 0.868568 0.868948
0.869327 0.869706 0.870085 0.870462 0.87084 0.871216 0.871593 0.871968
0.872344 0.872718 0.873093 0.873466 0.873839 0.874212 0.874584 0.874956
0.875327 0.875698 0.876068 0.876437 0.876806 0.877175 0.877543 0.87791
0.878277 0.878644 0.87901 0.879375 0.87974 0.880105 0.880469 0.880832
0.881195 0.881557 0.881919 0.88228 0.882641 0.883001 0.883361 0.88372
0.884079 0.884437 0.884795 0.885152 0.885509 0.885865 0.88622 0.886575
0.88693 0.887284 0.887637 0.88799 0.888343 0.888695 0.889046 0.889397
0.889747 0.890097 0.890446 0.890795 0.891144 0.891491 0.891838 0.892185
0.892531 0.892877 0.893222 0.893567 0.893911 0.894254 0.894597 0.89494
0.895282 0.895623 0.895964 0.896304 0.896644 0.896984 0.897322 0.897661
0.897998 0.898336 0.898672 0.899008 0.899344 0.899679 0.900014 0.900348
0.900681 0.901014 0.901347 0.901679 0.90201 0.902341 0.902671 0.903001
0.90333 0.903659 0.903987 0.904315 0.904642 0.904969 0.905295 0.90562
0.905945 0.90627 0.906594 0.906917 0.90724 0.907562 0.907884 0.908205
0.908526 0.908846 0.909166 0.909485 0.909804 0.910122 0.910439 0.910756
0.911073 0.911389 0.911704 0.912019 0.912333 0.912647 0.91296 0.913273
0.913585 0.913897 0.914208 0.914518 0.914828 0.915138 0.915447 0.915755
0.916063 0.91637 0.916677 0.916983 0.917289 0.917594 0.917899 0.918203
0.918506 0.918809 0.919112 0.919414 0.919715 0.920016 0.920316 0.920616
0.920915 0.921214 0.921512 0.92181 0.922107 0.922403 0.922699 0.922995
0.923289 0.923584 0.923878 0.924171 0.924464 0.924756 0.925047 0.925338
0.925629 0.925919 0.926208 0.926497 0.926786 0.927073 0.927361 0.927647
0.927934 0.928219 0.928504 0.928789 0.929073 0.929356 0.929639 0.929921
0.930203 0.930484 0.930765 0.931045 0.931325 0.931604 0.931882 0.93216
0.932438 0.932715 0.932991 0.933267 0.933542 0.933817 0.934091 0.934364
0.934637 0.93491 0.935182 0.935453 0.935724 0.935994 0.936264 0.936533
0.936802 0.93707 0.937337 0.937604 0.937871 0.938137 0.938402 0.938667
0.938931 0.939194 0.939458 0.93972 0.939982 0.940243 0.940504 0.940765
0.941024 0.941284 0.941542 0.9418 0.942058 0.942315 0.942572 0.942827
0.943083 0.943338 0.943592 0.943845 0.944099 0.944351 0.944603 0.944855
0.945106 0.945356 0.945606 0.945855 0.946104 0.946352 0.946599 0.946846
0.947093 0.947339 0.947584 0.947829 0.948073 0.948317 0.94856 0.948802
0.949044 0.949286 0.949527 0.949767 0.950007 0.950246 0.950485 0.950723
0.95096 0.951197 0.951433 0.951669 0.951905 0.952139 0.952373 0.952607
0.95284 0.953073 0.953305 0.953536 0.953767 0.953997 0.954227 0.954456
0.954684 0.954912 0.95514 0.955367 0.955593 0.955819 0.956044 0.956268
0.956492 0.956716 0.956939 0.957161 0.957383 0.957604 0.957825 0.958045
0.958265 0.958484 0.958702 0.95892 0.959137 0.959354 0.95957 0.959786
0.960001 0.960215 0.960429 0.960642 0.960855 0.961067 0.961279 0.96149
0.961701 0.961911 0.96212 0.962329 0.962537 0.962745 0.962952 0.963158
0.963364 0.96357 0.963775 0.963979 0.964183 0.964386 0.964588 0.96479
0.964992 0.965193 0.965393 0.965593 0.965792 0.965991 0.966189 0.966386
0.966583 0.966779 0.966975 0.96717 0.967365 0.967559 0.967753 0.967945
0.968138 0.96833 0.968521 0.968711 0.968902 0.969091 0.96928 0.969468
0.969656 0.969843 0.97003 0.970216 0.970402 0.970587 0.970771 0.970955
0.971138 0.971321 0.971503 0.971684 0.971865 0.972045 0.972225 0.972405
0.972583 0.972761 0.972939 0.973116 0.973292 0.973468 0.973643 0.973818
0.973992 0.974165 0.974338 0.974511 0.974682 0.974854 0.975024 0.975194
0.975364 0.975533 0.975701 0.975869 0.976036 0.976203 0.976369 0.976534
0.976699 0.976863 0.977027 0.97719 0.977353 0.977515 0.977676 0.977837
0.977997 0.978157 0.978316 0.978475 0.978633 0.97879 0.978947 0.979103
0.979259 0.979414 0.979569 0.979723 0.979876 0.980029 0.980181 0.980333
0.980484 0.980634 0.980784 0.980934 0.981082 0.981231 0.981378 0.981525
0.981672 0.981818 0.981963 0.982108 0.982252 0.982395 0.982538 0.982681
0.982823 0.982964 0.983105 0.983245 0.983384 0.983523 0.983661 0.983799
0.983936 0.984073 0.984209 0.984345 0.98448 0.984614 0.984748 0.984881
0.985013 0.985145 0.985277 0.985408 0.985538 0.985668 0.985797 0.985925
0.986053 0.98618 0.986307 0.986433 0.986559 0.986684 0.986809 0.986932
0.987056 0.987178 0.987301 0.987422 0.987543 0.987664 0.987783 0.987903
0.988021 0.988139 0.988257 0.988374 0.98849 0.988606 0.988721 0.988836
0.988949;
#A 8000 0.989063 0.989176 0.989288 0.9894 0.989511 0.989621 0.989731
0.989841 0.989949 0.990057 0.990165 0.990272 0.990378 0.990484 0.99059
0.990694 0.990798 0.990902 0.991005 0.991107 0.991209 0.99131 0.991411
0.991511 0.99161 0.991709 0.991807 0.991905 0.992002 0.992099 0.992195
0.99229 0.992385 0.992479 0.992572 0.992666 0.992758 0.99285 0.992941
0.993032 0.993122 0.993211 0.9933 0.993389 0.993476 0.993564 0.99365
0.993736 0.993822 0.993906 0.993991 0.994074 0.994157 0.99424 0.994322
0.994403 0.994484 0.994564 0.994644 0.994723 0.994801 0.994879 0.994956
0.995033 0.995109 0.995184 0.995259 0.995333 0.995407 0.99548 0.995553
0.995625 0.995696 0.995767 0.995837 0.995907 0.995976 0.996044 0.996112
0.996179 0.996246 0.996312 0.996378 0.996443 0.996507 0.996571 0.996634
0.996696 0.996758 0.99682 0.996881 0.996941 0.997001 0.99706 0.997118
0.997176 0.997233 0.99729 0.997346 0.997402 0.997457 0.997511 0.997565
0.997618 0.997671 0.997723 0.997774 0.997825 0.997875 0.997925 0.997974
0.998023 0.99807 0.998118 0.998165 0.998211 0.998256 0.998301 0.998346
0.998389 0.998433 0.998475 0.998517 0.998559 0.9986 0.99864 0.99868
0.998719 0.998757 0.998795 0.998833 0.998869 0.998905 0.998941 0.998976
0.99901 0.999044 0.999077 0.99911 0.999142 0.999174 0.999205 0.999235
0.999265 0.999294 0.999322 0.99935 0.999377 0.999404 0.99943 0.999456
0.999481 0.999505 0.999529 0.999552 0.999575 0.999597 0.999619 0.99964
0.99966 0.99968 0.999699 0.999717 0.999735 0.999753 0.999769 0.999785
0.999801 0.999816 0.99983 0.999844 0.999858 0.99987 0.999882 0.999894
0.999905 0.999915 0.999925 0.999934 0.999942 0.99995 0.999958 0.999964
0.999971 0.999976 0.999981 0.999986 0.999989 0.999993 0.999995 0.999997
0.999999 1 1 1;
#X coords 0 1 8195 -1 200 140 1;
#X restore 479 342 graph;
#X msg 232 60 \; wavetable4 cosinesum 8192 0 1;
#X obj 307 222 tabosc4~ wavetable4;
#X obj -7 107 tabosc4~ wavetable4;
#X obj -8 50 sig~ 100;
#X connect 5 0 7 0;
#X connect 6 0 5 1;
#X connect 6 0 22 1;
#X connect 6 0 21 1;
#X connect 8 0 9 0;
#X connect 9 0 10 0;
#X connect 10 0 6 0;
#X connect 11 0 20 0;
#X connect 12 0 5 0;
#X connect 12 0 21 0;
#X connect 21 0 18 0;
#X connect 22 0 12 0;
#X connect 23 0 22 0;
_______________________________________________
Pd-list@lists.iem.at mailing list
UNSUBSCRIBE and account-management -> 
http://lists.puredata.info/listinfo/pd-list

Reply via email to