File:Benthic do18 53-00 ma 1.svg

Original file(SVG file, nominally 1,440 × 720 pixels, file size: 76 KB)

Captions

Captions

Benthic delta-O18 curve, 5.5 - 0 million years ago

Summary edit

Description
English: Benthic delta-O18 curve, 5.5 - 0 million years ago
Date
Source Own work
Author Merikanto

Source of data is

Lisiecki, L. E., and M. E. Raymo (2005), A Pliocene-Pleistocene stack of 57 globally distributed benthic d18O records, Paleoceanography, 20, PA1003, doi:10.1029/2004PA001071.

https://lorraine-lisiecki.com/stack.html

https://lorraine-lisiecki.com/LR04stack.txt

    1. drawing climate diagram in python 3
    2. 21.6.2022 v. 0002.0012

import matplotlib.pyplot as plt import numpy as np import pandas as pd from scipy import interpolate from matplotlib.ticker import (MultipleLocator, AutoMinorLocator) import scipy.signal

datafilename="lisiecki2.csv" captioni="Benthic D-O18" savename="benthic_do18_53-00_ma 1.svg"

figsizex=16 figsizey=8

dfin0=pd.read_csv(datafilename, sep=";")

  1. dfin0=pd.read_csv(datafilename, sep=" ")
  1. quit(-1)

lst1=['timeka','deltao18','error']

dfin1 = dfin0[dfin0.columns.intersection(lst1)]

x0=dfin1['timeka'] y0=dfin1['deltao18']

x=np.array(x0).astype(float)/1000 y=np.array(y0).astype(float)

size0=16 size1=18 size2=20 size3=24

print (x)

print (y)

  1. quit(-1)
  1. y_savgol = scipy.signal.savgol_filter(y,31, 3)

y_savgol = scipy.signal.savgol_filter(y,31, 3)

  1. y_running = running_mean(y, 31)

x_sm = np.array(x) y_sm = np.array(y) x_smooth = np.linspace(x_sm.min(), x_sm.max(), 20000) funk1 = interpolate.interp1d(x_sm, y_sm, kind="cubic") y_smooth = funk1(x_smooth)

fig, ax1 = plt.subplots()

  1. ax1.axis((11600,14000,0,ymax1))
  2. ax1.set_xlim(2200,3600)
  3. ax1.set_xlim(0,2600)

ax1.set_xlim(0,5.3)

ax1.set_ylim(2.5,5.2)

  1. ax1.set_ylim(-35.0, -42.0)

plt.gca().invert_xaxis() plt.gca().invert_yaxis()

ax1.set_ylabel('delta-O18', color='#0000ff', fontsize=size2+2)

ax1.plot(x,y, color="#007f00", linewidth=5,label="Benthic delta-O18")

  1. ax1.plot(x_smooth,y_smooth, color="#0000ff", linewidth=3,label="NGRIP delta-O18")
  2. x1.plot(x,y_savgol, color="#b0FFb0", linewidth=3,linestyle="--", label="SavGol filter, 21 and 3")
  3. ax1.plot(x,y_running, color="#FF0000", linewidth=3)
  1. ax1.plot(x,data_avg1, color="#ff0000", linewidth=2, linestyle=":", label="Average of NGRIP, GISP, GISP2 delta-O18")

ax1.tick_params(axis='both', which='major', labelsize=size2)

ax1.xaxis.set_minor_locator(MultipleLocator(100)) ax1.xaxis.set_minor_locator(MultipleLocator(10))

ax1.yaxis.set_minor_locator(MultipleLocator(1.0)) ax1.yaxis.set_minor_locator(MultipleLocator(0.1))

ax1.grid(which='major', linestyle='-', linewidth='0.1', color='black') ax1.grid(which='minor', linestyle=':', linewidth='0.1', color='black')


ax1.set_xlabel('Age Ma BP', color="darkgreen", fontsize=size2)


ax1.set_title(captioni, fontsize=size3, color="#0000af")

plt.legend(fontsize=size0)

fig = plt.gcf() fig.set_size_inches(figsizex, figsizey, forward=True)

plt.savefig(savename, format="svg", dpi = 100)

plt.show()

Data

timeka;deltao18;error 0.0;3.23;0.03 1.0;3.23;0.04 2.0;3.18;0.03 3.0;3.29;0.03 4.0;3.30;0.03 5.0;3.26;0.03 6.0;3.33;0.04 7.0;3.37;0.04 8.0;3.42;0.03 9.0;3.38;0.04 10.0;3.52;0.04 11.0;3.60;0.04 12.0;3.92;0.05 13.0;4.06;0.04 14.0;4.28;0.03 15.0;4.49;0.04 16.0;4.75;0.03 17.0;4.88;0.04 18.0;5.02;0.03 19.0;4.96;0.03 20.0;4.99;0.04 21.0;4.91;0.03 22.0;4.88;0.03 23.0;4.86;0.03 24.0;4.81;0.04 25.0;4.82;0.02 26.0;4.67;0.04 27.0;4.75;0.04 28.0;4.75;0.03 29.0;4.73;0.03 30.0;4.62;0.04 31.0;4.62;0.03 32.0;4.60;0.03 33.0;4.58;0.03 34.0;4.59;0.03 35.0;4.54;0.02 36.0;4.45;0.03 37.0;4.46;0.03 38.0;4.41;0.03 39.0;4.55;0.03 40.0;4.55;0.03 41.0;4.51;0.05 42.0;4.50;0.03 43.0;4.46;0.04 44.0;4.48;0.03 45.0;4.33;0.04 46.0;4.36;0.05 47.0;4.38;0.04 48.0;4.45;0.04 49.0;4.46;0.03 50.0;4.34;0.04 51.0;4.33;0.05 52.0;4.31;0.04 53.0;4.44;0.03 54.0;4.38;0.04 55.0;4.31;0.03 56.0;4.35;0.04 57.0;4.43;0.04 58.0;4.49;0.06 59.0;4.43;0.04 60.0;4.60;0.04 61.0;4.51;0.05 62.0;4.60;0.04 63.0;4.53;0.04 64.0;4.36;0.06 65.0;4.48;0.05 66.0;4.57;0.04 67.0;4.44;0.05 68.0;4.42;0.06 69.0;4.47;0.05 70.0;4.32;0.04 71.0;4.22;0.05 72.0;4.21;0.04 73.0;4.23;0.04 74.0;4.03;0.04 75.0;3.95;0.04 76.0;4.06;0.04 77.0;4.08;0.05 78.0;4.05;0.03 79.0;4.05;0.05 80.0;3.90;0.04 81.0;3.82;0.04 82.0;3.80;0.04 83.0;3.83;0.04 84.0;3.82;0.04 85.0;3.95;0.06 86.0;4.06;0.05 87.0;4.18;0.05 88.0;4.11;0.05 89.0;4.08;0.04 90.0;4.06;0.05 91.0;4.03;0.04 92.0;3.98;0.04 93.0;3.90;0.03 94.0;3.84;0.04 95.0;3.77;0.05 96.0;3.75;0.03 97.0;3.83;0.04 98.0;3.90;0.04 99.0;3.78;0.06 100.0;3.81;0.06 101.0;3.92;0.05 102.0;3.86;0.05 103.0;3.88;0.04 104.0;3.92;0.05 105.0;3.85;0.06 106.0;4.00;0.04 107.0;4.04;0.05 108.0;4.11;0.04 109.0;4.12;0.05 110.0;4.04;0.05 111.0;4.02;0.05 112.0;4.03;0.04 113.0;3.93;0.05 114.0;3.81;0.05 115.0;3.71;0.04 116.0;3.58;0.04 117.0;3.54;0.05 118.0;3.44;0.06 119.0;3.30;0.03 120.0;3.27;0.04 121.0;3.26;0.04 122.0;3.18;0.03 123.0;3.10;0.05 124.0;3.27;0.04 125.0;3.14;0.06 126.0;3.16;0.04 127.0;3.37;0.05 128.0;3.71;0.07 129.0;3.90;0.08 130.0;3.67;0.09 131.0;3.81;0.09 132.0;4.20;0.06 133.0;4.41;0.05 134.0;4.70;0.05 135.0;4.86;0.04 136.0;4.82;0.05 137.0;4.80;0.05 138.0;4.89;0.04 139.0;4.87;0.05 140.0;4.98;0.05 141.0;4.81;0.05 142.0;4.75;0.06 143.0;4.78;0.05 144.0;4.82;0.05 145.0;4.74;0.05 146.0;4.77;0.05 147.0;4.82;0.05 148.0;4.71;0.05 149.0;4.75;0.04 150.0;4.75;0.06 151.0;4.66;0.06 152.0;4.64;0.05 153.0;4.62;0.04 154.0;4.66;0.04 155.0;4.51;0.04 156.0;4.78;0.04 157.0;4.74;0.04 158.0;4.69;0.03 159.0;4.66;0.05 160.0;4.69;0.05 161.0;4.65;0.04 162.0;4.66;0.05 163.0;4.70;0.06 164.0;4.68;0.05 165.0;4.68;0.05 166.0;4.48;0.04 167.0;4.41;0.06 168.0;4.48;0.04 169.0;4.50;0.04 170.0;4.50;0.03 171.0;4.53;0.04 172.0;4.46;0.03 173.0;4.38;0.03 174.0;4.28;0.04 175.0;4.32;0.05 176.0;4.39;0.04 177.0;4.46;0.04 178.0;4.44;0.03 179.0;4.48;0.05 180.0;4.39;0.06 181.0;4.46;0.03 182.0;4.48;0.05 183.0;4.37;0.04 184.0;4.40;0.06 185.0;4.59;0.06 186.0;4.47;0.04 187.0;4.40;0.05 188.0;4.46;0.05 189.0;4.39;0.04 190.0;4.28;0.05 191.0;4.13;0.05 192.0;3.76;0.05 193.0;3.92;0.05 194.0;3.84;0.07 195.0;3.91;0.05 196.0;3.82;0.04 197.0;3.74;0.06 198.0;3.82;0.04 199.0;3.57;0.05 200.0;3.53;0.07 201.0;3.53;0.03 202.0;3.63;0.06 203.0;3.61;0.07 204.0;3.78;0.05 205.0;3.82;0.06 206.0;3.77;0.07 207.0;3.78;0.08 208.0;3.71;0.07 209.0;3.64;0.06 210.0;3.57;0.07 211.0;3.60;0.06 212.0;3.61;0.06 213.0;3.65;0.06 214.0;3.56;0.07 215.0;3.54;0.05 216.0;3.53;0.04 217.0;3.48;0.09 218.0;3.72;0.05 219.0;3.94;0.05 220.0;3.98;0.06 221.0;4.23;0.06 222.0;4.38;0.09 223.0;4.44;0.07 224.0;4.39;0.07 225.0;4.28;0.06 226.0;4.29;0.05 227.0;4.19;0.05 228.0;4.19;0.12 229.0;4.02;0.08 230.0;4.30;0.06 231.0;4.22;0.07 232.0;4.17;0.07 233.0;3.97;0.06 234.0;3.84;0.05 235.0;3.71;0.06 236.0;3.66;0.05 237.0;3.47;0.04 238.0;3.51;0.06 239.0;3.44;0.04 240.0;3.44;0.06 241.0;3.54;0.08 242.0;3.68;0.06 243.0;3.78;0.08 244.0;4.05;0.06 245.0;4.17;0.06 246.0;4.38;0.05 247.0;4.31;0.04 248.0;4.38;0.07 249.0;4.36;0.05 250.0;4.50;0.05 251.0;4.58;0.04 252.0;4.63;0.04 253.0;4.52;0.06 254.0;4.57;0.04 255.0;4.37;0.05 256.0;4.43;0.06 257.0;4.55;0.05 258.0;4.51;0.05 259.0;4.52;0.04 260.0;4.46;0.06 261.0;4.52;0.03 262.0;4.45;0.05 263.0;4.46;0.05 264.0;4.42;0.04 265.0;4.44;0.05 266.0;4.50;0.05 267.0;4.50;0.05 268.0;4.33;0.06 269.0;4.52;0.06 270.0;4.51;0.06 271.0;4.50;0.05 272.0;4.44;0.06 273.0;4.44;0.03 274.0;4.38;0.04 275.0;4.38;0.05 276.0;4.30;0.06 277.0;4.44;0.05 278.0;4.31;0.05 279.0;4.23;0.07 280.0;4.14;0.05 281.0;4.21;0.04 282.0;3.98;0.05 283.0;3.87;0.06 284.0;3.86;0.04 285.0;3.84;0.04 286.0;3.82;0.05 287.0;3.89;0.04 288.0;4.02;0.06 289.0;4.06;0.05 290.0;4.10;0.06 291.0;4.11;0.04 292.0;4.27;0.07 293.0;4.22;0.06 294.0;4.33;0.05 295.0;4.31;0.03 296.0;4.23;0.04 297.0;4.30;0.06 298.0;4.17;0.04 299.0;4.23;0.04 300.0;4.02;0.07 301.0;4.06;0.07 302.0;4.06;0.07 303.0;4.00;0.06 304.0;4.07;0.04 305.0;4.07;0.07 306.0;4.05;0.06 307.0;4.00;0.04 308.0;3.85;0.04 309.0;3.86;0.06 310.0;3.80;0.06 311.0;3.70;0.04 312.0;3.79;0.05 313.0;3.69;0.06 314.0;3.77;0.06 315.0;3.62;0.06 316.0;3.69;0.07 317.0;3.89;0.05 318.0;3.76;0.04 319.0;3.58;0.05 320.0;3.66;0.05 321.0;3.53;0.05 322.0;3.53;0.05 323.0;3.47;0.05 324.0;3.21;0.05 325.0;3.31;0.04 326.0;3.23;0.04 327.0;3.22;0.04 328.0;3.23;0.05 329.0;3.19;0.04 330.0;3.30;0.04 331.0;3.29;0.06 332.0;3.39;0.08 333.0;3.38;0.07 334.0;3.51;0.08 335.0;3.75;0.08 336.0;4.08;0.08 337.0;4.23;0.08 338.0;4.17;0.07 339.0;4.42;0.07 340.0;4.60;0.06 341.0;4.84;0.06 342.0;4.83;0.05 343.0;4.80;0.07 344.0;4.76;0.07 345.0;4.79;0.05 346.0;4.68;0.06 347.0;4.53;0.07 348.0;4.49;0.10 349.0;4.62;0.04 350.0;4.67;0.05 351.0;4.64;0.05 352.0;4.47;0.09 353.0;4.47;0.05 354.0;4.40;0.06 355.0;4.59;0.04 356.0;4.46;0.07 357.0;4.55;0.07 358.0;4.58;0.04 359.0;4.49;0.08 360.0;4.54;0.04 361.0;4.50;0.06 362.0;4.50;0.04 363.0;4.53;0.05 364.0;4.36;0.04 365.0;4.46;0.05 366.0;4.32;0.06 367.0;4.37;0.04 368.0;4.40;0.05 369.0;4.38;0.04 370.0;4.36;0.05 371.0;4.27;0.05 372.0;4.42;0.04 373.0;4.29;0.07 374.0;4.34;0.06 375.0;4.20;0.05 376.0;4.21;0.05 377.0;4.20;0.04 378.0;4.19;0.03 379.0;4.17;0.05 380.0;4.19;0.05 381.0;4.15;0.03 382.0;4.05;0.06 383.0;4.12;0.03 384.0;4.08;0.05 385.0;4.14;0.03 386.0;4.02;0.07 387.0;3.99;0.04 388.0;3.92;0.04 389.0;3.89;0.04 390.0;3.96;0.06 391.0;4.00;0.05 392.0;3.97;0.03 393.0;3.86;0.05 394.0;3.92;0.05 395.0;3.76;0.05 396.0;3.72;0.04 397.0;3.47;0.09 398.0;3.54;0.04 399.0;3.48;0.06 400.0;3.32;0.04 401.0;3.20;0.05 402.0;3.17;0.05 403.0;3.15;0.04 404.0;3.20;0.05 405.0;3.11;0.04 406.0;3.19;0.04 407.0;3.21;0.05 408.0;3.17;0.06 409.0;3.22;0.06 410.0;3.15;0.06 411.0;3.29;0.05 412.0;3.31;0.04 413.0;3.38;0.03 414.0;3.41;0.04 415.0;3.41;0.05 416.0;3.51;0.06 417.0;3.57;0.05 418.0;3.75;0.05 419.0;3.81;0.03 420.0;3.77;0.06 421.0;3.85;0.07 422.0;3.94;0.05 423.0;4.02;0.07 424.0;3.92;0.07 425.0;4.30;0.14 426.0;4.50;0.07 427.0;4.30;0.10 428.0;4.72;0.06 429.0;4.91;0.07 430.0;4.98;0.07 431.0;5.05;0.05 432.0;5.05;0.08 433.0;5.08;0.05 434.0;5.08;0.05 435.0;5.02;0.10 436.0;5.07;0.04 437.0;4.90;0.08 438.0;4.79;0.10 439.0;4.87;0.06 440.0;4.76;0.09 441.0;4.95;0.07 442.0;4.96;0.05 443.0;4.91;0.04 444.0;4.82;0.07 445.0;4.91;0.05 446.0;4.82;0.05 447.0;4.51;0.08 448.0;4.77;0.06 449.0;4.73;0.06 450.0;4.75;0.06 451.0;4.58;0.06 452.0;4.73;0.05 453.0;4.56;0.09 454.0;4.60;0.04 455.0;4.41;0.09 456.0;4.62;0.05 457.0;4.63;0.08 458.0;4.55;0.05 459.0;4.63;0.06 460.0;4.56;0.07 461.0;4.59;0.04 462.0;4.61;0.05 463.0;4.61;0.05 464.0;4.44;0.05 465.0;4.57;0.04 466.0;4.46;0.03 467.0;4.44;0.06 468.0;4.38;0.04 469.0;4.51;0.04 470.0;4.33;0.05 471.0;4.25;0.07 472.0;4.32;0.05 473.0;4.36;0.05 474.0;4.39;0.06 475.0;4.35;0.03 476.0;4.30;0.05 477.0;4.27;0.03 478.0;4.22;0.04 479.0;4.12;0.04 480.0;4.12;0.04 481.0;4.17;0.05 482.0;4.01;0.03 483.0;3.97;0.03 484.0;3.79;0.05 485.0;3.81;0.07 486.0;3.76;0.05 487.0;3.72;0.06 488.0;3.67;0.04 489.0;3.60;0.04 490.0;3.54;0.06 491.0;3.47;0.07 492.0;3.63;0.05 493.0;3.72;0.04 494.0;3.83;0.07 495.0;3.83;0.07 496.0;3.83;0.05 497.0;3.68;0.06 498.0;3.82;0.04 499.0;3.75;0.06 500.0;3.84;0.04 501.0;3.78;0.05 502.0;3.75;0.06 503.0;3.81;0.04 504.0;3.91;0.05 505.0;3.86;0.07 506.0;4.01;0.04 507.0;3.93;0.07 508.0;4.16;0.09 509.0;4.06;0.04 510.0;4.14;0.05 511.0;4.06;0.06 512.0;4.22;0.07 513.0;4.25;0.03 514.0;4.10;0.05 515.0;4.10;0.06 516.0;4.01;0.05 517.0;3.96;0.08 518.0;4.07;0.06 519.0;3.96;0.05 520.0;3.95;0.05 521.0;3.91;0.08 522.0;3.88;0.04 523.0;3.93;0.05 524.0;3.83;0.06 525.0;3.92;0.06 526.0;3.97;0.09 527.0;3.96;0.07 528.0;3.92;0.08 529.0;3.99;0.05 530.0;3.97;0.08 531.0;3.92;0.07 532.0;4.01;0.07 533.0;4.11;0.07 534.0;4.27;0.06 535.0;4.29;0.07 536.0;4.55;0.06 537.0;4.43;0.06 538.0;4.54;0.05 539.0;4.48;0.08 540.0;4.53;0.06 541.0;4.50;0.06 542.0;4.45;0.05 543.0;4.45;0.09 544.0;4.46;0.08 545.0;4.43;0.05 546.0;4.51;0.07 547.0;4.53;0.07 548.0;4.55;0.04 549.0;4.53;0.05 550.0;4.50;0.06 551.0;4.45;0.07 552.0;4.52;0.06 553.0;4.46;0.05 554.0;4.29;0.08 555.0;4.25;0.05 556.0;4.39;0.06 557.0;4.35;0.04 558.0;4.25;0.05 559.0;4.17;0.05 560.0;4.14;0.03 561.0;4.21;0.05 562.0;4.14;0.08 563.0;4.17;0.06 564.0;4.01;0.05 565.0;3.96;0.03 566.0;3.86;0.06 567.0;3.94;0.04 568.0;4.00;0.04 569.0;3.97;0.07 570.0;3.91;0.04 571.0;3.89;0.06 572.0;3.59;0.05 573.0;3.65;0.05 574.0;3.73;0.07 575.0;3.39;0.06 576.0;3.46;0.05 577.0;3.48;0.04 578.0;3.50;0.07 579.0;3.57;0.06 580.0;3.69;0.05 581.0;4.00;0.06 582.0;4.13;0.14 583.0;4.29;0.10 584.0;4.31;0.10 585.0;4.33;0.07 586.0;4.18;0.08 587.0;4.11;0.13 588.0;4.19;0.04 589.0;4.07;0.08 590.0;4.09;0.05 591.0;4.07;0.04 592.0;4.02;0.08 593.0;3.99;0.09 594.0;3.90;0.06 595.0;3.88;0.08 596.0;3.89;0.08 597.0;3.80;0.07 598.0;3.99;0.05 599.0;4.02;0.07 600.0;4.07;0.00 602.0;3.97;0.05 604.0;3.77;0.06 606.0;3.80;0.07 608.0;3.80;0.05 610.0;3.49;0.04 612.0;3.52;0.06 614.0;3.53;0.05 616.0;3.66;0.05 618.0;3.81;0.08 620.0;4.09;0.09 622.0;4.31;0.08 624.0;4.63;0.07 626.0;4.90;0.06 628.0;5.01;0.07 630.0;5.08;0.06 632.0;5.05;0.05 634.0;4.93;0.06 636.0;5.00;0.04 638.0;4.80;0.05 640.0;5.01;0.06 642.0;4.75;0.05 644.0;4.68;0.08 646.0;4.72;0.05 648.0;4.75;0.05 650.0;4.71;0.06 652.0;4.79;0.05 654.0;4.77;0.05 656.0;4.57;0.05 658.0;4.58;0.04 660.0;4.64;0.05 662.0;4.80;0.07 664.0;4.58;0.04 666.0;4.50;0.05 668.0;4.65;0.04 670.0;4.42;0.05 672.0;4.52;0.06 674.0;4.46;0.04 676.0;4.40;0.05 678.0;4.26;0.05 680.0;4.14;0.06 682.0;4.15;0.06 684.0;4.03;0.07 686.0;4.13;0.05 688.0;3.95;0.06 690.0;3.70;0.05 692.0;3.71;0.06 694.0;3.64;0.06 696.0;3.50;0.04 698.0;3.57;0.04 700.0;3.65;0.05 702.0;3.76;0.05 704.0;3.84;0.05 706.0;3.93;0.05 708.0;4.03;0.07 710.0;3.98;0.07 712.0;4.06;0.09 714.0;4.29;0.06 716.0;4.61;0.08 718.0;4.75;0.07 720.0;4.66;0.09 722.0;4.65;0.06 724.0;4.44;0.06 726.0;4.32;0.05 728.0;4.16;0.05 730.0;4.16;0.04 732.0;4.02;0.07 734.0;4.15;0.04 736.0;4.19;0.06 738.0;4.21;0.06 740.0;4.11;0.08 742.0;4.17;0.05 744.0;4.48;0.06 746.0;4.67;0.11 748.0;4.59;0.06 750.0;4.60;0.07 752.0;4.48;0.05 754.0;4.55;0.06 756.0;4.59;0.06 758.0;4.26;0.06 760.0;4.33;0.05 762.0;4.11;0.06 764.0;4.28;0.06 766.0;4.11;0.06 768.0;4.07;0.05 770.0;3.99;0.05 772.0;3.87;0.05 774.0;3.76;0.05 776.0;3.64;0.05 778.0;3.56;0.04 780.0;3.48;0.05 782.0;3.54;0.05 784.0;3.55;0.07 786.0;3.68;0.05 788.0;3.70;0.10 790.0;4.16;0.06 792.0;4.27;0.06 794.0;4.74;0.09 796.0;4.67;0.07 798.0;4.68;0.08 800.0;4.68;0.07 802.0;4.73;0.06 804.0;4.55;0.07 806.0;4.53;0.04 808.0;4.49;0.06 810.0;4.31;0.05 812.0;4.38;0.06 814.0;4.12;0.05 816.0;4.08;0.08 818.0;3.90;0.07 820.0;3.96;0.06 822.0;3.90;0.05 824.0;3.92;0.08 826.0;4.11;0.06 828.0;3.95;0.06 830.0;4.04;0.05 832.0;4.07;0.05 834.0;3.95;0.06 836.0;3.82;0.04 838.0;3.99;0.06 840.0;4.02;0.07 842.0;3.81;0.05 844.0;3.67;0.05 846.0;3.58;0.04 848.0;3.63;0.07 850.0;3.50;0.04 852.0;3.65;0.05 854.0;3.63;0.05 856.0;3.46;0.05 858.0;3.42;0.05 860.0;3.45;0.07 862.0;3.68;0.09 864.0;3.58;0.06 866.0;4.06;0.07 868.0;4.32;0.06 870.0;4.51;0.07 872.0;4.67;0.06 874.0;4.68;0.07 876.0;4.69;0.08 878.0;4.59;0.08 880.0;4.68;0.04 882.0;4.42;0.07 884.0;4.47;0.05 886.0;4.47;0.07 888.0;4.45;0.04 890.0;4.39;0.06 892.0;4.32;0.07 894.0;4.41;0.07 896.0;4.40;0.05 898.0;4.33;0.04 900.0;4.29;0.05 902.0;4.17;0.04 904.0;4.14;0.06 906.0;4.12;0.04 908.0;3.99;0.06 910.0;3.99;0.05 912.0;4.09;0.04 914.0;4.03;0.05 916.0;4.06;0.06 918.0;4.37;0.06 920.0;4.51;0.06 922.0;4.55;0.06 924.0;4.43;0.06 926.0;4.38;0.04 928.0;4.26;0.05 930.0;4.10;0.05 932.0;4.07;0.05 934.0;3.98;0.06 936.0;4.02;0.05 938.0;3.86;0.04 940.0;3.89;0.04 942.0;3.69;0.04 944.0;3.57;0.04 946.0;3.63;0.06 948.0;3.48;0.05 950.0;3.44;0.04 952.0;3.30;0.04 954.0;3.39;0.07 956.0;3.33;0.05 958.0;3.73;0.08 960.0;4.16;0.08 962.0;4.42;0.06 964.0;4.58;0.08 966.0;4.30;0.05 968.0;4.21;0.06 970.0;4.09;0.05 972.0;3.98;0.06 974.0;3.87;0.05 976.0;3.77;0.06 978.0;3.72;0.05 980.0;3.76;0.06 982.0;3.99;0.07 984.0;4.15;0.06 986.0;4.24;0.07 988.0;4.21;0.07 990.0;4.11;0.05 992.0;4.06;0.06 994.0;3.94;0.05 996.0;3.84;0.06 998.0;3.84;0.04 1000.0;3.94;0.06 1002.0;4.15;0.07 1004.0;4.28;0.08 1006.0;4.22;0.07 1008.0;4.22;0.05 1010.0;4.12;0.06 1012.0;4.13;0.07 1014.0;3.99;0.06 1016.0;3.73;0.05 1018.0;3.78;0.04 1020.0;3.83;0.05 1022.0;3.57;0.08 1024.0;3.64;0.05 1026.0;3.87;0.06 1028.0;3.84;0.06 1030.0;3.95;0.08 1032.0;4.08;0.04 1034.0;4.36;0.05 1036.0;4.33;0.07 1038.0;4.54;0.09 1040.0;4.33;0.08 1042.0;4.23;0.09 1044.0;4.38;0.06 1046.0;4.22;0.06 1048.0;4.29;0.07 1050.0;4.18;0.05 1052.0;4.27;0.06 1054.0;4.25;0.06 1056.0;4.12;0.06 1058.0;4.23;0.06 1060.0;4.08;0.04 1062.0;3.94;0.06 1064.0;3.66;0.07 1066.0;3.48;0.05 1068.0;3.33;0.05 1070.0;3.34;0.05 1072.0;3.21;0.08 1074.0;3.42;0.06 1076.0;3.48;0.06 1078.0;3.54;0.04 1080.0;3.61;0.04 1082.0;3.81;0.06 1084.0;3.70;0.07 1086.0;3.89;0.04 1088.0;3.91;0.05 1090.0;3.95;0.05 1092.0;4.01;0.04 1094.0;4.00;0.06 1096.0;4.03;0.04 1098.0;4.29;0.05 1100.0;4.08;0.07 1102.0;4.03;0.06 1104.0;3.93;0.06 1106.0;3.83;0.05 1108.0;3.67;0.06 1110.0;3.85;0.06 1112.0;3.84;0.05 1114.0;4.12;0.05 1116.0;4.14;0.05 1118.0;4.20;0.05 1120.0;4.09;0.08 1122.0;4.47;0.06 1124.0;4.34;0.09 1126.0;4.50;0.03 1128.0;4.38;0.06 1130.0;4.32;0.08 1132.0;4.05;0.07 1134.0;4.22;0.06 1136.0;4.24;0.05 1138.0;4.02;0.04 1140.0;4.02;0.06 1142.0;3.97;0.06 1144.0;3.99;0.05 1146.0;3.86;0.04 1148.0;4.02;0.06 1150.0;3.82;0.05 1152.0;3.75;0.05 1154.0;3.76;0.04 1156.0;3.79;0.04 1158.0;3.68;0.05 1160.0;3.60;0.06 1162.0;3.60;0.05 1164.0;3.66;0.06 1166.0;3.53;0.05 1168.0;3.56;0.05 1170.0;3.60;0.07 1172.0;3.73;0.05 1174.0;3.76;0.06 1176.0;3.74;0.06 1178.0;3.80;0.04 1180.0;3.60;0.06 1182.0;3.84;0.04 1184.0;3.65;0.05 1186.0;3.77;0.05 1188.0;3.67;0.08 1190.0;4.05;0.03 1192.0;4.14;0.08 1194.0;4.27;0.06 1196.0;4.28;0.07 1198.0;4.43;0.06 1200.0;4.42;0.06 1202.0;4.20;0.09 1204.0;4.34;0.06 1206.0;4.16;0.07 1208.0;4.32;0.06 1210.0;4.20;0.07 1212.0;4.08;0.07 1214.0;4.10;0.06 1216.0;3.82;0.09 1218.0;3.73;0.11 1220.0;3.97;0.07 1222.0;3.94;0.07 1224.0;3.74;0.06 1226.0;3.63;0.09 1228.0;3.55;0.08 1230.0;3.42;0.06 1232.0;3.41;0.05 1234.0;3.34;0.10 1236.0;3.38;0.07 1238.0;3.35;0.07 1240.0;3.33;0.05 1242.0;3.47;0.10 1244.0;3.85;0.07 1246.0;4.10;0.07 1248.0;4.36;0.03 1250.0;4.31;0.06 1252.0;4.25;0.05 1254.0;4.27;0.05 1256.0;4.11;0.05 1258.0;3.90;0.08 1260.0;3.87;0.05 1262.0;4.07;0.07 1264.0;3.96;0.07 1266.0;3.91;0.07 1268.0;3.91;0.08 1270.0;3.84;0.07 1272.0;3.81;0.07 1274.0;3.84;0.05 1276.0;3.71;0.07 1278.0;3.67;0.04 1280.0;3.56;0.05 1282.0;3.65;0.05 1284.0;3.84;0.04 1286.0;3.97;0.04 1288.0;4.26;0.05 1290.0;4.35;0.05 1292.0;4.14;0.07 1294.0;3.94;0.08 1296.0;4.20;0.03 1298.0;4.15;0.05 1300.0;4.07;0.03 1302.0;4.06;0.06 1304.0;3.97;0.04 1306.0;3.90;0.08 1308.0;3.80;0.04 1310.0;3.65;0.06 1312.0;3.69;0.03 1314.0;3.71;0.05 1316.0;3.59;0.05 1318.0;3.73;0.06 1320.0;3.95;0.03 1322.0;3.94;0.05 1324.0;3.99;0.06 1326.0;4.00;0.06 1328.0;4.09;0.07 1330.0;4.06;0.07 1332.0;4.02;0.07 1334.0;4.19;0.07 1336.0;4.19;0.05 1338.0;4.10;0.08 1340.0;4.19;0.05 1342.0;4.07;0.07 1344.0;3.88;0.08 1346.0;3.86;0.07 1348.0;3.67;0.08 1350.0;3.59;0.06 1352.0;3.49;0.06 1354.0;3.41;0.06 1356.0;3.50;0.05 1358.0;3.55;0.05 1360.0;3.63;0.07 1362.0;3.80;0.06 1364.0;3.98;0.08 1366.0;3.99;0.07 1368.0;4.20;0.04 1370.0;4.04;0.06 1372.0;4.26;0.04 1374.0;4.21;0.05 1376.0;4.08;0.06 1378.0;4.20;0.08 1380.0;4.05;0.06 1382.0;3.96;0.06 1384.0;3.82;0.05 1386.0;3.72;0.08 1388.0;3.61;0.07 1390.0;3.73;0.06 1392.0;3.59;0.04 1394.0;3.70;0.11 1396.0;3.54;0.04 1398.0;3.49;0.05 1400.0;3.56;0.08 1402.0;3.63;0.05 1404.0;3.74;0.08 1406.0;3.97;0.06 1408.0;3.97;0.12 1410.0;4.20;0.07 1412.0;4.40;0.08 1414.0;4.22;0.08 1416.0;3.96;0.12 1418.0;3.84;0.07 1420.0;3.96;0.06 1422.0;3.83;0.09 1424.0;3.72;0.07 1426.0;3.72;0.06 1428.0;3.61;0.06 1430.0;3.52;0.05 1432.0;3.38;0.05 1434.0;3.38;0.06 1436.0;3.24;0.09 1438.0;3.24;0.07 1440.0;3.28;0.07 1442.0;3.34;0.04 1444.0;3.33;0.05 1446.0;3.36;0.05 1448.0;3.35;0.06 1450.0;3.49;0.06 1452.0;3.80;0.13 1454.0;4.20;0.13 1456.0;4.31;0.07 1458.0;4.24;0.06 1460.0;4.10;0.08 1462.0;4.07;0.06 1464.0;4.22;0.09 1466.0;3.99;0.09 1468.0;3.87;0.13 1470.0;3.62;0.07 1472.0;3.45;0.07 1474.0;3.38;0.08 1476.0;3.31;0.08 1478.0;3.42;0.07 1480.0;3.39;0.08 1482.0;3.44;0.07 1484.0;3.57;0.10 1486.0;3.42;0.05 1488.0;3.42;0.05 1490.0;3.51;0.05 1492.0;3.77;0.10 1494.0;4.05;0.09 1496.0;4.36;0.05 1498.0;4.24;0.07 1500.0;4.21;0.00 1502.5;4.29;0.06 1505.0;4.16;0.10 1507.5;4.15;0.06 1510.0;4.02;0.06 1512.5;3.74;0.08 1515.0;3.69;0.08 1517.5;3.79;0.11 1520.0;3.64;0.07 1522.5;3.67;0.05 1525.0;3.70;0.07 1527.5;3.89;0.08 1530.0;3.96;0.07 1532.5;4.20;0.11 1535.0;4.41;0.09 1537.5;4.35;0.07 1540.0;4.38;0.07 1542.5;4.30;0.06 1545.0;4.07;0.06 1547.5;3.97;0.05 1550.0;3.82;0.08 1552.5;3.68;0.07 1555.0;3.72;0.08 1557.5;3.79;0.06 1560.0;3.76;0.05 1562.5;3.58;0.06 1565.0;3.56;0.05 1567.5;3.73;0.05 1570.0;3.85;0.07 1572.5;4.17;0.05 1575.0;4.24;0.06 1577.5;4.18;0.07 1580.0;3.99;0.07 1582.5;3.99;0.07 1585.0;3.80;0.10 1587.5;3.66;0.07 1590.0;3.72;0.04 1592.5;3.86;0.07 1595.0;3.71;0.05 1597.5;3.61;0.04 1600.0;3.53;0.06 1602.5;3.37;0.04 1605.0;3.55;0.05 1607.5;3.66;0.08 1610.0;3.66;0.07 1612.5;3.88;0.05 1615.0;3.84;0.06 1617.5;3.90;0.05 1620.0;3.65;0.05 1622.5;3.68;0.05 1625.0;3.76;0.04 1627.5;4.01;0.07 1630.0;3.55;0.06 1632.5;3.57;0.07 1635.0;3.56;0.07 1637.5;3.60;0.08 1640.0;3.68;0.08 1642.5;3.88;0.06 1645.0;4.05;0.07 1647.5;4.17;0.08 1650.0;4.18;0.06 1652.5;4.25;0.06 1655.0;4.28;0.06 1657.5;4.11;0.06 1660.0;4.13;0.06 1662.5;4.08;0.07 1665.0;4.13;0.06 1667.5;3.91;0.06 1670.0;3.88;0.08 1672.5;3.86;0.06 1675.0;3.55;0.08 1677.5;3.72;0.05 1680.0;3.65;0.06 1682.5;3.57;0.07 1685.0;3.59;0.05 1687.5;3.74;0.05 1690.0;3.72;0.06 1692.5;3.75;0.06 1695.0;3.82;0.05 1697.5;3.77;0.09 1700.0;4.09;0.06 1702.5;4.15;0.06 1705.0;4.12;0.07 1707.5;4.17;0.06 1710.0;3.93;0.06 1712.5;3.86;0.07 1715.0;3.83;0.06 1717.5;3.57;0.06 1720.0;3.52;0.06 1722.5;3.72;0.07 1725.0;3.79;0.07 1727.5;3.80;0.07 1730.0;3.74;0.10 1732.5;3.86;0.08 1735.0;3.60;0.07 1737.5;3.60;0.06 1740.0;3.71;0.08 1742.5;3.69;0.10 1745.0;4.13;0.07 1747.5;4.21;0.08 1750.0;4.16;0.05 1752.5;3.85;0.07 1755.0;3.74;0.04 1757.5;3.83;0.08 1760.0;3.53;0.09 1762.5;3.63;0.08 1765.0;3.49;0.08 1767.5;3.52;0.08 1770.0;3.48;0.06 1772.5;3.38;0.08 1775.0;3.53;0.06 1777.5;3.57;0.05 1780.0;3.65;0.06 1782.5;3.80;0.09 1785.0;3.77;0.07 1787.5;3.85;0.07 1790.0;3.99;0.08 1792.5;4.06;0.06 1795.0;4.09;0.05 1797.5;3.89;0.10 1800.0;3.95;0.04 1802.5;3.80;0.05 1805.0;3.68;0.04 1807.5;3.66;0.07 1810.0;3.52;0.06 1812.5;3.68;0.06 1815.0;3.61;0.06 1817.5;3.98;0.06 1820.0;3.82;0.08 1822.5;3.73;0.08 1825.0;3.72;0.07 1827.5;3.65;0.04 1830.0;3.42;0.08 1832.5;3.63;0.07 1835.0;3.68;0.07 1837.5;3.57;0.06 1840.0;3.57;0.06 1842.5;3.57;0.10 1845.0;3.61;0.10 1847.5;3.80;0.08 1850.0;3.62;0.11 1852.5;3.61;0.06 1855.0;3.56;0.07 1857.5;3.64;0.07 1860.0;3.89;0.05 1862.5;4.19;0.06 1865.0;4.16;0.07 1867.5;3.97;0.06 1870.0;3.95;0.11 1872.5;3.83;0.09 1875.0;3.84;0.07 1877.5;3.73;0.11 1880.0;3.77;0.09 1882.5;3.69;0.06 1885.0;3.75;0.05 1887.5;3.59;0.06 1890.0;3.68;0.06 1892.5;3.61;0.05 1895.0;3.74;0.07 1897.5;3.69;0.08 1900.0;4.02;0.05 1902.5;3.93;0.12 1905.0;4.01;0.06 1907.5;3.83;0.09 1910.0;3.81;0.11 1912.5;3.81;0.07 1915.0;3.70;0.06 1917.5;3.64;0.07 1920.0;3.70;0.06 1922.5;3.65;0.08 1925.0;3.50;0.07 1927.5;3.48;0.09 1930.0;3.51;0.08 1932.5;3.45;0.09 1935.0;3.52;0.05 1937.5;3.58;0.09 1940.0;3.51;0.08 1942.5;4.02;0.05 1945.0;4.03;0.10 1947.5;4.17;0.07 1950.0;4.10;0.07 1952.5;4.02;0.06 1955.0;3.89;0.07 1957.5;3.77;0.11 1960.0;3.86;0.09 1962.5;3.90;0.05 1965.0;3.74;0.07 1967.5;3.61;0.10 1970.0;3.75;0.07 1972.5;3.50;0.07 1975.0;3.55;0.06 1977.5;3.45;0.04 1980.0;3.33;0.04 1982.5;3.38;0.07 1985.0;3.36;0.07 1987.5;3.52;0.07 1990.0;3.65;0.08 1992.5;3.68;0.10 1995.0;3.58;0.09 1997.5;3.69;0.08 2000.0;3.85;0.06 2002.5;3.81;0.09 2005.0;3.92;0.07 2007.5;3.89;0.07 2010.0;3.55;0.06 2012.5;3.63;0.09 2015.0;3.81;0.08 2017.5;3.54;0.07 2020.0;3.57;0.07 2022.5;3.46;0.08 2025.0;3.24;0.07 2027.5;3.44;0.07 2030.0;3.34;0.08 2032.5;3.36;0.06 2035.0;3.56;0.05 2037.5;3.63;0.07 2040.0;3.67;0.06 2042.5;3.62;0.07 2045.0;3.92;0.07 2047.5;3.78;0.07 2050.0;3.71;0.08 2052.5;3.62;0.09 2055.0;3.60;0.06 2057.5;3.72;0.08 2060.0;3.74;0.08 2062.5;3.88;0.05 2065.0;4.18;0.07 2067.5;4.18;0.06 2070.0;4.21;0.07 2072.5;4.28;0.05 2075.0;4.16;0.06 2077.5;4.15;0.05 2080.0;3.96;0.06 2082.5;3.99;0.09 2085.0;3.85;0.07 2087.5;3.88;0.08 2090.0;3.70;0.07 2092.5;3.63;0.06 2095.0;3.49;0.07 2097.5;3.46;0.07 2100.0;3.44;0.10 2102.5;3.55;0.07 2105.0;3.66;0.07 2107.5;3.63;0.08 2110.0;3.51;0.06 2112.5;3.50;0.06 2115.0;3.50;0.10 2117.5;3.72;0.08 2120.0;3.68;0.10 2122.5;3.68;0.08 2125.0;3.50;0.10 2127.5;3.47;0.09 2130.0;3.32;0.09 2132.5;3.29;0.07 2135.0;3.29;0.12 2137.5;3.34;0.10 2140.0;3.23;0.07 2142.5;3.44;0.07 2145.0;3.60;0.07 2147.5;4.00;0.06 2150.0;4.15;0.06 2152.5;4.22;0.07 2155.0;4.23;0.06 2157.5;4.10;0.05 2160.0;4.15;0.06 2162.5;3.94;0.07 2165.0;3.88;0.04 2167.5;3.77;0.06 2170.0;3.69;0.03 2172.5;3.67;0.07 2175.0;3.56;0.06 2177.5;3.50;0.05 2180.0;3.36;0.08 2182.5;3.41;0.08 2185.0;3.42;0.04 2187.5;3.38;0.09 2190.0;3.56;0.05 2192.5;3.68;0.05 2195.0;3.77;0.07 2197.5;3.83;0.05 2200.0;3.86;0.07 2202.5;3.83;0.06 2205.0;3.74;0.05 2207.5;3.60;0.06 2210.0;3.59;0.05 2212.5;3.46;0.06 2215.0;3.59;0.06 2217.5;3.61;0.06 2220.0;3.57;0.05 2222.5;3.49;0.04 2225.0;3.39;0.04 2227.5;3.42;0.04 2230.0;3.46;0.06 2232.5;3.49;0.06 2235.0;3.56;0.07 2237.5;3.80;0.05 2240.0;4.01;0.07 2242.5;3.87;0.06 2245.0;3.80;0.06 2247.5;3.72;0.05 2250.0;3.61;0.06 2252.5;3.45;0.09 2255.0;3.39;0.06 2257.5;3.32;0.07 2260.0;3.21;0.08 2262.5;3.30;0.06 2265.0;3.45;0.10 2267.5;3.37;0.12 2270.0;3.48;0.06 2272.5;3.50;0.05 2275.0;3.87;0.07 2277.5;3.80;0.05 2280.0;3.84;0.04 2282.5;3.91;0.09 2285.0;3.80;0.05 2287.5;3.69;0.08 2290.0;3.68;0.05 2292.5;3.46;0.08 2295.0;3.45;0.06 2297.5;3.27;0.07 2300.0;3.28;0.11 2302.5;3.36;0.07 2305.0;3.35;0.06 2307.5;3.43;0.08 2310.0;3.61;0.04 2312.5;3.70;0.06 2315.0;3.74;0.08 2317.5;3.75;0.07 2320.0;3.76;0.04 2322.5;3.60;0.08 2325.0;3.52;0.04 2327.5;3.64;0.06 2330.0;3.64;0.07 2332.5;3.52;0.08 2335.0;3.39;0.07 2337.5;3.29;0.06 2340.0;3.20;0.09 2342.5;3.33;0.07 2345.0;3.37;0.06 2347.5;3.25;0.07 2350.0;3.58;0.06 2352.5;3.72;0.05 2355.0;3.80;0.05 2357.5;3.96;0.06 2360.0;3.92;0.03 2362.5;3.76;0.05 2365.0;3.87;0.04 2367.5;3.63;0.07 2370.0;3.72;0.05 2372.5;3.63;0.07 2375.0;3.39;0.07 2377.5;3.38;0.06 2380.0;3.37;0.05 2382.5;3.24;0.10 2385.0;3.33;0.07 2387.5;3.48;0.06 2390.0;3.54;0.08 2392.5;3.60;0.08 2395.0;3.41;0.09 2397.5;3.46;0.07 2400.0;3.48;0.09 2402.5;3.67;0.07 2405.0;3.69;0.07 2407.5;3.41;0.07 2410.0;3.29;0.08 2412.5;3.37;0.06 2415.0;3.37;0.06 2417.5;3.33;0.06 2420.0;3.35;0.07 2422.5;3.53;0.06 2425.0;3.49;0.08 2427.5;3.66;0.05 2430.0;3.93;0.06 2432.5;4.17;0.06 2435.0;4.09;0.06 2437.5;4.14;0.05 2440.0;4.01;0.04 2442.5;4.00;0.07 2445.0;3.95;0.07 2447.5;3.91;0.06 2450.0;3.73;0.06 2452.5;3.69;0.05 2455.0;3.45;0.05 2457.5;3.39;0.05 2460.0;3.39;0.06 2462.5;3.21;0.07 2465.0;3.25;0.06 2467.5;3.31;0.06 2470.0;3.32;0.06 2472.5;3.43;0.07 2475.0;3.57;0.08 2477.5;3.70;0.07 2480.0;3.70;0.05 2482.5;3.96;0.05 2485.0;3.99;0.10 2487.5;4.16;0.06 2490.0;3.83;0.08 2492.5;3.65;0.09 2495.0;3.62;0.05 2497.5;3.43;0.06 2500.0;3.18;0.08 2502.5;3.35;0.05 2505.0;3.48;0.05 2507.5;3.42;0.06 2510.0;3.65;0.05 2512.5;3.76;0.09 2515.0;3.89;0.07 2517.5;4.12;0.07 2520.0;4.13;0.07 2522.5;4.06;0.06 2525.0;4.13;0.03 2527.5;4.03;0.04 2530.0;3.89;0.06 2532.5;3.93;0.04 2535.0;3.73;0.09 2537.5;3.74;0.05 2540.0;3.63;0.07 2542.5;3.35;0.08 2545.0;3.27;0.06 2547.5;3.18;0.07 2550.0;3.21;0.06 2552.5;3.28;0.08 2555.0;3.43;0.06 2557.5;3.39;0.07 2560.0;3.37;0.06 2562.5;3.38;0.07 2565.0;3.63;0.05 2567.5;3.53;0.06 2570.0;3.47;0.05 2572.5;3.47;0.06 2575.0;3.41;0.07 2577.5;3.32;0.06 2580.0;3.23;0.05 2582.5;3.26;0.05 2585.0;3.16;0.08 2587.5;3.27;0.07 2590.0;3.43;0.06 2592.5;3.45;0.07 2595.0;3.47;0.05 2597.5;3.74;0.05 2600.0;3.90;0.05 2602.5;3.86;0.06 2605.0;3.81;0.06 2607.5;3.85;0.05 2610.0;3.62;0.07 2612.5;3.64;0.05 2615.0;3.44;0.08 2617.5;3.45;0.07 2620.0;3.27;0.05 2622.5;3.24;0.05 2625.0;3.31;0.08 2627.5;3.26;0.08 2630.0;3.23;0.06 2632.5;3.44;0.05 2635.0;3.45;0.07 2637.5;3.48;0.06 2640.0;3.66;0.04 2642.5;3.72;0.05 2645.0;3.84;0.06 2647.5;3.69;0.05 2650.0;3.51;0.09 2652.5;3.41;0.06 2655.0;3.35;0.07 2657.5;3.14;0.09 2660.0;3.23;0.08 2662.5;3.05;0.08 2665.0;3.25;0.05 2667.5;3.24;0.09 2670.0;3.19;0.06 2672.5;3.20;0.07 2675.0;3.22;0.08 2677.5;3.36;0.07 2680.0;3.37;0.07 2682.5;3.54;0.08 2685.0;3.68;0.06 2687.5;3.75;0.03 2690.0;3.61;0.06 2692.5;3.53;0.06 2695.0;3.61;0.08 2697.5;3.57;0.07 2700.0;3.61;0.05 2702.5;3.48;0.07 2705.0;3.79;0.04 2707.5;3.76;0.07 2710.0;3.70;0.05 2712.5;3.76;0.06 2715.0;3.87;0.04 2717.5;3.80;0.05 2720.0;3.80;0.06 2722.5;3.77;0.06 2725.0;3.66;0.08 2727.5;3.61;0.07 2730.0;3.47;0.05 2732.5;3.39;0.05 2735.0;3.27;0.06 2737.5;3.12;0.04 2740.0;3.18;0.05 2742.5;3.04;0.06 2745.0;3.15;0.05 2747.5;3.09;0.04 2750.0;3.13;0.05 2752.5;3.21;0.04 2755.0;3.19;0.05 2757.5;3.16;0.05 2760.0;3.27;0.05 2762.5;3.24;0.04 2765.0;3.24;0.05 2767.5;3.15;0.05 2770.0;3.13;0.04 2772.5;3.28;0.05 2775.0;3.31;0.04 2777.5;3.23;0.05 2780.0;3.18;0.05 2782.5;3.16;0.05 2785.0;3.19;0.05 2787.5;3.24;0.06 2790.0;3.21;0.06 2792.5;3.26;0.05 2795.0;3.41;0.07 2797.5;3.40;0.05 2800.0;3.50;0.06 2802.5;3.74;0.05 2805.0;3.78;0.05 2807.5;3.73;0.06 2810.0;3.65;0.07 2812.5;3.66;0.05 2815.0;3.63;0.05 2817.5;3.45;0.05 2820.0;3.38;0.06 2822.5;3.26;0.05 2825.0;3.15;0.08 2827.5;3.12;0.06 2830.0;3.16;0.06 2832.5;3.11;0.04 2835.0;3.17;0.08 2837.5;3.27;0.08 2840.0;3.34;0.05 2842.5;3.42;0.06 2845.0;3.38;0.07 2847.5;3.50;0.07 2850.0;3.40;0.06 2852.5;3.42;0.05 2855.0;3.44;0.06 2857.5;3.33;0.06 2860.0;3.19;0.08 2862.5;3.25;0.06 2865.0;3.37;0.05 2867.5;3.31;0.06 2870.0;3.30;0.09 2872.5;3.23;0.06 2875.0;3.23;0.05 2877.5;3.47;0.06 2880.0;3.48;0.06 2882.5;3.45;0.04 2885.0;3.50;0.08 2887.5;3.46;0.06 2890.0;3.49;0.04 2892.5;3.34;0.07 2895.0;3.29;0.05 2897.5;3.14;0.05 2900.0;3.22;0.06 2902.5;3.21;0.07 2905.0;3.32;0.05 2907.5;3.28;0.08 2910.0;3.27;0.04 2912.5;3.30;0.05 2915.0;3.49;0.08 2917.5;3.41;0.05 2920.0;3.51;0.05 2922.5;3.50;0.06 2925.0;3.50;0.04 2927.5;3.33;0.09 2930.0;3.43;0.10 2932.5;3.51;0.07 2935.0;3.31;0.06 2937.5;3.18;0.06 2940.0;3.09;0.08 2942.5;2.95;0.07 2945.0;2.95;0.04 2947.5;3.06;0.06 2950.0;2.93;0.06 2952.5;2.92;0.07 2955.0;3.16;0.05 2957.5;3.23;0.06 2960.0;3.08;0.08 2962.5;3.18;0.06 2965.0;3.16;0.05 2967.5;3.35;0.06 2970.0;3.30;0.06 2972.5;3.33;0.04 2975.0;3.48;0.06 2977.5;3.43;0.04 2980.0;3.45;0.07 2982.5;3.26;0.06 2985.0;3.07;0.06 2987.5;3.15;0.06 2990.0;3.18;0.07 2992.5;3.21;0.04 2995.0;3.20;0.07 2997.5;3.22;0.06 3000.0;3.36;0.00 3005.0;3.44;0.04 3010.0;3.46;0.04 3015.0;3.52;0.04 3020.0;3.49;0.04 3025.0;3.32;0.04 3030.0;3.13;0.04 3035.0;3.09;0.06 3040.0;3.23;0.05 3045.0;3.31;0.04 3050.0;3.33;0.06 3055.0;3.14;0.04 3060.0;2.95;0.06 3065.0;3.05;0.06 3070.0;3.09;0.06 3075.0;3.10;0.04 3080.0;3.09;0.05 3085.0;2.94;0.06 3090.0;3.18;0.05 3095.0;3.18;0.05 3100.0;3.08;0.05 3105.0;3.06;0.06 3110.0;3.13;0.04 3115.0;3.22;0.04 3120.0;3.26;0.03 3125.0;3.34;0.04 3130.0;3.38;0.03 3135.0;3.45;0.05 3140.0;3.38;0.05 3145.0;3.35;0.05 3150.0;3.16;0.05 3155.0;2.95;0.04 3160.0;3.01;0.05 3165.0;3.04;0.05 3170.0;3.14;0.04 3175.0;3.19;0.04 3180.0;3.16;0.05 3185.0;3.08;0.05 3190.0;2.95;0.05 3195.0;3.09;0.04 3200.0;3.02;0.07 3205.0;3.00;0.05 3210.0;3.02;0.05 3215.0;3.20;0.04 3220.0;3.13;0.04 3225.0;3.21;0.04 3230.0;3.13;0.03 3235.0;3.24;0.05 3240.0;3.04;0.05 3245.0;3.04;0.06 3250.0;3.03;0.04 3255.0;3.17;0.04 3260.0;3.16;0.04 3265.0;3.32;0.05 3270.0;3.27;0.05 3275.0;3.33;0.05 3280.0;3.26;0.04 3285.0;3.40;0.04 3290.0;3.65;0.04 3295.0;3.74;0.04 3300.0;3.71;0.03 3305.0;3.42;0.04 3310.0;3.37;0.05 3315.0;3.22;0.05 3320.0;3.10;0.04 3325.0;3.20;0.05 3330.0;3.21;0.05 3335.0;3.25;0.04 3340.0;3.41;0.04 3345.0;3.31;0.04 3350.0;3.18;0.04 3355.0;3.22;0.05 3360.0;3.17;0.04 3365.0;3.11;0.03 3370.0;3.15;0.04 3375.0;3.35;0.03 3380.0;3.35;0.03 3385.0;3.25;0.04 3390.0;3.16;0.05 3395.0;3.08;0.04 3400.0;3.13;0.04 3405.0;3.14;0.04 3410.0;3.08;0.05 3415.0;2.99;0.05 3420.0;3.10;0.05 3425.0;3.20;0.05 3430.0;3.11;0.04 3435.0;2.90;0.04 3440.0;2.90;0.03 3445.0;3.04;0.03 3450.0;3.12;0.03 3455.0;3.03;0.04 3460.0;3.07;0.06 3465.0;3.23;0.05 3470.0;3.09;0.04 3475.0;2.92;0.04 3480.0;2.89;0.05 3485.0;3.00;0.04 3490.0;2.98;0.04 3495.0;3.06;0.04 3500.0;2.93;0.05 3505.0;2.95;0.05 3510.0;2.97;0.06 3515.0;3.04;0.05 3520.0;3.11;0.04 3525.0;3.18;0.05 3530.0;3.14;0.04 3535.0;3.01;0.04 3540.0;2.92;0.04 3545.0;3.01;0.03 3550.0;3.11;0.04 3555.0;3.12;0.03 3560.0;3.14;0.03 3565.0;3.05;0.04 3570.0;2.89;0.04 3575.0;2.94;0.04 3580.0;3.18;0.03 3585.0;3.16;0.03 3590.0;3.15;0.05 3595.0;2.99;0.06 3600.0;3.00;0.04 3605.0;3.09;0.05 3610.0;2.93;0.04 3615.0;3.04;0.04 3620.0;3.20;0.05 3625.0;3.33;0.04 3630.0;3.41;0.04 3635.0;3.29;0.04 3640.0;3.05;0.05 3645.0;2.98;0.04 3650.0;2.96;0.03 3655.0;3.14;0.04 3660.0;3.18;0.05 3665.0;3.40;0.03 3670.0;3.45;0.03 3675.0;3.21;0.04 3680.0;3.05;0.03 3685.0;2.98;0.04 3690.0;2.92;0.04 3695.0;3.02;0.04 3700.0;3.05;0.05 3705.0;3.10;0.04 3710.0;3.28;0.05 3715.0;3.29;0.04 3720.0;2.97;0.04 3725.0;2.83;0.06 3730.0;3.00;0.04 3735.0;2.93;0.04 3740.0;2.96;0.04 3745.0;3.20;0.05 3750.0;3.08;0.05 3755.0;2.98;0.05 3760.0;2.93;0.04 3765.0;2.89;0.03 3770.0;3.09;0.03 3775.0;3.08;0.04 3780.0;3.05;0.04 3785.0;2.97;0.04 3790.0;3.06;0.06 3795.0;3.21;0.07 3800.0;3.00;0.06 3805.0;3.10;0.05 3810.0;3.05;0.04 3815.0;3.00;0.06 3820.0;2.99;0.05 3825.0;3.22;0.04 3830.0;3.26;0.04 3835.0;3.05;0.04 3840.0;2.86;0.04 3845.0;2.88;0.05 3850.0;2.90;0.05 3855.0;2.89;0.05 3860.0;2.89;0.04 3865.0;3.17;0.05 3870.0;3.16;0.05 3875.0;3.25;0.04 3880.0;3.01;0.06 3885.0;2.95;0.04 3890.0;2.89;0.04 3895.0;3.06;0.04 3900.0;2.92;0.04 3905.0;2.92;0.03 3910.0;2.87;0.03 3915.0;3.07;0.04 3920.0;3.08;0.03 3925.0;2.91;0.04 3930.0;2.89;0.04 3935.0;2.83;0.05 3940.0;2.97;0.05 3945.0;3.04;0.03 3950.0;3.02;0.04 3955.0;2.90;0.06 3960.0;2.89;0.05 3965.0;2.94;0.04 3970.0;3.01;0.05 3975.0;3.01;0.06 3980.0;3.06;0.05 3985.0;3.06;0.08 3990.0;3.24;0.06 3995.0;3.30;0.04 4000.0;3.23;0.05 4005.0;3.16;0.06 4010.0;2.96;0.06 4015.0;2.95;0.05 4020.0;3.07;0.05 4025.0;3.02;0.04 4030.0;3.12;0.04 4035.0;3.17;0.05 4040.0;3.20;0.05 4045.0;3.16;0.04 4050.0;3.06;0.04 4055.0;3.06;0.06 4060.0;3.10;0.04 4065.0;3.01;0.04 4070.0;3.08;0.05 4075.0;3.02;0.07 4080.0;3.01;0.04 4085.0;3.03;0.06 4090.0;3.07;0.04 4095.0;3.07;0.05 4100.0;2.87;0.05 4105.0;2.88;0.05 4110.0;2.87;0.04 4115.0;2.91;0.04 4120.0;2.94;0.04 4125.0;3.00;0.05 4130.0;2.82;0.03 4135.0;2.98;0.04 4140.0;2.92;0.04 4145.0;2.98;0.04 4150.0;3.11;0.05 4155.0;3.16;0.06 4160.0;3.11;0.05 4165.0;3.00;0.05 4170.0;3.06;0.09 4175.0;2.99;0.05 4180.0;2.87;0.09 4185.0;2.86;0.04 4190.0;2.95;0.06 4195.0;3.04;0.05 4200.0;3.11;0.04 4205.0;3.04;0.06 4210.0;3.00;0.04 4215.0;2.85;0.04 4220.0;3.00;0.04 4225.0;2.98;0.05 4230.0;2.91;0.04 4235.0;3.03;0.04 4240.0;3.03;0.04 4245.0;3.06;0.04 4250.0;2.99;0.03 4255.0;3.10;0.08 4260.0;2.95;0.06 4265.0;2.96;0.04 4270.0;2.88;0.09 4275.0;3.06;0.07 4280.0;2.90;0.04 4285.0;2.95;0.06 4290.0;3.02;0.04 4295.0;3.03;0.05 4300.0;3.04;0.05 4305.0;2.88;0.04 4310.0;2.86;0.05 4315.0;2.85;0.05 4320.0;2.84;0.06 4325.0;2.83;0.05 4330.0;3.00;0.05 4335.0;2.85;0.06 4340.0;2.73;0.05 4345.0;2.87;0.04 4350.0;2.84;0.08 4355.0;2.89;0.07 4360.0;3.03;0.04 4365.0;3.07;0.05 4370.0;2.95;0.05 4375.0;2.89;0.06 4380.0;2.98;0.04 4385.0;2.76;0.06 4390.0;2.83;0.06 4395.0;2.94;0.06 4400.0;2.99;0.04 4405.0;3.08;0.03 4410.0;3.03;0.05 4415.0;3.13;0.04 4420.0;2.97;0.05 4425.0;2.94;0.04 4430.0;2.88;0.05 4435.0;2.92;0.06 4440.0;2.88;0.05 4445.0;2.90;0.05 4450.0;3.03;0.05 4455.0;2.95;0.05 4460.0;2.85;0.04 4465.0;2.85;0.05 4470.0;2.87;0.06 4475.0;2.86;0.06 4480.0;2.95;0.05 4485.0;2.92;0.04 4490.0;3.10;0.07 4495.0;3.10;0.06 4500.0;3.12;0.06 4505.0;3.07;0.06 4510.0;2.93;0.05 4515.0;2.99;0.07 4520.0;2.79;0.07 4525.0;3.01;0.05 4530.0;3.04;0.05 4535.0;3.09;0.05 4540.0;2.87;0.04 4545.0;2.81;0.08 4550.0;2.88;0.05 4555.0;2.90;0.04 4560.0;3.02;0.05 4565.0;2.93;0.05 4570.0;2.98;0.04 4575.0;3.16;0.05 4580.0;3.11;0.04 4585.0;3.10;0.04 4590.0;3.00;0.04 4595.0;3.00;0.03 4600.0;2.98;0.04 4605.0;3.09;0.04 4610.0;3.14;0.06 4615.0;3.05;0.05 4620.0;3.04;0.05 4625.0;3.01;0.04 4630.0;3.02;0.06 4635.0;2.95;0.05 4640.0;2.95;0.06 4645.0;2.93;0.05 4650.0;3.09;0.05 4655.0;3.13;0.06 4660.0;2.88;0.05 4665.0;2.97;0.06 4670.0;2.86;0.05 4675.0;2.92;0.06 4680.0;2.86;0.06 4685.0;3.06;0.07 4690.0;3.17;0.05 4695.0;3.08;0.04 4700.0;3.13;0.04 4705.0;2.97;0.05 4710.0;2.92;0.06 4715.0;3.03;0.04 4720.0;2.95;0.06 4725.0;3.13;0.04 4730.0;3.14;0.05 4735.0;3.09;0.04 4740.0;2.91;0.04 4745.0;2.96;0.04 4750.0;3.04;0.04 4755.0;2.86;0.07 4760.0;2.92;0.05 4765.0;3.00;0.03 4770.0;3.20;0.06 4775.0;3.17;0.06 4780.0;3.00;0.04 4785.0;2.99;0.05 4790.0;2.93;0.05 4795.0;2.96;0.05 4800.0;2.99;0.03 4805.0;2.99;0.08 4810.0;3.15;0.05 4815.0;3.15;0.04 4820.0;3.03;0.05 4825.0;2.83;0.05 4830.0;2.85;0.06 4835.0;2.96;0.06 4840.0;3.04;0.06 4845.0;3.24;0.05 4850.0;3.30;0.05 4855.0;3.08;0.06 4860.0;3.06;0.05 4865.0;2.98;0.05 4870.0;2.88;0.06 4875.0;2.86;0.05 4880.0;2.91;0.06 4885.0;3.18;0.06 4890.0;3.27;0.10 4895.0;3.30;0.07 4900.0;3.15;0.06 4905.0;3.03;0.05 4910.0;2.85;0.06 4915.0;2.85;0.04 4920.0;2.96;0.05 4925.0;2.77;0.07 4930.0;2.91;0.04 4935.0;3.03;0.06 4940.0;3.07;0.05 4945.0;3.03;0.07 4950.0;3.05;0.06 4955.0;2.84;0.12 4960.0;2.86;0.07 4965.0;2.91;0.08 4970.0;2.93;0.09 4975.0;2.94;0.06 4980.0;3.17;0.06 4985.0;2.95;0.07 4990.0;2.74;0.05 4995.0;2.85;0.05 5000.0;2.79;0.04 5005.0;2.95;0.06 5010.0;2.94;0.06 5015.0;2.87;0.07 5020.0;2.74;0.07 5025.0;2.74;0.10 5030.0;2.77;0.06 5035.0;2.79;0.08 5040.0;3.06;0.06 5045.0;3.17;0.05 5050.0;3.04;0.07 5055.0;3.06;0.08 5060.0;2.85;0.06 5065.0;2.90;0.10 5070.0;2.93;0.08 5075.0;2.69;0.07 5080.0;2.78;0.09 5085.0;2.81;0.07 5090.0;2.66;0.06 5095.0;2.88;0.06 5100.0;3.00;0.11 5105.0;3.04;0.05 5110.0;2.92;0.04 5115.0;2.86;0.07 5120.0;2.80;0.08 5125.0;2.72;0.02 5130.0;2.68;0.06 5135.0;2.65;0.08 5140.0;2.94;0.07 5145.0;2.90;0.05 5150.0;2.89;0.09 5155.0;2.91;0.07 5160.0;2.82;0.13 5165.0;2.95;0.05 5170.0;3.02;0.09 5175.0;3.21;0.10 5180.0;3.11;0.08 5185.0;3.02;0.08 5190.0;3.00;0.07 5195.0;2.82;0.11 5200.0;2.86;0.08 5205.0;3.00;0.11 5210.0;2.96;0.06 5215.0;2.87;0.06 5220.0;2.84;0.09 5225.0;2.93;0.07 5230.0;2.98;0.05 5235.0;2.77;0.08 5240.0;2.92;0.07 5245.0;2.97;0.09 5250.0;3.06;0.09 5255.0;3.09;0.12 5260.0;3.01;0.07 5265.0;2.98;0.08 5270.0;2.80;0.07 5275.0;2.89;0.11 5280.0;2.89;0.08 5285.0;2.80;0.06 5290.0;2.92;0.03 5295.0;2.97;0.06 5300.0;2.91;0.06 5305.0;2.79;0.04 5310.0;2.79;0.09 5315.0;2.84;0.07 5320.0;2.91;0.09

Licensing edit

I, the copyright holder of this work, hereby publish it under the following license:
w:en:Creative Commons
attribution share alike
This file is licensed under the Creative Commons Attribution-Share Alike 4.0 International license.
You are free:
  • to share – to copy, distribute and transmit the work
  • to remix – to adapt the work
Under the following conditions:
  • attribution – You must give appropriate credit, provide a link to the license, and indicate if changes were made. You may do so in any reasonable manner, but not in any way that suggests the licensor endorses you or your use.
  • share alike – If you remix, transform, or build upon the material, you must distribute your contributions under the same or compatible license as the original.

File history

Click on a date/time to view the file as it appeared at that time.

Date/TimeThumbnailDimensionsUserComment
current09:13, 21 June 2022Thumbnail for version as of 09:13, 21 June 20221,440 × 720 (76 KB)Merikanto (talk | contribs)Uploaded own work with UploadWizard

There are no pages that use this file.

Metadata