"""orbital.py Code developed by Brian Rose, University at Albany brose@albany.edu in support of the class ENV 480: Climate Laboratory Spring 2014 Version 1.1 some bug fixes and renaming of orbital variables Also made the length of year consistent with ClimateUtils.py and suppressed warning messages from numpy to get rid of annoying messages from np.arccos() This module contains orbital data tables for the past 5 Myr, and some general-purpose routines for computing incoming solar radiation. The function orbital.lookup_parameters(t) returns a list (ecc,long_peri,obliquity) corresponding to eccentricity, solar longitude of perihelion relative to vernal equinox, and obliquiy angle at time t = kyrs before present Cubic spline coefficients tck_ecc, tck_long_peri, tck_obliquity are computed once upon importing this module and are then available for subsequent lookup calls. The function daily_insolation() computes daily average insolation at any time of year and location given orbital parameters""" import numpy as np from scipy import interpolate def lookup_parameters( kyear = 0 ): """Look up orbital parameters for given kyear before present. Input kyear should be a positive number, thousands of years before present. Returns three values: ecc = eccentricity (dimensionless) long_peri = longitude of perihelion (precession angle) (degrees) obliquity = obliquity angle or axial tilt (degrees). Values for eccentricity, obliquity, and longitude of perihelion for the past 5 Myr are taken from Berger and Loutre 1991 (data from ncdc.noaa.gov). References: Berger A. and Loutre M.F. (1991). Insolation values for the climate of the last 10 million years. Quaternary Science Reviews, 10(4), 297-317. Berger A. (1978). Long-term variations of daily insolation and Quaternary climatic changes. Journal of Atmospheric Science, 35(12), 2362-2367.""" # values are computed by evaluating the spline fits to the data tables ecc = interpolate.splev(kyear,tck_ecc,der=0) long_peri = interpolate.splev(kyear,tck_long_peri,der=0) obliquity = interpolate.splev(kyear,tck_obliquity,der=0) orb = {'ecc':ecc, 'long_peri':long_peri, 'obliquity':obliquity} return orb #return ecc,long_peri,obliquity # End of function lookup_parameters def daily_insolation(lat, day, ecc = 0.017236, long_peri = 281.37, obliquity = 23.446, S0 = None, day_type=1 ): """Compute daily average insolation given latitude, time of year and orbital parameters. Orbital parameters can be computed for any time in the last 5 Myears with ecc,long_peri,obliquity = orbital.lookup_parameters(kyears) Inputs: lat: Latitude in degrees (-90 to 90). day: Indicator of time of year, by default day 1 is Jan 1. ecc: eccentricity (dimensionless) long_peri: longitude of perihelion (precession angle) (degrees) obliquity: obliquity angle (degrees) S0: Solar constant in W/m^2, will try to read from ClimateUtils.py day_type: Convention for specifying time of year (+/- 1,2) [optional]. day_type=1 (default): day input is calendar day (1-365.24), where day 1 is January first. The calendar is referenced to the vernal equinox which always occurs at day 80. day_type=2: day input is solar longitude (0-360 degrees). Solar longitude is the angle of the Earth's orbit measured from spring equinox (21 March). Note that calendar days and solar longitude are not linearly related because, by Kepler's Second Law, Earth's angular velocity varies according to its distance from the sun. Default values for orbital parameters are present-day Output: Fsw = Daily average solar radiation in W/m^2. Dimensions of output are (lat.size, day.size, ecc.size) Code is fully vectorized to handle array input for all arguments. Orbital arguments should all have the same sizes. This is automatic if computed from lookup_parameters() e.g. to compute the timeseries of insolation at 65N at summer solstice over the past 5 Myears years = np.linspace(0, 5000, 5001) orb = orbital.lookup_parameters( years ) S65 = orbital.daily_insolation( 65, 172, **orb ) Ported from MATLAB code daily_insolation.m Original authors: Ian Eisenman and Peter Huybers, Harvard University, August 2006 Available online at http://eisenman.ucsd.edu/code/daily_insolation.m If using calendar days, solar longitude is found using an approximate solution to the differential equation representing conservation of angular momentum (Kepler's Second Law). Given the orbital parameters and solar longitude, daily average insolation is calculated exactly following Berger 1978. References: Berger A. and Loutre M.F. (1991). Insolation values for the climate of the last 10 million years. Quaternary Science Reviews, 10(4), 297-317. Berger A. (1978). Long-term variations of daily insolation and Quaternary climatic changes. Journal of Atmospheric Science, 35(12), 2362-2367.""" # If not given, try to set solar constant to the value in ClimateUtils. # If that doesn't work, set a realistic default. if S0 is None: try: from ClimateUtils import S0 except: S0 = 1365.2 # Inputs can be scalar or vector. If scalar, convert to 0d numpy arrays lat = np.array( lat ) day = np.array( day ) ecc = np.array( ecc ) long_peri = np.array( long_peri ) obliquity = np.array( obliquity ) # Convert precession angle and latitude to radians phi = np.deg2rad( lat ) # lambda_long (solar longitude) is the angular distance along Earth's orbit measured from spring equinox (21 March) if day_type==1: # calendar days lambda_long = solar_longitude( day, ecc=ecc, long_peri=long_peri ) elif day_type==2: #solar longitude (1-360) is specified in input, no need to convert days to longitude lambda_long = np.tile( np.expand_dims( np.deg2rad( day ), axis=1 ), [1, ecc.size] ) else: raise ValueError('Invalid day_type.') # Compute declination angle of the sun delta = np.array( np.arcsin( np.sin( np.deg2rad(obliquity) ) * np.sin( lambda_long ) ) ) # recast all the arrays to dimensions (lat.size, day.size, ecc.size) delta_big = np.tile( delta, [ lat.size, 1, 1 ] ) lambda_long_big = np.tile( lambda_long, [ lat.size, 1, 1 ] ) phi_day = np.tile( np.expand_dims( phi, axis=1 ), [1, day.size] ) phi_big = np.tile( np.expand_dims( phi_day, axis=2 ), [1, 1, ecc.size] ) # suppress warning message generated by arccos here! oldsettings = np.seterr(invalid='ignore') # Compute Ho, the hour angle at sunrise / sunset # Check for no sunrise or no sunset: Berger 1978 eqn (8),(9) Ho = np.where( abs( delta_big ) - np.math.pi / 2. + abs( phi_big ) < 0., np.arccos( -np.tan( phi_big ) * np.tan( delta_big ) ), np.where( phi_big * delta_big > 0. , np.math.pi, 0. ) ) # Compute insolation: Berger 1978 eq (10) Fsw = S0 / np.math.pi * ( ( 1 + ecc * np.cos( lambda_long_big - np.deg2rad(long_peri) ))**2 / (1 - ecc**2)**2 * ( Ho * np.sin( phi_big ) * np.sin( delta_big ) + np.cos( phi_big ) * np.cos( delta_big ) * np.sin( Ho ) ) ) # Remove singleton dimensions and return return np.squeeze( Fsw ) # End of function daily_insolation() def solar_longitude( day, ecc = 0.017236, long_peri = 281.37 ): '''Estimate solar longitude (lambda = 0 at spring equinox) from calendar day using an approximation from Berger 1978 section 3. Works for both scalar and vector orbital parameters. Reads the length of the year from ClimateUtils.py if available.''' try: from ClimateUtils import days_per_year except: days_per_year = 365.2422 day = np.array(day) ecc = np.array(ecc) long_peri_rad = np.deg2rad( np.array(long_peri) ) delta_lambda_long_m = ( ( np.tile( np.expand_dims( day, axis=1 ), [1, ecc.size]) - 80. ) * 2. * np.math.pi / days_per_year ) beta = ( 1 - ecc**2 )**(1./2.) lambda_long_m0 = ( -2. * ( (1./2. * ecc + 1./8. * ecc**3 ) * (1. + beta) * np.sin(-long_peri_rad) - 1./4.* (ecc**2) * ( 1./2. + beta ) * np.sin( -2. * long_peri_rad ) + 1./8. * (ecc**3) * (1./3. + beta) * ( np.sin(-3. * long_peri_rad) ) ) ) lambda_long_m = np.tile( lambda_long_m0, [day.size, 1] ) + delta_lambda_long_m lambda_long = ( lambda_long_m + ( 2*ecc - 1/4. * (ecc**3)) * np.sin(lambda_long_m - long_peri_rad) + (5./4.) * (ecc**2) * np.sin(2 * ( lambda_long_m - long_peri_rad )) + (13./12.) * (ecc**3) * np.sin(3*( lambda_long_m - long_peri_rad )) ) # lambda_long should have dimensions lambda_long.size = ( day.size, ecc.size ) return lambda_long # End of function computeSolarLongitude() # This is the table of orbital parameter values, copied from Eisenman and Huybers # The data are entered here into a numpy.array object called orbital_table # Column 0 is kyr from present (negative because backward in time) # Column 1 is eccentricity (dimensionless) # Column 2 is longitude of perihelion (degrees) # Column 3 is obliquity angle (degrees) # Search for ===== to find the bottom of the table # m = np.array([[0,0.017236,101.37,23.446], orbital_table = np.array([[0,0.017236,101.37,23.446], [-1,0.017644,84.26,23.573], [-2,0.018024,67.23,23.697], [-3,0.018376,50.30,23.815], [-4,0.018697,33.45,23.923], [-5,0.018988,16.68,24.019], [-6,0.019249,359.99,24.100], [-7,0.019477,343.37,24.163], [-8,0.019674,326.82,24.206], [-9,0.019839,310.32,24.229], [-10,0.019971,293.86,24.229], [-11,0.020071,277.45,24.207], [-12,0.020139,261.07,24.161], [-13,0.020175,244.71,24.093], [-14,0.020180,228.37,24.004], [-15,0.020154,212.04,23.895], [-16,0.020098,195.71,23.769], [-17,0.020012,179.38,23.627], [-18,0.019898,163.04,23.475], [-19,0.019756,146.69,23.315], [-20,0.019589,130.34,23.151], [-21,0.019398,113.98,22.989], [-22,0.019183,97.61,22.832], [-23,0.018948,81.26,22.685], [-24,0.018693,64.91,22.553], [-25,0.018422,48.60,22.439], [-26,0.018136,32.33,22.348], [-27,0.017839,16.13,22.282], [-28,0.017532,0.00,22.244], [-29,0.017218,343.99,22.235], [-30,0.016902,328.11,22.255], [-31,0.016585,312.37,22.305], [-32,0.016272,296.80,22.382], [-33,0.015966,281.42,22.485], [-34,0.015671,266.24,22.610], [-35,0.015390,251.28,22.754], [-36,0.015127,236.54,22.913], [-37,0.014886,222.02,23.082], [-38,0.014672,207.73,23.257], [-39,0.014486,193.65,23.433], [-40,0.014333,179.77,23.605], [-41,0.014215,166.06,23.769], [-42,0.014134,152.51,23.922], [-43,0.014093,139.09,24.059], [-44,0.014093,125.77,24.178], [-45,0.014133,112.50,24.277], [-46,0.014215,99.27,24.353], [-47,0.014337,86.04,24.405], [-48,0.014498,72.79,24.433], [-49,0.014697,59.47,24.437], [-50,0.014931,46.07,24.416], [-51,0.015198,32.57,24.371], [-52,0.015495,18.95,24.305], [-53,0.015819,5.20,24.218], [-54,0.016168,351.31,24.113], [-55,0.016540,337.27,23.992], [-56,0.016931,323.07,23.859], [-57,0.017339,308.72,23.715], [-58,0.017762,294.21,23.565], [-59,0.018198,279.55,23.411], [-60,0.018646,264.74,23.258], [-61,0.019103,249.78,23.108], [-62,0.019569,234.69,22.965], [-63,0.020043,219.48,22.831], [-64,0.020522,204.14,22.710], [-65,0.021008,188.71,22.603], [-66,0.021498,173.17,22.514], [-67,0.021993,157.56,22.442], [-68,0.022493,141.88,22.391], [-69,0.022997,126.14,22.360], [-70,0.023505,110.35,22.350], [-71,0.024017,94.54,22.360], [-72,0.024534,78.70,22.390], [-73,0.025055,62.85,22.440], [-74,0.025581,47.00,22.507], [-75,0.026111,31.16,22.590], [-76,0.026646,15.33,22.687], [-77,0.027186,359.52,22.797], [-78,0.027731,343.74,22.916], [-79,0.028281,327.98,23.043], [-80,0.028836,312.25,23.175], [-81,0.029395,296.54,23.310], [-82,0.029958,280.87,23.444], [-83,0.030526,265.23,23.576], [-84,0.031097,249.61,23.703], [-85,0.031671,234.01,23.822], [-86,0.032247,218.43,23.932], [-87,0.032825,202.87,24.030], [-88,0.033403,187.31,24.115], [-89,0.033980,171.75,24.184], [-90,0.034556,156.19,24.236], [-91,0.035128,140.61,24.270], [-92,0.035697,125.02,24.285], [-93,0.036260,109.41,24.281], [-94,0.036816,93.75,24.256], [-95,0.037363,78.06,24.212], [-96,0.037900,62.32,24.147], [-97,0.038424,46.53,24.065], [-98,0.038936,30.67,23.964], [-99,0.039432,14.74,23.849], [-100,0.039911,358.73,23.719], [-101,0.040372,342.64,23.579], [-102,0.040812,326.47,23.432], [-103,0.041230,310.20,23.280], [-104,0.041624,293.85,23.127], [-105,0.041993,277.40,22.978], [-106,0.042335,260.86,22.836], [-107,0.042649,244.24,22.706], [-108,0.042933,227.54,22.591], [-109,0.043185,210.78,22.494], [-110,0.043406,193.96,22.420], [-111,0.043592,177.10,22.370], [-112,0.043744,160.21,22.346], [-113,0.043860,143.31,22.349], [-114,0.043940,126.41,22.380], [-115,0.043983,109.54,22.438], [-116,0.043988,92.71,22.520], [-117,0.043954,75.93,22.625], [-118,0.043882,59.22,22.750], [-119,0.043771,42.59,22.891], [-120,0.043622,26.04,23.043], [-121,0.043434,9.59,23.202], [-122,0.043208,353.23,23.364], [-123,0.042945,336.98,23.523], [-124,0.042644,320.82,23.676], [-125,0.042308,304.76,23.818], [-126,0.041936,288.80,23.945], [-127,0.041531,272.92,24.054], [-128,0.041094,257.12,24.142], [-129,0.040626,241.39,24.207], [-130,0.040129,225.73,24.247], [-131,0.039605,210.14,24.262], [-132,0.039058,194.59,24.251], [-133,0.038488,179.08,24.214], [-134,0.037900,163.62,24.154], [-135,0.037295,148.18,24.071], [-136,0.036677,132.77,23.967], [-137,0.036051,117.39,23.847], [-138,0.035418,102.02,23.712], [-139,0.034783,86.66,23.568], [-140,0.034151,71.32,23.417], [-141,0.033525,56.00,23.265], [-142,0.032910,40.69,23.116], [-143,0.032311,25.41,22.974], [-144,0.031732,10.16,22.844], [-145,0.031178,354.95,22.729], [-146,0.030655,339.78,22.632], [-147,0.030166,324.67,22.557], [-148,0.029717,309.63,22.505], [-149,0.029312,294.66,22.478], [-150,0.028955,279.76,22.476], [-151,0.028650,264.96,22.498], [-152,0.028400,250.23,22.544], [-153,0.028208,235.59,22.611], [-154,0.028075,221.04,22.698], [-155,0.028003,206.56,22.800], [-156,0.027993,192.14,22.915], [-157,0.028043,177.79,23.039], [-158,0.028152,163.47,23.169], [-159,0.028319,149.18,23.301], [-160,0.028542,134.91,23.432], [-161,0.028816,120.64,23.557], [-162,0.029139,106.36,23.676], [-163,0.029506,92.06,23.783], [-164,0.029913,77.72,23.879], [-165,0.030356,63.33,23.960], [-166,0.030831,48.89,24.026], [-167,0.031333,34.38,24.075], [-168,0.031859,19.80,24.107], [-169,0.032403,5.15,24.122], [-170,0.032963,350.42,24.119], [-171,0.033534,335.60,24.100], [-172,0.034113,320.70,24.064], [-173,0.034697,305.71,24.014], [-174,0.035284,290.63,23.950], [-175,0.035870,275.45,23.873], [-176,0.036453,260.19,23.784], [-177,0.037030,244.83,23.687], [-178,0.037602,229.39,23.582], [-179,0.038164,213.85,23.471], [-180,0.038717,198.22,23.356], [-181,0.039259,182.51,23.240], [-182,0.039789,166.71,23.124], [-183,0.040306,150.84,23.011], [-184,0.040810,134.88,22.902], [-185,0.041300,118.85,22.800], [-186,0.041775,102.75,22.707], [-187,0.042236,86.59,22.626], [-188,0.042682,70.37,22.557], [-189,0.043114,54.10,22.502], [-190,0.043530,37.79,22.464], [-191,0.043933,21.45,22.444], [-192,0.044321,5.08,22.442], [-193,0.044694,348.70,22.459], [-194,0.045053,332.32,22.496], [-195,0.045399,315.94,22.552], [-196,0.045731,299.58,22.627], [-197,0.046049,283.23,22.719], [-198,0.046353,266.93,22.828], [-199,0.046645,250.66,22.951], [-200,0.046922,234.44,23.086], [-201,0.047187,218.27,23.230], [-202,0.047438,202.16,23.380], [-203,0.047675,186.10,23.533], [-204,0.047898,170.10,23.685], [-205,0.048107,154.16,23.833], [-206,0.048302,138.27,23.973], [-207,0.048481,122.43,24.102], [-208,0.048645,106.64,24.216], [-209,0.048793,90.87,24.313], [-210,0.048923,75.14,24.390], [-211,0.049036,59.42,24.444], [-212,0.049131,43.72,24.475], [-213,0.049206,28.01,24.480], [-214,0.049260,12.29,24.459], [-215,0.049294,356.55,24.412], [-216,0.049305,340.77,24.338], [-217,0.049292,324.95,24.240], [-218,0.049256,309.07,24.118], [-219,0.049194,293.12,23.975], [-220,0.049105,277.10,23.813], [-221,0.048990,261.00,23.637], [-222,0.048846,244.80,23.450], [-223,0.048672,228.50,23.258], [-224,0.048469,212.10,23.064], [-225,0.048234,195.60,22.875], [-226,0.047967,179.00,22.695], [-227,0.047668,162.30,22.530], [-228,0.047336,145.53,22.385], [-229,0.046971,128.68,22.264], [-230,0.046571,111.77,22.171], [-231,0.046137,94.83,22.109], [-232,0.045669,77.86,22.079], [-233,0.045166,60.89,22.084], [-234,0.044629,43.95,22.122], [-235,0.044057,27.04,22.191], [-236,0.043452,10.20,22.291], [-237,0.042814,353.43,22.417], [-238,0.042143,336.75,22.566], [-239,0.041440,320.19,22.733], [-240,0.040707,303.74,22.912], [-241,0.039945,287.41,23.099], [-242,0.039155,271.21,23.288], [-243,0.038338,255.14,23.475], [-244,0.037498,239.21,23.654], [-245,0.036635,223.40,23.820], [-246,0.035753,207.73,23.971], [-247,0.034853,192.17,24.103], [-248,0.033939,176.74,24.213], [-249,0.033014,161.43,24.299], [-250,0.032082,146.23,24.360], [-251,0.031146,131.15,24.396], [-252,0.030210,116.18,24.406], [-253,0.029280,101.32,24.391], [-254,0.028360,86.58,24.351], [-255,0.027455,71.95,24.290], [-256,0.026572,57.43,24.208], [-257,0.025716,43.04,24.108], [-258,0.024895,28.76,23.994], [-259,0.024115,14.61,23.867], [-260,0.023384,0.59,23.732], [-261,0.022709,346.68,23.591], [-262,0.022098,332.90,23.449], [-263,0.021559,319.23,23.309], [-264,0.021097,305.65,23.174], [-265,0.020719,292.15,23.046], [-266,0.020429,278.71,22.930], [-267,0.020232,265.30,22.826], [-268,0.020128,251.87,22.737], [-269,0.020117,238.41,22.665], [-270,0.020198,224.88,22.611], [-271,0.020366,211.25,22.574], [-272,0.020616,197.49,22.556], [-273,0.020942,183.58,22.555], [-274,0.021336,169.52,22.571], [-275,0.021789,155.30,22.604], [-276,0.022294,140.91,22.651], [-277,0.022843,126.36,22.711], [-278,0.023428,111.66,22.783], [-279,0.024041,96.82,22.865], [-280,0.024675,81.85,22.954], [-281,0.025323,66.76,23.048], [-282,0.025980,51.57,23.147], [-283,0.026641,36.27,23.248], [-284,0.027300,20.90,23.348], [-285,0.027953,5.45,23.447], [-286,0.028596,349.93,23.542], [-287,0.029226,334.35,23.632], [-288,0.029839,318.72,23.714], [-289,0.030434,303.05,23.789], [-290,0.031007,287.32,23.854], [-291,0.031557,271.56,23.907], [-292,0.032082,255.76,23.949], [-293,0.032581,239.92,23.978], [-294,0.033052,224.04,23.993], [-295,0.033494,208.13,23.993], [-296,0.033907,192.17,23.979], [-297,0.034289,176.17,23.949], [-298,0.034642,160.13,23.906], [-299,0.034963,144.04,23.847], [-300,0.035254,127.90,23.776], [-301,0.035514,111.70,23.692], [-302,0.035744,95.45,23.598], [-303,0.035943,79.13,23.494], [-304,0.036112,62.75,23.384], [-305,0.036252,46.31,23.270], [-306,0.036362,29.79,23.154], [-307,0.036444,13.21,23.041], [-308,0.036499,356.57,22.931], [-309,0.036526,339.86,22.830], [-310,0.036527,323.09,22.740], [-311,0.036502,306.27,22.664], [-312,0.036452,289.41,22.605], [-313,0.036379,272.51,22.565], [-314,0.036281,255.58,22.546], [-315,0.036162,238.64,22.549], [-316,0.036020,221.69,22.575], [-317,0.035857,204.76,22.624], [-318,0.035674,187.85,22.694], [-319,0.035471,170.97,22.784], [-320,0.035248,154.13,22.891], [-321,0.035007,137.34,23.014], [-322,0.034748,120.60,23.148], [-323,0.034471,103.93,23.289], [-324,0.034177,87.31,23.435], [-325,0.033865,70.76,23.579], [-326,0.033537,54.26,23.719], [-327,0.033193,37.82,23.851], [-328,0.032832,21.42,23.970], [-329,0.032454,5.07,24.074], [-330,0.032061,348.74,24.159], [-331,0.031652,332.43,24.223], [-332,0.031226,316.12,24.264], [-333,0.030785,299.81,24.280], [-334,0.030327,283.48,24.272], [-335,0.029853,267.12,24.238], [-336,0.029362,250.72,24.180], [-337,0.028855,234.27,24.099], [-338,0.028331,217.74,23.996], [-339,0.027791,201.14,23.874], [-340,0.027233,184.45,23.735], [-341,0.026659,167.66,23.585], [-342,0.026068,150.75,23.425], [-343,0.025460,133.74,23.261], [-344,0.024835,116.60,23.096], [-345,0.024193,99.35,22.937], [-346,0.023534,81.97,22.787], [-347,0.022859,64.47,22.650], [-348,0.022168,46.86,22.531], [-349,0.021461,29.13,22.433], [-350,0.020738,11.31,22.359], [-351,0.020001,353.38,22.312], [-352,0.019250,335.38,22.291], [-353,0.018485,317.29,22.298], [-354,0.017708,299.14,22.333], [-355,0.016919,280.92,22.393], [-356,0.016120,262.63,22.478], [-357,0.015313,244.28,22.583], [-358,0.014498,225.85,22.707], [-359,0.013678,207.34,22.844], [-360,0.012854,188.71,22.993], [-361,0.012030,169.94,23.147], [-362,0.011209,151.00,23.304], [-363,0.010393,131.81,23.459], [-364,0.009588,112.32,23.608], [-365,0.008799,92.43,23.749], [-366,0.008034,72.02,23.878], [-367,0.007302,50.94,23.994], [-368,0.006615,29.00,24.092], [-369,0.005991,6.00,24.173], [-370,0.005450,341.73,24.235], [-371,0.005020,316.07,24.277], [-372,0.004727,289.13,24.299], [-373,0.004595,261.33,24.301], [-374,0.004632,233.40,24.284], [-375,0.004830,206.11,24.248], [-376,0.005163,179.99,24.194], [-377,0.005601,155.21,24.123], [-378,0.006114,131.71,24.038], [-379,0.006679,109.30,23.940], [-380,0.007276,87.77,23.831], [-381,0.007892,66.93,23.713], [-382,0.008515,46.63,23.589], [-383,0.009137,26.73,23.461], [-384,0.009753,7.15,23.331], [-385,0.010357,347.81,23.201], [-386,0.010945,328.66,23.075], [-387,0.011515,309.64,22.954], [-388,0.012063,290.74,22.841], [-389,0.012587,271.92,22.738], [-390,0.013085,253.17,22.646], [-391,0.013556,234.47,22.568], [-392,0.013997,215.81,22.505], [-393,0.014409,197.20,22.459], [-394,0.014789,178.62,22.430], [-395,0.015137,160.08,22.419], [-396,0.015452,141.57,22.426], [-397,0.015733,123.10,22.452], [-398,0.015980,104.68,22.496], [-399,0.016193,86.30,22.558], [-400,0.016371,67.96,22.636], [-401,0.016514,49.68,22.728], [-402,0.016622,31.45,22.834], [-403,0.016695,13.27,22.950], [-404,0.016734,355.15,23.075], [-405,0.016739,337.09,23.206], [-406,0.016710,319.08,23.341], [-407,0.016648,301.12,23.476], [-408,0.016553,283.21,23.608], [-409,0.016426,265.34,23.736], [-410,0.016269,247.51,23.856], [-411,0.016081,229.70,23.965], [-412,0.015864,211.90,24.061], [-413,0.015620,194.11,24.142], [-414,0.015349,176.31,24.206], [-415,0.015053,158.49,24.251], [-416,0.014734,140.64,24.276], [-417,0.014392,122.72,24.281], [-418,0.014031,104.74,24.265], [-419,0.013651,86.67,24.228], [-420,0.013255,68.48,24.170], [-421,0.012846,50.17,24.093], [-422,0.012425,31.69,23.998], [-423,0.011996,13.03,23.886], [-424,0.011561,354.16,23.762], [-425,0.011125,335.06,23.626], [-426,0.010690,315.69,23.483], [-427,0.010261,296.02,23.335], [-428,0.009843,276.02,23.187], [-429,0.009441,255.67,23.043], [-430,0.009061,234.94,22.907], [-431,0.008709,213.82,22.781], [-432,0.008393,192.29,22.670], [-433,0.008120,170.37,22.578], [-434,0.007898,148.08,22.506], [-435,0.007733,125.48,22.456], [-436,0.007632,102.66,22.431], [-437,0.007600,79.70,22.430], [-438,0.007638,56.73,22.454], [-439,0.007748,33.88,22.502], [-440,0.007928,11.24,22.571], [-441,0.008175,348.92,22.660], [-442,0.008482,326.99,22.766], [-443,0.008845,305.48,22.885], [-444,0.009256,284.40,23.014], [-445,0.009711,263.77,23.149], [-446,0.010203,243.56,23.285], [-447,0.010727,223.74,23.420], [-448,0.011278,204.29,23.549], [-449,0.011853,185.17,23.669], [-450,0.012447,166.35,23.777], [-451,0.013058,147.79,23.870], [-452,0.013683,129.47,23.947], [-453,0.014320,111.35,24.005], [-454,0.014967,93.41,24.045], [-455,0.015621,75.61,24.064], [-456,0.016282,57.94,24.064], [-457,0.016948,40.37,24.044], [-458,0.017618,22.88,24.005], [-459,0.018291,5.45,23.950], [-460,0.018965,348.06,23.879], [-461,0.019639,330.70,23.796], [-462,0.020313,313.36,23.701], [-463,0.020985,296.02,23.599], [-464,0.021655,278.68,23.492], [-465,0.022321,261.33,23.383], [-466,0.022983,243.97,23.275], [-467,0.023640,226.58,23.170], [-468,0.024290,209.18,23.072], [-469,0.024932,191.75,22.984], [-470,0.025565,174.31,22.906], [-471,0.026189,156.85,22.842], [-472,0.026802,139.38,22.792], [-473,0.027403,121.91,22.757], [-474,0.027990,104.44,22.739], [-475,0.028563,86.98,22.736], [-476,0.029119,69.54,22.749], [-477,0.029659,52.12,22.777], [-478,0.030180,34.72,22.819], [-479,0.030681,17.35,22.872], [-480,0.031161,0.02,22.937], [-481,0.031619,342.73,23.010], [-482,0.032052,325.48,23.089], [-483,0.032461,308.28,23.173], [-484,0.032842,291.11,23.260], [-485,0.033196,274.00,23.348], [-486,0.033521,256.92,23.434], [-487,0.033815,239.88,23.516], [-488,0.034077,222.89,23.594], [-489,0.034307,205.92,23.666], [-490,0.034502,189.00,23.730], [-491,0.034662,172.10,23.785], [-492,0.034785,155.22,23.830], [-493,0.034872,138.37,23.864], [-494,0.034920,121.54,23.887], [-495,0.034929,104.72,23.899], [-496,0.034898,87.91,23.898], [-497,0.034827,71.11,23.885], [-498,0.034715,54.32,23.861], [-499,0.034561,37.52,23.825], [-500,0.034366,20.72,23.777], [-501,0.034128,3.91,23.719], [-502,0.033847,347.10,23.651], [-503,0.033524,330.27,23.575], [-504,0.033159,313.43,23.492], [-505,0.032752,296.58,23.403], [-506,0.032302,279.71,23.310], [-507,0.031811,262.83,23.214], [-508,0.031279,245.93,23.118], [-509,0.030707,229.03,23.024], [-510,0.030095,212.12,22.935], [-511,0.029445,195.21,22.851], [-512,0.028758,178.32,22.776], [-513,0.028035,161.44,22.712], [-514,0.027278,144.59,22.660], [-515,0.026489,127.79,22.623], [-516,0.025669,111.05,22.601], [-517,0.024820,94.38,22.596], [-518,0.023946,77.82,22.609], [-519,0.023050,61.38,22.639], [-520,0.022133,45.09,22.687], [-521,0.021201,28.97,22.752], [-522,0.020257,13.06,22.833], [-523,0.019306,357.39,22.927], [-524,0.018354,342.01,23.033], [-525,0.017408,326.94,23.149], [-526,0.016474,312.25,23.271], [-527,0.015563,297.98,23.397], [-528,0.014686,284.19,23.524], [-529,0.013854,270.92,23.648], [-530,0.013084,258.25,23.766], [-531,0.012392,246.20,23.876], [-532,0.011798,234.80,23.975], [-533,0.011323,224.02,24.060], [-534,0.010984,213.77,24.130], [-535,0.010799,203.91,24.182], [-536,0.010778,194.23,24.215], [-537,0.010922,184.50,24.228], [-538,0.011226,174.50,24.220], [-539,0.011676,164.06,24.192], [-540,0.012255,153.06,24.144], [-541,0.012943,141.46,24.077], [-542,0.013721,129.25,23.993], [-543,0.014571,116.48,23.892], [-544,0.015479,103.17,23.778], [-545,0.016430,89.39,23.653], [-546,0.017414,75.19,23.519], [-547,0.018422,60.60,23.381], [-548,0.019445,45.68,23.241], [-549,0.020477,30.47,23.103], [-550,0.021512,14.99,22.970], [-551,0.022546,359.28,22.846], [-552,0.023575,343.37,22.734], [-553,0.024595,327.28,22.637], [-554,0.025604,311.05,22.557], [-555,0.026600,294.69,22.496], [-556,0.027579,278.23,22.455], [-557,0.028540,261.69,22.436], [-558,0.029482,245.08,22.437], [-559,0.030403,228.44,22.460], [-560,0.031302,211.77,22.503], [-561,0.032178,195.09,22.564], [-562,0.033030,178.41,22.641], [-563,0.033858,161.75,22.733], [-564,0.034661,145.12,22.837], [-565,0.035439,128.51,22.949], [-566,0.036190,111.95,23.067], [-567,0.036916,95.42,23.188], [-568,0.037616,78.93,23.309], [-569,0.038289,62.49,23.428], [-570,0.038936,46.09,23.542], [-571,0.039556,29.73,23.649], [-572,0.040150,13.40,23.747], [-573,0.040718,357.10,23.834], [-574,0.041260,340.83,23.908], [-575,0.041776,324.58,23.970], [-576,0.042266,308.34,24.017], [-577,0.042730,292.11,24.050], [-578,0.043168,275.89,24.069], [-579,0.043581,259.67,24.072], [-580,0.043968,243.44,24.062], [-581,0.044329,227.19,24.038], [-582,0.044665,210.93,24.000], [-583,0.044975,194.64,23.951], [-584,0.045260,178.33,23.890], [-585,0.045519,161.99,23.820], [-586,0.045752,145.61,23.742], [-587,0.045958,129.19,23.656], [-588,0.046138,112.73,23.566], [-589,0.046292,96.23,23.472], [-590,0.046418,79.68,23.376], [-591,0.046517,63.08,23.280], [-592,0.046587,46.44,23.186], [-593,0.046630,29.76,23.096], [-594,0.046643,13.03,23.011], [-595,0.046627,356.26,22.934], [-596,0.046581,339.45,22.865], [-597,0.046504,322.61,22.806], [-598,0.046395,305.74,22.759], [-599,0.046255,288.85,22.724], [-600,0.046082,271.94,22.702], [-601,0.045876,255.02,22.695], [-602,0.045637,238.09,22.701], [-603,0.045363,221.17,22.721], [-604,0.045054,204.26,22.754], [-605,0.044710,187.37,22.800], [-606,0.044329,170.50,22.858], [-607,0.043913,153.66,22.926], [-608,0.043460,136.86,23.003], [-609,0.042970,120.10,23.086], [-610,0.042442,103.38,23.175], [-611,0.041878,86.71,23.266], [-612,0.041276,70.09,23.358], [-613,0.040637,53.52,23.448], [-614,0.039960,37.00,23.534], [-615,0.039247,20.54,23.614], [-616,0.038497,4.13,23.686], [-617,0.037711,347.76,23.749], [-618,0.036890,331.45,23.801], [-619,0.036034,315.18,23.840], [-620,0.035145,298.96,23.867], [-621,0.034223,282.78,23.879], [-622,0.033270,266.65,23.878], [-623,0.032287,250.56,23.862], [-624,0.031277,234.52,23.833], [-625,0.030240,218.53,23.792], [-626,0.029180,202.59,23.739], [-627,0.028098,186.71,23.675], [-628,0.026999,170.90,23.604], [-629,0.025884,155.16,23.525], [-630,0.024758,139.53,23.443], [-631,0.023626,124.01,23.358], [-632,0.022491,108.63,23.274], [-633,0.021361,93.42,23.192], [-634,0.020241,78.42,23.116], [-635,0.019141,63.67,23.046], [-636,0.018069,49.22,22.986], [-637,0.017036,35.13,22.936], [-638,0.016056,21.46,22.899], [-639,0.015145,8.27,22.874], [-640,0.014320,355.60,22.863], [-641,0.013601,343.50,22.866], [-642,0.013009,331.96,22.882], [-643,0.012565,320.92,22.911], [-644,0.012286,310.29,22.952], [-645,0.012184,299.88,23.002], [-646,0.012263,289.50,23.062], [-647,0.012517,278.94,23.128], [-648,0.012934,268.02,23.198], [-649,0.013495,256.64,23.271], [-650,0.014178,244.74,23.345], [-651,0.014963,232.30,23.417], [-652,0.015829,219.35,23.485], [-653,0.016757,205.94,23.549], [-654,0.017733,192.11,23.605], [-655,0.018743,177.92,23.654], [-656,0.019774,163.41,23.693], [-657,0.020819,148.62,23.723], [-658,0.021868,133.58,23.742], [-659,0.022916,118.34,23.750], [-660,0.023956,102.91,23.747], [-661,0.024983,87.31,23.734], [-662,0.025992,71.56,23.712], [-663,0.026981,55.67,23.679], [-664,0.027946,39.67,23.639], [-665,0.028884,23.54,23.590], [-666,0.029793,7.32,23.536], [-667,0.030670,351.00,23.477], [-668,0.031514,334.58,23.414], [-669,0.032322,318.09,23.349], [-670,0.033095,301.51,23.283], [-671,0.033829,284.87,23.217], [-672,0.034524,268.15,23.154], [-673,0.035180,251.38,23.094], [-674,0.035796,234.55,23.039], [-675,0.036370,217.67,22.989], [-676,0.036903,200.74,22.947], [-677,0.037395,183.78,22.912], [-678,0.037845,166.78,22.885], [-679,0.038253,149.76,22.868], [-680,0.038619,132.72,22.860], [-681,0.038944,115.67,22.862], [-682,0.039227,98.60,22.874], [-683,0.039470,81.54,22.896], [-684,0.039672,64.47,22.928], [-685,0.039834,47.42,22.969], [-686,0.039957,30.38,23.018], [-687,0.040041,13.35,23.075], [-688,0.040088,356.35,23.139], [-689,0.040097,339.38,23.209], [-690,0.040069,322.43,23.282], [-691,0.040007,305.51,23.359], [-692,0.039909,288.63,23.436], [-693,0.039778,271.77,23.514], [-694,0.039615,254.95,23.590], [-695,0.039419,238.16,23.662], [-696,0.039193,221.40,23.729], [-697,0.038936,204.66,23.789], [-698,0.038651,187.95,23.841], [-699,0.038337,171.26,23.883], [-700,0.037996,154.58,23.915], [-701,0.037629,137.91,23.935], [-702,0.037237,121.24,23.943], [-703,0.036820,104.57,23.937], [-704,0.036379,87.90,23.918], [-705,0.035915,71.20,23.886], [-706,0.035429,54.49,23.841], [-707,0.034921,37.74,23.783], [-708,0.034392,20.96,23.714], [-709,0.033843,4.14,23.635], [-710,0.033274,347.26,23.547], [-711,0.032686,330.33,23.452], [-712,0.032080,313.34,23.353], [-713,0.031455,296.28,23.251], [-714,0.030812,279.16,23.149], [-715,0.030153,261.97,23.049], [-716,0.029476,244.70,22.954], [-717,0.028783,227.36,22.867], [-718,0.028075,209.95,22.789], [-719,0.027350,192.47,22.723], [-720,0.026611,174.93,22.671], [-721,0.025857,157.32,22.633], [-722,0.025089,139.65,22.612], [-723,0.024308,121.93,22.608], [-724,0.023513,104.15,22.620], [-725,0.022707,86.33,22.650], [-726,0.021888,68.45,22.694], [-727,0.021059,50.53,22.754], [-728,0.020220,32.56,22.826], [-729,0.019372,14.53,22.910], [-730,0.018517,356.44,23.002], [-731,0.017655,338.28,23.101], [-732,0.016789,320.03,23.203], [-733,0.015920,301.67,23.307], [-734,0.015050,283.18,23.410], [-735,0.014183,264.52,23.510], [-736,0.013322,245.65,23.604], [-737,0.012470,226.53,23.691], [-738,0.011632,207.10,23.769], [-739,0.010815,187.28,23.836], [-740,0.010026,166.99,23.891], [-741,0.009274,146.12,23.934], [-742,0.008573,124.57,23.964], [-743,0.007935,102.21,23.980], [-744,0.007381,78.96,23.983], [-745,0.006930,54.78,23.974], [-746,0.006602,29.73,23.952], [-747,0.006417,4.04,23.919], [-748,0.006385,338.07,23.875], [-749,0.006505,312.23,23.821], [-750,0.006766,286.92,23.760], [-751,0.007149,262.37,23.692], [-752,0.007630,238.69,23.619], [-753,0.008187,215.85,23.541], [-754,0.008801,193.77,23.462], [-755,0.009456,172.35,23.381], [-756,0.010137,151.47,23.301], [-757,0.010835,131.04,23.223], [-758,0.011541,110.98,23.149], [-759,0.012247,91.22,23.079], [-760,0.012949,71.70,23.014], [-761,0.013641,52.38,22.956], [-762,0.014319,33.22,22.905], [-763,0.014980,14.20,22.863], [-764,0.015622,355.30,22.829], [-765,0.016241,336.49,22.805], [-766,0.016835,317.77,22.790], [-767,0.017402,299.12,22.785], [-768,0.017940,280.53,22.790], [-769,0.018448,262.01,22.805], [-770,0.018925,243.54,22.829], [-771,0.019368,225.12,22.863], [-772,0.019777,206.74,22.905], [-773,0.020151,188.42,22.956], [-774,0.020489,170.13,23.013], [-775,0.020790,151.89,23.077], [-776,0.021055,133.69,23.145], [-777,0.021281,115.52,23.217], [-778,0.021469,97.39,23.292], [-779,0.021619,79.29,23.367], [-780,0.021731,61.22,23.442], [-781,0.021804,43.18,23.514], [-782,0.021840,25.16,23.583], [-783,0.021838,7.15,23.647], [-784,0.021798,349.15,23.703], [-785,0.021722,331.16,23.752], [-786,0.021609,313.16,23.792], [-787,0.021462,295.15,23.821], [-788,0.021280,277.12,23.840], [-789,0.021066,259.06,23.847], [-790,0.020820,240.95,23.842], [-791,0.020543,222.80,23.825], [-792,0.020238,204.59,23.797], [-793,0.019906,186.30,23.757], [-794,0.019550,167.92,23.708], [-795,0.019170,149.45,23.649], [-796,0.018770,130.87,23.583], [-797,0.018353,112.17,23.511], [-798,0.017920,93.33,23.434], [-799,0.017476,74.35,23.356], [-800,0.017023,55.20,23.277], [-801,0.016565,35.89,23.200], [-802,0.016107,16.39,23.128], [-803,0.015652,356.70,23.062], [-804,0.015206,336.81,23.004], [-805,0.014774,316.71,22.956], [-806,0.014360,296.39,22.919], [-807,0.013971,275.86,22.894], [-808,0.013613,255.12,22.882], [-809,0.013293,234.18,22.883], [-810,0.013016,213.04,22.896], [-811,0.012789,191.74,22.922], [-812,0.012617,170.31,22.959], [-813,0.012506,148.78,23.005], [-814,0.012458,127.21,23.060], [-815,0.012476,105.65,23.122], [-816,0.012563,84.15,23.188], [-817,0.012716,62.75,23.256], [-818,0.012936,41.52,23.325], [-819,0.013217,20.48,23.392], [-820,0.013558,359.66,23.455], [-821,0.013953,339.09,23.512], [-822,0.014397,318.76,23.563], [-823,0.014885,298.69,23.606], [-824,0.015413,278.87,23.639], [-825,0.015974,259.28,23.663], [-826,0.016565,239.92,23.676], [-827,0.017181,220.76,23.678], [-828,0.017817,201.78,23.671], [-829,0.018472,182.98,23.654], [-830,0.019140,164.33,23.628], [-831,0.019819,145.81,23.594], [-832,0.020507,127.41,23.553], [-833,0.021200,109.12,23.507], [-834,0.021898,90.92,23.457], [-835,0.022597,72.80,23.404], [-836,0.023296,54.75,23.349], [-837,0.023993,36.77,23.296], [-838,0.024687,18.84,23.243], [-839,0.025376,0.96,23.194], [-840,0.026059,343.13,23.149], [-841,0.026735,325.34,23.109], [-842,0.027403,307.59,23.075], [-843,0.028061,289.88,23.048], [-844,0.028709,272.21,23.028], [-845,0.029345,254.57,23.014], [-846,0.029968,236.97,23.009], [-847,0.030577,219.41,23.010], [-848,0.031172,201.88,23.019], [-849,0.031751,184.39,23.034], [-850,0.032313,166.94,23.056], [-851,0.032857,149.52,23.083], [-852,0.033383,132.13,23.116], [-853,0.033888,114.79,23.152], [-854,0.034373,97.47,23.193], [-855,0.034835,80.19,23.237], [-856,0.035274,62.95,23.283], [-857,0.035689,45.74,23.331], [-858,0.036078,28.56,23.379], [-859,0.036440,11.41,23.428], [-860,0.036774,354.29,23.476], [-861,0.037080,337.20,23.522], [-862,0.037355,320.14,23.567], [-863,0.037598,303.11,23.608], [-864,0.037810,286.10,23.645], [-865,0.037987,269.11,23.678], [-866,0.038129,252.14,23.706], [-867,0.038236,235.20,23.727], [-868,0.038305,218.26,23.741], [-869,0.038336,201.35,23.748], [-870,0.038329,184.44,23.747], [-871,0.038280,167.54,23.737], [-872,0.038191,150.65,23.718], [-873,0.038060,133.76,23.691], [-874,0.037887,116.86,23.654], [-875,0.037670,99.96,23.608], [-876,0.037408,83.05,23.554], [-877,0.037103,66.13,23.492], [-878,0.036752,49.20,23.424], [-879,0.036355,32.24,23.349], [-880,0.035913,15.27,23.271], [-881,0.035424,358.28,23.191], [-882,0.034890,341.27,23.109], [-883,0.034310,324.24,23.029], [-884,0.033683,307.20,22.953], [-885,0.033012,290.14,22.882], [-886,0.032295,273.09,22.819], [-887,0.031533,256.03,22.765], [-888,0.030728,238.98,22.723], [-889,0.029879,221.96,22.694], [-890,0.028989,204.97,22.680], [-891,0.028059,188.04,22.681], [-892,0.027089,171.17,22.698], [-893,0.026081,154.39,22.731], [-894,0.025039,137.71,22.779], [-895,0.023963,121.16,22.842], [-896,0.022857,104.77,22.919], [-897,0.021724,88.56,23.007], [-898,0.020568,72.57,23.104], [-899,0.019393,56.84,23.208], [-900,0.018204,41.42,23.317], [-901,0.017009,26.35,23.428], [-902,0.015816,11.72,23.538], [-903,0.014635,357.62,23.644], [-904,0.013481,344.15,23.743], [-905,0.012373,331.47,23.834], [-906,0.011334,319.74,23.914], [-907,0.010398,309.13,23.980], [-908,0.009605,299.80,24.033], [-909,0.009004,291.77,24.069], [-910,0.008644,284.85,24.089], [-911,0.008564,278.53,24.092], [-912,0.008778,272.13,24.078], [-913,0.009270,264.95,24.048], [-914,0.010002,256.60,24.001], [-915,0.010927,246.94,23.940], [-916,0.011999,236.04,23.866], [-917,0.013183,224.07,23.780], [-918,0.014448,211.20,23.685], [-919,0.015771,197.60,23.582], [-920,0.017136,183.40,23.475], [-921,0.018530,168.71,23.366], [-922,0.019943,153.61,23.256], [-923,0.021365,138.18,23.150], [-924,0.022790,122.47,23.049], [-925,0.024214,106.52,22.956], [-926,0.025630,90.37,22.872], [-927,0.027036,74.06,22.799], [-928,0.028427,57.61,22.739], [-929,0.029801,41.04,22.692], [-930,0.031154,24.38,22.661], [-931,0.032484,7.64,22.643], [-932,0.033790,350.85,22.641], [-933,0.035068,334.01,22.652], [-934,0.036318,317.15,22.678], [-935,0.037537,300.27,22.715], [-936,0.038724,283.38,22.764], [-937,0.039877,266.49,22.823], [-938,0.040996,249.62,22.891], [-939,0.042080,232.76,22.965], [-940,0.043127,215.92,23.044], [-941,0.044136,199.10,23.127], [-942,0.045108,182.31,23.212], [-943,0.046040,165.55,23.297], [-944,0.046934,148.82,23.381], [-945,0.047787,132.12,23.462], [-946,0.048601,115.45,23.540], [-947,0.049375,98.81,23.613], [-948,0.050108,82.19,23.680], [-949,0.050801,65.60,23.740], [-950,0.051453,49.03,23.792], [-951,0.052065,32.49,23.836], [-952,0.052636,15.96,23.871], [-953,0.053168,359.44,23.897], [-954,0.053659,342.94,23.912], [-955,0.054110,326.45,23.918], [-956,0.054522,309.96,23.913], [-957,0.054894,293.48,23.898], [-958,0.055228,276.99,23.872], [-959,0.055522,260.49,23.836], [-960,0.055778,243.99,23.791], [-961,0.055996,227.47,23.736], [-962,0.056177,210.94,23.673], [-963,0.056319,194.38,23.603], [-964,0.056424,177.80,23.526], [-965,0.056492,161.20,23.444], [-966,0.056523,144.56,23.359], [-967,0.056517,127.89,23.272], [-968,0.056475,111.18,23.185], [-969,0.056396,94.44,23.100], [-970,0.056281,77.67,23.019], [-971,0.056129,60.87,22.943], [-972,0.055941,44.03,22.876], [-973,0.055716,27.17,22.819], [-974,0.055456,10.29,22.773], [-975,0.055158,353.39,22.740], [-976,0.054824,336.49,22.721], [-977,0.054454,319.58,22.718], [-978,0.054046,302.68,22.729], [-979,0.053602,285.79,22.756], [-980,0.053120,268.93,22.798], [-981,0.052602,252.09,22.853], [-982,0.052046,235.30,22.922], [-983,0.051452,218.55,23.001], [-984,0.050821,201.85,23.088], [-985,0.050152,185.20,23.182], [-986,0.049445,168.62,23.280], [-987,0.048700,152.09,23.379], [-988,0.047918,135.63,23.476], [-989,0.047099,119.24,23.569], [-990,0.046242,102.90,23.655], [-991,0.045349,86.62,23.732], [-992,0.044419,70.41,23.797], [-993,0.043453,54.25,23.850], [-994,0.042451,38.14,23.887], [-995,0.041416,22.08,23.909], [-996,0.040347,6.06,23.915], [-997,0.039246,350.10,23.904], [-998,0.038114,334.17,23.877], [-999,0.036953,318.29,23.835], [-1000,0.035765,302.46,23.778], [-1001,0.034552,286.67,23.709], [-1002,0.033316,270.94,23.629], [-1003,0.032062,255.27,23.541], [-1004,0.030792,239.68,23.447], [-1005,0.029511,224.17,23.350], [-1006,0.028223,208.78,23.253], [-1007,0.026935,193.52,23.158], [-1008,0.025652,178.43,23.069], [-1009,0.024384,163.54,22.989], [-1010,0.023139,148.90,22.919], [-1011,0.021929,134.56,22.862], [-1012,0.020768,120.56,22.819], [-1013,0.019672,106.98,22.792], [-1014,0.018658,93.84,22.781], [-1015,0.017748,81.21,22.787], [-1016,0.016965,69.10,22.809], [-1017,0.016334,57.51,22.847], [-1018,0.015877,46.37,22.898], [-1019,0.015614,35.57,22.961], [-1020,0.015558,24.96,23.034], [-1021,0.015714,14.37,23.114], [-1022,0.016076,3.60,23.200], [-1023,0.016631,352.52,23.288], [-1024,0.017359,341.02,23.377], [-1025,0.018237,329.05,23.463], [-1026,0.019242,316.60,23.544], [-1027,0.020352,303.67,23.619], [-1028,0.021546,290.32,23.686], [-1029,0.022806,276.57,23.742], [-1030,0.024117,262.47,23.788], [-1031,0.025465,248.06,23.822], [-1032,0.026840,233.38,23.843], [-1033,0.028230,218.45,23.852], [-1034,0.029628,203.31,23.848], [-1035,0.031027,187.97,23.833], [-1036,0.032420,172.47,23.806], [-1037,0.033801,156.80,23.769], [-1038,0.035166,140.99,23.722], [-1039,0.036510,125.05,23.667], [-1040,0.037828,108.99,23.605], [-1041,0.039119,92.81,23.537], [-1042,0.040377,76.53,23.465], [-1043,0.041601,60.15,23.390], [-1044,0.042788,43.68,23.314], [-1045,0.043935,27.13,23.238], [-1046,0.045040,10.50,23.163], [-1047,0.046102,353.79,23.091], [-1048,0.047118,337.02,23.023], [-1049,0.048086,320.19,22.961], [-1050,0.049006,303.30,22.905], [-1051,0.049877,286.36,22.856], [-1052,0.050696,269.38,22.815], [-1053,0.051464,252.37,22.784], [-1054,0.052180,235.32,22.762], [-1055,0.052842,218.25,22.750], [-1056,0.053451,201.16,22.749], [-1057,0.054005,184.05,22.759], [-1058,0.054506,166.94,22.781], [-1059,0.054952,149.83,22.814], [-1060,0.055344,132.73,22.858], [-1061,0.055682,115.64,22.913], [-1062,0.055967,98.56,22.978], [-1063,0.056197,81.51,23.052], [-1064,0.056375,64.49,23.135], [-1065,0.056501,47.51,23.225], [-1066,0.056574,30.56,23.320], [-1067,0.056596,13.65,23.419], [-1068,0.056568,356.79,23.520], [-1069,0.056491,339.97,23.620], [-1070,0.056364,323.20,23.718], [-1071,0.056191,306.48,23.812], [-1072,0.055970,289.79,23.898], [-1073,0.055704,273.15,23.976], [-1074,0.055393,256.55,24.043], [-1075,0.055039,239.98,24.096], [-1076,0.054643,223.44,24.134], [-1077,0.054205,206.91,24.157], [-1078,0.053728,190.41,24.161], [-1079,0.053211,173.91,24.147], [-1080,0.052657,157.41,24.115], [-1081,0.052067,140.90,24.063], [-1082,0.051440,124.38,23.993], [-1083,0.050780,107.82,23.906], [-1084,0.050086,91.24,23.802], [-1085,0.049360,74.61,23.684], [-1086,0.048602,57.93,23.554], [-1087,0.047814,41.20,23.416], [-1088,0.046997,24.40,23.271], [-1089,0.046152,7.54,23.124], [-1090,0.045278,350.61,22.979], [-1091,0.044378,333.61,22.839], [-1092,0.043452,316.55,22.708], [-1093,0.042501,299.42,22.591], [-1094,0.041525,282.24,22.491], [-1095,0.040525,265.01,22.411], [-1096,0.039502,247.74,22.353], [-1097,0.038456,230.45,22.320], [-1098,0.037388,213.15,22.313], [-1099,0.036298,195.85,22.332], [-1100,0.035187,178.56,22.377], [-1101,0.034056,161.31,22.447], [-1102,0.032904,144.09,22.539], [-1103,0.031733,126.92,22.651], [-1104,0.030543,109.82,22.780], [-1105,0.029334,92.78,22.921], [-1106,0.028107,75.82,23.072], [-1107,0.026862,58.93,23.228], [-1108,0.025599,42.12,23.384], [-1109,0.024321,25.38,23.537], [-1110,0.023026,8.71,23.682], [-1111,0.021716,352.12,23.817], [-1112,0.020391,335.58,23.938], [-1113,0.019052,319.11,24.043], [-1114,0.017700,302.70,24.130], [-1115,0.016335,286.34,24.196], [-1116,0.014959,270.03,24.241], [-1117,0.013573,253.78,24.265], [-1118,0.012176,237.61,24.267], [-1119,0.010772,221.52,24.248], [-1120,0.009361,205.58,24.209], [-1121,0.007945,189.84,24.152], [-1122,0.006527,174.49,24.078], [-1123,0.005110,159.84,23.989], [-1124,0.003702,146.77,23.889], [-1125,0.002328,138.16,23.778], [-1126,0.001126,149.49,23.661], [-1127,0.001121,212.00,23.540], [-1128,0.002316,223.43,23.417], [-1129,0.003682,214.60,23.297], [-1130,0.005079,201.15,23.180], [-1131,0.006480,186.00,23.071], [-1132,0.007878,170.02,22.970], [-1133,0.009268,153.57,22.881], [-1134,0.010648,136.82,22.803], [-1135,0.012015,119.86,22.740], [-1136,0.013366,102.76,22.690], [-1137,0.014700,85.55,22.655], [-1138,0.016015,68.26,22.635], [-1139,0.017309,50.91,22.630], [-1140,0.018580,33.52,22.638], [-1141,0.019826,16.11,22.661], [-1142,0.021045,358.67,22.695], [-1143,0.022236,341.23,22.741], [-1144,0.023397,323.78,22.797], [-1145,0.024526,306.34,22.862], [-1146,0.025621,288.91,22.934], [-1147,0.026682,271.49,23.012], [-1148,0.027706,254.08,23.095], [-1149,0.028692,236.70,23.181], [-1150,0.029638,219.34,23.268], [-1151,0.030544,202.00,23.356], [-1152,0.031407,184.68,23.443], [-1153,0.032228,167.38,23.527], [-1154,0.033004,150.10,23.608], [-1155,0.033734,132.84,23.683], [-1156,0.034419,115.60,23.751], [-1157,0.035056,98.37,23.811], [-1158,0.035645,81.15,23.863], [-1159,0.036185,63.95,23.903], [-1160,0.036677,46.74,23.933], [-1161,0.037119,29.54,23.950], [-1162,0.037511,12.33,23.954], [-1163,0.037852,355.11,23.945], [-1164,0.038144,337.88,23.922], [-1165,0.038385,320.62,23.885], [-1166,0.038576,303.34,23.835], [-1167,0.038718,286.02,23.771], [-1168,0.038809,268.66,23.696], [-1169,0.038851,251.25,23.611], [-1170,0.038845,233.79,23.517], [-1171,0.038790,216.27,23.415], [-1172,0.038688,198.69,23.310], [-1173,0.038539,181.04,23.202], [-1174,0.038345,163.32,23.096], [-1175,0.038106,145.54,22.993], [-1176,0.037824,127.68,22.898], [-1177,0.037500,109.76,22.812], [-1178,0.037134,91.78,22.740], [-1179,0.036730,73.74,22.683], [-1180,0.036287,55.64,22.643], [-1181,0.035808,37.51,22.623], [-1182,0.035294,19.34,22.624], [-1183,0.034748,1.14,22.645], [-1184,0.034171,342.92,22.687], [-1185,0.033564,324.70,22.749], [-1186,0.032931,306.47,22.829], [-1187,0.032273,288.25,22.925], [-1188,0.031592,270.04,23.035], [-1189,0.030891,251.84,23.154], [-1190,0.030172,233.64,23.280], [-1191,0.029437,215.46,23.409], [-1192,0.028690,197.28,23.537], [-1193,0.027933,179.09,23.661], [-1194,0.027168,160.88,23.775], [-1195,0.026400,142.64,23.878], [-1196,0.025631,124.36,23.966], [-1197,0.024864,106.03,24.037], [-1198,0.024103,87.61,24.088], [-1199,0.023352,69.10,24.119], [-1200,0.022615,50.47,24.127], [-1201,0.021896,31.71,24.113], [-1202,0.021199,12.80,24.076], [-1203,0.020529,353.71,24.019], [-1204,0.019891,334.43,23.941], [-1205,0.019291,314.94,23.846], [-1206,0.018733,295.24,23.735], [-1207,0.018223,275.31,23.612], [-1208,0.017766,255.16,23.480], [-1209,0.017367,234.78,23.342], [-1210,0.017032,214.20,23.203], [-1211,0.016763,193.43,23.067], [-1212,0.016565,172.50,22.937], [-1213,0.016440,151.44,22.817], [-1214,0.016389,130.30,22.712], [-1215,0.016412,109.13,22.623], [-1216,0.016508,87.96,22.554], [-1217,0.016675,66.85,22.507], [-1218,0.016909,45.83,22.482], [-1219,0.017206,24.94,22.480], [-1220,0.017561,4.22,22.501], [-1221,0.017969,343.68,22.544], [-1222,0.018426,323.35,22.608], [-1223,0.018924,303.23,22.689], [-1224,0.019460,283.33,22.786], [-1225,0.020028,263.65,22.895], [-1226,0.020623,244.20,23.014], [-1227,0.021240,224.96,23.139], [-1228,0.021877,205.92,23.267], [-1229,0.022527,187.08,23.395], [-1230,0.023189,168.42,23.519], [-1231,0.023858,149.93,23.636], [-1232,0.024531,131.60,23.746], [-1233,0.025206,113.40,23.844], [-1234,0.025880,95.34,23.931], [-1235,0.026550,77.38,24.003], [-1236,0.027214,59.52,24.061], [-1237,0.027869,41.74,24.103], [-1238,0.028514,24.04,24.130], [-1239,0.029146,6.40,24.141], [-1240,0.029763,348.80,24.136], [-1241,0.030364,331.24,24.116], [-1242,0.030946,313.71,24.082], [-1243,0.031508,296.20,24.033], [-1244,0.032048,278.70,23.972], [-1245,0.032565,261.20,23.900], [-1246,0.033056,243.69,23.817], [-1247,0.033521,226.17,23.726], [-1248,0.033957,208.63,23.626], [-1249,0.034363,191.07,23.521], [-1250,0.034739,173.48,23.412], [-1251,0.035081,155.86,23.300], [-1252,0.035389,138.21,23.187], [-1253,0.035663,120.52,23.075], [-1254,0.035899,102.79,22.966], [-1255,0.036098,85.02,22.862], [-1256,0.036258,67.21,22.765], [-1257,0.036377,49.36,22.677], [-1258,0.036456,31.48,22.600], [-1259,0.036493,13.56,22.535], [-1260,0.036487,355.62,22.485], [-1261,0.036438,337.65,22.451], [-1262,0.036344,319.66,22.434], [-1263,0.036206,301.66,22.435], [-1264,0.036021,283.67,22.455], [-1265,0.035792,265.67,22.494], [-1266,0.035515,247.69,22.552], [-1267,0.035193,229.73,22.629], [-1268,0.034824,211.80,22.722], [-1269,0.034408,193.91,22.831], [-1270,0.033945,176.06,22.954], [-1271,0.033436,158.26,23.088], [-1272,0.032881,140.50,23.230], [-1273,0.032279,122.80,23.377], [-1274,0.031633,105.15,23.526], [-1275,0.030941,87.55,23.673], [-1276,0.030206,70.00,23.815], [-1277,0.029427,52.49,23.949], [-1278,0.028605,35.00,24.071], [-1279,0.027743,17.54,24.177], [-1280,0.026840,0.09,24.267], [-1281,0.025898,342.64,24.336], [-1282,0.024919,325.17,24.384], [-1283,0.023904,307.66,24.408], [-1284,0.022855,290.10,24.408], [-1285,0.021773,272.47,24.383], [-1286,0.020662,254.73,24.334], [-1287,0.019523,236.86,24.261], [-1288,0.018360,218.83,24.166], [-1289,0.017174,200.59,24.050], [-1290,0.015971,182.09,23.915], [-1291,0.014754,163.28,23.766], [-1292,0.013529,144.08,23.605], [-1293,0.012303,124.36,23.436], [-1294,0.011085,104.00,23.264], [-1295,0.009889,82.78,23.094], [-1296,0.008735,60.40,22.929], [-1297,0.007650,36.46,22.774], [-1298,0.006682,10.42,22.635], [-1299,0.005896,341.72,22.514], [-1300,0.005383,310.18,22.416], [-1301,0.005232,276.74,22.342], [-1302,0.005477,243.50,22.296], [-1303,0.006074,212.41,22.278], [-1304,0.006932,184.14,22.288], [-1305,0.007967,158.39,22.326], [-1306,0.009117,134.62,22.389], [-1307,0.010341,112.29,22.476], [-1308,0.011612,91.03,22.584], [-1309,0.012913,70.59,22.709], [-1310,0.014232,50.77,22.847], [-1311,0.015559,31.44,22.993], [-1312,0.016889,12.52,23.144], [-1313,0.018216,353.92,23.295], [-1314,0.019537,335.61,23.443], [-1315,0.020848,317.53,23.582], [-1316,0.022147,299.64,23.711], [-1317,0.023431,281.93,23.826], [-1318,0.024698,264.37,23.925], [-1319,0.025946,246.92,24.007], [-1320,0.027175,229.58,24.069], [-1321,0.028382,212.32,24.111], [-1322,0.029565,195.13,24.133], [-1323,0.030725,177.98,24.136], [-1324,0.031861,160.88,24.120], [-1325,0.032970,143.80,24.085], [-1326,0.034052,126.73,24.035], [-1327,0.035108,109.67,23.970], [-1328,0.036135,92.61,23.892], [-1329,0.037133,75.53,23.805], [-1330,0.038103,58.44,23.709], [-1331,0.039043,41.32,23.608], [-1332,0.039953,24.19,23.505], [-1333,0.040833,7.02,23.401], [-1334,0.041682,349.83,23.299], [-1335,0.042501,332.61,23.201], [-1336,0.043289,315.37,23.110], [-1337,0.044045,298.11,23.026], [-1338,0.044770,280.82,22.952], [-1339,0.045463,263.52,22.889], [-1340,0.046125,246.21,22.837], [-1341,0.046754,228.90,22.798], [-1342,0.047352,211.58,22.771], [-1343,0.047917,194.27,22.757], [-1344,0.048450,176.96,22.756], [-1345,0.048950,159.67,22.766], [-1346,0.049417,142.40,22.789], [-1347,0.049851,125.14,22.823], [-1348,0.050252,107.91,22.867], [-1349,0.050619,90.71,22.920], [-1350,0.050952,73.54,22.982], [-1351,0.051251,56.41,23.050], [-1352,0.051515,39.30,23.124], [-1353,0.051743,22.24,23.202], [-1354,0.051937,5.21,23.284], [-1355,0.052094,348.21,23.366], [-1356,0.052215,331.26,23.449], [-1357,0.052299,314.34,23.529], [-1358,0.052345,297.46,23.607], [-1359,0.052353,280.60,23.679], [-1360,0.052323,263.78,23.745], [-1361,0.052253,246.99,23.802], [-1362,0.052144,230.22,23.851], [-1363,0.051994,213.47,23.888], [-1364,0.051804,196.73,23.913], [-1365,0.051572,180.00,23.925], [-1366,0.051298,163.28,23.923], [-1367,0.050982,146.56,23.907], [-1368,0.050623,129.82,23.877], [-1369,0.050221,113.07,23.831], [-1370,0.049774,96.30,23.772], [-1371,0.049284,79.51,23.699], [-1372,0.048749,62.67,23.615], [-1373,0.048170,45.80,23.519], [-1374,0.047545,28.89,23.416], [-1375,0.046876,11.92,23.306], [-1376,0.046161,354.90,23.193], [-1377,0.045401,337.83,23.079], [-1378,0.044596,320.70,22.968], [-1379,0.043747,303.52,22.863], [-1380,0.042852,286.30,22.767], [-1381,0.041914,269.02,22.683], [-1382,0.040931,251.72,22.615], [-1383,0.039905,234.38,22.564], [-1384,0.038837,217.04,22.534], [-1385,0.037727,199.69,22.526], [-1386,0.036576,182.35,22.539], [-1387,0.035384,165.04,22.576], [-1388,0.034154,147.77,22.635], [-1389,0.032886,130.57,22.715], [-1390,0.031581,113.44,22.814], [-1391,0.030242,96.39,22.929], [-1392,0.028869,79.46,23.058], [-1393,0.027465,62.64,23.197], [-1394,0.026031,45.96,23.341], [-1395,0.024570,29.43,23.488], [-1396,0.023084,13.07,23.633], [-1397,0.021576,356.90,23.771], [-1398,0.020049,340.93,23.900], [-1399,0.018507,325.22,24.016], [-1400,0.016954,309.80,24.115], [-1401,0.015395,294.75,24.196], [-1402,0.013839,280.16,24.255], [-1403,0.012296,266.19,24.292], [-1404,0.010779,253.07,24.305], [-1405,0.009312,241.18,24.294], [-1406,0.007932,231.09,24.259], [-1407,0.006701,223.67,24.201], [-1408,0.005724,219.95,24.122], [-1409,0.005154,220.28,24.022], [-1410,0.005131,222.65,23.905], [-1411,0.005661,223.14,23.773], [-1412,0.006609,219.54,23.629], [-1413,0.007822,212.06,23.478], [-1414,0.009189,201.75,23.322], [-1415,0.010645,189.49,23.167], [-1416,0.012152,175.90,23.016], [-1417,0.013687,161.37,22.873], [-1418,0.015233,146.16,22.741], [-1419,0.016782,130.44,22.625], [-1420,0.018325,114.35,22.527], [-1421,0.019857,97.96,22.450], [-1422,0.021373,81.34,22.395], [-1423,0.022869,64.55,22.363], [-1424,0.024343,47.63,22.355], [-1425,0.025791,30.62,22.371], [-1426,0.027211,13.54,22.409], [-1427,0.028601,356.43,22.468], [-1428,0.029959,339.30,22.546], [-1429,0.031283,322.16,22.641], [-1430,0.032572,305.04,22.749], [-1431,0.033824,287.94,22.868], [-1432,0.035038,270.88,22.995], [-1433,0.036213,253.85,23.126], [-1434,0.037347,236.86,23.258], [-1435,0.038440,219.91,23.389], [-1436,0.039491,203.01,23.515], [-1437,0.040500,186.15,23.635], [-1438,0.041465,169.32,23.746], [-1439,0.042386,152.53,23.847], [-1440,0.043263,135.77,23.936], [-1441,0.044095,119.03,24.012], [-1442,0.044883,102.32,24.073], [-1443,0.045626,85.62,24.120], [-1444,0.046324,68.93,24.152], [-1445,0.046977,52.25,24.169], [-1446,0.047585,35.57,24.171], [-1447,0.048149,18.89,24.157], [-1448,0.048668,2.19,24.130], [-1449,0.049144,345.49,24.089], [-1450,0.049576,328.76,24.035], [-1451,0.049965,312.01,23.968], [-1452,0.050311,295.24,23.891], [-1453,0.050615,278.43,23.804], [-1454,0.050877,261.59,23.709], [-1455,0.051098,244.71,23.606], [-1456,0.051279,227.79,23.498], [-1457,0.051420,210.83,23.386], [-1458,0.051522,193.82,23.273], [-1459,0.051584,176.77,23.159], [-1460,0.051609,159.66,23.048], [-1461,0.051597,142.51,22.941], [-1462,0.051547,125.31,22.840], [-1463,0.051462,108.07,22.748], [-1464,0.051341,90.78,22.666], [-1465,0.051184,73.46,22.598], [-1466,0.050993,56.10,22.543], [-1467,0.050769,38.72,22.505], [-1468,0.050510,21.32,22.484], [-1469,0.050219,3.90,22.481], [-1470,0.049895,346.48,22.497], [-1471,0.049538,329.07,22.531], [-1472,0.049150,311.67,22.584], [-1473,0.048730,294.29,22.655], [-1474,0.048280,276.93,22.741], [-1475,0.047798,259.61,22.842], [-1476,0.047286,242.34,22.955], [-1477,0.046743,225.10,23.077], [-1478,0.046170,207.92,23.206], [-1479,0.045567,190.78,23.338], [-1480,0.044935,173.70,23.470], [-1481,0.044273,156.65,23.600], [-1482,0.043582,139.66,23.723], [-1483,0.042862,122.70,23.837], [-1484,0.042114,105.77,23.938], [-1485,0.041337,88.87,24.026], [-1486,0.040531,71.98,24.096], [-1487,0.039698,55.10,24.148], [-1488,0.038837,38.21,24.180], [-1489,0.037948,21.31,24.192], [-1490,0.037033,4.39,24.182], [-1491,0.036091,347.42,24.151], [-1492,0.035124,330.42,24.101], [-1493,0.034131,313.35,24.031], [-1494,0.033113,296.21,23.944], [-1495,0.032072,278.99,23.841], [-1496,0.031007,261.68,23.727], [-1497,0.029920,244.27,23.602], [-1498,0.028811,226.75,23.472], [-1499,0.027682,209.11,23.339], [-1500,0.026533,191.35,23.206], [-1501,0.025367,173.45,23.079], [-1502,0.024185,155.41,22.961], [-1503,0.022987,137.23,22.854], [-1504,0.021777,118.89,22.762], [-1505,0.020555,100.40,22.688], [-1506,0.019325,81.73,22.633], [-1507,0.018089,62.88,22.599], [-1508,0.016851,43.82,22.587], [-1509,0.015613,24.52,22.597], [-1510,0.014381,4.92,22.627], [-1511,0.013160,344.97,22.677], [-1512,0.011959,324.57,22.745], [-1513,0.010787,303.58,22.827], [-1514,0.009660,281.81,22.922], [-1515,0.008595,259.00,23.025], [-1516,0.007624,234.83,23.134], [-1517,0.006786,208.92,23.246], [-1518,0.006136,181.01,23.356], [-1519,0.005737,151.24,23.462], [-1520,0.005636,120.46,23.560], [-1521,0.005846,90.06,23.650], [-1522,0.006328,61.24,23.727], [-1523,0.007020,34.49,23.791], [-1524,0.007860,9.70,23.841], [-1525,0.008796,346.52,23.875], [-1526,0.009795,324.60,23.894], [-1527,0.010831,303.61,23.897], [-1528,0.011888,283.32,23.884], [-1529,0.012952,263.55,23.858], [-1530,0.014014,244.19,23.818], [-1531,0.015069,225.12,23.767], [-1532,0.016110,206.27,23.705], [-1533,0.017133,187.60,23.636], [-1534,0.018136,169.06,23.561], [-1535,0.019114,150.61,23.481], [-1536,0.020066,132.24,23.400], [-1537,0.020989,113.92,23.319], [-1538,0.021881,95.63,23.240], [-1539,0.022741,77.38,23.165], [-1540,0.023567,59.15,23.096], [-1541,0.024359,40.93,23.034], [-1542,0.025114,22.73,22.980], [-1543,0.025832,4.54,22.935], [-1544,0.026513,346.37,22.900], [-1545,0.027154,328.20,22.874], [-1546,0.027757,310.05,22.860], [-1547,0.028320,291.91,22.856], [-1548,0.028843,273.79,22.861], [-1549,0.029326,255.69,22.877], [-1550,0.029769,237.60,22.902], [-1551,0.030172,219.54,22.936], [-1552,0.030534,201.50,22.978], [-1553,0.030856,183.49,23.026], [-1554,0.031139,165.50,23.081], [-1555,0.031383,147.54,23.142], [-1556,0.031588,129.60,23.206], [-1557,0.031755,111.69,23.274], [-1558,0.031884,93.81,23.344], [-1559,0.031977,75.95,23.415], [-1560,0.032034,58.12,23.486], [-1561,0.032056,40.31,23.556], [-1562,0.032044,22.52,23.623], [-1563,0.031999,4.75,23.686], [-1564,0.031923,346.99,23.744], [-1565,0.031817,329.25,23.795], [-1566,0.031682,311.52,23.839], [-1567,0.031519,293.79,23.874], [-1568,0.031330,276.06,23.898], [-1569,0.031116,258.32,23.912], [-1570,0.030879,240.57,23.914], [-1571,0.030621,222.80,23.904], [-1572,0.030342,205.00,23.881], [-1573,0.030046,187.17,23.844], [-1574,0.029733,169.30,23.795], [-1575,0.029405,151.37,23.733], [-1576,0.029065,133.39,23.659], [-1577,0.028714,115.34,23.575], [-1578,0.028354,97.22,23.481], [-1579,0.027987,79.02,23.380], [-1580,0.027615,60.72,23.274], [-1581,0.027239,42.34,23.165], [-1582,0.026863,23.85,23.055], [-1583,0.026489,5.26,22.948], [-1584,0.026117,346.58,22.847], [-1585,0.025751,327.79,22.754], [-1586,0.025393,308.89,22.672], [-1587,0.025044,289.91,22.605], [-1588,0.024707,270.83,22.554], [-1589,0.024384,251.68,22.521], [-1590,0.024077,232.45,22.508], [-1591,0.023789,213.16,22.516], [-1592,0.023521,193.82,22.545], [-1593,0.023274,174.45,22.594], [-1594,0.023052,155.05,22.663], [-1595,0.022856,135.65,22.751], [-1596,0.022686,116.25,22.854], [-1597,0.022545,96.86,22.970], [-1598,0.022434,77.51,23.096], [-1599,0.022354,58.19,23.229], [-1600,0.022304,38.91,23.365], [-1601,0.022287,19.69,23.501], [-1602,0.022301,0.53,23.634], [-1603,0.022348,341.44,23.759], [-1604,0.022426,322.40,23.873], [-1605,0.022535,303.44,23.975], [-1606,0.022674,284.54,24.061], [-1607,0.022842,265.70,24.130], [-1608,0.023038,246.93,24.181], [-1609,0.023260,228.21,24.211], [-1610,0.023506,209.54,24.221], [-1611,0.023775,190.93,24.210], [-1612,0.024065,172.35,24.180], [-1613,0.024373,153.81,24.131], [-1614,0.024698,135.29,24.064], [-1615,0.025036,116.80,23.981], [-1616,0.025387,98.32,23.885], [-1617,0.025747,79.85,23.777], [-1618,0.026114,61.38,23.661], [-1619,0.026487,42.91,23.539], [-1620,0.026862,24.44,23.414], [-1621,0.027237,5.95,23.290], [-1622,0.027610,347.46,23.169], [-1623,0.027980,328.97,23.053], [-1624,0.028342,310.46,22.947], [-1625,0.028697,291.95,22.852], [-1626,0.029040,273.44,22.769], [-1627,0.029371,254.94,22.701], [-1628,0.029687,236.45,22.648], [-1629,0.029987,217.98,22.612], [-1630,0.030267,199.53,22.592], [-1631,0.030528,181.11,22.589], [-1632,0.030765,162.72,22.601], [-1633,0.030979,144.38,22.627], [-1634,0.031167,126.08,22.667], [-1635,0.031328,107.83,22.720], [-1636,0.031460,89.63,22.782], [-1637,0.031562,71.48,22.853], [-1638,0.031632,53.39,22.932], [-1639,0.031669,35.36,23.015], [-1640,0.031671,17.38,23.101], [-1641,0.031639,359.45,23.189], [-1642,0.031570,341.58,23.277], [-1643,0.031463,323.76,23.364], [-1644,0.031319,305.98,23.447], [-1645,0.031135,288.25,23.527], [-1646,0.030912,270.56,23.601], [-1647,0.030649,252.91,23.669], [-1648,0.030344,235.29,23.730], [-1649,0.029999,217.71,23.783], [-1650,0.029612,200.14,23.828], [-1651,0.029184,182.60,23.864], [-1652,0.028714,165.08,23.890], [-1653,0.028202,147.57,23.906], [-1654,0.027649,130.07,23.913], [-1655,0.027055,112.58,23.909], [-1656,0.026419,95.08,23.895], [-1657,0.025743,77.58,23.871], [-1658,0.025027,60.06,23.837], [-1659,0.024272,42.53,23.794], [-1660,0.023478,24.98,23.741], [-1661,0.022646,7.40,23.681], [-1662,0.021777,349.78,23.613], [-1663,0.020872,332.12,23.539], [-1664,0.019933,314.42,23.461], [-1665,0.018960,296.66,23.379], [-1666,0.017954,278.83,23.295], [-1667,0.016918,260.94,23.212], [-1668,0.015852,242.96,23.130], [-1669,0.014759,224.89,23.053], [-1670,0.013639,206.70,22.981], [-1671,0.012495,188.38,22.917], [-1672,0.011330,169.89,22.862], [-1673,0.010145,151.18,22.818], [-1674,0.008943,132.17,22.787], [-1675,0.007728,112.71,22.768], [-1676,0.006507,92.57,22.764], [-1677,0.005288,71.27,22.774], [-1678,0.004090,47.78,22.798], [-1679,0.002958,19.58,22.835], [-1680,0.002033,340.14,22.885], [-1681,0.001719,282.47,22.946], [-1682,0.002299,230.01,23.017], [-1683,0.003341,195.34,23.095], [-1684,0.004541,169.29,23.179], [-1685,0.005802,146.96,23.266], [-1686,0.007091,126.48,23.353], [-1687,0.008394,107.04,23.439], [-1688,0.009702,88.24,23.520], [-1689,0.011012,69.88,23.595], [-1690,0.012319,51.83,23.662], [-1691,0.013621,34.01,23.718], [-1692,0.014916,16.37,23.763], [-1693,0.016201,358.86,23.796], [-1694,0.017476,341.45,23.815], [-1695,0.018739,324.13,23.820], [-1696,0.019987,306.86,23.811], [-1697,0.021221,289.65,23.789], [-1698,0.022438,272.47,23.754], [-1699,0.023638,255.31,23.708], [-1700,0.024820,238.17,23.651], [-1701,0.025982,221.02,23.586], [-1702,0.027124,203.88,23.515], [-1703,0.028245,186.73,23.439], [-1704,0.029345,169.56,23.361], [-1705,0.030422,152.38,23.284], [-1706,0.031476,135.19,23.208], [-1707,0.032506,117.98,23.138], [-1708,0.033512,100.76,23.074], [-1709,0.034494,83.53,23.018], [-1710,0.035451,66.29,22.973], [-1711,0.036382,49.05,22.938], [-1712,0.037288,31.81,22.916], [-1713,0.038168,14.59,22.906], [-1714,0.039022,357.37,22.908], [-1715,0.039850,340.18,22.922], [-1716,0.040650,323.01,22.948], [-1717,0.041424,305.88,22.984], [-1718,0.042171,288.77,23.029], [-1719,0.042891,271.71,23.082], [-1720,0.043583,254.68,23.141], [-1721,0.044247,237.69,23.204], [-1722,0.044883,220.75,23.270], [-1723,0.045491,203.85,23.336], [-1724,0.046070,186.98,23.401], [-1725,0.046621,170.15,23.464], [-1726,0.047142,153.36,23.523], [-1727,0.047634,136.60,23.576], [-1728,0.048096,119.87,23.623], [-1729,0.048527,103.16,23.663], [-1730,0.048927,86.47,23.694], [-1731,0.049296,69.80,23.717], [-1732,0.049633,53.14,23.731], [-1733,0.049938,36.48,23.735], [-1734,0.050210,19.83,23.731], [-1735,0.050448,3.18,23.718], [-1736,0.050651,346.52,23.696], [-1737,0.050819,329.85,23.667], [-1738,0.050952,313.17,23.630], [-1739,0.051048,296.48,23.587], [-1740,0.051108,279.77,23.538], [-1741,0.051129,263.04,23.484], [-1742,0.051111,246.29,23.426], [-1743,0.051055,229.52,23.365], [-1744,0.050958,212.72,23.303], [-1745,0.050820,195.90,23.240], [-1746,0.050642,179.06,23.178], [-1747,0.050421,162.19,23.117], [-1748,0.050158,145.31,23.060], [-1749,0.049851,128.40,23.006], [-1750,0.049502,111.48,22.958], [-1751,0.049108,94.54,22.916], [-1752,0.048670,77.60,22.882], [-1753,0.048187,60.64,22.855], [-1754,0.047660,43.69,22.838], [-1755,0.047088,26.75,22.830], [-1756,0.046471,9.81,22.833], [-1757,0.045810,352.90,22.846], [-1758,0.045104,336.00,22.869], [-1759,0.044355,319.15,22.903], [-1760,0.043562,302.33,22.947], [-1761,0.042726,285.56,23.001], [-1762,0.041849,268.85,23.063], [-1763,0.040930,252.20,23.132], [-1764,0.039972,235.63,23.208], [-1765,0.038976,219.13,23.288], [-1766,0.037943,202.73,23.371], [-1767,0.036876,186.42,23.455], [-1768,0.035776,170.22,23.539], [-1769,0.034645,154.13,23.621], [-1770,0.033488,138.17,23.698], [-1771,0.032306,122.33,23.769], [-1772,0.031104,106.65,23.832], [-1773,0.029886,91.12,23.885], [-1774,0.028656,75.76,23.928], [-1775,0.027420,60.59,23.959], [-1776,0.026185,45.63,23.977], [-1777,0.024957,30.91,23.982], [-1778,0.023746,16.44,23.972], [-1779,0.022561,2.26,23.949], [-1780,0.021415,348.41,23.912], [-1781,0.020321,334.92,23.861], [-1782,0.019295,321.83,23.799], [-1783,0.018355,309.16,23.725], [-1784,0.017522,296.94,23.641], [-1785,0.016817,285.16,23.549], [-1786,0.016261,273.78,23.452], [-1787,0.015875,262.72,23.350], [-1788,0.015674,251.87,23.247], [-1789,0.015666,241.07,23.145], [-1790,0.015854,230.16,23.046], [-1791,0.016230,218.97,22.953], [-1792,0.016780,207.40,22.867], [-1793,0.017485,195.35,22.792], [-1794,0.018325,182.81,22.728], [-1795,0.019278,169.75,22.677], [-1796,0.020325,156.22,22.642], [-1797,0.021446,142.25,22.621], [-1798,0.022625,127.88,22.616], [-1799,0.023848,113.18,22.627], [-1800,0.025103,98.19,22.654], [-1801,0.026380,82.95,22.695], [-1802,0.027669,67.51,22.749], [-1803,0.028963,51.90,22.816], [-1804,0.030255,36.14,22.893], [-1805,0.031539,20.28,22.978], [-1806,0.032810,4.32,23.070], [-1807,0.034064,348.29,23.166], [-1808,0.035297,332.21,23.264], [-1809,0.036505,316.08,23.362], [-1810,0.037685,299.91,23.458], [-1811,0.038834,283.72,23.550], [-1812,0.039951,267.51,23.637], [-1813,0.041033,251.28,23.716], [-1814,0.042077,235.04,23.787], [-1815,0.043083,218.78,23.847], [-1816,0.044049,202.51,23.897], [-1817,0.044974,186.23,23.936], [-1818,0.045857,169.93,23.962], [-1819,0.046696,153.61,23.976], [-1820,0.047491,137.28,23.977], [-1821,0.048241,120.93,23.967], [-1822,0.048946,104.55,23.944], [-1823,0.049606,88.15,23.910], [-1824,0.050221,71.73,23.866], [-1825,0.050790,55.27,23.812], [-1826,0.051313,38.79,23.748], [-1827,0.051790,22.27,23.678], [-1828,0.052222,5.72,23.601], [-1829,0.052610,349.13,23.520], [-1830,0.052952,332.50,23.435], [-1831,0.053251,315.84,23.348], [-1832,0.053505,299.14,23.262], [-1833,0.053717,282.41,23.177], [-1834,0.053886,265.64,23.096], [-1835,0.054014,248.84,23.020], [-1836,0.054100,232.01,22.950], [-1837,0.054146,215.15,22.888], [-1838,0.054152,198.27,22.836], [-1839,0.054119,181.38,22.794], [-1840,0.054048,164.47,22.764], [-1841,0.053939,147.56,22.746], [-1842,0.053794,130.65,22.740], [-1843,0.053612,113.75,22.747], [-1844,0.053395,96.85,22.767], [-1845,0.053144,79.98,22.798], [-1846,0.052858,63.13,22.842], [-1847,0.052539,46.30,22.895], [-1848,0.052187,29.51,22.958], [-1849,0.051803,12.76,23.029], [-1850,0.051387,356.05,23.105], [-1851,0.050940,339.38,23.186], [-1852,0.050462,322.75,23.269], [-1853,0.049953,306.17,23.353], [-1854,0.049414,289.63,23.435], [-1855,0.048845,273.13,23.513], [-1856,0.048247,256.67,23.586], [-1857,0.047619,240.25,23.653], [-1858,0.046963,223.87,23.710], [-1859,0.046277,207.51,23.759], [-1860,0.045563,191.18,23.796], [-1861,0.044820,174.88,23.822], [-1862,0.044049,158.59,23.836], [-1863,0.043251,142.31,23.838], [-1864,0.042424,126.04,23.827], [-1865,0.041570,109.77,23.804], [-1866,0.040688,93.50,23.771], [-1867,0.039779,77.24,23.727], [-1868,0.038844,60.96,23.674], [-1869,0.037883,44.68,23.613], [-1870,0.036896,28.39,23.546], [-1871,0.035884,12.10,23.475], [-1872,0.034848,355.80,23.401], [-1873,0.033788,339.51,23.327], [-1874,0.032705,323.21,23.254], [-1875,0.031601,306.94,23.184], [-1876,0.030477,290.68,23.119], [-1877,0.029334,274.46,23.061], [-1878,0.028174,258.28,23.011], [-1879,0.026999,242.17,22.971], [-1880,0.025811,226.14,22.941], [-1881,0.024613,210.22,22.922], [-1882,0.023408,194.44,22.914], [-1883,0.022201,178.81,22.918], [-1884,0.020995,163.39,22.932], [-1885,0.019796,148.21,22.957], [-1886,0.018610,133.32,22.992], [-1887,0.017446,118.78,23.035], [-1888,0.016313,104.66,23.085], [-1889,0.015223,91.02,23.141], [-1890,0.014193,77.96,23.200], [-1891,0.013239,65.56,23.262], [-1892,0.012384,53.90,23.325], [-1893,0.011653,43.03,23.388], [-1894,0.011074,32.93,23.447], [-1895,0.010675,23.50,23.503], [-1896,0.010476,14.52,23.554], [-1897,0.010488,5.69,23.599], [-1898,0.010710,356.66,23.637], [-1899,0.011127,347.16,23.667], [-1900,0.011714,336.97,23.688], [-1901,0.012444,326.02,23.700], [-1902,0.013289,314.31,23.703], [-1903,0.014222,301.87,23.697], [-1904,0.015222,288.81,23.682], [-1905,0.016271,275.18,23.658], [-1906,0.017353,261.08,23.626], [-1907,0.018456,246.56,23.586], [-1908,0.019570,231.70,23.540], [-1909,0.020688,216.52,23.488], [-1910,0.021801,201.09,23.431], [-1911,0.022903,185.42,23.371], [-1912,0.023991,169.55,23.308], [-1913,0.025058,153.50,23.245], [-1914,0.026103,137.29,23.182], [-1915,0.027120,120.94,23.121], [-1916,0.028107,104.46,23.064], [-1917,0.029061,87.86,23.011], [-1918,0.029980,71.17,22.964], [-1919,0.030861,54.38,22.924], [-1920,0.031703,37.52,22.893], [-1921,0.032504,20.59,22.871], [-1922,0.033262,3.60,22.859], [-1923,0.033975,346.56,22.858], [-1924,0.034643,329.48,22.868], [-1925,0.035265,312.37,22.889], [-1926,0.035839,295.24,22.922], [-1927,0.036365,278.10,22.965], [-1928,0.036842,260.95,23.018], [-1929,0.037269,243.81,23.080], [-1930,0.037647,226.67,23.150], [-1931,0.037975,209.54,23.227], [-1932,0.038252,192.43,23.309], [-1933,0.038479,175.35,23.393], [-1934,0.038656,158.28,23.479], [-1935,0.038783,141.25,23.564], [-1936,0.038861,124.24,23.646], [-1937,0.038890,107.25,23.724], [-1938,0.038870,90.29,23.794], [-1939,0.038803,73.35,23.856], [-1940,0.038689,56.43,23.908], [-1941,0.038528,39.52,23.948], [-1942,0.038323,22.63,23.975], [-1943,0.038073,5.73,23.988], [-1944,0.037781,348.84,23.986], [-1945,0.037447,331.93,23.969], [-1946,0.037072,315.02,23.937], [-1947,0.036659,298.08,23.890], [-1948,0.036207,281.11,23.829], [-1949,0.035719,264.10,23.755], [-1950,0.035196,247.06,23.669], [-1951,0.034640,229.97,23.572], [-1952,0.034053,212.82,23.468], [-1953,0.033435,195.62,23.358], [-1954,0.032788,178.35,23.245], [-1955,0.032115,161.02,23.131], [-1956,0.031416,143.63,23.020], [-1957,0.030693,126.16,22.913], [-1958,0.029949,108.63,22.815], [-1959,0.029184,91.03,22.728], [-1960,0.028401,73.37,22.653], [-1961,0.027600,55.65,22.594], [-1962,0.026785,37.88,22.552], [-1963,0.025955,20.06,22.528], [-1964,0.025113,2.19,22.523], [-1965,0.024261,344.28,22.537], [-1966,0.023401,326.34,22.571], [-1967,0.022533,308.37,22.622], [-1968,0.021660,290.36,22.691], [-1969,0.020784,272.32,22.774], [-1970,0.019906,254.24,22.870], [-1971,0.019028,236.11,22.977], [-1972,0.018152,217.93,23.091], [-1973,0.017281,199.69,23.211], [-1974,0.016417,181.35,23.332], [-1975,0.015563,162.90,23.453], [-1976,0.014721,144.31,23.570], [-1977,0.013895,125.54,23.681], [-1978,0.013089,106.56,23.783], [-1979,0.012309,87.31,23.875], [-1980,0.011559,67.74,23.954], [-1981,0.010846,47.79,24.020], [-1982,0.010180,27.40,24.070], [-1983,0.009568,6.51,24.105], [-1984,0.009023,345.06,24.124], [-1985,0.008556,323.04,24.127], [-1986,0.008181,300.46,24.113], [-1987,0.007907,277.38,24.084], [-1988,0.007747,253.94,24.040], [-1989,0.007704,230.33,23.983], [-1990,0.007778,206.75,23.913], [-1991,0.007965,183.41,23.833], [-1992,0.008254,160.46,23.743], [-1993,0.008633,137.99,23.647], [-1994,0.009087,116.06,23.544], [-1995,0.009603,94.63,23.439], [-1996,0.010169,73.69,23.332], [-1997,0.010774,53.18,23.226], [-1998,0.011408,33.04,23.123], [-1999,0.012063,13.22,23.025], [-2000,0.012734,353.67,22.934], [-2001,0.013414,334.36,22.851], [-2002,0.014099,315.24,22.778], [-2003,0.014784,296.29,22.716], [-2004,0.015466,277.48,22.667], [-2005,0.016142,258.81,22.631], [-2006,0.016808,240.24,22.609], [-2007,0.017463,221.77,22.602], [-2008,0.018104,203.40,22.609], [-2009,0.018728,185.11,22.630], [-2010,0.019333,166.90,22.666], [-2011,0.019919,148.77,22.714], [-2012,0.020482,130.71,22.775], [-2013,0.021021,112.73,22.846], [-2014,0.021534,94.82,22.928], [-2015,0.022019,76.98,23.017], [-2016,0.022476,59.21,23.113], [-2017,0.022902,41.51,23.214], [-2018,0.023296,23.87,23.316], [-2019,0.023657,6.30,23.420], [-2020,0.023983,348.79,23.521], [-2021,0.024274,331.33,23.619], [-2022,0.024527,313.93,23.712], [-2023,0.024742,296.57,23.796], [-2024,0.024918,279.26,23.871], [-2025,0.025054,261.98,23.935], [-2026,0.025148,244.74,23.987], [-2027,0.025201,227.51,24.024], [-2028,0.025212,210.31,24.047], [-2029,0.025179,193.11,24.054], [-2030,0.025103,175.92,24.045], [-2031,0.024983,158.71,24.020], [-2032,0.024818,141.50,23.979], [-2033,0.024609,124.26,23.923], [-2034,0.024355,106.99,23.853], [-2035,0.024057,89.69,23.770], [-2036,0.023713,72.34,23.676], [-2037,0.023326,54.94,23.572], [-2038,0.022894,37.48,23.462], [-2039,0.022418,19.96,23.348], [-2040,0.021900,2.38,23.233], [-2041,0.021338,344.72,23.120], [-2042,0.020735,327.00,23.011], [-2043,0.020090,309.21,22.911], [-2044,0.019406,291.35,22.821], [-2045,0.018682,273.42,22.745], [-2046,0.017921,255.42,22.685], [-2047,0.017123,237.37,22.643], [-2048,0.016289,219.25,22.619], [-2049,0.015422,201.07,22.616], [-2050,0.014523,182.82,22.633], [-2051,0.013594,164.51,22.669], [-2052,0.012636,146.12,22.724], [-2053,0.011652,127.61,22.796], [-2054,0.010645,108.97,22.883], [-2055,0.009617,90.13,22.982], [-2056,0.008573,71.00,23.090], [-2057,0.007517,51.42,23.204], [-2058,0.006456,31.14,23.321], [-2059,0.005403,9.71,23.436], [-2060,0.004377,346.27,23.548], [-2061,0.003423,319.14,23.652], [-2062,0.002640,285.15,23.746], [-2063,0.002236,241.44,23.828], [-2064,0.002427,194.99,23.894], [-2065,0.003112,157.22,23.944], [-2066,0.004052,127.95,23.976], [-2067,0.005111,103.55,23.990], [-2068,0.006227,81.79,23.985], [-2069,0.007374,61.52,23.962], [-2070,0.008536,42.17,23.921], [-2071,0.009706,23.41,23.864], [-2072,0.010878,5.03,23.792], [-2073,0.012048,346.91,23.707], [-2074,0.013212,328.98,23.612], [-2075,0.014369,311.17,23.510], [-2076,0.015515,293.45,23.403], [-2077,0.016649,275.79,23.294], [-2078,0.017769,258.16,23.187], [-2079,0.018873,240.56,23.085], [-2080,0.019961,222.98,22.990], [-2081,0.021030,205.41,22.906], [-2082,0.022080,187.85,22.833], [-2083,0.023110,170.30,22.775], [-2084,0.024118,152.78,22.733], [-2085,0.025103,135.27,22.708], [-2086,0.026066,117.80,22.699], [-2087,0.027004,100.36,22.708], [-2088,0.027918,82.96,22.733], [-2089,0.028807,65.60,22.774], [-2090,0.029671,48.30,22.828], [-2091,0.030508,31.06,22.894], [-2092,0.031320,13.88,22.971], [-2093,0.032105,356.77,23.056], [-2094,0.032863,339.71,23.146], [-2095,0.033595,322.73,23.239], [-2096,0.034299,305.81,23.334], [-2097,0.034978,288.95,23.427], [-2098,0.035629,272.15,23.518], [-2099,0.036253,255.41,23.603], [-2100,0.036851,238.73,23.682], [-2101,0.037422,222.09,23.753], [-2102,0.037966,205.49,23.814], [-2103,0.038485,188.94,23.866], [-2104,0.038976,172.42,23.906], [-2105,0.039442,155.92,23.936], [-2106,0.039882,139.45,23.953], [-2107,0.040295,123.00,23.959], [-2108,0.040683,106.56,23.952], [-2109,0.041044,90.13,23.934], [-2110,0.041380,73.70,23.905], [-2111,0.041689,57.27,23.864], [-2112,0.041973,40.83,23.813], [-2113,0.042230,24.38,23.752], [-2114,0.042461,7.92,23.681], [-2115,0.042665,351.43,23.603], [-2116,0.042842,334.93,23.517], [-2117,0.042992,318.39,23.426], [-2118,0.043115,301.83,23.330], [-2119,0.043210,285.23,23.230], [-2120,0.043277,268.59,23.130], [-2121,0.043315,251.92,23.030], [-2122,0.043323,235.21,22.932], [-2123,0.043302,218.46,22.839], [-2124,0.043251,201.67,22.753], [-2125,0.043169,184.86,22.675], [-2126,0.043056,168.01,22.609], [-2127,0.042911,151.13,22.556], [-2128,0.042734,134.24,22.518], [-2129,0.042524,117.34,22.497], [-2130,0.042281,100.43,22.493], [-2131,0.042004,83.53,22.509], [-2132,0.041693,66.66,22.545], [-2133,0.041347,49.81,22.600], [-2134,0.040967,33.00,22.674], [-2135,0.040552,16.24,22.766], [-2136,0.040102,359.54,22.875], [-2137,0.039617,342.92,22.998], [-2138,0.039097,326.39,23.132], [-2139,0.038543,309.94,23.276], [-2140,0.037954,293.59,23.424], [-2141,0.037332,277.34,23.574], [-2142,0.036676,261.20,23.722], [-2143,0.035989,245.17,23.864], [-2144,0.035270,229.25,23.997], [-2145,0.034522,213.45,24.118], [-2146,0.033745,197.75,24.222], [-2147,0.032943,182.17,24.307], [-2148,0.032116,166.69,24.372], [-2149,0.031267,151.33,24.413], [-2150,0.030400,136.08,24.429], [-2151,0.029517,120.94,24.420], [-2152,0.028622,105.91,24.385], [-2153,0.027720,91.00,24.325], [-2154,0.026816,76.21,24.240], [-2155,0.025915,61.54,24.132], [-2156,0.025024,47.01,24.003], [-2157,0.024149,32.62,23.856], [-2158,0.023300,18.38,23.694], [-2159,0.022485,4.30,23.522], [-2160,0.021714,350.40,23.343], [-2161,0.020998,336.68,23.162], [-2162,0.020350,323.15,22.985], [-2163,0.019782,309.81,22.815], [-2164,0.019305,296.64,22.659], [-2165,0.018932,283.63,22.520], [-2166,0.018673,270.74,22.402], [-2167,0.018536,257.93,22.309], [-2168,0.018529,245.14,22.244], [-2169,0.018651,232.33,22.208], [-2170,0.018904,219.42,22.202], [-2171,0.019282,206.37,22.226], [-2172,0.019777,193.15,22.279], [-2173,0.020382,179.72,22.358], [-2174,0.021084,166.08,22.462], [-2175,0.021872,152.22,22.586], [-2176,0.022735,138.16,22.726], [-2177,0.023661,123.90,22.878], [-2178,0.024640,109.46,23.038], [-2179,0.025662,94.87,23.200], [-2180,0.026716,80.13,23.361], [-2181,0.027797,65.26,23.517], [-2182,0.028894,50.28,23.663], [-2183,0.030003,35.20,23.797], [-2184,0.031117,20.02,23.915], [-2185,0.032229,4.75,24.016], [-2186,0.033336,349.39,24.098], [-2187,0.034433,333.96,24.160], [-2188,0.035516,318.45,24.201], [-2189,0.036580,302.86,24.221], [-2190,0.037624,287.19,24.220], [-2191,0.038643,271.45,24.201], [-2192,0.039636,255.62,24.163], [-2193,0.040599,239.72,24.108], [-2194,0.041531,223.75,24.039], [-2195,0.042430,207.69,23.957], [-2196,0.043294,191.55,23.865], [-2197,0.044121,175.34,23.764], [-2198,0.044910,159.06,23.659], [-2199,0.045661,142.70,23.550], [-2200,0.046372,126.27,23.440], [-2201,0.047042,109.78,23.331], [-2202,0.047671,93.22,23.227], [-2203,0.048259,76.61,23.127], [-2204,0.048804,59.95,23.035], [-2205,0.049307,43.25,22.952], [-2206,0.049769,26.50,22.878], [-2207,0.050188,9.72,22.815], [-2208,0.050566,352.92,22.764], [-2209,0.050902,336.10,22.725], [-2210,0.051197,319.27,22.698], [-2211,0.051451,302.44,22.685], [-2212,0.051666,285.60,22.684], [-2213,0.051841,268.78,22.696], [-2214,0.051978,251.97,22.720], [-2215,0.052078,235.18,22.755], [-2216,0.052141,218.41,22.802], [-2217,0.052168,201.68,22.859], [-2218,0.052160,184.98,22.926], [-2219,0.052119,168.32,23.001], [-2220,0.052046,151.70,23.083], [-2221,0.051940,135.14,23.171], [-2222,0.051805,118.62,23.264], [-2223,0.051639,102.15,23.358], [-2224,0.051446,85.74,23.453], [-2225,0.051225,69.39,23.547], [-2226,0.050978,53.08,23.638], [-2227,0.050706,36.83,23.723], [-2228,0.050409,20.63,23.801], [-2229,0.050089,4.48,23.870], [-2230,0.049746,348.37,23.927], [-2231,0.049381,332.30,23.971], [-2232,0.048995,316.26,24.001], [-2233,0.048589,300.25,24.015], [-2234,0.048163,284.25,24.013], [-2235,0.047718,268.27,23.993], [-2236,0.047254,252.29,23.955], [-2237,0.046772,236.31,23.900], [-2238,0.046272,220.32,23.829], [-2239,0.045754,204.31,23.742], [-2240,0.045220,188.28,23.641], [-2241,0.044668,172.20,23.528], [-2242,0.044099,156.09,23.406], [-2243,0.043514,139.94,23.278], [-2244,0.042912,123.74,23.148], [-2245,0.042294,107.48,23.019], [-2246,0.041659,91.19,22.895], [-2247,0.041009,74.84,22.781], [-2248,0.040343,58.46,22.679], [-2249,0.039661,42.05,22.594], [-2250,0.038964,25.62,22.529], [-2251,0.038253,9.18,22.486], [-2252,0.037526,352.76,22.468], [-2253,0.036786,336.36,22.476], [-2254,0.036032,320.00,22.511], [-2255,0.035266,303.71,22.571], [-2256,0.034488,287.50,22.655], [-2257,0.033699,271.38,22.762], [-2258,0.032901,255.38,22.888], [-2259,0.032095,239.51,23.029], [-2260,0.031284,223.77,23.181], [-2261,0.030468,208.20,23.340], [-2262,0.029650,192.78,23.500], [-2263,0.028834,177.54,23.658], [-2264,0.028021,162.47,23.809], [-2265,0.027216,147.57,23.948], [-2266,0.026422,132.86,24.071], [-2267,0.025643,118.34,24.175], [-2268,0.024884,103.99,24.257], [-2269,0.024151,89.83,24.314], [-2270,0.023448,75.85,24.346], [-2271,0.022783,62.04,24.351], [-2272,0.022161,48.40,24.329], [-2273,0.021589,34.92,24.280], [-2274,0.021074,21.58,24.206], [-2275,0.020624,8.37,24.107], [-2276,0.020244,355.26,23.988], [-2277,0.019940,342.22,23.850], [-2278,0.019719,329.21,23.697], [-2279,0.019583,316.19,23.533], [-2280,0.019536,303.13,23.364], [-2281,0.019578,289.97,23.192], [-2282,0.019708,276.69,23.024], [-2283,0.019924,263.23,22.863], [-2284,0.020221,249.58,22.714], [-2285,0.020596,235.71,22.583], [-2286,0.021040,221.61,22.471], [-2287,0.021548,207.28,22.382], [-2288,0.022112,192.72,22.319], [-2289,0.022724,177.94,22.283], [-2290,0.023378,162.96,22.275], [-2291,0.024066,147.80,22.294], [-2292,0.024781,132.48,22.339], [-2293,0.025516,117.02,22.408], [-2294,0.026266,101.44,22.500], [-2295,0.027025,85.77,22.610], [-2296,0.027787,70.02,22.736], [-2297,0.028548,54.20,22.873], [-2298,0.029303,38.34,23.019], [-2299,0.030049,22.43,23.169], [-2300,0.030781,6.50,23.319], [-2301,0.031496,350.54,23.466], [-2302,0.032191,334.55,23.608], [-2303,0.032864,318.55,23.741], [-2304,0.033511,302.53,23.862], [-2305,0.034130,286.49,23.970], [-2306,0.034719,270.44,24.064], [-2307,0.035277,254.35,24.141], [-2308,0.035801,238.25,24.201], [-2309,0.036291,222.12,24.244], [-2310,0.036744,205.95,24.269], [-2311,0.037160,189.76,24.276], [-2312,0.037538,173.52,24.266], [-2313,0.037877,157.25,24.240], [-2314,0.038176,140.94,24.197], [-2315,0.038435,124.58,24.139], [-2316,0.038654,108.17,24.067], [-2317,0.038833,91.72,23.982], [-2318,0.038971,75.21,23.886], [-2319,0.039069,58.64,23.780], [-2320,0.039126,42.03,23.665], [-2321,0.039144,25.35,23.544], [-2322,0.039122,8.61,23.418], [-2323,0.039062,351.82,23.289], [-2324,0.038964,334.96,23.160], [-2325,0.038828,318.05,23.032], [-2326,0.038656,301.08,22.908], [-2327,0.038449,284.05,22.791], [-2328,0.038207,266.97,22.682], [-2329,0.037932,249.85,22.584], [-2330,0.037626,232.68,22.500], [-2331,0.037288,215.48,22.431], [-2332,0.036921,198.25,22.380], [-2333,0.036526,181.00,22.347], [-2334,0.036105,163.75,22.336], [-2335,0.035658,146.49,22.346], [-2336,0.035188,129.26,22.378], [-2337,0.034695,112.04,22.431], [-2338,0.034182,94.86,22.506], [-2339,0.033649,77.73,22.601], [-2340,0.033099,60.66,22.715], [-2341,0.032533,43.66,22.844], [-2342,0.031951,26.72,22.986], [-2343,0.031357,9.87,23.139], [-2344,0.030750,353.10,23.298], [-2345,0.030133,336.42,23.459], [-2346,0.029506,319.82,23.620], [-2347,0.028871,303.30,23.775], [-2348,0.028230,286.87,23.922], [-2349,0.027583,270.50,24.056], [-2350,0.026931,254.21,24.174], [-2351,0.026275,237.97,24.274], [-2352,0.025617,221.79,24.352], [-2353,0.024957,205.64,24.407], [-2354,0.024296,189.52,24.437], [-2355,0.023634,173.41,24.440], [-2356,0.022973,157.31,24.417], [-2357,0.022312,141.20,24.368], [-2358,0.021653,125.06,24.293], [-2359,0.020994,108.89,24.195], [-2360,0.020338,92.67,24.074], [-2361,0.019683,76.40,23.934], [-2362,0.019031,60.05,23.777], [-2363,0.018381,43.62,23.609], [-2364,0.017733,27.11,23.433], [-2365,0.017088,10.50,23.254], [-2366,0.016445,353.79,23.077], [-2367,0.015804,336.98,22.908], [-2368,0.015164,320.07,22.750], [-2369,0.014527,303.07,22.608], [-2370,0.013892,285.99,22.488], [-2371,0.013259,268.83,22.393], [-2372,0.012627,251.60,22.325], [-2373,0.011996,234.32,22.286], [-2374,0.011367,217.01,22.279], [-2375,0.010740,199.67,22.301], [-2376,0.010113,182.33,22.353], [-2377,0.009489,164.99,22.432], [-2378,0.008865,147.66,22.536], [-2379,0.008244,130.36,22.661], [-2380,0.007624,113.09,22.802], [-2381,0.007006,95.84,22.955], [-2382,0.006390,78.61,23.115], [-2383,0.005778,61.40,23.278], [-2384,0.005168,44.18,23.438], [-2385,0.004562,26.94,23.591], [-2386,0.003960,9.63,23.733], [-2387,0.003363,352.19,23.861], [-2388,0.002771,334.50,23.970], [-2389,0.002187,316.36,24.060], [-2390,0.001611,297.26,24.128], [-2391,0.001047,275.68,24.173], [-2392,0.000515,243.93,24.194], [-2393,0.000267,142.57,24.192], [-2394,0.000697,79.38,24.167], [-2395,0.001214,53.46,24.121], [-2396,0.001731,32.94,24.054], [-2397,0.002240,14.00,23.970], [-2398,0.002738,355.70,23.871], [-2399,0.003222,337.68,23.759], [-2400,0.003692,319.79,23.639], [-2401,0.004146,301.95,23.513], [-2402,0.004584,284.09,23.385], [-2403,0.005005,266.21,23.258], [-2404,0.005407,248.27,23.135], [-2405,0.005791,230.27,23.020], [-2406,0.006155,212.21,22.916], [-2407,0.006499,194.08,22.824], [-2408,0.006822,175.88,22.748], [-2409,0.007124,157.62,22.688], [-2410,0.007404,139.31,22.646], [-2411,0.007662,120.94,22.622], [-2412,0.007898,102.52,22.617], [-2413,0.008111,84.06,22.629], [-2414,0.008302,65.56,22.659], [-2415,0.008470,47.03,22.704], [-2416,0.008616,28.46,22.764], [-2417,0.008739,9.86,22.836], [-2418,0.008842,351.24,22.919], [-2419,0.008923,332.58,23.010], [-2420,0.008983,313.88,23.108], [-2421,0.009024,295.15,23.209], [-2422,0.009046,276.37,23.313], [-2423,0.009052,257.54,23.416], [-2424,0.009041,238.65,23.517], [-2425,0.009016,219.69,23.614], [-2426,0.008978,200.65,23.705], [-2427,0.008930,181.53,23.788], [-2428,0.008873,162.30,23.862], [-2429,0.008810,142.97,23.927], [-2430,0.008745,123.52,23.979], [-2431,0.008678,103.94,24.019], [-2432,0.008615,84.23,24.046], [-2433,0.008557,64.39,24.059], [-2434,0.008508,44.41,24.057], [-2435,0.008471,24.29,24.040], [-2436,0.008450,4.04,24.008], [-2437,0.008447,343.68,23.962], [-2438,0.008465,323.21,23.900], [-2439,0.008508,302.66,23.825], [-2440,0.008577,282.04,23.737], [-2441,0.008673,261.39,23.637], [-2442,0.008797,240.72,23.527], [-2443,0.008951,220.05,23.408], [-2444,0.009133,199.42,23.284], [-2445,0.009343,178.84,23.156], [-2446,0.009581,158.33,23.027], [-2447,0.009843,137.90,22.900], [-2448,0.010129,117.57,22.779], [-2449,0.010436,97.34,22.667], [-2450,0.010762,77.22,22.567], [-2451,0.011105,57.22,22.482], [-2452,0.011462,37.34,22.415], [-2453,0.011831,17.59,22.368], [-2454,0.012210,357.97,22.345], [-2455,0.012596,338.49,22.345], [-2456,0.012987,319.16,22.371], [-2457,0.013382,299.98,22.422], [-2458,0.013779,280.95,22.497], [-2459,0.014175,262.09,22.596], [-2460,0.014570,243.41,22.716], [-2461,0.014961,224.89,22.855], [-2462,0.015348,206.55,23.008], [-2463,0.015730,188.39,23.173], [-2464,0.016104,170.41,23.345], [-2465,0.016472,152.61,23.520], [-2466,0.016831,134.97,23.692], [-2467,0.017181,117.50,23.859], [-2468,0.017522,100.19,24.015], [-2469,0.017854,83.02,24.156], [-2470,0.018175,65.99,24.280], [-2471,0.018486,49.08,24.382], [-2472,0.018786,32.28,24.460], [-2473,0.019076,15.58,24.513], [-2474,0.019356,358.96,24.538], [-2475,0.019626,342.41,24.535], [-2476,0.019886,325.92,24.503], [-2477,0.020137,309.46,24.443], [-2478,0.020378,293.04,24.356], [-2479,0.020611,276.63,24.244], [-2480,0.020835,260.22,24.110], [-2481,0.021052,243.80,23.955], [-2482,0.021261,227.35,23.784], [-2483,0.021463,210.86,23.600], [-2484,0.021659,194.34,23.409], [-2485,0.021850,177.76,23.216], [-2486,0.022034,161.13,23.025], [-2487,0.022214,144.45,22.841], [-2488,0.022390,127.71,22.670], [-2489,0.022561,110.92,22.517], [-2490,0.022728,94.09,22.385], [-2491,0.022891,77.23,22.279], [-2492,0.023051,60.34,22.200], [-2493,0.023207,43.45,22.152], [-2494,0.023359,26.56,22.135], [-2495,0.023508,9.70,22.150], [-2496,0.023653,352.87,22.195], [-2497,0.023794,336.09,22.268], [-2498,0.023930,319.38,22.367], [-2499,0.024061,302.73,22.488], [-2500,0.024187,286.17,22.628], [-2501,0.024307,269.69,22.782], [-2502,0.024420,253.30,22.946], [-2503,0.024526,237.00,23.115], [-2504,0.024624,220.79,23.284], [-2505,0.024714,204.67,23.450], [-2506,0.024794,188.63,23.608], [-2507,0.024863,172.66,23.756], [-2508,0.024922,156.76,23.889], [-2509,0.024969,140.91,24.006], [-2510,0.025004,125.12,24.104], [-2511,0.025026,109.38,24.183], [-2512,0.025034,93.67,24.240], [-2513,0.025027,77.99,24.276], [-2514,0.025007,62.33,24.291], [-2515,0.024971,46.69,24.285], [-2516,0.024920,31.05,24.259], [-2517,0.024853,15.42,24.214], [-2518,0.024772,359.79,24.152], [-2519,0.024674,344.16,24.074], [-2520,0.024562,328.52,23.983], [-2521,0.024435,312.88,23.881], [-2522,0.024295,297.23,23.770], [-2523,0.024140,281.57,23.652], [-2524,0.023974,265.90,23.531], [-2525,0.023797,250.24,23.408], [-2526,0.023610,234.58,23.287], [-2527,0.023415,218.92,23.169], [-2528,0.023214,203.28,23.057], [-2529,0.023009,187.66,22.953], [-2530,0.022802,172.07,22.858], [-2531,0.022596,156.51,22.776], [-2532,0.022393,141.01,22.707], [-2533,0.022196,125.55,22.652], [-2534,0.022009,110.15,22.612], [-2535,0.021835,94.83,22.589], [-2536,0.021676,79.58,22.581], [-2537,0.021537,64.41,22.590], [-2538,0.021421,49.32,22.615], [-2539,0.021330,34.32,22.655], [-2540,0.021269,19.40,22.710], [-2541,0.021239,4.57,22.777], [-2542,0.021244,349.82,22.857], [-2543,0.021286,335.13,22.947], [-2544,0.021367,320.52,23.045], [-2545,0.021488,305.95,23.149], [-2546,0.021651,291.43,23.257], [-2547,0.021854,276.94,23.367], [-2548,0.022098,262.47,23.477], [-2549,0.022383,248.00,23.582], [-2550,0.022706,233.52,23.683], [-2551,0.023067,219.03,23.775], [-2552,0.023462,204.50,23.858], [-2553,0.023890,189.93,23.929], [-2554,0.024348,175.31,23.985], [-2555,0.024832,160.63,24.026], [-2556,0.025339,145.88,24.051], [-2557,0.025867,131.05,24.058], [-2558,0.026411,116.13,24.047], [-2559,0.026968,101.13,24.018], [-2560,0.027536,86.03,23.971], [-2561,0.028111,70.82,23.906], [-2562,0.028689,55.52,23.825], [-2563,0.029267,40.10,23.730], [-2564,0.029843,24.57,23.623], [-2565,0.030414,8.93,23.505], [-2566,0.030977,353.17,23.381], [-2567,0.031530,337.30,23.253], [-2568,0.032069,321.31,23.125], [-2569,0.032594,305.22,23.000], [-2570,0.033101,289.02,22.882], [-2571,0.033589,272.72,22.775], [-2572,0.034057,256.34,22.683], [-2573,0.034502,239.88,22.608], [-2574,0.034924,223.37,22.553], [-2575,0.035320,206.80,22.520], [-2576,0.035691,190.20,22.511], [-2577,0.036035,173.59,22.526], [-2578,0.036351,156.97,22.566], [-2579,0.036640,140.38,22.629], [-2580,0.036900,123.81,22.713], [-2581,0.037131,107.29,22.817], [-2582,0.037334,90.83,22.937], [-2583,0.037508,74.44,23.070], [-2584,0.037654,58.12,23.212], [-2585,0.037773,41.89,23.358], [-2586,0.037864,25.74,23.505], [-2587,0.037928,9.67,23.648], [-2588,0.037967,353.68,23.783], [-2589,0.037982,337.78,23.907], [-2590,0.037973,321.95,24.015], [-2591,0.037941,306.18,24.106], [-2592,0.037889,290.48,24.177], [-2593,0.037818,274.83,24.226], [-2594,0.037728,259.23,24.251], [-2595,0.037623,243.66,24.253], [-2596,0.037503,228.11,24.230], [-2597,0.037370,212.58,24.183], [-2598,0.037227,197.06,24.114], [-2599,0.037075,181.53,24.024], [-2600,0.036915,165.99,23.915], [-2601,0.036750,150.43,23.791], [-2602,0.036582,134.84,23.653], [-2603,0.036412,119.22,23.506], [-2604,0.036242,103.55,23.354], [-2605,0.036074,87.85,23.200], [-2606,0.035909,72.09,23.049], [-2607,0.035749,56.29,22.904], [-2608,0.035595,40.45,22.770], [-2609,0.035449,24.57,22.651], [-2610,0.035310,8.65,22.549], [-2611,0.035180,352.71,22.467], [-2612,0.035061,336.75,22.408], [-2613,0.034951,320.78,22.372], [-2614,0.034852,304.82,22.361], [-2615,0.034764,288.86,22.375], [-2616,0.034686,272.93,22.412], [-2617,0.034618,257.03,22.472], [-2618,0.034561,241.17,22.552], [-2619,0.034512,225.35,22.650], [-2620,0.034473,209.59,22.764], [-2621,0.034441,193.88,22.889], [-2622,0.034416,178.22,23.024], [-2623,0.034397,162.63,23.164], [-2624,0.034383,147.09,23.306], [-2625,0.034372,131.61,23.446], [-2626,0.034364,116.18,23.583], [-2627,0.034357,100.80,23.712], [-2628,0.034351,85.47,23.832], [-2629,0.034343,70.17,23.941], [-2630,0.034333,54.90,24.035], [-2631,0.034321,39.65,24.114], [-2632,0.034304,24.43,24.177], [-2633,0.034283,9.22,24.222], [-2634,0.034256,354.02,24.250], [-2635,0.034223,338.83,24.259], [-2636,0.034184,323.63,24.251], [-2637,0.034138,308.42,24.224], [-2638,0.034085,293.20,24.180], [-2639,0.034025,277.96,24.120], [-2640,0.033959,262.69,24.044], [-2641,0.033886,247.41,23.955], [-2642,0.033806,232.09,23.853], [-2643,0.033722,216.73,23.741], [-2644,0.033633,201.34,23.620], [-2645,0.033540,185.92,23.492], [-2646,0.033444,170.45,23.361], [-2647,0.033346,154.93,23.228], [-2648,0.033247,139.38,23.096], [-2649,0.033149,123.79,22.968], [-2650,0.033053,108.15,22.847], [-2651,0.032961,92.48,22.735], [-2652,0.032872,76.78,22.634], [-2653,0.032790,61.04,22.548], [-2654,0.032716,45.29,22.478], [-2655,0.032650,29.52,22.426], [-2656,0.032594,13.74,22.394], [-2657,0.032549,357.96,22.382], [-2658,0.032516,342.18,22.391], [-2659,0.032496,326.42,22.421], [-2660,0.032490,310.68,22.472], [-2661,0.032498,294.96,22.543], [-2662,0.032520,279.28,22.632], [-2663,0.032558,263.64,22.737], [-2664,0.032610,248.05,22.855], [-2665,0.032676,232.49,22.985], [-2666,0.032757,216.99,23.123], [-2667,0.032850,201.53,23.266], [-2668,0.032956,186.11,23.410], [-2669,0.033073,170.73,23.552], [-2670,0.033200,155.39,23.689], [-2671,0.033335,140.08,23.818], [-2672,0.033477,124.78,23.935], [-2673,0.033625,109.51,24.038], [-2674,0.033775,94.24,24.125], [-2675,0.033927,78.96,24.194], [-2676,0.034077,63.68,24.243], [-2677,0.034226,48.37,24.272], [-2678,0.034369,33.04,24.279], [-2679,0.034506,17.66,24.264], [-2680,0.034633,2.24,24.228], [-2681,0.034750,346.77,24.171], [-2682,0.034854,331.23,24.095], [-2683,0.034944,315.63,24.001], [-2684,0.035017,299.94,23.892], [-2685,0.035071,284.18,23.770], [-2686,0.035107,268.33,23.639], [-2687,0.035121,252.40,23.500], [-2688,0.035112,236.37,23.358], [-2689,0.035080,220.26,23.217], [-2690,0.035023,204.06,23.079], [-2691,0.034941,187.79,22.950], [-2692,0.034832,171.44,22.831], [-2693,0.034696,155.02,22.727], [-2694,0.034533,138.55,22.639], [-2695,0.034342,122.04,22.571], [-2696,0.034123,105.49,22.524], [-2697,0.033876,88.94,22.499], [-2698,0.033602,72.38,22.497], [-2699,0.033301,55.84,22.517], [-2700,0.032974,39.33,22.558], [-2701,0.032620,22.86,22.618], [-2702,0.032242,6.45,22.697], [-2703,0.031840,350.10,22.790], [-2704,0.031415,333.84,22.896], [-2705,0.030970,317.66,23.011], [-2706,0.030504,301.57,23.131], [-2707,0.030022,285.59,23.254], [-2708,0.029523,269.70,23.376], [-2709,0.029010,253.92,23.493], [-2710,0.028486,238.24,23.604], [-2711,0.027953,222.67,23.705], [-2712,0.027414,207.20,23.793], [-2713,0.026870,191.83,23.868], [-2714,0.026326,176.55,23.927], [-2715,0.025783,161.37,23.970], [-2716,0.025245,146.28,23.995], [-2717,0.024715,131.27,24.003], [-2718,0.024196,116.34,23.993], [-2719,0.023691,101.49,23.967], [-2720,0.023204,86.70,23.924], [-2721,0.022737,71.98,23.867], [-2722,0.022293,57.31,23.797], [-2723,0.021876,42.68,23.715], [-2724,0.021487,28.09,23.624], [-2725,0.021130,13.52,23.527], [-2726,0.020805,358.97,23.425], [-2727,0.020516,344.43,23.322], [-2728,0.020263,329.88,23.220], [-2729,0.020046,315.32,23.122], [-2730,0.019866,300.73,23.030], [-2731,0.019723,286.10,22.947], [-2732,0.019615,271.43,22.874], [-2733,0.019542,256.71,22.814], [-2734,0.019501,241.94,22.768], [-2735,0.019490,227.10,22.738], [-2736,0.019507,212.20,22.724], [-2737,0.019549,197.24,22.726], [-2738,0.019613,182.21,22.744], [-2739,0.019695,167.13,22.778], [-2740,0.019793,151.99,22.826], [-2741,0.019903,136.80,22.888], [-2742,0.020021,121.56,22.961], [-2743,0.020146,106.28,23.045], [-2744,0.020273,90.96,23.135], [-2745,0.020401,75.62,23.231], [-2746,0.020526,60.24,23.330], [-2747,0.020645,44.85,23.429], [-2748,0.020758,29.43,23.525], [-2749,0.020861,13.99,23.618], [-2750,0.020954,358.54,23.703], [-2751,0.021034,343.07,23.780], [-2752,0.021100,327.59,23.847], [-2753,0.021152,312.08,23.901], [-2754,0.021188,296.56,23.942], [-2755,0.021207,281.02,23.969], [-2756,0.021210,265.46,23.981], [-2757,0.021195,249.87,23.977], [-2758,0.021163,234.25,23.958], [-2759,0.021113,218.60,23.924], [-2760,0.021047,202.92,23.875], [-2761,0.020963,187.20,23.813], [-2762,0.020862,171.43,23.738], [-2763,0.020746,155.63,23.652], [-2764,0.020614,139.78,23.558], [-2765,0.020467,123.88,23.456], [-2766,0.020306,107.94,23.350], [-2767,0.020132,91.94,23.242], [-2768,0.019945,75.90,23.134], [-2769,0.019747,59.81,23.029], [-2770,0.019539,43.68,22.929], [-2771,0.019321,27.50,22.838], [-2772,0.019094,11.29,22.756], [-2773,0.018860,355.05,22.688], [-2774,0.018618,338.78,22.633], [-2775,0.018371,322.49,22.595], [-2776,0.018118,306.19,22.574], [-2777,0.017861,289.88,22.570], [-2778,0.017599,273.58,22.584], [-2779,0.017335,257.29,22.617], [-2780,0.017067,241.01,22.666], [-2781,0.016796,224.75,22.731], [-2782,0.016523,208.52,22.811], [-2783,0.016248,192.32,22.903], [-2784,0.015970,176.16,23.006], [-2785,0.015691,160.02,23.117], [-2786,0.015408,143.91,23.233], [-2787,0.015123,127.84,23.352], [-2788,0.014834,111.79,23.472], [-2789,0.014541,95.76,23.589], [-2790,0.014244,79.74,23.700], [-2791,0.013943,63.73,23.805], [-2792,0.013635,47.72,23.899], [-2793,0.013322,31.69,23.982], [-2794,0.013001,15.64,24.051], [-2795,0.012672,359.56,24.106], [-2796,0.012336,343.44,24.144], [-2797,0.011990,327.25,24.166], [-2798,0.011634,310.99,24.170], [-2799,0.011268,294.65,24.156], [-2800,0.010891,278.21,24.125], [-2801,0.010503,261.65,24.077], [-2802,0.010103,244.96,24.013], [-2803,0.009692,228.11,23.935], [-2804,0.009269,211.09,23.843], [-2805,0.008834,193.87,23.739], [-2806,0.008389,176.43,23.626], [-2807,0.007934,158.72,23.505], [-2808,0.007470,140.72,23.380], [-2809,0.006998,122.36,23.253], [-2810,0.006521,103.60,23.127], [-2811,0.006041,84.34,23.005], [-2812,0.005564,64.49,22.889], [-2813,0.005094,43.90,22.782], [-2814,0.004639,22.40,22.687], [-2815,0.004211,359.77,22.607], [-2816,0.003824,335.75,22.542], [-2817,0.003500,310.13,22.496], [-2818,0.003263,282.84,22.469], [-2819,0.003140,254.19,22.461], [-2820,0.003148,224.95,22.474], [-2821,0.003292,196.16,22.506], [-2822,0.003557,168.62,22.557], [-2823,0.003921,142.70,22.626], [-2824,0.004360,118.38,22.710], [-2825,0.004853,95.44,22.809], [-2826,0.005385,73.63,22.919], [-2827,0.005943,52.72,23.037], [-2828,0.006520,32.53,23.161], [-2829,0.007107,12.91,23.288], [-2830,0.007700,353.75,23.414], [-2831,0.008294,334.96,23.538], [-2832,0.008886,316.49,23.655], [-2833,0.009473,298.28,23.764], [-2834,0.010051,280.28,23.862], [-2835,0.010618,262.47,23.947], [-2836,0.011172,244.81,24.017], [-2837,0.011711,227.28,24.071], [-2838,0.012233,209.85,24.108], [-2839,0.012736,192.51,24.127], [-2840,0.013218,175.24,24.128], [-2841,0.013678,158.03,24.111], [-2842,0.014115,140.86,24.077], [-2843,0.014526,123.73,24.027], [-2844,0.014911,106.61,23.961], [-2845,0.015268,89.50,23.882], [-2846,0.015597,72.40,23.791], [-2847,0.015895,55.29,23.691], [-2848,0.016164,38.17,23.584], [-2849,0.016401,21.05,23.473], [-2850,0.016606,3.91,23.360], [-2851,0.016778,346.75,23.249], [-2852,0.016917,329.59,23.142], [-2853,0.017023,312.41,23.041], [-2854,0.017096,295.24,22.949], [-2855,0.017135,278.06,22.869], [-2856,0.017140,260.90,22.803], [-2857,0.017112,243.76,22.751], [-2858,0.017051,226.66,22.715], [-2859,0.016957,209.60,22.695], [-2860,0.016831,192.59,22.692], [-2861,0.016674,175.66,22.705], [-2862,0.016486,158.80,22.734], [-2863,0.016270,142.04,22.777], [-2864,0.016025,125.39,22.832], [-2865,0.015753,108.86,22.899], [-2866,0.015456,92.47,22.974], [-2867,0.015136,76.21,23.055], [-2868,0.014794,60.12,23.140], [-2869,0.014433,44.19,23.227], [-2870,0.014055,28.44,23.314], [-2871,0.013664,12.89,23.397], [-2872,0.013262,357.54,23.476], [-2873,0.012852,342.42,23.548], [-2874,0.012438,327.52,23.611], [-2875,0.012025,312.88,23.666], [-2876,0.011618,298.50,23.709], [-2877,0.011221,284.41,23.742], [-2878,0.010840,270.60,23.763], [-2879,0.010482,257.10,23.772], [-2880,0.010153,243.91,23.770], [-2881,0.009860,231.03,23.757], [-2882,0.009610,218.44,23.734], [-2883,0.009410,206.11,23.701], [-2884,0.009267,194.00,23.660], [-2885,0.009185,182.06,23.612], [-2886,0.009169,170.20,23.558], [-2887,0.009221,158.35,23.499], [-2888,0.009339,146.42,23.438], [-2889,0.009524,134.35,23.376], [-2890,0.009772,122.07,23.314], [-2891,0.010078,109.54,23.254], [-2892,0.010436,96.73,23.196], [-2893,0.010842,83.62,23.144], [-2894,0.011288,70.22,23.097], [-2895,0.011771,56.54,23.056], [-2896,0.012284,42.60,23.023], [-2897,0.012822,28.41,22.998], [-2898,0.013382,14.00,22.981], [-2899,0.013960,359.40,22.974], [-2900,0.014552,344.62,22.975], [-2901,0.015156,329.70,22.985], [-2902,0.015770,314.65,23.004], [-2903,0.016391,299.48,23.030], [-2904,0.017017,284.23,23.064], [-2905,0.017648,268.90,23.105], [-2906,0.018282,253.51,23.151], [-2907,0.018919,238.07,23.202], [-2908,0.019558,222.59,23.257], [-2909,0.020197,207.07,23.314], [-2910,0.020837,191.53,23.373], [-2911,0.021478,175.97,23.431], [-2912,0.022119,160.40,23.488], [-2913,0.022761,144.81,23.542], [-2914,0.023402,129.21,23.593], [-2915,0.024044,113.61,23.638], [-2916,0.024685,97.99,23.677], [-2917,0.025327,82.36,23.709], [-2918,0.025970,66.72,23.733], [-2919,0.026612,51.07,23.747], [-2920,0.027254,35.39,23.753], [-2921,0.027897,19.70,23.748], [-2922,0.028539,3.97,23.733], [-2923,0.029180,348.22,23.707], [-2924,0.029821,332.44,23.672], [-2925,0.030461,316.61,23.626], [-2926,0.031099,300.74,23.572], [-2927,0.031734,284.82,23.510], [-2928,0.032367,268.85,23.440], [-2929,0.032996,252.83,23.365], [-2930,0.033620,236.75,23.287], [-2931,0.034239,220.60,23.206], [-2932,0.034851,204.40,23.126], [-2933,0.035455,188.13,23.047], [-2934,0.036050,171.80,22.972], [-2935,0.036635,155.41,22.904], [-2936,0.037208,138.96,22.845], [-2937,0.037768,122.47,22.795], [-2938,0.038314,105.93,22.758], [-2939,0.038843,89.35,22.734], [-2940,0.039355,72.73,22.724], [-2941,0.039848,56.10,22.730], [-2942,0.040319,39.45,22.751], [-2943,0.040769,22.79,22.788], [-2944,0.041194,6.14,22.840], [-2945,0.041594,349.50,22.905], [-2946,0.041966,332.88,22.982], [-2947,0.042310,316.28,23.070], [-2948,0.042624,299.71,23.165], [-2949,0.042906,283.19,23.267], [-2950,0.043156,266.70,23.371], [-2951,0.043371,250.25,23.477], [-2952,0.043551,233.85,23.579], [-2953,0.043694,217.49,23.677], [-2954,0.043799,201.17,23.768], [-2955,0.043866,184.90,23.849], [-2956,0.043894,168.65,23.918], [-2957,0.043882,152.44,23.973], [-2958,0.043829,136.26,24.014], [-2959,0.043735,120.10,24.039], [-2960,0.043600,103.96,24.047], [-2961,0.043424,87.83,24.039], [-2962,0.043206,71.70,24.014], [-2963,0.042947,55.58,23.973], [-2964,0.042647,39.46,23.917], [-2965,0.042307,23.34,23.847], [-2966,0.041928,7.21,23.765], [-2967,0.041510,351.07,23.674], [-2968,0.041054,334.92,23.575], [-2969,0.040562,318.76,23.470], [-2970,0.040035,302.59,23.363], [-2971,0.039475,286.42,23.256], [-2972,0.038884,270.25,23.152], [-2973,0.038265,254.09,23.053], [-2974,0.037619,237.94,22.961], [-2975,0.036950,221.82,22.880], [-2976,0.036260,205.74,22.810], [-2977,0.035553,189.71,22.754], [-2978,0.034833,173.74,22.712], [-2979,0.034102,157.85,22.685], [-2980,0.033367,142.05,22.674], [-2981,0.032630,126.35,22.677], [-2982,0.031898,110.78,22.695], [-2983,0.031175,95.35,22.726], [-2984,0.030466,80.05,22.770], [-2985,0.029779,64.92,22.824], [-2986,0.029118,49.95,22.888], [-2987,0.028490,35.15,22.958], [-2988,0.027903,20.53,23.033], [-2989,0.027361,6.08,23.112], [-2990,0.026872,351.80,23.192], [-2991,0.026442,337.68,23.272], [-2992,0.026076,323.70,23.349], [-2993,0.025780,309.86,23.423], [-2994,0.025558,296.13,23.493], [-2995,0.025413,282.49,23.556], [-2996,0.025348,268.91,23.613], [-2997,0.025364,255.36,23.663], [-2998,0.025460,241.81,23.706], [-2999,0.025634,228.24,23.740], [-3000,0.025886,214.62,23.767], [-3001,0.026209,200.92,23.785], [-3002,0.026601,187.14,23.796], [-3003,0.027056,173.25,23.799], [-3004,0.027568,159.25,23.795], [-3005,0.028132,145.11,23.783], [-3006,0.028741,130.84,23.766], [-3007,0.029389,116.44,23.741], [-3008,0.030071,101.91,23.712], [-3009,0.030781,87.24,23.676], [-3010,0.031513,72.45,23.636], [-3011,0.032263,57.52,23.592], [-3012,0.033026,42.48,23.544], [-3013,0.033797,27.33,23.492], [-3014,0.034573,12.06,23.438], [-3015,0.035350,356.69,23.382], [-3016,0.036125,341.22,23.324], [-3017,0.036896,325.65,23.266], [-3018,0.037658,310.00,23.209], [-3019,0.038411,294.27,23.153], [-3020,0.039152,278.46,23.100], [-3021,0.039879,262.57,23.050], [-3022,0.040592,246.62,23.005], [-3023,0.041287,230.62,22.965], [-3024,0.041966,214.55,22.932], [-3025,0.042626,198.44,22.907], [-3026,0.043266,182.29,22.890], [-3027,0.043887,166.10,22.882], [-3028,0.044488,149.89,22.884], [-3029,0.045068,133.66,22.896], [-3030,0.045627,117.41,22.918], [-3031,0.046165,101.15,22.950], [-3032,0.046682,84.90,22.990], [-3033,0.047177,68.65,23.039], [-3034,0.047652,52.41,23.095], [-3035,0.048105,36.18,23.157], [-3036,0.048538,19.98,23.223], [-3037,0.048949,3.79,23.292], [-3038,0.049340,347.63,23.361], [-3039,0.049710,331.49,23.430], [-3040,0.050059,315.37,23.495], [-3041,0.050387,299.27,23.556], [-3042,0.050694,283.19,23.610], [-3043,0.050981,267.13,23.656], [-3044,0.051246,251.07,23.692], [-3045,0.051491,235.02,23.718], [-3046,0.051714,218.98,23.733], [-3047,0.051915,202.92,23.736], [-3048,0.052095,186.86,23.728], [-3049,0.052252,170.78,23.707], [-3050,0.052386,154.67,23.677], [-3051,0.052497,138.54,23.636], [-3052,0.052584,122.37,23.586], [-3053,0.052646,106.17,23.529], [-3054,0.052683,89.93,23.467], [-3055,0.052693,73.64,23.402], [-3056,0.052677,57.32,23.336], [-3057,0.052633,40.94,23.270], [-3058,0.052561,24.53,23.208], [-3059,0.052459,8.07,23.151], [-3060,0.052328,351.58,23.101], [-3061,0.052165,335.06,23.060], [-3062,0.051971,318.51,23.030], [-3063,0.051744,301.94,23.010], [-3064,0.051483,285.36,23.002], [-3065,0.051189,268.77,23.006], [-3066,0.050859,252.19,23.021], [-3067,0.050495,235.62,23.048], [-3068,0.050094,219.07,23.083], [-3069,0.049657,202.53,23.128], [-3070,0.049183,186.03,23.178], [-3071,0.048672,169.56,23.233], [-3072,0.048124,153.12,23.291], [-3073,0.047538,136.73,23.349], [-3074,0.046915,120.37,23.406], [-3075,0.046255,104.06,23.458], [-3076,0.045558,87.78,23.506], [-3077,0.044825,71.55,23.547], [-3078,0.044057,55.35,23.579], [-3079,0.043253,39.20,23.602], [-3080,0.042416,23.07,23.616], [-3081,0.041546,6.99,23.620], [-3082,0.040645,350.94,23.613], [-3083,0.039714,334.92,23.597], [-3084,0.038756,318.94,23.573], [-3085,0.037771,303.00,23.541], [-3086,0.036764,287.10,23.502], [-3087,0.035735,271.24,23.458], [-3088,0.034689,255.44,23.411], [-3089,0.033629,239.70,23.362], [-3090,0.032557,224.03,23.312], [-3091,0.031479,208.45,23.264], [-3092,0.030399,192.97,23.219], [-3093,0.029323,177.60,23.178], [-3094,0.028255,162.36,23.142], [-3095,0.027202,147.28,23.113], [-3096,0.026171,132.38,23.090], [-3097,0.025170,117.66,23.074], [-3098,0.024207,103.17,23.065], [-3099,0.023293,88.91,23.063], [-3100,0.022436,74.91,23.068], [-3101,0.021647,61.17,23.078], [-3102,0.020938,47.70,23.094], [-3103,0.020319,34.50,23.113], [-3104,0.019801,21.54,23.136], [-3105,0.019394,8.79,23.161], [-3106,0.019104,356.20,23.187], [-3107,0.018938,343.73,23.214], [-3108,0.018897,331.30,23.241], [-3109,0.018981,318.84,23.267], [-3110,0.019186,306.29,23.292], [-3111,0.019504,293.59,23.317], [-3112,0.019927,280.70,23.339], [-3113,0.020444,267.57,23.361], [-3114,0.021043,254.19,23.382], [-3115,0.021713,240.55,23.401], [-3116,0.022442,226.65,23.421], [-3117,0.023219,212.50,23.440], [-3118,0.024034,198.11,23.459], [-3119,0.024876,183.51,23.479], [-3120,0.025739,168.71,23.498], [-3121,0.026613,153.72,23.518], [-3122,0.027493,138.56,23.538], [-3123,0.028372,123.26,23.558], [-3124,0.029244,107.83,23.577], [-3125,0.030105,92.28,23.594], [-3126,0.030952,76.63,23.609], [-3127,0.031779,60.89,23.621], [-3128,0.032584,45.06,23.629], [-3129,0.033364,29.16,23.632], [-3130,0.034116,13.19,23.629], [-3131,0.034839,357.16,23.619], [-3132,0.035530,341.07,23.602], [-3133,0.036188,324.92,23.578], [-3134,0.036812,308.71,23.545], [-3135,0.037399,292.45,23.504], [-3136,0.037951,276.14,23.455], [-3137,0.038465,259.77,23.400], [-3138,0.038941,243.35,23.338], [-3139,0.039379,226.87,23.272], [-3140,0.039778,210.33,23.202], [-3141,0.040139,193.74,23.131], [-3142,0.040462,177.09,23.060], [-3143,0.040746,160.39,22.993], [-3144,0.040993,143.64,22.930], [-3145,0.041201,126.84,22.874], [-3146,0.041372,110.01,22.828], [-3147,0.041507,93.13,22.792], [-3148,0.041606,76.23,22.770], [-3149,0.041669,59.31,22.761], [-3150,0.041697,42.38,22.767], [-3151,0.041691,25.44,22.788], [-3152,0.041653,8.51,22.824], [-3153,0.041581,351.60,22.874], [-3154,0.041479,334.70,22.938], [-3155,0.041345,317.83,23.012], [-3156,0.041182,301.00,23.096], [-3157,0.040989,284.21,23.187], [-3158,0.040769,267.45,23.282], [-3159,0.040521,250.74,23.379], [-3160,0.040246,234.07,23.475], [-3161,0.039946,217.44,23.567], [-3162,0.039620,200.84,23.652], [-3163,0.039270,184.28,23.729], [-3164,0.038896,167.74,23.795], [-3165,0.038498,151.22,23.848], [-3166,0.038079,134.71,23.888], [-3167,0.037637,118.20,23.914], [-3168,0.037173,101.69,23.924], [-3169,0.036688,85.17,23.920], [-3170,0.036182,68.62,23.901], [-3171,0.035656,52.05,23.869], [-3172,0.035110,35.44,23.825], [-3173,0.034543,18.79,23.769], [-3174,0.033957,2.09,23.705], [-3175,0.033352,345.34,23.635], [-3176,0.032727,328.53,23.559], [-3177,0.032083,311.66,23.482], [-3178,0.031420,294.72,23.404], [-3179,0.030739,277.73,23.328], [-3180,0.030039,260.67,23.257], [-3181,0.029320,243.55,23.191], [-3182,0.028584,226.37,23.132], [-3183,0.027829,209.13,23.082], [-3184,0.027057,191.84,23.041], [-3185,0.026267,174.49,23.010], [-3186,0.025460,157.09,22.987], [-3187,0.024637,139.64,22.974], [-3188,0.023798,122.14,22.970], [-3189,0.022942,104.59,22.973], [-3190,0.022073,86.98,22.983], [-3191,0.021189,69.32,22.997], [-3192,0.020291,51.58,23.017], [-3193,0.019382,33.77,23.039], [-3194,0.018461,15.88,23.062], [-3195,0.017531,357.88,23.087], [-3196,0.016593,339.76,23.112], [-3197,0.015649,321.50,23.136], [-3198,0.014701,303.06,23.160], [-3199,0.013752,284.42,23.182], [-3200,0.012805,265.52,23.203], [-3201,0.011864,246.31,23.223], [-3202,0.010935,226.72,23.243], [-3203,0.010023,206.65,23.263], [-3204,0.009138,185.97,23.283], [-3205,0.008291,164.55,23.304], [-3206,0.007498,142.16,23.327], [-3207,0.006779,118.61,23.351], [-3208,0.006161,93.67,23.378], [-3209,0.005679,67.24,23.406], [-3210,0.005367,39.46,23.436], [-3211,0.005255,10.88,23.467], [-3212,0.005351,342.33,23.500], [-3213,0.005640,314.65,23.532], [-3214,0.006090,288.34,23.563], [-3215,0.006662,263.52,23.593], [-3216,0.007322,240.06,23.619], [-3217,0.008042,217.74,23.641], [-3218,0.008801,196.35,23.657], [-3219,0.009583,175.69,23.667], [-3220,0.010376,155.59,23.669], [-3221,0.011172,135.94,23.663], [-3222,0.011964,116.65,23.648], [-3223,0.012746,97.63,23.624], [-3224,0.013514,78.83,23.591], [-3225,0.014264,60.19,23.550], [-3226,0.014993,41.69,23.502], [-3227,0.015699,23.29,23.446], [-3228,0.016379,4.97,23.386], [-3229,0.017031,346.70,23.323], [-3230,0.017653,328.47,23.258], [-3231,0.018244,310.27,23.193], [-3232,0.018802,292.08,23.132], [-3233,0.019326,273.91,23.075], [-3234,0.019815,255.75,23.025], [-3235,0.020268,237.59,22.985], [-3236,0.020684,219.43,22.954], [-3237,0.021062,201.29,22.936], [-3238,0.021402,183.15,22.929], [-3239,0.021703,165.02,22.936], [-3240,0.021965,146.92,22.956], [-3241,0.022187,128.83,22.987], [-3242,0.022370,110.77,23.030], [-3243,0.022514,92.74,23.082], [-3244,0.022618,74.74,23.142], [-3245,0.022683,56.78,23.208], [-3246,0.022709,38.84,23.276], [-3247,0.022697,20.94,23.345], [-3248,0.022646,3.06,23.413], [-3249,0.022559,345.20,23.476], [-3250,0.022435,327.37,23.533], [-3251,0.022276,309.54,23.581], [-3252,0.022082,291.72,23.620], [-3253,0.021854,273.89,23.647], [-3254,0.021595,256.04,23.662], [-3255,0.021304,238.16,23.665], [-3256,0.020983,220.25,23.655], [-3257,0.020635,202.29,23.632], [-3258,0.020260,184.27,23.599], [-3259,0.019860,166.18,23.556], [-3260,0.019437,148.00,23.505], [-3261,0.018994,129.74,23.448], [-3262,0.018532,111.37,23.386], [-3263,0.018054,92.88,23.323], [-3264,0.017562,74.28,23.260], [-3265,0.017059,55.53,23.201], [-3266,0.016547,36.65,23.146], [-3267,0.016031,17.61,23.099], [-3268,0.015513,358.42,23.060], [-3269,0.014997,339.05,23.032], [-3270,0.014487,319.50,23.014], [-3271,0.013988,299.76,23.009], [-3272,0.013505,279.81,23.015], [-3273,0.013042,259.66,23.032], [-3274,0.012606,239.30,23.059], [-3275,0.012202,218.71,23.095], [-3276,0.011837,197.90,23.139], [-3277,0.011518,176.87,23.189], [-3278,0.011250,155.66,23.242], [-3279,0.011040,134.27,23.298], [-3280,0.010892,112.75,23.354], [-3281,0.010812,91.16,23.408], [-3282,0.010803,69.54,23.458], [-3283,0.010864,47.96,23.503], [-3284,0.010997,26.49,23.542], [-3285,0.011199,5.16,23.575], [-3286,0.011467,344.04,23.599], [-3287,0.011796,323.15,23.615], [-3288,0.012181,302.51,23.623], [-3289,0.012618,282.14,23.624], [-3290,0.013100,262.02,23.617], [-3291,0.013622,242.16,23.603], [-3292,0.014180,222.54,23.584], [-3293,0.014768,203.14,23.560], [-3294,0.015382,183.95,23.532], [-3295,0.016019,164.94,23.501], [-3296,0.016674,146.10,23.469], [-3297,0.017345,127.42,23.436], [-3298,0.018029,108.87,23.403], [-3299,0.018723,90.45,23.371], [-3300,0.019426,72.14,23.340], [-3301,0.020135,53.93,23.311], [-3302,0.020847,35.82,23.284], [-3303,0.021563,17.78,23.258], [-3304,0.022279,359.83,23.234], [-3305,0.022994,341.93,23.212], [-3306,0.023707,324.11,23.191], [-3307,0.024416,306.33,23.171], [-3308,0.025120,288.60,23.151], [-3309,0.025818,270.92,23.132], [-3310,0.026507,253.27,23.113], [-3311,0.027188,235.65,23.095], [-3312,0.027859,218.06,23.077], [-3313,0.028518,200.48,23.060], [-3314,0.029164,182.93,23.044], [-3315,0.029795,165.39,23.030], [-3316,0.030411,147.86,23.020], [-3317,0.031010,130.34,23.013], [-3318,0.031591,112.83,23.011], [-3319,0.032152,95.33,23.014], [-3320,0.032692,77.83,23.024], [-3321,0.033209,60.35,23.041], [-3322,0.033703,42.88,23.066], [-3323,0.034172,25.42,23.099], [-3324,0.034614,7.99,23.141], [-3325,0.035028,350.58,23.191], [-3326,0.035414,333.19,23.248], [-3327,0.035768,315.83,23.311], [-3328,0.036091,298.51,23.380], [-3329,0.036381,281.22,23.453], [-3330,0.036637,263.97,23.529], [-3331,0.036857,246.77,23.604], [-3332,0.037041,229.60,23.677], [-3333,0.037187,212.46,23.746], [-3334,0.037295,195.37,23.809], [-3335,0.037363,178.31,23.863], [-3336,0.037390,161.27,23.907], [-3337,0.037376,144.27,23.938], [-3338,0.037320,127.28,23.956], [-3339,0.037221,110.30,23.959], [-3340,0.037079,93.33,23.947], [-3341,0.036893,76.36,23.918], [-3342,0.036663,59.39,23.874], [-3343,0.036387,42.40,23.815], [-3344,0.036067,25.38,23.741], [-3345,0.035702,8.35,23.654], [-3346,0.035292,351.27,23.557], [-3347,0.034837,334.16,23.451], [-3348,0.034337,317.01,23.340], [-3349,0.033792,299.82,23.226], [-3350,0.033203,282.59,23.112], [-3351,0.032570,265.31,23.002], [-3352,0.031894,247.99,22.899], [-3353,0.031176,230.65,22.806], [-3354,0.030415,213.28,22.726], [-3355,0.029614,195.90,22.661], [-3356,0.028773,178.51,22.613], [-3357,0.027894,161.13,22.584], [-3358,0.026977,143.78,22.574], [-3359,0.026024,126.47,22.585], [-3360,0.025036,109.21,22.615], [-3361,0.024015,92.03,22.663], [-3362,0.022963,74.94,22.728], [-3363,0.021882,57.95,22.807], [-3364,0.020774,41.10,22.899], [-3365,0.019640,24.39,23.000], [-3366,0.018484,7.85,23.107], [-3367,0.017308,351.52,23.217], [-3368,0.016115,335.41,23.326], [-3369,0.014910,319.57,23.433], [-3370,0.013696,304.06,23.535], [-3371,0.012479,288.96,23.628], [-3372,0.011266,274.38,23.711], [-3373,0.010068,260.47,23.782], [-3374,0.008897,247.47,23.840], [-3375,0.007775,235.73,23.884], [-3376,0.006735,225.76,23.914], [-3377,0.005826,218.21,23.929], [-3378,0.005125,213.72,23.930], [-3379,0.004733,212.20,23.917], [-3380,0.004727,212.03,23.892], [-3381,0.005110,210.57,23.856], [-3382,0.005803,206.14,23.811], [-3383,0.006709,198.64,23.757], [-3384,0.007749,188.68,23.697], [-3385,0.008873,176.94,23.632], [-3386,0.010047,163.93,23.565], [-3387,0.011251,150.02,23.496], [-3388,0.012472,135.44,23.428], [-3389,0.013699,120.36,23.362], [-3390,0.014927,104.91,23.298], [-3391,0.016151,89.17,23.239], [-3392,0.017366,73.20,23.185], [-3393,0.018569,57.04,23.137], [-3394,0.019758,40.74,23.094], [-3395,0.020931,24.33,23.058], [-3396,0.022086,7.82,23.028], [-3397,0.023221,351.23,23.004], [-3398,0.024335,334.58,22.986], [-3399,0.025428,317.89,22.974], [-3400,0.026497,301.15,22.968], [-3401,0.027543,284.39,22.967], [-3402,0.028564,267.60,22.971], [-3403,0.029560,250.79,22.980], [-3404,0.030531,233.97,22.994], [-3405,0.031475,217.14,23.013], [-3406,0.032394,200.31,23.035], [-3407,0.033285,183.48,23.062], [-3408,0.034150,166.65,23.093], [-3409,0.034988,149.83,23.128], [-3410,0.035799,133.01,23.167], [-3411,0.036582,116.21,23.209], [-3412,0.037339,99.42,23.254], [-3413,0.038068,82.64,23.301], [-3414,0.038770,65.88,23.350], [-3415,0.039445,49.14,23.399], [-3416,0.040093,32.42,23.449], [-3417,0.040713,15.72,23.497], [-3418,0.041307,359.04,23.543], [-3419,0.041874,342.38,23.586], [-3420,0.042414,325.74,23.624], [-3421,0.042926,309.11,23.656], [-3422,0.043412,292.50,23.681], [-3423,0.043871,275.90,23.699], [-3424,0.044302,259.30,23.707], [-3425,0.044706,242.70,23.705], [-3426,0.045083,226.10,23.694], [-3427,0.045432,209.49,23.672], [-3428,0.045753,192.87,23.640], [-3429,0.046045,176.22,23.599], [-3430,0.046309,159.55,23.548], [-3431,0.046544,142.85,23.490], [-3432,0.046750,126.12,23.425], [-3433,0.046926,109.34,23.356], [-3434,0.047071,92.52,23.284], [-3435,0.047185,75.66,23.211], [-3436,0.047269,58.75,23.140], [-3437,0.047320,41.80,23.073], [-3438,0.047338,24.81,23.013], [-3439,0.047324,7.77,22.961], [-3440,0.047275,350.70,22.920], [-3441,0.047192,333.60,22.892], [-3442,0.047074,316.48,22.877], [-3443,0.046921,299.34,22.877], [-3444,0.046731,282.20,22.892], [-3445,0.046504,265.05,22.922], [-3446,0.046240,247.92,22.966], [-3447,0.045938,230.80,23.023], [-3448,0.045598,213.71,23.091], [-3449,0.045219,196.64,23.169], [-3450,0.044801,179.61,23.254], [-3451,0.044343,162.62,23.343], [-3452,0.043846,145.67,23.433], [-3453,0.043309,128.76,23.522], [-3454,0.042731,111.88,23.606], [-3455,0.042113,95.05,23.683], [-3456,0.041456,78.24,23.751], [-3457,0.040758,61.46,23.806], [-3458,0.040020,44.71,23.848], [-3459,0.039243,27.97,23.875], [-3460,0.038427,11.24,23.886], [-3461,0.037571,354.51,23.880], [-3462,0.036678,337.78,23.857], [-3463,0.035747,321.04,23.818], [-3464,0.034780,304.28,23.764], [-3465,0.033776,287.50,23.696], [-3466,0.032737,270.70,23.616], [-3467,0.031665,253.86,23.526], [-3468,0.030559,236.99,23.429], [-3469,0.029422,220.09,23.328], [-3470,0.028255,203.16,23.225], [-3471,0.027059,186.20,23.124], [-3472,0.025835,169.23,23.027], [-3473,0.024587,152.24,22.938], [-3474,0.023314,135.26,22.858], [-3475,0.022020,118.30,22.792], [-3476,0.020705,101.37,22.740], [-3477,0.019374,84.51,22.704], [-3478,0.018027,67.74,22.684], [-3479,0.016668,51.11,22.683], [-3480,0.015299,34.65,22.698], [-3481,0.013926,18.44,22.730], [-3482,0.012551,2.55,22.778], [-3483,0.011180,347.11,22.839], [-3484,0.009822,332.29,22.912], [-3485,0.008488,318.37,22.995], [-3486,0.007195,305.79,23.086], [-3487,0.005975,295.30,23.181], [-3488,0.004883,288.12,23.279], [-3489,0.004027,285.97,23.377], [-3490,0.003575,289.53,23.472], [-3491,0.003672,295.12,23.563], [-3492,0.004274,296.75,23.647], [-3493,0.005199,292.66,23.723], [-3494,0.006297,284.30,23.790], [-3495,0.007483,273.22,23.846], [-3496,0.008714,260.45,23.892], [-3497,0.009963,246.59,23.925], [-3498,0.011216,232.00,23.946], [-3499,0.012464,216.89,23.955], [-3500,0.013701,201.42,23.953], [-3501,0.014921,185.67,23.939], [-3502,0.016121,169.70,23.913], [-3503,0.017299,153.56,23.878], [-3504,0.018451,137.28,23.833], [-3505,0.019577,120.87,23.779], [-3506,0.020673,104.37,23.718], [-3507,0.021739,87.77,23.650], [-3508,0.022773,71.10,23.577], [-3509,0.023774,54.34,23.499], [-3510,0.024741,37.53,23.418], [-3511,0.025674,20.64,23.335], [-3512,0.026571,3.70,23.251], [-3513,0.027431,346.70,23.168], [-3514,0.028255,329.66,23.086], [-3515,0.029042,312.56,23.007], [-3516,0.029792,295.42,22.933], [-3517,0.030504,278.23,22.864], [-3518,0.031178,261.01,22.803], [-3519,0.031814,243.76,22.749], [-3520,0.032413,226.47,22.706], [-3521,0.032974,209.16,22.673], [-3522,0.033497,191.84,22.652], [-3523,0.033984,174.50,22.643], [-3524,0.034434,157.15,22.648], [-3525,0.034847,139.80,22.667], [-3526,0.035224,122.46,22.699], [-3527,0.035566,105.13,22.746], [-3528,0.035874,87.83,22.805], [-3529,0.036146,70.54,22.877], [-3530,0.036386,53.29,22.961], [-3531,0.036592,36.08,23.054], [-3532,0.036765,18.91,23.156], [-3533,0.036907,1.78,23.263], [-3534,0.037019,344.69,23.374], [-3535,0.037099,327.66,23.486], [-3536,0.037151,310.67,23.597], [-3537,0.037173,293.73,23.705], [-3538,0.037167,276.82,23.805], [-3539,0.037134,259.96,23.897], [-3540,0.037073,243.13,23.978], [-3541,0.036987,226.32,24.045], [-3542,0.036874,209.53,24.097], [-3543,0.036737,192.76,24.133], [-3544,0.036576,175.98,24.151], [-3545,0.036390,159.20,24.150], [-3546,0.036181,142.41,24.131], [-3547,0.035950,125.59,24.093], [-3548,0.035695,108.73,24.037], [-3549,0.035419,91.83,23.964], [-3550,0.035122,74.87,23.875], [-3551,0.034803,57.85,23.773], [-3552,0.034463,40.75,23.659], [-3553,0.034103,23.58,23.537], [-3554,0.033724,6.33,23.410], [-3555,0.033324,348.98,23.280], [-3556,0.032906,331.54,23.152], [-3557,0.032469,314.00,23.028], [-3558,0.032013,296.37,22.912], [-3559,0.031539,278.65,22.807], [-3560,0.031049,260.83,22.716], [-3561,0.030541,242.93,22.642], [-3562,0.030017,224.95,22.587], [-3563,0.029477,206.89,22.552], [-3564,0.028923,188.77,22.537], [-3565,0.028354,170.59,22.544], [-3566,0.027772,152.36,22.571], [-3567,0.027178,134.09,22.618], [-3568,0.026573,115.77,22.683], [-3569,0.025958,97.41,22.763], [-3570,0.025335,79.02,22.856], [-3571,0.024705,60.58,22.959], [-3572,0.024070,42.11,23.069], [-3573,0.023432,23.59,23.183], [-3574,0.022793,5.01,23.297], [-3575,0.022155,346.37,23.409], [-3576,0.021522,327.65,23.515], [-3577,0.020895,308.84,23.613], [-3578,0.020279,289.93,23.701], [-3579,0.019677,270.90,23.776], [-3580,0.019092,251.73,23.838], [-3581,0.018528,232.42,23.885], [-3582,0.017990,212.94,23.916], [-3583,0.017483,193.29,23.932], [-3584,0.017011,173.45,23.932], [-3585,0.016578,153.42,23.917], [-3586,0.016191,133.21,23.888], [-3587,0.015852,112.80,23.846], [-3588,0.015566,92.23,23.792], [-3589,0.015337,71.49,23.729], [-3590,0.015168,50.63,23.658], [-3591,0.015060,29.66,23.581], [-3592,0.015015,8.62,23.500], [-3593,0.015031,347.55,23.418], [-3594,0.015107,326.47,23.335], [-3595,0.015240,305.43,23.256], [-3596,0.015428,284.46,23.180], [-3597,0.015665,263.58,23.110], [-3598,0.015946,242.81,23.048], [-3599,0.016267,222.17,22.995], [-3600,0.016621,201.67,22.951], [-3601,0.017004,181.33,22.918], [-3602,0.017409,161.13,22.896], [-3603,0.017831,141.09,22.885], [-3604,0.018266,121.21,22.885], [-3605,0.018709,101.48,22.896], [-3606,0.019155,81.90,22.918], [-3607,0.019600,62.46,22.949], [-3608,0.020041,43.16,22.988], [-3609,0.020473,23.99,23.036], [-3610,0.020894,4.95,23.089], [-3611,0.021301,346.04,23.148], [-3612,0.021691,327.25,23.211], [-3613,0.022062,308.56,23.277], [-3614,0.022412,289.98,23.343], [-3615,0.022738,271.50,23.409], [-3616,0.023039,253.12,23.474], [-3617,0.023314,234.82,23.536], [-3618,0.023561,216.60,23.593], [-3619,0.023778,198.45,23.644], [-3620,0.023966,180.38,23.689], [-3621,0.024122,162.36,23.726], [-3622,0.024247,144.40,23.755], [-3623,0.024339,126.48,23.773], [-3624,0.024398,108.61,23.782], [-3625,0.024424,90.77,23.780], [-3626,0.024417,72.95,23.767], [-3627,0.024376,55.15,23.743], [-3628,0.024302,37.36,23.708], [-3629,0.024194,19.57,23.663], [-3630,0.024054,1.78,23.608], [-3631,0.023880,343.98,23.545], [-3632,0.023675,326.16,23.474], [-3633,0.023437,308.32,23.396], [-3634,0.023168,290.45,23.314], [-3635,0.022869,272.54,23.230], [-3636,0.022540,254.59,23.144], [-3637,0.022182,236.60,23.061], [-3638,0.021796,218.56,22.981], [-3639,0.021383,200.47,22.907], [-3640,0.020944,182.32,22.842], [-3641,0.020480,164.13,22.787], [-3642,0.019993,145.89,22.744], [-3643,0.019484,127.59,22.715], [-3644,0.018953,109.25,22.701], [-3645,0.018403,90.85,22.703], [-3646,0.017836,72.40,22.722], [-3647,0.017252,53.90,22.757], [-3648,0.016653,35.35,22.808], [-3649,0.016042,16.73,22.875], [-3650,0.015421,358.04,22.954], [-3651,0.014791,339.28,23.045], [-3652,0.014156,320.42,23.146], [-3653,0.013519,301.44,23.254], [-3654,0.012882,282.32,23.365], [-3655,0.012250,263.02,23.479], [-3656,0.011628,243.51,23.590], [-3657,0.011020,223.74,23.697], [-3658,0.010434,203.65,23.798], [-3659,0.009876,183.20,23.888], [-3660,0.009357,162.33,23.966], [-3661,0.008886,140.98,24.031], [-3662,0.008476,119.12,24.080], [-3663,0.008139,96.74,24.112], [-3664,0.007889,73.89,24.126], [-3665,0.007737,50.66,24.121], [-3666,0.007693,27.19,24.099], [-3667,0.007763,3.69,24.058], [-3668,0.007945,340.33,24.000], [-3669,0.008236,317.29,23.925], [-3670,0.008626,294.68,23.836], [-3671,0.009106,272.57,23.735], [-3672,0.009663,250.97,23.623], [-3673,0.010287,229.86,23.503], [-3674,0.010969,209.19,23.378], [-3675,0.011698,188.91,23.251], [-3676,0.012468,168.97,23.125], [-3677,0.013273,149.32,23.003], [-3678,0.014106,129.91,22.887], [-3679,0.014965,110.70,22.782], [-3680,0.015844,91.67,22.689], [-3681,0.016741,72.80,22.611], [-3682,0.017653,54.05,22.549], [-3683,0.018578,35.42,22.505], [-3684,0.019512,16.90,22.481], [-3685,0.020455,358.48,22.476], [-3686,0.021403,340.16,22.491], [-3687,0.022357,321.94,22.525], [-3688,0.023312,303.80,22.577], [-3689,0.024269,285.76,22.646], [-3690,0.025225,267.81,22.729], [-3691,0.026179,249.95,22.826], [-3692,0.027129,232.19,22.933], [-3693,0.028073,214.51,23.047], [-3694,0.029011,196.92,23.167], [-3695,0.029940,179.41,23.290], [-3696,0.030858,161.98,23.412], [-3697,0.031765,144.63,23.531], [-3698,0.032658,127.35,23.645], [-3699,0.033535,110.14,23.752], [-3700,0.034396,92.98,23.849], [-3701,0.035238,75.87,23.934], [-3702,0.036060,58.81,24.007], [-3703,0.036860,41.79,24.065], [-3704,0.037637,24.80,24.108], [-3705,0.038388,7.83,24.135], [-3706,0.039112,350.87,24.146], [-3707,0.039808,333.93,24.140], [-3708,0.040474,316.99,24.118], [-3709,0.041107,300.04,24.080], [-3710,0.041708,283.07,24.027], [-3711,0.042274,266.09,23.960], [-3712,0.042804,249.09,23.880], [-3713,0.043296,232.06,23.789], [-3714,0.043749,214.99,23.689], [-3715,0.044162,197.88,23.581], [-3716,0.044534,180.74,23.469], [-3717,0.044863,163.54,23.353], [-3718,0.045149,146.31,23.238], [-3719,0.045390,129.03,23.125], [-3720,0.045585,111.71,23.017], [-3721,0.045735,94.35,22.916], [-3722,0.045837,76.96,22.825], [-3723,0.045892,59.53,22.745], [-3724,0.045899,42.08,22.680], [-3725,0.045857,24.62,22.630], [-3726,0.045767,7.15,22.596], [-3727,0.045628,349.68,22.580], [-3728,0.045440,332.22,22.581], [-3729,0.045202,314.78,22.600], [-3730,0.044916,297.38,22.635], [-3731,0.044582,280.01,22.687], [-3732,0.044199,262.70,22.753], [-3733,0.043769,245.44,22.831], [-3734,0.043291,228.24,22.920], [-3735,0.042768,211.11,23.017], [-3736,0.042198,194.06,23.120], [-3737,0.041585,177.08,23.226], [-3738,0.040928,160.18,23.333], [-3739,0.040228,143.37,23.437], [-3740,0.039488,126.64,23.537], [-3741,0.038709,109.98,23.630], [-3742,0.037891,93.41,23.714], [-3743,0.037037,76.92,23.787], [-3744,0.036149,60.50,23.849], [-3745,0.035229,44.16,23.896], [-3746,0.034278,27.89,23.930], [-3747,0.033298,11.70,23.948], [-3748,0.032294,355.59,23.952], [-3749,0.031265,339.54,23.941], [-3750,0.030217,323.57,23.915], [-3751,0.029150,307.69,23.876], [-3752,0.028069,291.89,23.825], [-3753,0.026977,276.18,23.762], [-3754,0.025878,260.57,23.691], [-3755,0.024775,245.08,23.612], [-3756,0.023674,229.72,23.528], [-3757,0.022578,214.51,23.440], [-3758,0.021495,199.47,23.351], [-3759,0.020429,184.64,23.264], [-3760,0.019389,170.05,23.180], [-3761,0.018383,155.73,23.101], [-3762,0.017420,141.72,23.029], [-3763,0.016511,128.07,22.967], [-3764,0.015668,114.82,22.915], [-3765,0.014905,102.00,22.875], [-3766,0.014237,89.62,22.848], [-3767,0.013678,77.68,22.833], [-3768,0.013244,66.15,22.832], [-3769,0.012948,54.96,22.843], [-3770,0.012798,43.98,22.868], [-3771,0.012799,33.08,22.904], [-3772,0.012949,22.13,22.950], [-3773,0.013241,10.98,23.006], [-3774,0.013665,359.53,23.069], [-3775,0.014206,347.73,23.138], [-3776,0.014849,335.52,23.212], [-3777,0.015579,322.92,23.288], [-3778,0.016380,309.94,23.364], [-3779,0.017242,296.61,23.439], [-3780,0.018152,282.96,23.510], [-3781,0.019101,269.02,23.577], [-3782,0.020082,254.84,23.637], [-3783,0.021086,240.44,23.689], [-3784,0.022109,225.85,23.732], [-3785,0.023146,211.09,23.765], [-3786,0.024193,196.17,23.787], [-3787,0.025246,181.12,23.798], [-3788,0.026304,165.95,23.796], [-3789,0.027363,150.66,23.783], [-3790,0.028421,135.26,23.758], [-3791,0.029478,119.77,23.722], [-3792,0.030530,104.18,23.675], [-3793,0.031578,88.49,23.619], [-3794,0.032619,72.72,23.553], [-3795,0.033653,56.85,23.481], [-3796,0.034679,40.90,23.403], [-3797,0.035695,24.86,23.322], [-3798,0.036701,8.74,23.239], [-3799,0.037697,352.54,23.155], [-3800,0.038680,336.26,23.075], [-3801,0.039650,319.91,22.999], [-3802,0.040607,303.48,22.929], [-3803,0.041549,286.99,22.868], [-3804,0.042476,270.44,22.818], [-3805,0.043386,253.84,22.780], [-3806,0.044278,237.19,22.755], [-3807,0.045151,220.50,22.745], [-3808,0.046004,203.79,22.750], [-3809,0.046837,187.05,22.771], [-3810,0.047647,170.30,22.806], [-3811,0.048433,153.55,22.856], [-3812,0.049195,136.80,22.920], [-3813,0.049931,120.06,22.995], [-3814,0.050639,103.34,23.081], [-3815,0.051318,86.64,23.175], [-3816,0.051967,69.97,23.275], [-3817,0.052584,53.33,23.379], [-3818,0.053168,36.72,23.483], [-3819,0.053718,20.15,23.585], [-3820,0.054231,3.60,23.682], [-3821,0.054708,347.08,23.772], [-3822,0.055145,330.59,23.854], [-3823,0.055543,314.11,23.923], [-3824,0.055899,297.66,23.980], [-3825,0.056213,281.21,24.021], [-3826,0.056482,264.77,24.047], [-3827,0.056707,248.33,24.056], [-3828,0.056885,231.88,24.048], [-3829,0.057016,215.41,24.022], [-3830,0.057099,198.92,23.981], [-3831,0.057133,182.41,23.923], [-3832,0.057118,165.86,23.850], [-3833,0.057051,149.27,23.764], [-3834,0.056934,132.63,23.667], [-3835,0.056764,115.95,23.562], [-3836,0.056543,99.21,23.449], [-3837,0.056270,82.43,23.333], [-3838,0.055943,65.58,23.216], [-3839,0.055565,48.69,23.101], [-3840,0.055134,31.74,22.990], [-3841,0.054650,14.75,22.888], [-3842,0.054114,357.72,22.795], [-3843,0.053527,340.65,22.715], [-3844,0.052889,323.56,22.650], [-3845,0.052201,306.45,22.601], [-3846,0.051463,289.34,22.569], [-3847,0.050677,272.23,22.556], [-3848,0.049843,255.14,22.560], [-3849,0.048964,238.07,22.583], [-3850,0.048039,221.05,22.622], [-3851,0.047072,204.07,22.677], [-3852,0.046063,187.16,22.747], [-3853,0.045014,170.31,22.828], [-3854,0.043927,153.54,22.920], [-3855,0.042805,136.86,23.019], [-3856,0.041649,120.27,23.124], [-3857,0.040463,103.78,23.231], [-3858,0.039248,87.40,23.339], [-3859,0.038007,71.12,23.445], [-3860,0.036744,54.96,23.546], [-3861,0.035462,38.92,23.641], [-3862,0.034163,23.00,23.729], [-3863,0.032852,7.22,23.806], [-3864,0.031533,351.57,23.873], [-3865,0.030210,336.07,23.929], [-3866,0.028887,320.74,23.971], [-3867,0.027571,305.57,24.001], [-3868,0.026266,290.60,24.018], [-3869,0.024979,275.83,24.021], [-3870,0.023718,261.30,24.012], [-3871,0.022490,247.02,23.990], [-3872,0.021305,233.02,23.956], [-3873,0.020174,219.34,23.911], [-3874,0.019107,206.00,23.855], [-3875,0.018119,193.03,23.791], [-3876,0.017223,180.46,23.718], [-3877,0.016435,168.29,23.639], [-3878,0.015770,156.50,23.555], [-3879,0.015244,145.05,23.467], [-3880,0.014867,133.87,23.377], [-3881,0.014649,122.84,23.286], [-3882,0.014592,111.85,23.197], [-3883,0.014694,100.74,23.110], [-3884,0.014947,89.40,23.027], [-3885,0.015337,77.72,22.951], [-3886,0.015848,65.64,22.881], [-3887,0.016464,53.13,22.821], [-3888,0.017166,40.18,22.770], [-3889,0.017939,26.81,22.731], [-3890,0.018768,13.05,22.704], [-3891,0.019641,358.93,22.689], [-3892,0.020545,344.50,22.688], [-3893,0.021471,329.80,22.700], [-3894,0.022412,314.87,22.725], [-3895,0.023361,299.74,22.763], [-3896,0.024312,284.44,22.814], [-3897,0.025261,269.00,22.875], [-3898,0.026203,253.45,22.947], [-3899,0.027135,237.81,23.027], [-3900,0.028054,222.10,23.113], [-3901,0.028959,206.33,23.204], [-3902,0.029847,190.52,23.298], [-3903,0.030717,174.68,23.393], [-3904,0.031567,158.81,23.486], [-3905,0.032396,142.92,23.575], [-3906,0.033204,127.02,23.658], [-3907,0.033990,111.11,23.733], [-3908,0.034753,95.18,23.798], [-3909,0.035492,79.24,23.852], [-3910,0.036208,63.28,23.894], [-3911,0.036899,47.31,23.922], [-3912,0.037566,31.32,23.935], [-3913,0.038208,15.30,23.934], [-3914,0.038826,359.25,23.918], [-3915,0.039418,343.16,23.887], [-3916,0.039985,327.04,23.843], [-3917,0.040526,310.86,23.786], [-3918,0.041042,294.64,23.718], [-3919,0.041531,278.36,23.640], [-3920,0.041994,262.02,23.555], [-3921,0.042430,245.61,23.465], [-3922,0.042839,229.14,23.372], [-3923,0.043221,212.61,23.279], [-3924,0.043574,196.01,23.188], [-3925,0.043900,179.35,23.103], [-3926,0.044196,162.63,23.026], [-3927,0.044463,145.85,22.958], [-3928,0.044700,129.02,22.902], [-3929,0.044906,112.15,22.860], [-3930,0.045081,95.24,22.833], [-3931,0.045224,78.31,22.821], [-3932,0.045335,61.35,22.824], [-3933,0.045412,44.38,22.843], [-3934,0.045455,27.41,22.876], [-3935,0.045464,10.44,22.922], [-3936,0.045437,353.48,22.980], [-3937,0.045375,336.54,23.047], [-3938,0.045275,319.61,23.121], [-3939,0.045138,302.71,23.199], [-3940,0.044964,285.83,23.280], [-3941,0.044751,268.97,23.360], [-3942,0.044499,252.13,23.437], [-3943,0.044207,235.31,23.509], [-3944,0.043876,218.50,23.573], [-3945,0.043505,201.70,23.628], [-3946,0.043093,184.90,23.672], [-3947,0.042640,168.11,23.705], [-3948,0.042147,151.30,23.725], [-3949,0.041613,134.48,23.732], [-3950,0.041038,117.64,23.727], [-3951,0.040422,100.78,23.709], [-3952,0.039766,83.88,23.680], [-3953,0.039070,66.94,23.641], [-3954,0.038334,49.96,23.592], [-3955,0.037559,32.93,23.537], [-3956,0.036746,15.85,23.476], [-3957,0.035894,358.72,23.412], [-3958,0.035006,341.53,23.346], [-3959,0.034081,324.29,23.281], [-3960,0.033122,306.99,23.218], [-3961,0.032128,289.64,23.159], [-3962,0.031101,272.24,23.107], [-3963,0.030044,254.78,23.062], [-3964,0.028956,237.28,23.025], [-3965,0.027839,219.73,22.997], [-3966,0.026696,202.14,22.979], [-3967,0.025527,184.51,22.971], [-3968,0.024335,166.83,22.972], [-3969,0.023122,149.12,22.983], [-3970,0.021888,131.35,23.002], [-3971,0.020638,113.54,23.029], [-3972,0.019372,95.67,23.062], [-3973,0.018093,77.74,23.101], [-3974,0.016804,59.71,23.144], [-3975,0.015507,41.57,23.190], [-3976,0.014206,23.29,23.238], [-3977,0.012903,4.81,23.287], [-3978,0.011603,346.07,23.336], [-3979,0.010311,326.96,23.383], [-3980,0.009033,307.33,23.429], [-3981,0.007779,286.91,23.472], [-3982,0.006562,265.30,23.511], [-3983,0.005408,241.76,23.547], [-3984,0.004363,215.05,23.580], [-3985,0.003516,183.20,23.608], [-3986,0.003026,144.79,23.631], [-3987,0.003053,103.24,23.650], [-3988,0.003570,65.87,23.664], [-3989,0.004391,35.05,23.674], [-3990,0.005366,9.02,23.678], [-3991,0.006412,345.94,23.678], [-3992,0.007487,324.66,23.672], [-3993,0.008569,304.51,23.660], [-3994,0.009645,285.10,23.644], [-3995,0.010708,266.21,23.621], [-3996,0.011751,247.68,23.593], [-3997,0.012771,229.42,23.559], [-3998,0.013764,211.36,23.519], [-3999,0.014729,193.45,23.474], [-4000,0.015663,175.66,23.424], [-4001,0.016565,157.95,23.369], [-4002,0.017433,140.31,23.310], [-4003,0.018267,122.72,23.248], [-4004,0.019064,105.16,23.184], [-4005,0.019825,87.63,23.119], [-4006,0.020549,70.12,23.054], [-4007,0.021235,52.63,22.992], [-4008,0.021883,35.14,22.933], [-4009,0.022493,17.65,22.880], [-4010,0.023064,0.17,22.835], [-4011,0.023596,342.70,22.798], [-4012,0.024089,325.23,22.772], [-4013,0.024543,307.78,22.757], [-4014,0.024959,290.33,22.756], [-4015,0.025337,272.91,22.768], [-4016,0.025676,255.51,22.795], [-4017,0.025978,238.15,22.836], [-4018,0.026243,220.82,22.890], [-4019,0.026471,203.54,22.958], [-4020,0.026663,186.30,23.036], [-4021,0.026819,169.12,23.125], [-4022,0.026940,152.00,23.221], [-4023,0.027027,134.93,23.322], [-4024,0.027080,117.93,23.426], [-4025,0.027099,100.98,23.530], [-4026,0.027087,84.10,23.630], [-4027,0.027042,67.27,23.725], [-4028,0.026966,50.49,23.812], [-4029,0.026860,33.76,23.889], [-4030,0.026724,17.07,23.952], [-4031,0.026558,0.41,24.001], [-4032,0.026364,343.77,24.034], [-4033,0.026142,327.14,24.050], [-4034,0.025892,310.52,24.048], [-4035,0.025615,293.89,24.029], [-4036,0.025311,277.24,23.993], [-4037,0.024981,260.57,23.940], [-4038,0.024625,243.87,23.872], [-4039,0.024244,227.12,23.791], [-4040,0.023838,210.32,23.699], [-4041,0.023407,193.45,23.598], [-4042,0.022951,176.53,23.492], [-4043,0.022471,159.53,23.382], [-4044,0.021967,142.45,23.272], [-4045,0.021440,125.29,23.165], [-4046,0.020888,108.05,23.065], [-4047,0.020314,90.73,22.973], [-4048,0.019716,73.33,22.892], [-4049,0.019095,55.84,22.825], [-4050,0.018452,38.28,22.773], [-4051,0.017787,20.63,22.736], [-4052,0.017100,2.90,22.716], [-4053,0.016392,345.09,22.713], [-4054,0.015663,327.19,22.725], [-4055,0.014914,309.19,22.752], [-4056,0.014147,291.08,22.792], [-4057,0.013363,272.84,22.844], [-4058,0.012563,254.43,22.905], [-4059,0.011750,235.83,22.973], [-4060,0.010927,216.97,23.045], [-4061,0.010096,197.78,23.120], [-4062,0.009265,178.16,23.194], [-4063,0.008441,157.97,23.266], [-4064,0.007633,137.01,23.335], [-4065,0.006857,115.04,23.398], [-4066,0.006137,91.71,23.454], [-4067,0.005504,66.65,23.503], [-4068,0.005004,39.55,23.544], [-4069,0.004692,10.47,23.576], [-4070,0.004618,340.15,23.600], [-4071,0.004802,309.97,23.617], [-4072,0.005225,281.21,23.626], [-4073,0.005843,254.48,23.628], [-4074,0.006605,229.72,23.626], [-4075,0.007471,206.63,23.618], [-4076,0.008411,184.81,23.607], [-4077,0.009405,163.95,23.594], [-4078,0.010437,143.82,23.578], [-4079,0.011496,124.24,23.562], [-4080,0.012575,105.08,23.545], [-4081,0.013667,86.25,23.528], [-4082,0.014767,67.67,23.511], [-4083,0.015872,49.30,23.495], [-4084,0.016977,31.10,23.479], [-4085,0.018079,13.03,23.462], [-4086,0.019175,355.07,23.446], [-4087,0.020263,337.21,23.428], [-4088,0.021339,319.43,23.409], [-4089,0.022402,301.71,23.389], [-4090,0.023449,284.04,23.367], [-4091,0.024477,266.43,23.343], [-4092,0.025485,248.85,23.316], [-4093,0.026471,231.30,23.288], [-4094,0.027431,213.77,23.258], [-4095,0.028366,196.26,23.226], [-4096,0.029272,178.77,23.194], [-4097,0.030147,161.29,23.163], [-4098,0.030991,143.82,23.132], [-4099,0.031801,126.36,23.104], [-4100,0.032576,108.90,23.080], [-4101,0.033314,91.45,23.060], [-4102,0.034015,74.00,23.046], [-4103,0.034675,56.57,23.039], [-4104,0.035296,39.15,23.040], [-4105,0.035875,21.75,23.048], [-4106,0.036411,4.37,23.064], [-4107,0.036903,347.02,23.089], [-4108,0.037351,329.70,23.121], [-4109,0.037754,312.41,23.161], [-4110,0.038112,295.17,23.206], [-4111,0.038423,277.97,23.256], [-4112,0.038689,260.81,23.309], [-4113,0.038907,243.70,23.364], [-4114,0.039079,226.65,23.418], [-4115,0.039204,209.64,23.469], [-4116,0.039283,192.68,23.516], [-4117,0.039315,175.77,23.557], [-4118,0.039302,158.90,23.591], [-4119,0.039242,142.07,23.615], [-4120,0.039138,125.28,23.629], [-4121,0.038990,108.52,23.632], [-4122,0.038798,91.79,23.625], [-4123,0.038564,75.09,23.606], [-4124,0.038289,58.40,23.577], [-4125,0.037973,41.73,23.538], [-4126,0.037617,25.07,23.491], [-4127,0.037224,8.41,23.437], [-4128,0.036795,351.77,23.379], [-4129,0.036330,335.13,23.317], [-4130,0.035832,318.49,23.256], [-4131,0.035303,301.87,23.196], [-4132,0.034743,285.26,23.141], [-4133,0.034155,268.67,23.092], [-4134,0.033541,252.10,23.052], [-4135,0.032902,235.57,23.023], [-4136,0.032241,219.08,23.005], [-4137,0.031559,202.65,23.000], [-4138,0.030859,186.28,23.007], [-4139,0.030143,169.98,23.028], [-4140,0.029414,153.78,23.060], [-4141,0.028672,137.67,23.104], [-4142,0.027922,121.67,23.157], [-4143,0.027165,105.80,23.217], [-4144,0.026404,90.05,23.283], [-4145,0.025641,74.45,23.351], [-4146,0.024880,58.99,23.420], [-4147,0.024123,43.68,23.486], [-4148,0.023373,28.53,23.548], [-4149,0.022633,13.55,23.603], [-4150,0.021907,358.73,23.649], [-4151,0.021198,344.09,23.685], [-4152,0.020510,329.63,23.710], [-4153,0.019846,315.34,23.722], [-4154,0.019212,301.24,23.721], [-4155,0.018611,287.31,23.708], [-4156,0.018047,273.57,23.682], [-4157,0.017527,260.01,23.646], [-4158,0.017053,246.61,23.599], [-4159,0.016633,233.38,23.545], [-4160,0.016269,220.29,23.484], [-4161,0.015968,207.34,23.418], [-4162,0.015733,194.49,23.351], [-4163,0.015567,181.71,23.284], [-4164,0.015473,168.98,23.219], [-4165,0.015453,156.27,23.159], [-4166,0.015508,143.52,23.105], [-4167,0.015637,130.71,23.058], [-4168,0.015839,117.81,23.021], [-4169,0.016111,104.79,22.993], [-4170,0.016451,91.63,22.975], [-4171,0.016854,78.31,22.968], [-4172,0.017317,64.83,22.970], [-4173,0.017835,51.17,22.981], [-4174,0.018404,37.34,23.000], [-4175,0.019019,23.35,23.026], [-4176,0.019676,9.19,23.058], [-4177,0.020371,354.88,23.093], [-4178,0.021100,340.42,23.131], [-4179,0.021860,325.82,23.169], [-4180,0.022647,311.09,23.208], [-4181,0.023458,296.23,23.245], [-4182,0.024290,281.26,23.279], [-4183,0.025141,266.17,23.311], [-4184,0.026007,250.98,23.339], [-4185,0.026885,235.69,23.364], [-4186,0.027775,220.30,23.385], [-4187,0.028672,204.82,23.403], [-4188,0.029575,189.25,23.419], [-4189,0.030482,173.60,23.433], [-4190,0.031390,157.86,23.445], [-4191,0.032297,142.06,23.457], [-4192,0.033200,126.18,23.469], [-4193,0.034099,110.24,23.482], [-4194,0.034990,94.25,23.495], [-4195,0.035872,78.20,23.510], [-4196,0.036742,62.10,23.526], [-4197,0.037599,45.95,23.544], [-4198,0.038440,29.77,23.562], [-4199,0.039263,13.56,23.580], [-4200,0.040066,357.32,23.597], [-4201,0.040848,341.04,23.613], [-4202,0.041605,324.75,23.626], [-4203,0.042337,308.43,23.634], [-4204,0.043042,292.09,23.638], [-4205,0.043717,275.72,23.635], [-4206,0.044361,259.33,23.624], [-4207,0.044971,242.91,23.606], [-4208,0.045548,226.47,23.579], [-4209,0.046087,209.99,23.544], [-4210,0.046590,193.48,23.499], [-4211,0.047053,176.93,23.447], [-4212,0.047475,160.34,23.387], [-4213,0.047856,143.71,23.320], [-4214,0.048193,127.03,23.249], [-4215,0.048487,110.31,23.175], [-4216,0.048735,93.53,23.101], [-4217,0.048938,76.71,23.028], [-4218,0.049094,59.85,22.958], [-4219,0.049203,42.94,22.895], [-4220,0.049264,25.99,22.841], [-4221,0.049277,9.01,22.797], [-4222,0.049241,352.01,22.766], [-4223,0.049157,334.99,22.749], [-4224,0.049024,317.97,22.747], [-4225,0.048843,300.95,22.761], [-4226,0.048614,283.94,22.790], [-4227,0.048337,266.96,22.835], [-4228,0.048013,250.01,22.893], [-4229,0.047642,233.11,22.964], [-4230,0.047225,216.26,23.046], [-4231,0.046764,199.46,23.136], [-4232,0.046259,182.73,23.231], [-4233,0.045712,166.07,23.328], [-4234,0.045123,149.47,23.426], [-4235,0.044495,132.95,23.520], [-4236,0.043829,116.50,23.609], [-4237,0.043127,100.13,23.689], [-4238,0.042390,83.81,23.759], [-4239,0.041620,67.57,23.817], [-4240,0.040821,51.39,23.862], [-4241,0.039993,35.27,23.892], [-4242,0.039140,19.20,23.907], [-4243,0.038263,3.19,23.907], [-4244,0.037367,347.22,23.892], [-4245,0.036453,331.31,23.863], [-4246,0.035524,315.44,23.822], [-4247,0.034583,299.62,23.770], [-4248,0.033634,283.85,23.709], [-4249,0.032681,268.13,23.641], [-4250,0.031725,252.46,23.568], [-4251,0.030773,236.86,23.492], [-4252,0.029826,221.32,23.416], [-4253,0.028889,205.86,23.342], [-4254,0.027967,190.49,23.272], [-4255,0.027063,175.21,23.207], [-4256,0.026182,160.05,23.150], [-4257,0.025329,145.00,23.102], [-4258,0.024509,130.09,23.062], [-4259,0.023726,115.32,23.032], [-4260,0.022985,100.70,23.012], [-4261,0.022291,86.24,23.002], [-4262,0.021650,71.94,22.999], [-4263,0.021064,57.81,23.005], [-4264,0.020540,43.83,23.017], [-4265,0.020079,30.00,23.035], [-4266,0.019686,16.30,23.057], [-4267,0.019362,2.71,23.082], [-4268,0.019108,349.20,23.109], [-4269,0.018926,335.76,23.136], [-4270,0.018813,322.35,23.162], [-4271,0.018769,308.93,23.187], [-4272,0.018790,295.49,23.211], [-4273,0.018873,281.99,23.232], [-4274,0.019013,268.41,23.252], [-4275,0.019206,254.74,23.269], [-4276,0.019447,240.95,23.284], [-4277,0.019730,227.03,23.298], [-4278,0.020051,212.99,23.311], [-4279,0.020404,198.82,23.324], [-4280,0.020784,184.51,23.337], [-4281,0.021188,170.08,23.350], [-4282,0.021610,155.52,23.364], [-4283,0.022049,140.85,23.380], [-4284,0.022499,126.07,23.397], [-4285,0.022958,111.20,23.415], [-4286,0.023424,96.23,23.435], [-4287,0.023895,81.17,23.455], [-4288,0.024367,66.04,23.475], [-4289,0.024840,50.84,23.495], [-4290,0.025313,35.58,23.513], [-4291,0.025783,20.26,23.529], [-4292,0.026251,4.88,23.542], [-4293,0.026714,349.45,23.550], [-4294,0.027172,333.96,23.553], [-4295,0.027625,318.43,23.551], [-4296,0.028072,302.85,23.543], [-4297,0.028512,287.22,23.529], [-4298,0.028945,271.54,23.508], [-4299,0.029371,255.80,23.481], [-4300,0.029789,240.01,23.448], [-4301,0.030198,224.16,23.410], [-4302,0.030598,208.25,23.368], [-4303,0.030989,192.28,23.324], [-4304,0.031370,176.25,23.278], [-4305,0.031740,160.16,23.233], [-4306,0.032099,144.00,23.189], [-4307,0.032447,127.79,23.149], [-4308,0.032782,111.53,23.114], [-4309,0.033104,95.21,23.086], [-4310,0.033413,78.84,23.065], [-4311,0.033706,62.42,23.054], [-4312,0.033984,45.97,23.052], [-4313,0.034246,29.48,23.060], [-4314,0.034490,12.97,23.078], [-4315,0.034716,356.44,23.106], [-4316,0.034923,339.89,23.142], [-4317,0.035110,323.33,23.185], [-4318,0.035275,306.76,23.235], [-4319,0.035418,290.19,23.289], [-4320,0.035539,273.63,23.345], [-4321,0.035635,257.06,23.402], [-4322,0.035706,240.49,23.457], [-4323,0.035752,223.93,23.507], [-4324,0.035770,207.36,23.552], [-4325,0.035762,190.78,23.589], [-4326,0.035724,174.20,23.617], [-4327,0.035658,157.61,23.635], [-4328,0.035562,140.99,23.642], [-4329,0.035436,124.36,23.637], [-4330,0.035279,107.69,23.620], [-4331,0.035091,90.99,23.592], [-4332,0.034871,74.26,23.553], [-4333,0.034620,57.47,23.505], [-4334,0.034336,40.64,23.449], [-4335,0.034020,23.76,23.386], [-4336,0.033672,6.82,23.320], [-4337,0.033292,349.82,23.251], [-4338,0.032879,332.77,23.183], [-4339,0.032436,315.67,23.118], [-4340,0.031960,298.51,23.058], [-4341,0.031454,281.31,23.005], [-4342,0.030918,264.06,22.962], [-4343,0.030351,246.77,22.930], [-4344,0.029756,229.46,22.910], [-4345,0.029133,212.12,22.903], [-4346,0.028482,194.77,22.909], [-4347,0.027805,177.41,22.929], [-4348,0.027103,160.06,22.961], [-4349,0.026377,142.71,23.006], [-4350,0.025627,125.38,23.060], [-4351,0.024857,108.07,23.123], [-4352,0.024066,90.79,23.193], [-4353,0.023256,73.54,23.268], [-4354,0.022429,56.32,23.344], [-4355,0.021586,39.13,23.420], [-4356,0.020729,21.98,23.494], [-4357,0.019859,4.86,23.564], [-4358,0.018978,347.77,23.627], [-4359,0.018088,330.71,23.683], [-4360,0.017190,313.68,23.729], [-4361,0.016286,296.67,23.765], [-4362,0.015378,279.67,23.789], [-4363,0.014468,262.70,23.803], [-4364,0.013557,245.74,23.804], [-4365,0.012647,228.79,23.795], [-4366,0.011739,211.86,23.775], [-4367,0.010836,194.94,23.745], [-4368,0.009940,178.03,23.706], [-4369,0.009051,161.16,23.660], [-4370,0.008172,144.32,23.607], [-4371,0.007304,127.53,23.549], [-4372,0.006449,110.83,23.488], [-4373,0.005609,94.25,23.425], [-4374,0.004785,77.88,23.361], [-4375,0.003980,61.84,23.299], [-4376,0.003195,46.37,23.238], [-4377,0.002435,32.01,23.181], [-4378,0.001707,20.12,23.127], [-4379,0.001036,15.37,23.079], [-4380,0.000560,38.34,23.036], [-4381,0.000732,83.40,22.999], [-4382,0.001281,87.90,22.967], [-4383,0.001879,78.49,22.942], [-4384,0.002471,65.03,22.924], [-4385,0.003044,49.93,22.911], [-4386,0.003594,34.03,22.905], [-4387,0.004119,17.67,22.905], [-4388,0.004616,1.04,22.910], [-4389,0.005087,344.23,22.921], [-4390,0.005530,327.30,22.938], [-4391,0.005946,310.30,22.960], [-4392,0.006333,293.23,22.987], [-4393,0.006692,276.13,23.020], [-4394,0.007024,259.01,23.057], [-4395,0.007327,241.88,23.100], [-4396,0.007604,224.74,23.147], [-4397,0.007853,207.60,23.198], [-4398,0.008076,190.47,23.253], [-4399,0.008273,173.36,23.312], [-4400,0.008444,156.26,23.373], [-4401,0.008591,139.18,23.437], [-4402,0.008714,122.12,23.501], [-4403,0.008813,105.08,23.565], [-4404,0.008890,88.07,23.628], [-4405,0.008945,71.08,23.688], [-4406,0.008980,54.11,23.745], [-4407,0.008995,37.16,23.796], [-4408,0.008991,20.23,23.840], [-4409,0.008969,3.30,23.875], [-4410,0.008930,346.38,23.902], [-4411,0.008875,329.46,23.917], [-4412,0.008805,312.53,23.921], [-4413,0.008721,295.57,23.912], [-4414,0.008624,278.59,23.891], [-4415,0.008515,261.57,23.856], [-4416,0.008395,244.50,23.809], [-4417,0.008264,227.36,23.749], [-4418,0.008125,210.15,23.677], [-4419,0.007977,192.84,23.595], [-4420,0.007822,175.42,23.504], [-4421,0.007660,157.89,23.407], [-4422,0.007494,140.21,23.304], [-4423,0.007323,122.39,23.200], [-4424,0.007149,104.39,23.096], [-4425,0.006973,86.22,22.995], [-4426,0.006797,67.84,22.901], [-4427,0.006621,49.26,22.816], [-4428,0.006449,30.44,22.742], [-4429,0.006280,11.39,22.682], [-4430,0.006118,352.09,22.638], [-4431,0.005964,332.53,22.612], [-4432,0.005822,312.71,22.604], [-4433,0.005695,292.62,22.614], [-4434,0.005584,272.27,22.644], [-4435,0.005495,251.67,22.691], [-4436,0.005429,230.85,22.755], [-4437,0.005392,209.84,22.834], [-4438,0.005386,188.69,22.925], [-4439,0.005414,167.46,23.026], [-4440,0.005478,146.20,23.133], [-4441,0.005581,124.99,23.245], [-4442,0.005723,103.89,23.357], [-4443,0.005904,82.95,23.467], [-4444,0.006123,62.22,23.571], [-4445,0.006380,41.74,23.667], [-4446,0.006673,21.52,23.753], [-4447,0.006998,1.57,23.826], [-4448,0.007355,341.88,23.884], [-4449,0.007740,322.44,23.927], [-4450,0.008152,303.24,23.954], [-4451,0.008588,284.25,23.964], [-4452,0.009045,265.44,23.958], [-4453,0.009521,246.81,23.936], [-4454,0.010015,228.31,23.899], [-4455,0.010524,209.94,23.848], [-4456,0.011046,191.66,23.786], [-4457,0.011579,173.47,23.714], [-4458,0.012121,155.35,23.634], [-4459,0.012671,137.29,23.549], [-4460,0.013227,119.26,23.461], [-4461,0.013786,101.27,23.373], [-4462,0.014348,83.31,23.287], [-4463,0.014910,65.37,23.206], [-4464,0.015471,47.45,23.131], [-4465,0.016029,29.55,23.064], [-4466,0.016582,11.67,23.008], [-4467,0.017129,353.81,22.962], [-4468,0.017668,335.98,22.929], [-4469,0.018197,318.18,22.908], [-4470,0.018716,300.41,22.898], [-4471,0.019221,282.68,22.901], [-4472,0.019713,264.99,22.915], [-4473,0.020190,247.34,22.939], [-4474,0.020649,229.74,22.972], [-4475,0.021091,212.19,23.013], [-4476,0.021513,194.70,23.060], [-4477,0.021914,177.26,23.111], [-4478,0.022294,159.88,23.165], [-4479,0.022650,142.55,23.220], [-4480,0.022983,125.28,23.275], [-4481,0.023290,108.06,23.329], [-4482,0.023572,90.89,23.380], [-4483,0.023828,73.78,23.428], [-4484,0.024057,56.72,23.471], [-4485,0.024258,39.70,23.509], [-4486,0.024430,22.74,23.542], [-4487,0.024575,5.82,23.568], [-4488,0.024691,348.94,23.588], [-4489,0.024778,332.11,23.602], [-4490,0.024837,315.32,23.610], [-4491,0.024867,298.57,23.611], [-4492,0.024869,281.86,23.606], [-4493,0.024843,265.19,23.596], [-4494,0.024790,248.57,23.579], [-4495,0.024711,231.99,23.558], [-4496,0.024606,215.45,23.532], [-4497,0.024476,198.95,23.501], [-4498,0.024323,182.50,23.466], [-4499,0.024147,166.10,23.428], [-4500,0.023951,149.74,23.386], [-4501,0.023735,133.44,23.343], [-4502,0.023502,117.19,23.298], [-4503,0.023254,100.99,23.252], [-4504,0.022993,84.85,23.206], [-4505,0.022720,68.78,23.161], [-4506,0.022438,52.76,23.118], [-4507,0.022151,36.82,23.078], [-4508,0.021859,20.95,23.042], [-4509,0.021567,5.16,23.011], [-4510,0.021277,349.45,22.986], [-4511,0.020992,333.82,22.968], [-4512,0.020715,318.28,22.959], [-4513,0.020449,302.84,22.958], [-4514,0.020197,287.49,22.967], [-4515,0.019962,272.24,22.986], [-4516,0.019746,257.09,23.014], [-4517,0.019554,242.03,23.053], [-4518,0.019386,227.07,23.100], [-4519,0.019245,212.21,23.157], [-4520,0.019134,197.44,23.221], [-4521,0.019053,182.75,23.291], [-4522,0.019004,168.13,23.365], [-4523,0.018987,153.57,23.443], [-4524,0.019003,139.07,23.522], [-4525,0.019052,124.62,23.599], [-4526,0.019132,110.19,23.673], [-4527,0.019243,95.78,23.742], [-4528,0.019383,81.37,23.803], [-4529,0.019552,66.95,23.855], [-4530,0.019746,52.52,23.895], [-4531,0.019963,38.05,23.923], [-4532,0.020202,23.55,23.937], [-4533,0.020460,8.99,23.935], [-4534,0.020734,354.37,23.918], [-4535,0.021022,339.69,23.886], [-4536,0.021322,324.94,23.837], [-4537,0.021631,310.10,23.774], [-4538,0.021948,295.18,23.697], [-4539,0.022270,280.18,23.608], [-4540,0.022596,265.08,23.508], [-4541,0.022923,249.88,23.399], [-4542,0.023251,234.60,23.286], [-4543,0.023577,219.22,23.169], [-4544,0.023902,203.74,23.053], [-4545,0.024224,188.18,22.941], [-4546,0.024542,172.54,22.835], [-4547,0.024855,156.82,22.740], [-4548,0.025165,141.03,22.657], [-4549,0.025469,125.18,22.590], [-4550,0.025768,109.28,22.541], [-4551,0.026062,93.35,22.511], [-4552,0.026352,77.39,22.503], [-4553,0.026638,61.43,22.515], [-4554,0.026919,45.47,22.549], [-4555,0.027198,29.52,22.603], [-4556,0.027473,13.60,22.677], [-4557,0.027746,357.72,22.768], [-4558,0.028018,341.88,22.874], [-4559,0.028290,326.09,22.992], [-4560,0.028561,310.36,23.118], [-4561,0.028832,294.69,23.251], [-4562,0.029105,279.08,23.385], [-4563,0.029380,263.53,23.519], [-4564,0.029657,248.03,23.648], [-4565,0.029938,232.58,23.769], [-4566,0.030221,217.18,23.880], [-4567,0.030508,201.81,23.978], [-4568,0.030799,186.47,24.060], [-4569,0.031093,171.15,24.126], [-4570,0.031391,155.84,24.174], [-4571,0.031693,140.53,24.202], [-4572,0.031997,125.21,24.212], [-4573,0.032304,109.88,24.201], [-4574,0.032613,94.51,24.172], [-4575,0.032923,79.11,24.124], [-4576,0.033233,63.66,24.059], [-4577,0.033543,48.16,23.979], [-4578,0.033851,32.59,23.885], [-4579,0.034156,16.97,23.779], [-4580,0.034457,1.26,23.664], [-4581,0.034752,345.49,23.544], [-4582,0.035041,329.63,23.419], [-4583,0.035321,313.70,23.293], [-4584,0.035592,297.69,23.170], [-4585,0.035852,281.60,23.051], [-4586,0.036099,265.44,22.940], [-4587,0.036332,249.21,22.839], [-4588,0.036550,232.92,22.750], [-4589,0.036751,216.58,22.675], [-4590,0.036935,200.19,22.615], [-4591,0.037099,183.77,22.572], [-4592,0.037242,167.32,22.546], [-4593,0.037365,150.85,22.538], [-4594,0.037464,134.38,22.547], [-4595,0.037541,117.91,22.572], [-4596,0.037594,101.45,22.614], [-4597,0.037621,85.02,22.670], [-4598,0.037624,68.62,22.739], [-4599,0.037601,52.26,22.820], [-4600,0.037553,35.95,22.910], [-4601,0.037479,19.69,23.006], [-4602,0.037379,3.48,23.108], [-4603,0.037254,347.33,23.213], [-4604,0.037103,331.25,23.318], [-4605,0.036929,315.23,23.422], [-4606,0.036731,299.27,23.522], [-4607,0.036510,283.38,23.616], [-4608,0.036268,267.56,23.704], [-4609,0.036005,251.80,23.783], [-4610,0.035724,236.10,23.851], [-4611,0.035426,220.47,23.909], [-4612,0.035113,204.89,23.954], [-4613,0.034787,189.38,23.986], [-4614,0.034450,173.92,24.005], [-4615,0.034105,158.51,24.010], [-4616,0.033754,143.15,24.002], [-4617,0.033399,127.83,23.980], [-4618,0.033044,112.56,23.945], [-4619,0.032691,97.33,23.897], [-4620,0.032344,82.13,23.838], [-4621,0.032005,66.96,23.768], [-4622,0.031677,51.82,23.689], [-4623,0.031364,36.70,23.603], [-4624,0.031069,21.60,23.510], [-4625,0.030793,6.51,23.414], [-4626,0.030541,351.42,23.316], [-4627,0.030314,336.34,23.218], [-4628,0.030115,321.25,23.123], [-4629,0.029945,306.16,23.032], [-4630,0.029807,291.05,22.948], [-4631,0.029702,275.93,22.873], [-4632,0.029631,260.79,22.809], [-4633,0.029594,245.63,22.758], [-4634,0.029592,230.45,22.720], [-4635,0.029623,215.25,22.698], [-4636,0.029687,200.02,22.691], [-4637,0.029784,184.77,22.700], [-4638,0.029911,169.50,22.725], [-4639,0.030066,154.21,22.766], [-4640,0.030248,138.90,22.821], [-4641,0.030453,123.57,22.889], [-4642,0.030680,108.24,22.969], [-4643,0.030925,92.89,23.058], [-4644,0.031185,77.54,23.154], [-4645,0.031457,62.17,23.255], [-4646,0.031740,46.81,23.358], [-4647,0.032028,31.43,23.460], [-4648,0.032320,16.05,23.558], [-4649,0.032612,0.66,23.651], [-4650,0.032902,345.27,23.735], [-4651,0.033187,329.86,23.809], [-4652,0.033465,314.43,23.870], [-4653,0.033734,298.99,23.916], [-4654,0.033990,283.53,23.948], [-4655,0.034232,268.03,23.962], [-4656,0.034459,252.51,23.960], [-4657,0.034669,236.95,23.940], [-4658,0.034860,221.35,23.904], [-4659,0.035032,205.70,23.851], [-4660,0.035182,190.00,23.784], [-4661,0.035311,174.25,23.703], [-4662,0.035417,158.44,23.610], [-4663,0.035500,142.58,23.509], [-4664,0.035560,126.65,23.400], [-4665,0.035597,110.66,23.288], [-4666,0.035610,94.61,23.176], [-4667,0.035601,78.49,23.066], [-4668,0.035568,62.33,22.963], [-4669,0.035514,46.11,22.868], [-4670,0.035438,29.86,22.785], [-4671,0.035341,13.57,22.717], [-4672,0.035224,357.25,22.665], [-4673,0.035088,340.92,22.633], [-4674,0.034934,324.59,22.620], [-4675,0.034764,308.28,22.628], [-4676,0.034578,291.99,22.657], [-4677,0.034378,275.73,22.705], [-4678,0.034166,259.52,22.772], [-4679,0.033942,243.37,22.856], [-4680,0.033708,227.29,22.954], [-4681,0.033466,211.28,23.065], [-4682,0.033217,195.35,23.183], [-4683,0.032962,179.50,23.308], [-4684,0.032703,163.74,23.434], [-4685,0.032441,148.06,23.558], [-4686,0.032178,132.46,23.678], [-4687,0.031914,116.93,23.789], [-4688,0.031651,101.48,23.890], [-4689,0.031389,86.09,23.976], [-4690,0.031130,70.75,24.048], [-4691,0.030873,55.46,24.101], [-4692,0.030621,40.21,24.135], [-4693,0.030372,24.98,24.150], [-4694,0.030128,9.76,24.144], [-4695,0.029889,354.55,24.118], [-4696,0.029654,339.33,24.072], [-4697,0.029423,324.09,24.007], [-4698,0.029196,308.83,23.925], [-4699,0.028973,293.53,23.827], [-4700,0.028753,278.18,23.716], [-4701,0.028536,262.78,23.595], [-4702,0.028321,247.32,23.466], [-4703,0.028106,231.80,23.332], [-4704,0.027892,216.21,23.197], [-4705,0.027676,200.55,23.065], [-4706,0.027460,184.83,22.938], [-4707,0.027240,169.04,22.820], [-4708,0.027017,153.19,22.713], [-4709,0.026790,137.29,22.622], [-4710,0.026558,121.35,22.547], [-4711,0.026320,105.38,22.491], [-4712,0.026075,89.38,22.456], [-4713,0.025823,73.37,22.441], [-4714,0.025564,57.37,22.448], [-4715,0.025296,41.39,22.476], [-4716,0.025021,25.43,22.523], [-4717,0.024738,9.51,22.590], [-4718,0.024446,353.65,22.673], [-4719,0.024147,337.86,22.771], [-4720,0.023841,322.13,22.881], [-4721,0.023528,306.49,23.000], [-4722,0.023209,290.94,23.126], [-4723,0.022886,275.47,23.255], [-4724,0.022559,260.11,23.385], [-4725,0.022230,244.85,23.513], [-4726,0.021901,229.69,23.637], [-4727,0.021572,214.63,23.753], [-4728,0.021247,199.67,23.860], [-4729,0.020927,184.81,23.955], [-4730,0.020614,170.05,24.038], [-4731,0.020311,155.38,24.106], [-4732,0.020020,140.80,24.159], [-4733,0.019743,126.29,24.196], [-4734,0.019484,111.86,24.216], [-4735,0.019243,97.49,24.219], [-4736,0.019024,83.17,24.205], [-4737,0.018829,68.89,24.174], [-4738,0.018659,54.64,24.127], [-4739,0.018516,40.41,24.065], [-4740,0.018402,26.16,23.988], [-4741,0.018318,11.90,23.898], [-4742,0.018263,357.61,23.796], [-4743,0.018239,343.25,23.685], [-4744,0.018244,328.83,23.565], [-4745,0.018279,314.33,23.440], [-4746,0.018341,299.72,23.311], [-4747,0.018430,285.00,23.181], [-4748,0.018543,270.15,23.053], [-4749,0.018678,255.18,22.928], [-4750,0.018832,240.06,22.811], [-4751,0.019003,224.81,22.703], [-4752,0.019188,209.41,22.607], [-4753,0.019383,193.88,22.526], [-4754,0.019586,178.22,22.461], [-4755,0.019794,162.43,22.414], [-4756,0.020004,146.53,22.388], [-4757,0.020212,130.52,22.382], [-4758,0.020416,114.42,22.397], [-4759,0.020613,98.24,22.434], [-4760,0.020800,81.99,22.491], [-4761,0.020975,65.69,22.569], [-4762,0.021136,49.36,22.664], [-4763,0.021281,32.99,22.776], [-4764,0.021406,16.61,22.901], [-4765,0.021512,0.22,23.037], [-4766,0.021595,343.83,23.181], [-4767,0.021654,327.45,23.329], [-4768,0.021689,311.08,23.478], [-4769,0.021698,294.72,23.624], [-4770,0.021679,278.37,23.764], [-4771,0.021632,262.04,23.894], [-4772,0.021557,245.72,24.012], [-4773,0.021453,229.40,24.114], [-4774,0.021319,213.08,24.199], [-4775,0.021155,196.75,24.263], [-4776,0.020961,180.41,24.306], [-4777,0.020737,164.06,24.326], [-4778,0.020483,147.67,24.323], [-4779,0.020200,131.25,24.296], [-4780,0.019887,114.79,24.246], [-4781,0.019546,98.27,24.174], [-4782,0.019177,81.69,24.081], [-4783,0.018781,65.04,23.970], [-4784,0.018358,48.32,23.842], [-4785,0.017910,31.51,23.702], [-4786,0.017437,14.60,23.552], [-4787,0.016941,357.61,23.396], [-4788,0.016422,340.51,23.238], [-4789,0.015883,323.32,23.084], [-4790,0.015324,306.03,22.936], [-4791,0.014747,288.64,22.799], [-4792,0.014153,271.16,22.678], [-4793,0.013543,253.59,22.575], [-4794,0.012920,235.95,22.494], [-4795,0.012284,218.23,22.437], [-4796,0.011638,200.46,22.406], [-4797,0.010983,182.62,22.402], [-4798,0.010320,164.74,22.424], [-4799,0.009652,146.82,22.471], [-4800,0.008979,128.84,22.542], [-4801,0.008305,110.81,22.635], [-4802,0.007630,92.70,22.746], [-4803,0.006957,74.49,22.871], [-4804,0.006287,56.13,23.008], [-4805,0.005624,37.55,23.150], [-4806,0.004971,18.63,23.295], [-4807,0.004330,359.19,23.438], [-4808,0.003707,338.96,23.575], [-4809,0.003111,317.47,23.702], [-4810,0.002554,293.91,23.816], [-4811,0.002063,266.97,23.915], [-4812,0.001686,234.82,23.996], [-4813,0.001497,196.89,24.058], [-4814,0.001552,157.50,24.098], [-4815,0.001817,122.79,24.117], [-4816,0.002208,94.00,24.115], [-4817,0.002661,69.46,24.092], [-4818,0.003142,47.56,24.048], [-4819,0.003632,27.31,23.986], [-4820,0.004123,8.10,23.908], [-4821,0.004609,349.60,23.815], [-4822,0.005088,331.56,23.711], [-4823,0.005557,313.87,23.597], [-4824,0.006015,296.41,23.478], [-4825,0.006461,279.12,23.357], [-4826,0.006896,261.96,23.237], [-4827,0.007319,244.90,23.121], [-4828,0.007730,227.90,23.011], [-4829,0.008129,210.97,22.912], [-4830,0.008517,194.08,22.825], [-4831,0.008894,177.24,22.753], [-4832,0.009261,160.43,22.697], [-4833,0.009617,143.66,22.658], [-4834,0.009964,126.94,22.637], [-4835,0.010302,110.26,22.634], [-4836,0.010630,93.62,22.650], [-4837,0.010951,77.04,22.682], [-4838,0.011263,60.50,22.730], [-4839,0.011567,44.03,22.792], [-4840,0.011864,27.60,22.867], [-4841,0.012153,11.24,22.953], [-4842,0.012434,354.93,23.046], [-4843,0.012709,338.67,23.146], [-4844,0.012975,322.47,23.249], [-4845,0.013234,306.32,23.354], [-4846,0.013484,290.22,23.457], [-4847,0.013726,274.17,23.558], [-4848,0.013959,258.15,23.653], [-4849,0.014182,242.16,23.742], [-4850,0.014395,226.21,23.822], [-4851,0.014597,210.28,23.892], [-4852,0.014787,194.37,23.951], [-4853,0.014964,178.47,23.997], [-4854,0.015128,162.59,24.030], [-4855,0.015276,146.70,24.049], [-4856,0.015409,130.81,24.054], [-4857,0.015525,114.92,24.044], [-4858,0.015624,99.01,24.020], [-4859,0.015703,83.09,23.981], [-4860,0.015763,67.15,23.927], [-4861,0.015802,51.19,23.860], [-4862,0.015819,35.20,23.780], [-4863,0.015813,19.19,23.689], [-4864,0.015784,3.14,23.587], [-4865,0.015730,347.06,23.477], [-4866,0.015652,330.95,23.360], [-4867,0.015547,314.81,23.239], [-4868,0.015417,298.64,23.115], [-4869,0.015260,282.45,22.993], [-4870,0.015077,266.24,22.874], [-4871,0.014866,250.02,22.761], [-4872,0.014630,233.81,22.658], [-4873,0.014367,217.62,22.567], [-4874,0.014078,201.46,22.491], [-4875,0.013765,185.36,22.433], [-4876,0.013429,169.34,22.394], [-4877,0.013071,153.42,22.377], [-4878,0.012693,137.65,22.382], [-4879,0.012298,122.06,22.410], [-4880,0.011889,106.69,22.462], [-4881,0.011470,91.57,22.536], [-4882,0.011046,76.77,22.632], [-4883,0.010623,62.32,22.748], [-4884,0.010207,48.28,22.880], [-4885,0.009807,34.71,23.027], [-4886,0.009434,21.64,23.184], [-4887,0.009098,9.11,23.347], [-4888,0.008812,357.14,23.514], [-4889,0.008591,345.70,23.679], [-4890,0.008447,334.74,23.838], [-4891,0.008393,324.15,23.988], [-4892,0.008439,313.78,24.125], [-4893,0.008590,303.46,24.246], [-4894,0.008848,293.03,24.346], [-4895,0.009210,282.32,24.425], [-4896,0.009670,271.23,24.479], [-4897,0.010217,259.70,24.508], [-4898,0.010843,247.69,24.509], [-4899,0.011537,235.20,24.483], [-4900,0.012289,222.26,24.430], [-4901,0.013090,208.88,24.351], [-4902,0.013932,195.11,24.247], [-4903,0.014808,180.96,24.120], [-4904,0.015711,166.48,23.973], [-4905,0.016636,151.68,23.809], [-4906,0.017577,136.60,23.631], [-4907,0.018530,121.25,23.444], [-4908,0.019491,105.65,23.254], [-4909,0.020456,89.81,23.063], [-4910,0.021422,73.77,22.879], [-4911,0.022385,57.53,22.705], [-4912,0.023342,41.11,22.547], [-4913,0.024291,24.54,22.409], [-4914,0.025230,7.83,22.295], [-4915,0.026155,351.01,22.209], [-4916,0.027065,334.10,22.152], [-4917,0.027957,317.13,22.126], [-4918,0.028831,300.11,22.132], [-4919,0.029682,283.07,22.170], [-4920,0.030512,266.04,22.237], [-4921,0.031316,249.02,22.332], [-4922,0.032095,232.04,22.451], [-4923,0.032847,215.12,22.590], [-4924,0.033571,198.26,22.746], [-4925,0.034266,181.47,22.914], [-4926,0.034930,164.76,23.089], [-4927,0.035564,148.13,23.265], [-4928,0.036166,131.58,23.439], [-4929,0.036736,115.11,23.607], [-4930,0.037274,98.71,23.763], [-4931,0.037779,82.38,23.906], [-4932,0.038251,66.12,24.031], [-4933,0.038690,49.91,24.136], [-4934,0.039095,33.75,24.221], [-4935,0.039468,17.62,24.282], [-4936,0.039809,1.52,24.321], [-4937,0.040117,345.44,24.336], [-4938,0.040393,329.37,24.327], [-4939,0.040638,313.31,24.297], [-4940,0.040852,297.24,24.246], [-4941,0.041036,281.16,24.176], [-4942,0.041191,265.06,24.088], [-4943,0.041318,248.93,23.986], [-4944,0.041417,232.77,23.872], [-4945,0.041489,216.58,23.749], [-4946,0.041536,200.36,23.620], [-4947,0.041557,184.09,23.488], [-4948,0.041556,167.79,23.356], [-4949,0.041531,151.45,23.227], [-4950,0.041485,135.08,23.104], [-4951,0.041418,118.68,22.989], [-4952,0.041332,102.25,22.886], [-4953,0.041226,85.80,22.795], [-4954,0.041103,69.34,22.719], [-4955,0.040963,52.87,22.659], [-4956,0.040808,36.40,22.616], [-4957,0.040636,19.95,22.590], [-4958,0.040451,3.51,22.581], [-4959,0.040251,347.11,22.589], [-4960,0.040039,330.73,22.613], [-4961,0.039814,314.40,22.653], [-4962,0.039576,298.11,22.706], [-4963,0.039327,281.87,22.772], [-4964,0.039067,265.70,22.849], [-4965,0.038795,249.58,22.934], [-4966,0.038512,233.53,23.026], [-4967,0.038219,217.54,23.124], [-4968,0.037915,201.62,23.224], [-4969,0.037601,185.77,23.325], [-4970,0.037276,169.99,23.426], [-4971,0.036941,154.28,23.523], [-4972,0.036596,138.63,23.616], [-4973,0.036241,123.05,23.701], [-4974,0.035876,107.54,23.779], [-4975,0.035501,92.08,23.847], [-4976,0.035117,76.69,23.904], [-4977,0.034723,61.35,23.948], [-4978,0.034321,46.07,23.979], [-4979,0.033911,30.83,23.996], [-4980,0.033494,15.65,23.998], [-4981,0.033070,0.51,23.985], [-4982,0.032641,345.42,23.956], [-4983,0.032209,330.37,23.913], [-4984,0.031774,315.35,23.855], [-4985,0.031338,300.37,23.783], [-4986,0.030905,285.43,23.699], [-4987,0.030475,270.51,23.603], [-4988,0.030052,255.63,23.499], [-4989,0.029639,240.77,23.387], [-4990,0.029238,225.95,23.271], [-4991,0.028855,211.15,23.154], [-4992,0.028492,196.38,23.037], [-4993,0.028154,181.64,22.926], [-4994,0.027844,166.93,22.822], [-4995,0.027569,152.25,22.730], [-4996,0.027331,137.61,22.651], [-4997,0.027136,123.01,22.589], [-4998,0.026988,108.44,22.546], [-4999,0.026892,93.92,22.525], [-5000,0.026851,79.43,22.525]]) # ===== end of table of values # Here we fit a cubic spline to the orbital data # which is used in the function orbital.lookup_parameters to actually evaluate the parameters at a given time # Fit the spline once here rather than at each instance of orbital.lookup_parameters kyear0 = -orbital_table[:,0] # kyears before present for data (kyear0>=0); ecc0 = orbital_table[:,1] # eccentricity # add 180 degrees to long_peri (see lambda definition, Berger 1978 Appendix) long_peri0rad = np.deg2rad(orbital_table[:,2] + 180.) # longitude of perihelion (precession angle) long_peri0 = np.rad2deg( np.unwrap( long_peri0rad ) ) # remove discontinuities (360 degree jumps) obliquity0 = orbital_table[:,3] # obliquity angle # compute cubic spline fits to the data tck_ecc = interpolate.splrep( kyear0, ecc0, s=0 ) tck_long_peri = interpolate.splrep( kyear0, long_peri0, s=0 ) tck_obliquity = interpolate.splrep( kyear0, obliquity0, s=0 )